diff --git a/FUND_RELATIONSHIP_UPDATE.md b/FUND_RELATIONSHIP_UPDATE.md deleted file mode 100644 index f729133..0000000 --- a/FUND_RELATIONSHIP_UPDATE.md +++ /dev/null @@ -1,604 +0,0 @@ -# Fund Relationship Schema Update - -## Summary of Changes - -### Database Schema Changes - -**FundTable Updated:** - -1. `geographic_focus`: Changed from `JSON` array to `STRING` (comma-separated values) -2. `investment_stage_focus`: **REMOVED** - replaced with many-to-many relationship -3. `sector_focus`: **REMOVED** - replaced with many-to-many relationship - -**New Tables:** - -1. `investment_stages` - Stores investment stage names (replaces enum) -2. `fund_investment_stages` - Association table for fund ↔ stage many-to-many -3. `fund_sectors` - Association table for fund ↔ sector many-to-many - -### Why These Changes? - -#### 1. Geographic Focus: JSON → String - -- **Before**: `["Europe", "North America", "Asia"]` -- **After**: `"Europe, North America, Asia"` -- **Reason**: Simpler to display, easier to search with `LIKE` queries - -#### 2. Investment Stages: JSON → Many-to-Many Relationship - -- **Before**: JSON array stored in fund table -- **After**: Proper many-to-many relationship via association table -- **Benefits**: - - Can filter funds by specific stages efficiently - - Can join stages across multiple funds - - Centralized stage management - - Better data normalization - -#### 3. Sectors: JSON → Many-to-Many Relationship - -- **Before**: JSON array stored in fund table -- **After**: Proper many-to-many relationship with existing `SectorTable` -- **Benefits**: - - Reuses existing sector data - - Can filter/aggregate by sector across funds - - Maintains referential integrity - - Consistent with investor-sector relationship pattern - -## Migration Details - -### Successfully Executed - -✅ **411 fund records** migrated -✅ **377 stage relationships** created from old JSON data -✅ **1,445 sector relationships** created from old JSON data -✅ **11 investment stages** seeded: Seed, Pre-Seed, Series A, Series B, Series C, Series D+, Growth, Late Stage, IPO, Venture, Early Stage - -### Data Transformation Examples - -**Geographic Focus:** - -```python -# Before -fund.geographic_focus = ["Europe", "North America"] # JSON - -# After -fund.geographic_focus = "Europe, North America" # String -``` - -**Investment Stages:** - -```python -# Before -fund.investment_stage_focus = ["Seed", "Series A"] # JSON - -# After -fund.investment_stages = [ - InvestmentStageTable(id=1, name="Seed"), - InvestmentStageTable(id=3, name="Series A") -] # Relationship -``` - -**Sectors:** - -```python -# Before -fund.sector_focus = ["Fintech", "Healthcare"] # JSON - -# After -fund.sectors = [ - SectorTable(id=5, name="Fintech"), - SectorTable(id=12, name="Healthcare") -] # Relationship -``` - -## Database Schema - -### Investment Stages Table - -```sql -CREATE TABLE investment_stages ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - name VARCHAR NOT NULL UNIQUE, - created_at DATETIME DEFAULT CURRENT_TIMESTAMP, - updated_at DATETIME -); -``` - -### Fund Investment Stages Association - -```sql -CREATE TABLE fund_investment_stages ( - fund_id INTEGER NOT NULL, - stage_id INTEGER NOT NULL, - PRIMARY KEY (fund_id, stage_id), - FOREIGN KEY (fund_id) REFERENCES funds (id) ON DELETE CASCADE, - FOREIGN KEY (stage_id) REFERENCES investment_stages (id) ON DELETE CASCADE -); -``` - -### Fund Sectors Association - -```sql -CREATE TABLE fund_sectors ( - fund_id INTEGER NOT NULL, - sector_id INTEGER NOT NULL, - PRIMARY KEY (fund_id, sector_id), - FOREIGN KEY (fund_id) REFERENCES funds (id) ON DELETE CASCADE, - FOREIGN KEY (sector_id) REFERENCES sectors (id) ON DELETE CASCADE -); -``` - -### Updated Funds Table - -```sql -CREATE TABLE funds ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - investor_id INTEGER NOT NULL, - fund_name VARCHAR, - fund_size INTEGER, - fund_size_source_url VARCHAR, - check_size_lower INTEGER, - check_size_upper INTEGER, - source_url VARCHAR, - source_provider VARCHAR, - geographic_focus VARCHAR, -- Changed from JSON to VARCHAR - created_at DATETIME DEFAULT CURRENT_TIMESTAMP, - updated_at DATETIME, - FOREIGN KEY (investor_id) REFERENCES investors (id) -); -``` - -## Code Changes - -### 1. Models (Both app/db/models.py and preprocessor/models.py) - -**Added Association Tables:** - -```python -# Association table for fund-stage many-to-many -fund_investment_stages_association = Table( - "fund_investment_stages", - Base.metadata, - Column("fund_id", Integer, ForeignKey("funds.id")), - Column("stage_id", Integer, ForeignKey("investment_stages.id")), -) - -# Association table for fund-sector many-to-many -fund_sectors_association = Table( - "fund_sectors", - Base.metadata, - Column("fund_id", Integer, ForeignKey("funds.id")), - Column("sector_id", Integer, ForeignKey("sectors.id")), -) -``` - -**Updated FundTable:** - -```python -class FundTable(Base, TimestampMixin): - __tablename__ = "funds" - - id = Column(Integer, primary_key=True, index=True) - investor_id = Column(Integer, ForeignKey("investors.id"), nullable=False) - - # Fund details - fund_name = Column(String, nullable=True) - fund_size = Column(Integer, nullable=True) - fund_size_source_url = Column(String, nullable=True) - check_size_lower = Column(Integer, nullable=True) - check_size_upper = Column(Integer, nullable=True) - source_url = Column(String, nullable=True) - source_provider = Column(String, nullable=True) - - # Geographic focus as simple string - geographic_focus = Column(String, nullable=True) - - # Relationships - investor = relationship("InvestorTable", back_populates="funds") - investment_stages = relationship( - "InvestmentStageTable", - secondary=fund_investment_stages_association, - back_populates="funds", - ) - sectors = relationship( - "SectorTable", - secondary=fund_sectors_association, - back_populates="funds", - ) -``` - -**New InvestmentStageTable:** - -```python -class InvestmentStageTable(Base, TimestampMixin): - __tablename__ = "investment_stages" - - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False, unique=True) - - # Relationships - funds = relationship( - "FundTable", - secondary=fund_investment_stages_association, - back_populates="investment_stages", - ) -``` - -**Updated SectorTable:** - -```python -class SectorTable(Base, TimestampMixin): - __tablename__ = "sectors" - - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - - # Relationships - investors = relationship(...) - companies = relationship(...) - projects = relationship(...) - funds = relationship( # NEW - "FundTable", - secondary=fund_sectors_association, - back_populates="sectors", - ) -``` - -### 2. Router Schemas (app/schemas/router_schemas.py) - -**New InvestmentStageSchema:** - -```python -class InvestmentStageSchema(BaseModel): - id: int - name: str - - class Config: - from_attributes = True -``` - -**Updated FundSchema:** - -```python -class FundSchema(BaseModel): - id: int - fund_name: str | None - fund_size: int | None - fund_size_source_url: str | None - check_size_lower: int | None - check_size_upper: int | None - source_url: str | None - source_provider: str | None - geographic_focus: str | None # Changed from List[str] - investment_stages: List[InvestmentStageSchema] | None # Changed from List[str] - sectors: List[SectorSchema] | None # Changed from List[str] - created_at: Optional[datetime] = None - updated_at: Optional[datetime] = None - - class Config: - from_attributes = True -``` - -**Updated InvestorFundData:** - -```python -class InvestorFundData(BaseModel): - # ... investor fields ... - - # Fund fields - fund_id: int | None - fund_name: str | None - fund_size: int | None - fund_size_source_url: str | None - check_size_lower: int | None - check_size_upper: int | None - geographic_focus: str | None # Changed from List[str] - fund_investment_stages: List[InvestmentStageSchema] | None # NEW name - fund_sectors: List[SectorSchema] | None # NEW name - - # ... related data ... -``` - -### 3. LLM Parser (app/services/llm_parser.py) - -**Updated Fund Processing:** - -```python -# Process funds -funds = profile.get("funds", []) -for fund in funds: - if isinstance(fund, dict): - fund_data = { - "fund_name": fund.get("fundName"), - "fund_size": None, - "fund_size_source_url": fund.get("fundSizeSourceUrl"), - "check_size_lower": None, - "check_size_upper": None, - "source_url": fund.get("sourceUrl"), - "source_provider": fund.get("sourceProvider"), - "geographic_focus": None, # Will be converted to string - "investment_stage_names": fund.get("investmentStageFocus", []), - "sector_names": fund.get("sectorFocus", []), - } - - # Convert geographic focus from array to comma-separated string - geo_focus = fund.get("geographicFocus", []) - if geo_focus and isinstance(geo_focus, list): - fund_data["geographic_focus"] = ", ".join(geo_focus) -``` - -**Updated Fund Saving:** - -```python -for fund_data in investor_data.get("funds", []): - fund = FundTable( - investor_id=investor.id, - fund_name=fund_data.get("fund_name"), - fund_size=fund_data.get("fund_size"), - fund_size_source_url=fund_data.get("fund_size_source_url"), - check_size_lower=fund_data.get("check_size_lower"), - check_size_upper=fund_data.get("check_size_upper"), - source_url=fund_data.get("source_url"), - source_provider=fund_data.get("source_provider"), - geographic_focus=fund_data.get("geographic_focus"), # String - ) - db.add(fund) - db.flush() # Get the fund ID - - # Add investment stages (many-to-many) - for stage_name in fund_data.get("investment_stage_names", []): - stage = self._get_or_create_investment_stage(db, stage_name) - fund.investment_stages.append(stage) - - # Add sectors (many-to-many) - for sector_name in fund_data.get("sector_names", []): - sector = self._get_or_create_sector(db, sector_name) - fund.sectors.append(sector) -``` - -**New Helper Method:** - -```python -def _get_or_create_investment_stage( - self, db: Session, stage_name: str -) -> InvestmentStageTable: - """Get existing investment stage or create new one""" - from db.models import InvestmentStageTable - - stage = ( - db.query(InvestmentStageTable) - .filter(InvestmentStageTable.name == stage_name) - .first() - ) - if not stage: - stage = InvestmentStageTable(name=stage_name) - db.add(stage) - db.flush() - return stage -``` - -### 4. Router (app/routers/investors.py) - -**Updated InvestorFundData Instantiation:** - -```python -# Before -geographic_focus=fund.geographic_focus, # Was List[str] -investment_stage_focus=fund.investment_stage_focus, # Was List[str] -sector_focus=fund.sector_focus, # Was List[str] - -# After -geographic_focus=fund.geographic_focus, # Now str -fund_investment_stages=fund.investment_stages, # Now relationship -fund_sectors=fund.sectors, # Now relationship -``` - -## API Response Changes - -### Before - -```json -{ - "fund_id": 1, - "fund_name": "Growth Fund", - "geographic_focus": ["Europe", "North America"], - "investment_stage_focus": ["Series A", "Series B"], - "sector_focus": ["Fintech", "Healthcare"] -} -``` - -### After - -```json -{ - "fund_id": 1, - "fund_name": "Growth Fund", - "geographic_focus": "Europe, North America", - "fund_investment_stages": [ - { "id": 3, "name": "Series A" }, - { "id": 4, "name": "Series B" } - ], - "fund_sectors": [ - { "id": 5, "name": "Fintech" }, - { "id": 12, "name": "Healthcare" } - ] -} -``` - -## Query Examples - -### Find Funds by Investment Stage - -```python -# SQLAlchemy -funds = db.query(FundTable).join( - FundTable.investment_stages -).filter( - InvestmentStageTable.name == "Series A" -).all() - -# SQL -SELECT f.* FROM funds f -JOIN fund_investment_stages fis ON f.id = fis.fund_id -JOIN investment_stages s ON fis.stage_id = s.id -WHERE s.name = 'Series A'; -``` - -### Find Funds by Sector - -```python -# SQLAlchemy -funds = db.query(FundTable).join( - FundTable.sectors -).filter( - SectorTable.name == "Fintech" -).all() - -# SQL -SELECT f.* FROM funds f -JOIN fund_sectors fs ON f.id = fs.fund_id -JOIN sectors s ON fs.sector_id = s.id -WHERE s.name = 'Fintech'; -``` - -### Find Funds by Geographic Focus - -```python -# SQLAlchemy -funds = db.query(FundTable).filter( - FundTable.geographic_focus.ilike("%Europe%") -).all() - -# SQL -SELECT * FROM funds -WHERE geographic_focus LIKE '%Europe%'; -``` - -### Complex Query: Funds Investing in Fintech at Series A in Europe - -```python -funds = db.query(FundTable).join( - FundTable.investment_stages -).join( - FundTable.sectors -).filter( - InvestmentStageTable.name == "Series A", - SectorTable.name == "Fintech", - FundTable.geographic_focus.ilike("%Europe%") -).all() -``` - -## Benefits - -### 1. Better Data Normalization ✨ - -- Investment stages and sectors are now properly normalized -- No duplicate data stored in JSON arrays -- Single source of truth for stage/sector names - -### 2. Efficient Filtering 🔍 - -- Can filter funds by stages/sectors using SQL JOINs -- No need to parse JSON for queries -- Database indexes can be used effectively - -### 3. Data Integrity 🛡️ - -- Foreign key constraints ensure referential integrity -- Can't reference non-existent stages or sectors -- Cascade deletes work properly - -### 4. Easier Aggregations 📊 - -```sql --- Count funds per investment stage -SELECT s.name, COUNT(DISTINCT f.id) as fund_count -FROM investment_stages s -LEFT JOIN fund_investment_stages fis ON s.id = fis.stage_id -LEFT JOIN funds f ON fis.fund_id = f.id -GROUP BY s.name; - --- Count funds per sector -SELECT s.name, COUNT(DISTINCT f.id) as fund_count -FROM sectors s -LEFT JOIN fund_sectors fs ON s.id = fs.sector_id -LEFT JOIN funds f ON fs.fund_id = f.id -GROUP BY s.name; -``` - -### 5. Consistent Pattern 🎯 - -- Follows same many-to-many pattern as: - - Investors ↔ Sectors - - Companies ↔ Sectors - - Projects ↔ Sectors -- Makes codebase more maintainable - -## Frontend Updates Required - -### Geographic Focus - -```typescript -// OLD -const geoList = fund.geographic_focus.join(", "); - -// NEW -const geoStr = fund.geographic_focus; // Already a string -``` - -### Investment Stages - -```typescript -// OLD -const stages = fund.investment_stage_focus; // string[] - -// NEW -const stages = fund.fund_investment_stages.map((s) => s.name); // InvestmentStageSchema[] -``` - -### Sectors - -```typescript -// OLD -const sectors = fund.sector_focus; // string[] - -// NEW -const sectors = fund.fund_sectors.map((s) => s.name); // SectorSchema[] -``` - -## Files Modified - -1. ✅ `preprocessor/models.py` - Updated FundTable, added association tables -2. ✅ `app/db/models.py` - Updated FundTable, added InvestmentStageTable -3. ✅ `app/schemas/router_schemas.py` - Updated FundSchema, InvestorFundData -4. ✅ `app/services/llm_parser.py` - Updated fund processing logic -5. ✅ `app/routers/investors.py` - Updated response formatting -6. ✅ `preprocessor/migrate_fund_relationships.py` - Migration script (NEW) - -## Migration Status - -✅ **Database migrated**: 411 fund records updated -✅ **377 stage relationships** created from old JSON data -✅ **1,445 sector relationships** created from old JSON data -✅ **11 investment stages** seeded -✅ **All code updated**: Models, schemas, parsers, routers -✅ **No errors**: All files compile successfully - -## Next Steps - -1. **Test the API** with new response structure -2. **Update frontend** to use new field formats -3. **Re-parse CSV** (optional) to ensure all new data uses the correct structure -4. **Update filtering UI** to leverage the new relationships - -## Summary - -The fund schema has been successfully refactored to: - -- Store `geographic_focus` as a simple string for easier display -- Use proper many-to-many relationships for `investment_stages` -- Use proper many-to-many relationships with existing `sectors` table -- Enable efficient filtering and aggregation by stage/sector -- Maintain better data normalization and integrity - -This enables powerful queries like "Show me all Fintech funds investing at Series A in Europe" with simple SQL JOINs! 🎉 diff --git a/app/__pycache__/main.cpython-312.pyc b/app/__pycache__/main.cpython-312.pyc index 787c986..88f6657 100644 Binary files a/app/__pycache__/main.cpython-312.pyc and b/app/__pycache__/main.cpython-312.pyc differ diff --git a/app/db/__pycache__/db.cpython-312.pyc b/app/db/__pycache__/db.cpython-312.pyc index c6dc02e..87ca129 100644 Binary files a/app/db/__pycache__/db.cpython-312.pyc and b/app/db/__pycache__/db.cpython-312.pyc differ diff --git a/app/db/__pycache__/models.cpython-312.pyc b/app/db/__pycache__/models.cpython-312.pyc index 6bed0dd..bccb5bd 100644 Binary files a/app/db/__pycache__/models.cpython-312.pyc and b/app/db/__pycache__/models.cpython-312.pyc differ diff --git a/app/db/db.py b/app/db/db.py index 0094a4e..184edf1 100644 --- a/app/db/db.py +++ b/app/db/db.py @@ -12,9 +12,9 @@ Base = declarative_base() # Database configuration # Use the preprocessor's database for consistency # Get absolute path to the preprocessor database -APP_DIR = Path(__file__).parent.parent -PREPROCESSOR_DB = APP_DIR.parent / "preprocessor" / "version_two.db" -DATABASE_URL = os.getenv("DATABASE_URL", f"sqlite:///{PREPROCESSOR_DB}") +# APP_DIR = Path(__file__).parent.parent +# PREPROCESSOR_DB = APP_DIR.parent / "preprocessor" / "version_two.db" +DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///./version_two.db") # Create engine engine = create_engine(DATABASE_URL, echo=False) diff --git a/app/routers/__pycache__/investors.cpython-312.pyc b/app/routers/__pycache__/investors.cpython-312.pyc index aeebb45..1e64e4f 100644 Binary files a/app/routers/__pycache__/investors.cpython-312.pyc and b/app/routers/__pycache__/investors.cpython-312.pyc differ diff --git a/app/schemas/__pycache__/router_schemas.cpython-312.pyc b/app/schemas/__pycache__/router_schemas.cpython-312.pyc index b8cad73..65ff42c 100644 Binary files a/app/schemas/__pycache__/router_schemas.cpython-312.pyc and b/app/schemas/__pycache__/router_schemas.cpython-312.pyc differ diff --git a/app/services/__pycache__/llm_parser.cpython-312.pyc b/app/services/__pycache__/llm_parser.cpython-312.pyc index 3c4ea21..04633e6 100644 Binary files a/app/services/__pycache__/llm_parser.cpython-312.pyc and b/app/services/__pycache__/llm_parser.cpython-312.pyc differ diff --git a/app/services/__pycache__/querying.cpython-312.pyc b/app/services/__pycache__/querying.cpython-312.pyc index fb5cb6d..88b87c9 100644 Binary files a/app/services/__pycache__/querying.cpython-312.pyc and b/app/services/__pycache__/querying.cpython-312.pyc differ diff --git a/preprocessor/companies.csv b/base_db_generator/companies.csv similarity index 100% rename from preprocessor/companies.csv rename to base_db_generator/companies.csv diff --git a/preprocessor/investors.csv b/base_db_generator/investors.csv similarity index 100% rename from preprocessor/investors.csv rename to base_db_generator/investors.csv diff --git a/investors.db b/base_db_generator/investors.db similarity index 66% rename from investors.db rename to base_db_generator/investors.db index 2d3c8c9..e6d83f6 100644 Binary files a/investors.db and b/base_db_generator/investors.db differ diff --git a/preprocessor/main.py b/base_db_generator/main.py similarity index 100% rename from preprocessor/main.py rename to base_db_generator/main.py diff --git a/preprocessor/models.py b/base_db_generator/models.py similarity index 99% rename from preprocessor/models.py rename to base_db_generator/models.py index 4897f91..0bbb201 100644 --- a/preprocessor/models.py +++ b/base_db_generator/models.py @@ -23,7 +23,7 @@ Base = declarative_base() # DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///./investors.db") # Create engine -engine = create_engine("sqlite:///./version_two.db", echo=False) +engine = create_engine("sqlite:///./investors.db", echo=False) # Create session factory SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) diff --git a/data/300 Companies data.csv b/data/300 Companies data.csv deleted file mode 100644 index ad19c82..0000000 --- a/data/300 Companies data.csv +++ /dev/null @@ -1,24358 +0,0 @@ -Name,Website,Investor,Root Domain,Crunchbase & LinkedIn URLs,LinkedIn Investment Profile,LinkedIn Investment Profile Json,Claygent Website Pull,Website JSON,Website Missing Fields,Perplexity Gap Fill,Final Investor Profile,Final Profile Scoring,Website JSON Data -Mammaly,https://www.mammaly.de,"Attila Balogh, Five Seasons Ventures, IRIS Ventures",mammaly.de,https://www.linkedin.com/company/mammaly,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.mammaly.de"", - ""companyDescription"": ""Unser größter Wunsch? Ein langes, glückliches Leben für unsere Hunde. Wenn wir unseren geliebten Vierbeinern ein langes und gesundes Leben ermöglichen wollen, müssen wir sie ausgewogen ernähren... Genau das ist es, was wir bei mammaly tun – mit Premium Supplements for Dogs. Die Frage, die uns antreibt: Jedem einzelnen Hund immer genau die Nährstoffe geben, die er (oder sie) braucht: Das macht gesund und hält fit! Unser Ziel: Happy Aging für unsere Lieblinge – Ein lebenslang optimal versorgter Hund, der glücklich und gesund alt wird. Bei mammaly nennen wir das Happy Aging. Die Lösung: Leckere Supplements für Hunde, entwickelt gemeinsam mit Expert:innen aus der Tiermedizin und -ernährung, mit hoher Bioverfügbarkeit und leckerem Geschmack. Nachhaltigkeit: Tiefen Respekt für alle unsere Mitgeschöpfe, CO2-Fußabdruck berechnet, B-Corp-Zertifizierung, verpflichtet zu sozialen und ökologischen Standards. mammaly ist die Idee von Alexander Thelen und Stanislav Nazarenus (Gegründet 2020), ein führendes Pet Health Start-up in Europa. Unsere Vision: Eine Tierwelt, die gesund isst. Wir setzen auf Wissenschaft, innovative Produkte und Aufklärung rund um Tiergesundheit und -ernährung mit Nachhaltigkeit, neuartigen Produktionsverfahren und großer Liebe zum Tier."", - ""productDescription"": ""mammaly offers premium dog supplements across several categories: Multi-Supplements (e.g., Lucky Belly, Active Hips, Relax Time, Fresh Smile), Single-Supplements, Supplement Chew Bones, Functional Sprays, Functional Training Treats, and Functional Ingredients. The products address various canine health needs such as digestion, joints, stress, dental health, coat condition, and vitality. Additionally, mammaly provides a veterinary support service called DocMammaly and offers a 90-day money-back guarantee."", - ""clientCategories"": [ - ""Dog owners with dogs needing digestive support"", - ""Owners of senior dogs"", - ""Puppy owners"", - ""Dogs with joint and bone health needs"", - ""Dogs with stress and anxiety issues"", - ""Dogs needing dental and breath care"", - ""Dogs with skin and coat conditions"", - ""Dogs requiring tick protection"", - ""Dogs with allergies and itching"", - ""Dogs requiring immune system support"", - ""Dogs with cognition and brain health needs"" - ], - ""sectorDescription"": ""Operates in the pet health and nutrition sector, specializing in scientifically formulated, premium dietary supplements for dogs to promote health and longevity."", - ""geographicFocus"": ""HQ: Friedrichstraße 79, 10117 Berlin, Germany; Sales Focus: Primarily serving customers across Europe."", - ""keyExecutives"": [ - {""name"": ""Stanislav N."", ""title"": ""Co-Founder & Co-CEO"", ""sourceUrl"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f""}, - {""name"": ""Alexander Thelen"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://mammaly.de/pages/about""}, - {""name"": ""Bernd Kruschewski"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Customer categories are inferred from product categorizations on the website as there is no explicit client category page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://mammaly.de/pages/about"", - ""productDescription"": ""https://mammaly.de/collections"", - ""clientCategories"": ""https://mammaly.de/collections/gut-fur"", - ""geographicFocus"": ""https://mammaly.de/policies/legal-notice"", - ""keyExecutives"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"" - } -}","{ - ""websiteURL"": ""https://www.mammaly.de"", - ""companyDescription"": ""Unser größter Wunsch? Ein langes, glückliches Leben für unsere Hunde. Wenn wir unseren geliebten Vierbeinern ein langes und gesundes Leben ermöglichen wollen, müssen wir sie ausgewogen ernähren... Genau das ist es, was wir bei mammaly tun – mit Premium Supplements for Dogs. Die Frage, die uns antreibt: Jedem einzelnen Hund immer genau die Nährstoffe geben, die er (oder sie) braucht: Das macht gesund und hält fit! Unser Ziel: Happy Aging für unsere Lieblinge – Ein lebenslang optimal versorgter Hund, der glücklich und gesund alt wird. Bei mammaly nennen wir das Happy Aging. Die Lösung: Leckere Supplements für Hunde, entwickelt gemeinsam mit Expert:innen aus der Tiermedizin und -ernährung, mit hoher Bioverfügbarkeit und leckerem Geschmack. Nachhaltigkeit: Tiefen Respekt für alle unsere Mitgeschöpfe, CO2-Fußabdruck berechnet, B-Corp-Zertifizierung, verpflichtet zu sozialen und ökologischen Standards. mammaly ist die Idee von Alexander Thelen und Stanislav Nazarenus (Gegründet 2020), ein führendes Pet Health Start-up in Europa. Unsere Vision: Eine Tierwelt, die gesund isst. Wir setzen auf Wissenschaft, innovative Produkte und Aufklärung rund um Tiergesundheit und -ernährung mit Nachhaltigkeit, neuartigen Produktionsverfahren und großer Liebe zum Tier."", - ""productDescription"": ""mammaly offers premium dog supplements across several categories: Multi-Supplements (e.g., Lucky Belly, Active Hips, Relax Time, Fresh Smile), Single-Supplements, Supplement Chew Bones, Functional Sprays, Functional Training Treats, and Functional Ingredients. The products address various canine health needs such as digestion, joints, stress, dental health, coat condition, and vitality. Additionally, mammaly provides a veterinary support service called DocMammaly and offers a 90-day money-back guarantee."", - ""clientCategories"": [ - ""Dog owners with dogs needing digestive support"", - ""Owners of senior dogs"", - ""Puppy owners"", - ""Dogs with joint and bone health needs"", - ""Dogs with stress and anxiety issues"", - ""Dogs needing dental and breath care"", - ""Dogs with skin and coat conditions"", - ""Dogs requiring tick protection"", - ""Dogs with allergies and itching"", - ""Dogs requiring immune system support"", - ""Dogs with cognition and brain health needs"" - ], - ""sectorDescription"": ""Operates in the pet health and nutrition sector, specializing in scientifically formulated, premium dietary supplements for dogs to promote health and longevity."", - ""geographicFocus"": ""HQ: Friedrichstraße 79, 10117 Berlin, Germany; Sales Focus: Primarily serving customers across Europe."", - ""keyExecutives"": [ - {""name"": ""Stanislav N."", ""title"": ""Co-Founder & Co-CEO"", ""sourceUrl"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f""}, - {""name"": ""Alexander Thelen"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://mammaly.de/pages/about""}, - {""name"": ""Bernd Kruschewski"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Customer categories are inferred from product categorizations on the website as there is no explicit client category page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://mammaly.de/pages/about"", - ""productDescription"": ""https://mammaly.de/collections"", - ""clientCategories"": ""https://mammaly.de/collections/gut-fur"", - ""geographicFocus"": ""https://mammaly.de/policies/legal-notice"", - ""keyExecutives"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"" - } -}",[],"{ - ""websiteURL"": ""https://www.mammaly.de"", - ""companyDescription"": ""mammaly is a leading European pet health startup founded in 2020 by Alexander Thelen and Stanislav Nazarenus. The company specializes in premium, scientifically formulated dietary supplements for dogs, aimed at promoting long, healthy, and happy lives with a focus on 'Happy Aging.' mammaly integrates veterinary expertise and sustainability principles, including B-Corp certification and CO2 footprint calculation, to offer effective and eco-conscious canine nutrition."", - ""productDescription"": ""mammaly offers a range of premium dog supplements across categories such as Multi-Supplements (including products like Lucky Belly, Active Hips, Relax Time, Fresh Smile), Single-Supplements, Chew Bones, Functional Sprays, Training Treats, and Functional Ingredients. These products support canine health aspects like digestion, joints, stress relief, dental care, coat condition, vitality, and include a veterinary support service called DocMammaly, complemented by a 90-day money back guarantee."", - ""clientCategories"": [ - ""Dog Owners With Dogs Needing Digestive Support"", - ""Owners Of Senior Dogs"", - ""Puppy Owners"", - ""Dogs With Joint And Bone Health Needs"", - ""Dogs With Stress And Anxiety Issues"", - ""Dogs Needing Dental And Breath Care"", - ""Dogs With Skin And Coat Conditions"", - ""Dogs Requiring Tick Protection"", - ""Dogs With Allergies And Itching"", - ""Dogs Requiring Immune System Support"", - ""Dogs With Cognition And Brain Health Needs"" - ], - ""sectorDescription"": ""Pet health and nutrition sector specializing in scientifically formulated, premium dietary supplements for dogs to enhance health and longevity."", - ""geographicFocus"": ""Headquartered in Berlin, Germany, mammaly primarily serves customers across Europe, especially in German-speaking countries including Germany, Austria, and Switzerland."", - ""keyExecutives"": [ - { - ""name"": ""Stanislav Nazarenus"", - ""title"": ""Co-Founder & Co-CEO"", - ""sourceUrl"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"" - }, - { - ""name"": ""Alexander Thelen"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://mammaly.de/pages/about"" - }, - { - ""name"": ""Bernd Kruschewski"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"" - } - ], - ""researcherNotes"": ""The company is clearly identified by matching the domain mammaly.de, founding year 2020, founder names, and its Berlin HQ, confirming disambiguation. The geographic focus extends across Europe, corroborated by company site and B-Corp listing showing operation in Germany, Austria, and Switzerland. No discrepancies found in executive titles from official sources. Customer categories were inferred from product categorizations on the official site. No missing major fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://mammaly.de/pages/about"", - ""productDescription"": ""https://mammaly.de/collections"", - ""clientCategories"": ""https://mammaly.de/collections/gut-fur"", - ""geographicFocus"": ""https://www.bcorporation.net/en-us/find-a-b-corp/company/mammaly/"", - ""keyExecutives"": ""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"" - } -}","{""clientCategories"":[""Dog Owners With Dogs Needing Digestive Support"",""Owners Of Senior Dogs"",""Puppy Owners"",""Dogs With Joint And Bone Health Needs"",""Dogs With Stress And Anxiety Issues"",""Dogs Needing Dental And Breath Care"",""Dogs With Skin And Coat Conditions"",""Dogs Requiring Tick Protection"",""Dogs With Allergies And Itching"",""Dogs Requiring Immune System Support"",""Dogs With Cognition And Brain Health Needs""],""companyDescription"":""mammaly is a leading European pet health startup founded in 2020 by Alexander Thelen and Stanislav Nazarenus. The company specializes in premium, scientifically formulated dietary supplements for dogs, aimed at promoting long, healthy, and happy lives with a focus on 'Happy Aging.' mammaly integrates veterinary expertise and sustainability principles, including B-Corp certification and CO2 footprint calculation, to offer effective and eco-conscious canine nutrition."",""geographicFocus"":""Headquartered in Berlin, Germany, mammaly primarily serves customers across Europe, especially in German-speaking countries including Germany, Austria, and Switzerland."",""keyExecutives"":[{""name"":""Stanislav Nazarenus"",""sourceUrl"":""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"",""title"":""Co-Founder & Co-CEO""},{""name"":""Alexander Thelen"",""sourceUrl"":""https://mammaly.de/pages/about"",""title"":""Co-Founder""},{""name"":""Bernd Kruschewski"",""sourceUrl"":""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"",""title"":""Chief Operating Officer""}],""missingImportantFields"":[],""productDescription"":""mammaly offers a range of premium dog supplements across categories such as Multi-Supplements (including products like Lucky Belly, Active Hips, Relax Time, Fresh Smile), Single-Supplements, Chew Bones, Functional Sprays, Training Treats, and Functional Ingredients. These products support canine health aspects like digestion, joints, stress relief, dental care, coat condition, vitality, and include a veterinary support service called DocMammaly, complemented by a 90-day money back guarantee."",""researcherNotes"":""The company is clearly identified by matching the domain mammaly.de, founding year 2020, founder names, and its Berlin HQ, confirming disambiguation. The geographic focus extends across Europe, corroborated by company site and B-Corp listing showing operation in Germany, Austria, and Switzerland. No discrepancies found in executive titles from official sources. Customer categories were inferred from product categorizations on the official site. No missing major fields remain."",""sectorDescription"":""Pet health and nutrition sector specializing in scientifically formulated, premium dietary supplements for dogs to enhance health and longevity."",""sources"":{""clientCategories"":""https://mammaly.de/collections/gut-fur"",""companyDescription"":""https://mammaly.de/pages/about"",""geographicFocus"":""https://www.bcorporation.net/en-us/find-a-b-corp/company/mammaly/"",""keyExecutives"":""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"",""productDescription"":""https://mammaly.de/collections""},""websiteURL"":""https://www.mammaly.de""}","Correctness: 98% Completeness: 95% The information about mammaly is largely accurate and comprehensive. The company was founded in 2020 by Alexander Thelen and Stanislav Nazarenus, headquartered in Germany, focusing on premium, scientifically formulated dog supplements to promote healthy aging and longevity, aligning with its ""Happy Aging"" concept[1][2][4]. It operates primarily in German-speaking Europe (Germany, Austria, Switzerland)[2], and offers products like Multi-Supplements (Lucky Belly, Active Hips, Relax Time, Fresh Smile), Single-Supplements, Chew Bones, Functional Sprays, Training Treats, and a veterinary support service called DocMammaly, with a 90-day money back guarantee[1][2]. Executive titles align with sources showing Stanislav Nazarenus as Co-Founder & Co-CEO, Alexander Thelen as Co-Founder, and Bernd Kruschewski as COO[2][4]. The company holds B-Corp certification and emphasizes sustainability[2]. While no detailed primary filings were found, multiple reliable official sources corroborate the key facts. A minor point: the exact geographic HQ is listed as North Rhine-Westphalia in B-Corp data, while healthcare descriptions mention Berlin; this is a negligible discrepancy likely due to operational presence versus registered office[1][2]. Overall, the profile includes all material claims with firm sourcing from mammaly’s official site and B-Corp registry for events and leadership as of 2025-09. URLs: https://mammaly.de/pages/about, https://www.bcorporation.net/en-us/find-a-b-corp/company/mammaly/, https://www.petworldwide.net/content-1/best-newcomer/2024/mammaly.html, https://tech.eu/2021/12/16/mammaly-raises-e3-million-in-pre-series-a-funding/","{""clientCategories"":[""Dog owners with dogs needing digestive support"",""Owners of senior dogs"",""Puppy owners"",""Dogs with joint and bone health needs"",""Dogs with stress and anxiety issues"",""Dogs needing dental and breath care"",""Dogs with skin and coat conditions"",""Dogs requiring tick protection"",""Dogs with allergies and itching"",""Dogs requiring immune system support"",""Dogs with cognition and brain health needs""],""companyDescription"":""Unser größter Wunsch? Ein langes, glückliches Leben für unsere Hunde. Wenn wir unseren geliebten Vierbeinern ein langes und gesundes Leben ermöglichen wollen, müssen wir sie ausgewogen ernähren... Genau das ist es, was wir bei mammaly tun – mit Premium Supplements for Dogs. Die Frage, die uns antreibt: Jedem einzelnen Hund immer genau die Nährstoffe geben, die er (oder sie) braucht: Das macht gesund und hält fit! Unser Ziel: Happy Aging für unsere Lieblinge – Ein lebenslang optimal versorgter Hund, der glücklich und gesund alt wird. Bei mammaly nennen wir das Happy Aging. Die Lösung: Leckere Supplements für Hunde, entwickelt gemeinsam mit Expert:innen aus der Tiermedizin und -ernährung, mit hoher Bioverfügbarkeit und leckerem Geschmack. Nachhaltigkeit: Tiefen Respekt für alle unsere Mitgeschöpfe, CO2-Fußabdruck berechnet, B-Corp-Zertifizierung, verpflichtet zu sozialen und ökologischen Standards. mammaly ist die Idee von Alexander Thelen und Stanislav Nazarenus (Gegründet 2020), ein führendes Pet Health Start-up in Europa. Unsere Vision: Eine Tierwelt, die gesund isst. Wir setzen auf Wissenschaft, innovative Produkte und Aufklärung rund um Tiergesundheit und -ernährung mit Nachhaltigkeit, neuartigen Produktionsverfahren und großer Liebe zum Tier."",""geographicFocus"":""HQ: Friedrichstraße 79, 10117 Berlin, Germany; Sales Focus: Primarily serving customers across Europe."",""keyExecutives"":[{""name"":""Stanislav N."",""sourceUrl"":""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"",""title"":""Co-Founder & Co-CEO""},{""name"":""Alexander Thelen"",""sourceUrl"":""https://mammaly.de/pages/about"",""title"":""Co-Founder""},{""name"":""Bernd Kruschewski"",""sourceUrl"":""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"",""title"":""Chief Operating Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""mammaly offers premium dog supplements across several categories: Multi-Supplements (e.g., Lucky Belly, Active Hips, Relax Time, Fresh Smile), Single-Supplements, Supplement Chew Bones, Functional Sprays, Functional Training Treats, and Functional Ingredients. The products address various canine health needs such as digestion, joints, stress, dental health, coat condition, and vitality. Additionally, mammaly provides a veterinary support service called DocMammaly and offers a 90-day money-back guarantee."",""researcherNotes"":""Customer categories are inferred from product categorizations on the website as there is no explicit client category page."",""sectorDescription"":""Operates in the pet health and nutrition sector, specializing in scientifically formulated, premium dietary supplements for dogs to promote health and longevity."",""sources"":{""clientCategories"":""https://mammaly.de/collections/gut-fur"",""companyDescription"":""https://mammaly.de/pages/about"",""geographicFocus"":""https://mammaly.de/policies/legal-notice"",""keyExecutives"":""https://rocketreach.co/mammaly-management_b7ce92dac14c4d9f"",""productDescription"":""https://mammaly.de/collections""},""websiteURL"":""https://www.mammaly.de""}" -Ljusgarda,https://ljusgarda.se/,"Back in Black, Jula Miljö & Energi, Karl-Erik Lundgren, Philian Invest",ljusgarda.se,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://ljusgarda.se/"", - ""companyDescription"": ""Ljusgårda AB develops a scalable, circular indoor farming technology called The Supernormal way, enabling year-round cultivation of fresh, pesticide-free salad with reduced climate impact and water use."", - ""productDescription"": ""The company offers sustainably grown, indoor cultivated salads under the Supernormal brand, including:\n- Supernormal Krispsallad (75g and 150g)\n- Supernormal rödbladig sallad\nThese salads are pesticide-free, have a long shelf life, and use significantly less water and have a lower climate impact than imported salads."", - ""clientCategories"": [""Retailers and distributors of fresh produce"", ""Food service companies"", ""Sustainability-conscious consumers""], - ""sectorDescription"": ""Operates in the indoor agriculture and sustainable food production sector, focusing on circular farming technology for year-round fresh salad cultivation."", - ""geographicFocus"": ""HQ: Ljusgårda AB, Grönhultsvägen 35, 43 51 Tibro, Sweden; Sales Focus: Sweden"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit leadership or executive information was found on the website. The geographic sales focus is not explicitly stated but inferred as Sweden based on address and contact."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.ljusgarda.se/"", - ""productDescription"": ""https://www.ljusgarda.se/"", - ""clientCategories"": ""https://www.ljusgarda.se/"", - ""geographicFocus"": ""https://www.ljusgarda.se/kontakt"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://ljusgarda.se/"", - ""companyDescription"": ""Ljusgårda AB develops a scalable, circular indoor farming technology called The Supernormal way, enabling year-round cultivation of fresh, pesticide-free salad with reduced climate impact and water use."", - ""productDescription"": ""The company offers sustainably grown, indoor cultivated salads under the Supernormal brand, including:\n- Supernormal Krispsallad (75g and 150g)\n- Supernormal rödbladig sallad\nThese salads are pesticide-free, have a long shelf life, and use significantly less water and have a lower climate impact than imported salads."", - ""clientCategories"": [""Retailers and distributors of fresh produce"", ""Food service companies"", ""Sustainability-conscious consumers""], - ""sectorDescription"": ""Operates in the indoor agriculture and sustainable food production sector, focusing on circular farming technology for year-round fresh salad cultivation."", - ""geographicFocus"": ""HQ: Ljusgårda AB, Grönhultsvägen 35, 43 51 Tibro, Sweden; Sales Focus: Sweden"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit leadership or executive information was found on the website. The geographic sales focus is not explicitly stated but inferred as Sweden based on address and contact."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.ljusgarda.se/"", - ""productDescription"": ""https://www.ljusgarda.se/"", - ""clientCategories"": ""https://www.ljusgarda.se/"", - ""geographicFocus"": ""https://www.ljusgarda.se/kontakt"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://ljusgarda.se/"", - ""companyDescription"": ""Ljusgårda AB is a Swedish food tech company specializing in scalable, circular indoor vertical farming technology called The Supernormal way. The company enables year-round cultivation of fresh, pesticide-free salad with a significantly reduced climate impact and water use, aimed at retailers, food service companies, and sustainability-conscious consumers. Founded in 2018, Ljusgårda seeks to reshape agriculture by producing sustainable, locally grown produce in Nordic climates."", - ""productDescription"": ""Ljusgårda offers sustainably grown, indoor-cultivated salad products under the Supernormal brand, including Supernormal Krispsallad (75g and 150g) and Supernormal rödbladig sallad. These salads are pesticide-free, have a long shelf life, and are produced using a circular irrigation system and renewable electricity, resulting in a lower water footprint and climate impact compared to imported salads."", - ""clientCategories"": [ - ""Retailers And Distributors Of Fresh Produce"", - ""Food Service Companies"", - ""Sustainability-Conscious Consumers"" - ], - ""sectorDescription"": ""Indoor agriculture and sustainable food production specializing in scalable circular vertical farming technology for year-round fresh salad cultivation."", - ""geographicFocus"": ""Primary focus: Sweden and the Nordic region, with sales centered in Sweden and plans to become the largest indoor farm in Europe."", - ""keyExecutives"": [ - { - ""name"": ""Andreas Wilhelmsson"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://heliospectra.com/blog/the-ultimate-vertical-growth-from-0-7000m2-in-3-years/"" - } - ], - ""researcherNotes"": ""The company was confirmed through domain, location in Tibro, Sweden, and industry keywords. The CEO Andreas Wilhelmsson was identified from a webinar source as no leadership info was on the official website or LinkedIn org page. Geographic footprint explicitly mentions Sweden and Nordic region. No additional key executives found from LinkedIn or official filings."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ljusgarda.se/"", - ""productDescription"": ""https://www.ljusgarda.se/"", - ""clientCategories"": ""https://www.ljusgarda.se/"", - ""geographicFocus"": ""https://www.ljusgarda.se/kontakt"", - ""keyExecutives"": ""https://heliospectra.com/blog/the-ultimate-vertical-growth-from-0-7000m2-in-3-years/"" - } -}","{""clientCategories"":[""Retailers And Distributors Of Fresh Produce"",""Food Service Companies"",""Sustainability-Conscious Consumers""],""companyDescription"":""Ljusgårda AB is a Swedish food tech company specializing in scalable, circular indoor vertical farming technology called The Supernormal way. The company enables year-round cultivation of fresh, pesticide-free salad with a significantly reduced climate impact and water use, aimed at retailers, food service companies, and sustainability-conscious consumers. Founded in 2018, Ljusgårda seeks to reshape agriculture by producing sustainable, locally grown produce in Nordic climates."",""geographicFocus"":""Primary focus: Sweden and the Nordic region, with sales centered in Sweden and plans to become the largest indoor farm in Europe."",""keyExecutives"":[{""name"":""Andreas Wilhelmsson"",""sourceUrl"":""https://heliospectra.com/blog/the-ultimate-vertical-growth-from-0-7000m2-in-3-years/"",""title"":""Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""Ljusgårda offers sustainably grown, indoor-cultivated salad products under the Supernormal brand, including Supernormal Krispsallad (75g and 150g) and Supernormal rödbladig sallad. These salads are pesticide-free, have a long shelf life, and are produced using a circular irrigation system and renewable electricity, resulting in a lower water footprint and climate impact compared to imported salads."",""researcherNotes"":""The company was confirmed through domain, location in Tibro, Sweden, and industry keywords. The CEO Andreas Wilhelmsson was identified from a webinar source as no leadership info was on the official website or LinkedIn org page. Geographic footprint explicitly mentions Sweden and Nordic region. No additional key executives found from LinkedIn or official filings."",""sectorDescription"":""Indoor agriculture and sustainable food production specializing in scalable circular vertical farming technology for year-round fresh salad cultivation."",""sources"":{""clientCategories"":""https://www.ljusgarda.se/"",""companyDescription"":""https://www.ljusgarda.se/"",""geographicFocus"":""https://www.ljusgarda.se/kontakt"",""keyExecutives"":""https://heliospectra.com/blog/the-ultimate-vertical-growth-from-0-7000m2-in-3-years/"",""productDescription"":""https://www.ljusgarda.se/""},""websiteURL"":""https://ljusgarda.se/""}","Correctness: 98% Completeness: 95% The information about Ljusgårda AB is highly accurate and well-supported by multiple authoritative sources. The company is correctly described as a Swedish food tech firm specializing in scalable, circular indoor vertical farming producing pesticide-free salad with reduced environmental impact, headquartered in Tibro, Sweden, and focusing on the Nordic region. CEO Andreas Wilhelmsson is confirmed in this role as of recent webinars and company communications[1][2][4]. The founding year is consistently reported as 2018, with roots going back to 2017 garage trials[2][3][4]. The product descriptions, including Supernormal branded salads grown with circular irrigation and renewable energy, align with the company’s claims of sustainability and technological innovation[3][5]. The geographic focus on Sweden and expansion plans to become Europe’s largest indoor farm is supported, including operating a 7,000 m² facility in Tibro with plans for larger next steps[1][4][5]. Minor completeness deductions reflect some absence of a full leadership team beyond the CEO and no explicit recent funding details, though this does not materially detract from the core company facts. Best sources include Ljusgårda’s official site, the Heliospectra webinar/blog featuring the CEO (https://heliospectra.com/blog/the-ultimate-vertical-growth-from-0-7000m2-in-3-years/), and the Swedish Cleantech profile (https://swedishcleantech.com/companies/2149/ljusgarda-ab/), as well as recent press releases confirming sustainability and scale as of mid-2024[5].","{""clientCategories"":[""Retailers and distributors of fresh produce"",""Food service companies"",""Sustainability-conscious consumers""],""companyDescription"":""Ljusgårda AB develops a scalable, circular indoor farming technology called The Supernormal way, enabling year-round cultivation of fresh, pesticide-free salad with reduced climate impact and water use."",""geographicFocus"":""HQ: Ljusgårda AB, Grönhultsvägen 35, 43 51 Tibro, Sweden; Sales Focus: Sweden"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The company offers sustainably grown, indoor cultivated salads under the Supernormal brand, including:\n- Supernormal Krispsallad (75g and 150g)\n- Supernormal rödbladig sallad\nThese salads are pesticide-free, have a long shelf life, and use significantly less water and have a lower climate impact than imported salads."",""researcherNotes"":""No explicit leadership or executive information was found on the website. The geographic sales focus is not explicitly stated but inferred as Sweden based on address and contact."",""sectorDescription"":""Operates in the indoor agriculture and sustainable food production sector, focusing on circular farming technology for year-round fresh salad cultivation."",""sources"":{""clientCategories"":""https://www.ljusgarda.se/"",""companyDescription"":""https://www.ljusgarda.se/"",""geographicFocus"":""https://www.ljusgarda.se/kontakt"",""keyExecutives"":null,""productDescription"":""https://www.ljusgarda.se/""},""websiteURL"":""https://ljusgarda.se/""}" -MIRICO,https://mirico.co.uk/,"New Climate Ventures, Shell Ventures, UK Innovation & Science Seed Fund",mirico.co.uk,https://www.linkedin.com/company/mirico-ltd-,"{""seniorLeadership"":[{""name"":""Peter Collins"",""title"":""Chair"",""profileURL"":""https://www.linkedin.com/company/mirico-ltd-""},{""name"":""Bob Flint"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/in/bob-flint-16320a""},{""name"":""Damien Weidmann"",""title"":""CSO"",""profileURL"":""https://www.linkedin.com/company/mirico-ltd-""},{""name"":""Stuart Bonthron"",""title"":""COO"",""profileURL"":""https://www.linkedin.com/company/mirico-ltd-""}]}","{""seniorLeadership"":[{""name"":""Peter Collins"",""title"":""Chair"",""profileURL"":""https://www.linkedin.com/company/mirico-ltd-""},{""name"":""Bob Flint"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/in/bob-flint-16320a""},{""name"":""Damien Weidmann"",""title"":""CSO"",""profileURL"":""https://www.linkedin.com/company/mirico-ltd-""},{""name"":""Stuart Bonthron"",""title"":""COO"",""profileURL"":""https://www.linkedin.com/company/mirico-ltd-""}]}","{ - ""websiteURL"": ""https://mirico.co.uk/"", - ""companyDescription"": ""Mirico Ltd develops next-generation emissions intelligence solutions using unique laser-based sensing and data analytics platforms. Mission: To continuously detect, localize, and quantify methane emissions at facility level, enabling cost-effective methane reduction and unlocking new market opportunities. Industry sector: Environmental technology with focus on methane emissions monitoring and mitigation in sectors such as upstream production, processing, LNG hubs, and storage."", - ""productDescription"": ""Our solution features a unique sensor using lasers enhanced by patented LDS technology, designed for methane measurement with long range, rapid installation, and operation in various weather conditions. It offers automated 24/7/365 measurement with updates every few minutes, parts per billion sensitivity, and covers wide areas (up to 0.5 sq mi / 1 km²). It accommodates complex facilities and is partnered with powerful cloud-based analytics that characterize event duration, location, and rate, even for simultaneous emissions. The platform fully automates methane measurement, providing near real-time emissions event data with continuous measurement, full site coverage, and high precision (localizing and quantifying emissions down to below 0.5 kg/hr). It provides high data quality (>98% availability) and resists adverse weather."", - ""clientCategories"": [""upstream production"", ""processing"", ""compression"", ""transportation"", ""liquefied natural gas hubs"", ""surface storage"", ""sub-surface storage""], - ""sectorDescription"": ""Operates in the environmental technology sector, providing next-generation methane emissions monitoring and mitigation solutions for energy and industrial facilities."", - ""geographicFocus"": ""HQ: Unit 6, Zephyr Building, Eighth Street, Harwell Campus, Didcot OX11 0RL; Sales Focus: Not explicitly stated, likely energy and industrial sectors in regions served by Harwell Oxford innovation ecosystem."", - ""keyExecutives"": [ - {""name"": ""Peter Collins"", ""title"": ""Chair"", ""sourceUrl"": ""https://www.mirico.co.uk/team""}, - {""name"": ""Bob Flint"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.mirico.co.uk/team""}, - {""name"": ""Damien Weidmann"", ""title"": ""CSO"", ""sourceUrl"": ""https://www.mirico.co.uk/team""}, - {""name"": ""Stuart Bonthron"", ""title"": ""COO"", ""sourceUrl"": ""https://www.mirico.co.uk/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic sales focus not explicitly stated on the website, inferred from industry context and innovation ecosystem location."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.mirico.co.uk/"", - ""productDescription"": ""https://www.mirico.co.uk/the-solution"", - ""clientCategories"": ""https://www.mirico.co.uk/"", - ""geographicFocus"": ""https://www.mirico.co.uk/contact-us"", - ""keyExecutives"": ""https://www.mirico.co.uk/team"" - } -}","{ - ""websiteURL"": ""https://mirico.co.uk/"", - ""companyDescription"": ""Mirico Ltd develops next-generation emissions intelligence solutions using unique laser-based sensing and data analytics platforms. Mission: To continuously detect, localize, and quantify methane emissions at facility level, enabling cost-effective methane reduction and unlocking new market opportunities. Industry sector: Environmental technology with focus on methane emissions monitoring and mitigation in sectors such as upstream production, processing, LNG hubs, and storage."", - ""productDescription"": ""Our solution features a unique sensor using lasers enhanced by patented LDS technology, designed for methane measurement with long range, rapid installation, and operation in various weather conditions. It offers automated 24/7/365 measurement with updates every few minutes, parts per billion sensitivity, and covers wide areas (up to 0.5 sq mi / 1 km²). It accommodates complex facilities and is partnered with powerful cloud-based analytics that characterize event duration, location, and rate, even for simultaneous emissions. The platform fully automates methane measurement, providing near real-time emissions event data with continuous measurement, full site coverage, and high precision (localizing and quantifying emissions down to below 0.5 kg/hr). It provides high data quality (>98% availability) and resists adverse weather."", - ""clientCategories"": [""upstream production"", ""processing"", ""compression"", ""transportation"", ""liquefied natural gas hubs"", ""surface storage"", ""sub-surface storage""], - ""sectorDescription"": ""Operates in the environmental technology sector, providing next-generation methane emissions monitoring and mitigation solutions for energy and industrial facilities."", - ""geographicFocus"": ""HQ: Unit 6, Zephyr Building, Eighth Street, Harwell Campus, Didcot OX11 0RL; Sales Focus: Not explicitly stated, likely energy and industrial sectors in regions served by Harwell Oxford innovation ecosystem."", - ""keyExecutives"": [ - {""name"": ""Peter Collins"", ""title"": ""Chair"", ""sourceUrl"": ""https://www.mirico.co.uk/team""}, - {""name"": ""Bob Flint"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.mirico.co.uk/team""}, - {""name"": ""Damien Weidmann"", ""title"": ""CSO"", ""sourceUrl"": ""https://www.mirico.co.uk/team""}, - {""name"": ""Stuart Bonthron"", ""title"": ""COO"", ""sourceUrl"": ""https://www.mirico.co.uk/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic sales focus not explicitly stated on the website, inferred from industry context and innovation ecosystem location."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.mirico.co.uk/"", - ""productDescription"": ""https://www.mirico.co.uk/the-solution"", - ""clientCategories"": ""https://www.mirico.co.uk/"", - ""geographicFocus"": ""https://www.mirico.co.uk/contact-us"", - ""keyExecutives"": ""https://www.mirico.co.uk/team"" - } -}",[],"{ - ""websiteURL"": ""https://mirico.co.uk/"", - ""companyDescription"": ""Mirico Ltd develops next-generation emissions intelligence solutions using unique laser-based sensing and data analytics platforms. The company continuously detects, localizes, and quantifies methane emissions at the facility level to help clients reduce methane cost-effectively and unlock new market opportunities. Serving primarily the energy and industrial sectors, Mirico sets new standards in continuous wide-area monitoring of methane and other greenhouse gases with high precision and data quality, operating reliably even in adverse weather conditions."", - ""productDescription"": ""Mirico's solution features a patented laser-based sensor technology designed for long-range methane measurement with rapid installation and all-weather operation. It provides automated 24/7/365 monitoring of large facility areas (up to 1 km²) with parts per billion sensitivity and frequent updates. The cloud-based analytics platform automatically characterizes emission event duration, location, and rate, effectively managing complex sites with simultaneous emissions. It delivers near real-time data with high accuracy and availability, enabling proactive methane emission detection and mitigation."", - ""clientCategories"": [""Upstream Production"", ""Processing"", ""Compression"", ""Transportation"", ""Liquefied Natural Gas Hubs"", ""Surface Storage"", ""Sub-Surface Storage""], - ""sectorDescription"": ""Environmental technology focused on methane emissions monitoring and mitigation for energy and industrial facilities."", - ""geographicFocus"": ""Primary focus likely on the UK and regions served by the Harwell Oxford innovation ecosystem; sales footprint is not explicitly stated."", - ""keyExecutives"": [ - { - ""name"": ""Peter Collins"", - ""title"": ""Chair"", - ""sourceUrl"": ""https://www.mirico.co.uk/team"" - }, - { - ""name"": ""Bob Flint"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.mirico.co.uk/team"" - }, - { - ""name"": ""Damien Weidmann"", - ""title"": ""CSO"", - ""sourceUrl"": ""https://www.mirico.co.uk/team"" - }, - { - ""name"": ""Stuart Bonthron"", - ""title"": ""COO"", - ""sourceUrl"": ""https://www.mirico.co.uk/team"" - } - ], - ""researcherNotes"": ""Company identity confirmed by matching domain (mirico.co.uk), headquarters location in Didcot, UK at Harwell Oxford campus, and executive names consistent across website and LinkedIn profiles. The geographic sales focus is not explicitly defined on the company website or LinkedIn but is inferred from the HQ location and sector focus. No conflicts or gaps in executive data. Company incorporation date is Jan 7, 2015, per UK Companies House. Sources: company website and Companies House."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.mirico.co.uk/"", - ""productDescription"": ""https://www.mirico.co.uk/the-solution"", - ""clientCategories"": ""https://www.mirico.co.uk/"", - ""geographicFocus"": ""https://www.mirico.co.uk/contact-us"", - ""keyExecutives"": ""https://www.mirico.co.uk/team"" - } -}","{""clientCategories"":[""Upstream Production"",""Processing"",""Compression"",""Transportation"",""Liquefied Natural Gas Hubs"",""Surface Storage"",""Sub-Surface Storage""],""companyDescription"":""Mirico Ltd develops next-generation emissions intelligence solutions using unique laser-based sensing and data analytics platforms. The company continuously detects, localizes, and quantifies methane emissions at the facility level to help clients reduce methane cost-effectively and unlock new market opportunities. Serving primarily the energy and industrial sectors, Mirico sets new standards in continuous wide-area monitoring of methane and other greenhouse gases with high precision and data quality, operating reliably even in adverse weather conditions."",""geographicFocus"":""Primary focus likely on the UK and regions served by the Harwell Oxford innovation ecosystem; sales footprint is not explicitly stated."",""keyExecutives"":[{""name"":""Peter Collins"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""Chair""},{""name"":""Bob Flint"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""CEO""},{""name"":""Damien Weidmann"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""CSO""},{""name"":""Stuart Bonthron"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""COO""}],""missingImportantFields"":[],""productDescription"":""Mirico's solution features a patented laser-based sensor technology designed for long-range methane measurement with rapid installation and all-weather operation. It provides automated 24/7/365 monitoring of large facility areas (up to 1 km²) with parts per billion sensitivity and frequent updates. The cloud-based analytics platform automatically characterizes emission event duration, location, and rate, effectively managing complex sites with simultaneous emissions. It delivers near real-time data with high accuracy and availability, enabling proactive methane emission detection and mitigation."",""researcherNotes"":""Company identity confirmed by matching domain (mirico.co.uk), headquarters location in Didcot, UK at Harwell Oxford campus, and executive names consistent across website and LinkedIn profiles. The geographic sales focus is not explicitly defined on the company website or LinkedIn but is inferred from the HQ location and sector focus. No conflicts or gaps in executive data. Company incorporation date is Jan 7, 2015, per UK Companies House. Sources: company website and Companies House."",""sectorDescription"":""Environmental technology focused on methane emissions monitoring and mitigation for energy and industrial facilities."",""sources"":{""clientCategories"":""https://www.mirico.co.uk/"",""companyDescription"":""https://www.mirico.co.uk/"",""geographicFocus"":""https://www.mirico.co.uk/contact-us"",""keyExecutives"":""https://www.mirico.co.uk/team"",""productDescription"":""https://www.mirico.co.uk/the-solution""},""websiteURL"":""https://mirico.co.uk/""}","Correctness: 98% Completeness: 95% The description of Mirico Ltd is factually correct and highly complete. The company is confirmed as a UK-based firm headquartered at Harwell Oxford, developed from a spin-out of the STFC Rutherford Appleton Laboratory spectroscopy team, with a focus on next-generation laser-based methane sensing and emissions analytics solutions offering continuous, wide-area monitoring with parts-per-billion sensitivity[2][3]. The executive leadership—Peter Collins (Chair), Bob Flint (CEO), Damien Weidmann (CSO), and Stuart Bonthron (COO)—is consistent with the company’s official team page accessed as recently as 2025[2]. Mirico’s core product leveraging patented laser dispersion spectroscopy for methane detection with rapid installation and 24/7/365 operation on large sites aligns precisely with published technical details and recent academic publications, including a joint paper with Shell demonstrating continuous methane monitoring in operational conditions[1][4]. The company’s primary geographic focus inferred to be the UK and adjacent markets near its Harwell base is supported by absence of contradictory sales footprint data but is not explicitly specified on their site[2][3]. The partnership and investment from Shell Ventures and others, plus demonstrated customer engagement with oil and gas sectors for emissions reduction, is corroborated by multiple sources including industry news and company filings[1][3]. A minor deduction on correctness is for inferred sales footprint, which remains an inference and not explicitly stated. Completeness is slightly less than perfect chiefly due to absence of explicit recent funding rounds details in the summary beyond the £2M round in 2022 and no recent staff or financial metrics. Overall, this company profile is accurate, well sourced from official company web pages, secured UK Companies House data, related scientific publications, and industry news portals. Key references include https://www.mirico.co.uk/team, https://www.mirico.co.uk/the-solution, https://optics.org/news/15/6/13, https://www.ralspace.stfc.ac.uk/Pages/RAL-Space-spin-out-company-Mirico-accelerates-climate-change-monitoring-.aspx, and the Nature Scientific Reports joint paper https://www.mirico.co.uk/news/long-term-continuous-methane-monitoring-at-an-oil-and-gas-plant.","{""clientCategories"":[""upstream production"",""processing"",""compression"",""transportation"",""liquefied natural gas hubs"",""surface storage"",""sub-surface storage""],""companyDescription"":""Mirico Ltd develops next-generation emissions intelligence solutions using unique laser-based sensing and data analytics platforms. Mission: To continuously detect, localize, and quantify methane emissions at facility level, enabling cost-effective methane reduction and unlocking new market opportunities. Industry sector: Environmental technology with focus on methane emissions monitoring and mitigation in sectors such as upstream production, processing, LNG hubs, and storage."",""geographicFocus"":""HQ: Unit 6, Zephyr Building, Eighth Street, Harwell Campus, Didcot OX11 0RL; Sales Focus: Not explicitly stated, likely energy and industrial sectors in regions served by Harwell Oxford innovation ecosystem."",""keyExecutives"":[{""name"":""Peter Collins"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""Chair""},{""name"":""Bob Flint"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""CEO""},{""name"":""Damien Weidmann"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""CSO""},{""name"":""Stuart Bonthron"",""sourceUrl"":""https://www.mirico.co.uk/team"",""title"":""COO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Our solution features a unique sensor using lasers enhanced by patented LDS technology, designed for methane measurement with long range, rapid installation, and operation in various weather conditions. It offers automated 24/7/365 measurement with updates every few minutes, parts per billion sensitivity, and covers wide areas (up to 0.5 sq mi / 1 km²). It accommodates complex facilities and is partnered with powerful cloud-based analytics that characterize event duration, location, and rate, even for simultaneous emissions. The platform fully automates methane measurement, providing near real-time emissions event data with continuous measurement, full site coverage, and high precision (localizing and quantifying emissions down to below 0.5 kg/hr). It provides high data quality (>98% availability) and resists adverse weather."",""researcherNotes"":""Geographic sales focus not explicitly stated on the website, inferred from industry context and innovation ecosystem location."",""sectorDescription"":""Operates in the environmental technology sector, providing next-generation methane emissions monitoring and mitigation solutions for energy and industrial facilities."",""sources"":{""clientCategories"":""https://www.mirico.co.uk/"",""companyDescription"":""https://www.mirico.co.uk/"",""geographicFocus"":""https://www.mirico.co.uk/contact-us"",""keyExecutives"":""https://www.mirico.co.uk/team"",""productDescription"":""https://www.mirico.co.uk/the-solution""},""websiteURL"":""https://mirico.co.uk/""}" -Farmitoo,https://www.farmitoo.com/fr/,"Bpifrance, IXO Private Equity, Ventech",farmitoo.com,https://www.linkedin.com/company/farmitoo/,"{""seniorLeadership"":[{""fullName"":""Thibaut Gouny"",""title"":""Chief Operating Officer"",""profileURL"":""https://www.linkedin.com/in/thibaut-gouny""}]}","{""seniorLeadership"":[{""fullName"":""Thibaut Gouny"",""title"":""Chief Operating Officer"",""profileURL"":""https://www.linkedin.com/in/thibaut-gouny""}]}","{ - ""websiteURL"": ""https://www.farmitoo.com/fr/"", - ""companyDescription"": ""At Farmitoo, we believe that the Internet can create value for farmers. By linking them directly with the manufacturers of agricultural equipment, we allow them to have access to a large number of brands of equipment and to have the opportunity to compare different products and their prices. Our proximity to the manufacturer allows us to find the best rates for farmers, and to negotiate for them. Farmitoo is an online platform founded in 2017 providing farm equipment directly from manufacturers. It operates in agriculture, e-commerce, farming machinery, and manufacturing sectors."", - ""productDescription"": ""Farmitoo offers an online purchase platform for farm equipment directly from manufacturers. Their products include agricultural machinery and parts, technical parts, lifting equipment, tree and market gardening equipment, wine-growing equipment, agricultural product processing equipment, agricultural personal protective equipment (PPE), tractor parts, and harvester parts."", - ""clientCategories"": [""Farmers"", ""Agricultural businesses""], - ""sectorDescription"": ""Operates in the e-commerce sector specializing in agricultural machinery and farming equipment."", - ""geographicFocus"": ""HQ: 52 Boulevard Voltaire, Paris, Île-de-France 75011, France; Sales Focus: Europe"", - ""keyExecutives"": [ - {""name"": ""Mathilde Lefrancois"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU""}, - {""name"": ""Gregoire Casoetto"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU""}, - {""name"": ""Denis Fayolle"", ""title"": ""Co-Founder and Board Member"", ""sourceUrl"": ""https://www.linkedin.com/company/farmitoo""}, - {""name"": ""Pierre Ducoudray"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.linkedin.com/company/farmitoo""} - ], - ""linkedDocuments"": [""https://www.farmitoo.com/documents/jobs/business_developer_intern_germany.pdf?srsltid=AfmBOopHyIl2URAXWzVfZH7aBrsT6w9xjaM6sCvWAwudWHGROE_mUDWM""], - ""researcherNotes"": ""The company's official website provides limited direct textual content on company mission and leadership, thus external reputable sources were used. Only one relevant linked PDF document was found, an internship job description unrelated to core company offerings."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/farmitoo"", - ""productDescription"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"", - ""clientCategories"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"", - ""geographicFocus"": ""https://www.linkedin.com/company/farmitoo"", - ""keyExecutives"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"" - } -}","{ - ""websiteURL"": ""https://www.farmitoo.com/fr/"", - ""companyDescription"": ""At Farmitoo, we believe that the Internet can create value for farmers. By linking them directly with the manufacturers of agricultural equipment, we allow them to have access to a large number of brands of equipment and to have the opportunity to compare different products and their prices. Our proximity to the manufacturer allows us to find the best rates for farmers, and to negotiate for them. Farmitoo is an online platform founded in 2017 providing farm equipment directly from manufacturers. It operates in agriculture, e-commerce, farming machinery, and manufacturing sectors."", - ""productDescription"": ""Farmitoo offers an online purchase platform for farm equipment directly from manufacturers. Their products include agricultural machinery and parts, technical parts, lifting equipment, tree and market gardening equipment, wine-growing equipment, agricultural product processing equipment, agricultural personal protective equipment (PPE), tractor parts, and harvester parts."", - ""clientCategories"": [""Farmers"", ""Agricultural businesses""], - ""sectorDescription"": ""Operates in the e-commerce sector specializing in agricultural machinery and farming equipment."", - ""geographicFocus"": ""HQ: 52 Boulevard Voltaire, Paris, Île-de-France 75011, France; Sales Focus: Europe"", - ""keyExecutives"": [ - {""name"": ""Mathilde Lefrancois"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU""}, - {""name"": ""Gregoire Casoetto"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU""}, - {""name"": ""Denis Fayolle"", ""title"": ""Co-Founder and Board Member"", ""sourceUrl"": ""https://www.linkedin.com/company/farmitoo""}, - {""name"": ""Pierre Ducoudray"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.linkedin.com/company/farmitoo""} - ], - ""linkedDocuments"": [""https://www.farmitoo.com/documents/jobs/business_developer_intern_germany.pdf?srsltid=AfmBOopHyIl2URAXWzVfZH7aBrsT6w9xjaM6sCvWAwudWHGROE_mUDWM""], - ""researcherNotes"": ""The company's official website provides limited direct textual content on company mission and leadership, thus external reputable sources were used. Only one relevant linked PDF document was found, an internship job description unrelated to core company offerings."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/farmitoo"", - ""productDescription"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"", - ""clientCategories"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"", - ""geographicFocus"": ""https://www.linkedin.com/company/farmitoo"", - ""keyExecutives"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"" - } -}",[],"{ - ""websiteURL"": ""https://www.farmitoo.com"", - ""companyDescription"": ""At Farmitoo, we believe that the Internet can create value for farmers by linking them directly with manufacturers of agricultural equipment. Founded in 2017, Farmitoo provides a large selection of agricultural machinery and equipment brands via an online platform. Their direct relationship with manufacturers enables competitive pricing and negotiation benefits for farmers and agricultural businesses across Europe."", - ""productDescription"": ""Farmitoo offers an online marketplace for purchasing farm equipment directly from manufacturers. Their product range includes agricultural machinery and parts, technical components, lifting equipment, tree and market gardening tools, wine-growing equipment, agricultural product processing machines, personal protective equipment (PPE) for agriculture, as well as tractor and harvester parts. The platform enables buyers to compare various products and prices efficiently."", - ""clientCategories"": [""Farmers"", ""Agricultural Businesses""], - ""sectorDescription"": ""E-commerce specializing in agricultural machinery and farming equipment serving the European market."", - ""geographicFocus"": ""Primary sales focus on Europe, headquartered in Paris, France."", - ""keyExecutives"": [ - { - ""name"": ""Mathilde Lefrancois"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"" - }, - { - ""name"": ""Gregoire Casoetto"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"" - }, - { - ""name"": ""Denis Fayolle"", - ""title"": ""Co-Founder and Board Member"", - ""sourceUrl"": ""https://www.linkedin.com/company/farmitoo"" - }, - { - ""name"": ""Pierre Ducoudray"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.linkedin.com/company/farmitoo"" - }, - { - ""name"": ""Thibaut Gouny"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/thibaut-gouny"" - } - ], - ""researcherNotes"": ""The company was disambiguated confidently by matching domain, Paris HQ, industry keywords, and founding year (2017). The main leadership team was augmented with the COO, Thibaut Gouny, from LinkedIn. Geographic focus is aligned with the company website and LinkedIn data showing sales focus in Europe. No major important fields were missing at end of research.\nSources used include the official website, LinkedIn org/exec profiles, and a reputable business data provider."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/farmitoo"", - ""productDescription"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"", - ""clientCategories"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"", - ""geographicFocus"": ""https://www.linkedin.com/company/farmitoo"", - ""keyExecutives"": ""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Businesses""],""companyDescription"":""At Farmitoo, we believe that the Internet can create value for farmers by linking them directly with manufacturers of agricultural equipment. Founded in 2017, Farmitoo provides a large selection of agricultural machinery and equipment brands via an online platform. Their direct relationship with manufacturers enables competitive pricing and negotiation benefits for farmers and agricultural businesses across Europe."",""geographicFocus"":""Primary sales focus on Europe, headquartered in Paris, France."",""keyExecutives"":[{""name"":""Mathilde Lefrancois"",""sourceUrl"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""title"":""Co-Founder""},{""name"":""Gregoire Casoetto"",""sourceUrl"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""title"":""Co-Founder""},{""name"":""Denis Fayolle"",""sourceUrl"":""https://www.linkedin.com/company/farmitoo"",""title"":""Co-Founder and Board Member""},{""name"":""Pierre Ducoudray"",""sourceUrl"":""https://www.linkedin.com/company/farmitoo"",""title"":""CTO""},{""name"":""Thibaut Gouny"",""sourceUrl"":""https://www.linkedin.com/in/thibaut-gouny"",""title"":""Chief Operating Officer""}],""missingImportantFields"":[],""productDescription"":""Farmitoo offers an online marketplace for purchasing farm equipment directly from manufacturers. Their product range includes agricultural machinery and parts, technical components, lifting equipment, tree and market gardening tools, wine-growing equipment, agricultural product processing machines, personal protective equipment (PPE) for agriculture, as well as tractor and harvester parts. The platform enables buyers to compare various products and prices efficiently."",""researcherNotes"":""The company was disambiguated confidently by matching domain, Paris HQ, industry keywords, and founding year (2017). The main leadership team was augmented with the COO, Thibaut Gouny, from LinkedIn. Geographic focus is aligned with the company website and LinkedIn data showing sales focus in Europe. No major important fields were missing at end of research.\nSources used include the official website, LinkedIn org/exec profiles, and a reputable business data provider."",""sectorDescription"":""E-commerce specializing in agricultural machinery and farming equipment serving the European market."",""sources"":{""clientCategories"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""companyDescription"":""https://www.linkedin.com/company/farmitoo"",""geographicFocus"":""https://www.linkedin.com/company/farmitoo"",""keyExecutives"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""productDescription"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU""},""websiteURL"":""https://www.farmitoo.com""}","Correctness: 90% Completeness: 85% The core facts about Farmitoo are mostly accurate and well-supported: it is an e-commerce platform focused on agricultural machinery, founded around 2017 (sources vary between 2016 and 2018 but 2017 is commonly cited)[1][2][3]. Farmitoo is headquartered in France, with some sources specifying Cheniers[1] rather than Paris, which may suggest slight imprecision on exact HQ location but correct country focus. The company indeed serves European farmers and agri-businesses through an online marketplace offering direct manufacturer sales of a wide range of agricultural equipment and parts[4]. Key executives including Co-Founders Mathilde Lefrancois, Gregoire Casoetto, Denis Fayolle, CTO Pierre Ducoudray, and COO Thibaut Gouny are confirmed via LinkedIn and business directories. Recent funding rounds (notably a €10M round in 2023) and ownership by Agryco as of early 2025 add relevant context not included originally, indicating growth and acquisition activity[1][4]. However, minor discrepancies appear in founding date and exact HQ details, and some recent developments such as acquisition by Agryco and specific employee count (~40 staff, not 2-10 as older data stated) are missing from the original data[1][4]. URLs: https://goldengatebinder.com/farmitoo.html, https://agfundernews.com/farmitoo-ag-equipment-marketplace-scores-12-million-in-fresh-funding, https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU, https://www.linkedin.com/company/farmitoo","{""clientCategories"":[""Farmers"",""Agricultural businesses""],""companyDescription"":""At Farmitoo, we believe that the Internet can create value for farmers. By linking them directly with the manufacturers of agricultural equipment, we allow them to have access to a large number of brands of equipment and to have the opportunity to compare different products and their prices. Our proximity to the manufacturer allows us to find the best rates for farmers, and to negotiate for them. Farmitoo is an online platform founded in 2017 providing farm equipment directly from manufacturers. It operates in agriculture, e-commerce, farming machinery, and manufacturing sectors."",""geographicFocus"":""HQ: 52 Boulevard Voltaire, Paris, Île-de-France 75011, France; Sales Focus: Europe"",""keyExecutives"":[{""name"":""Mathilde Lefrancois"",""sourceUrl"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""title"":""Co-Founder""},{""name"":""Gregoire Casoetto"",""sourceUrl"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""title"":""Co-Founder""},{""name"":""Denis Fayolle"",""sourceUrl"":""https://www.linkedin.com/company/farmitoo"",""title"":""Co-Founder and Board Member""},{""name"":""Pierre Ducoudray"",""sourceUrl"":""https://www.linkedin.com/company/farmitoo"",""title"":""CTO""}],""linkedDocuments"":[""https://www.farmitoo.com/documents/jobs/business_developer_intern_germany.pdf?srsltid=AfmBOopHyIl2URAXWzVfZH7aBrsT6w9xjaM6sCvWAwudWHGROE_mUDWM""],""missingImportantFields"":[],""productDescription"":""Farmitoo offers an online purchase platform for farm equipment directly from manufacturers. Their products include agricultural machinery and parts, technical parts, lifting equipment, tree and market gardening equipment, wine-growing equipment, agricultural product processing equipment, agricultural personal protective equipment (PPE), tractor parts, and harvester parts."",""researcherNotes"":""The company's official website provides limited direct textual content on company mission and leadership, thus external reputable sources were used. Only one relevant linked PDF document was found, an internship job description unrelated to core company offerings."",""sectorDescription"":""Operates in the e-commerce sector specializing in agricultural machinery and farming equipment."",""sources"":{""clientCategories"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""companyDescription"":""https://www.linkedin.com/company/farmitoo"",""geographicFocus"":""https://www.linkedin.com/company/farmitoo"",""keyExecutives"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU"",""productDescription"":""https://tracxn.com/d/companies/farmitoo/__O8jXmfVcBPctjZAifbpPILLbyGqsi-FTbZJfyDjBBOU""},""websiteURL"":""https://www.farmitoo.com/fr/""}" -Revalue Nature,https://revalue.earth,"Ecosystem Integrity Fund, SJF Ventures",revalue.earth,https://www.linkedin.com/company/revalue-nature,"{""seniorLeadership"":[{""fullName"":""Stuart Rowland"",""title"":""Founder & CEO"",""linkedInProfile"":""https://linkedin.com/in/stuart-r-472830243""},{""fullName"":""Jade Bouhmouch"",""title"":""Chief Operating Officer"",""linkedInProfile"":""https://theorg.com/org/revalue-nature/org-chart/jade-bouhmouch""},{""fullName"":""Laura Sekula"",""title"":""COO & General Counsel"",""linkedInProfile"":""https://linkedin.com/in/laura-s-5946a29""},{""fullName"":""Laura S."",""title"":""VP Ops & General Counsel"",""linkedInProfile"":""https://theorg.com/org/revalue-nature/org-chart/laura-s""},{""fullName"":""Alexa Lord"",""title"":""Chief Portfolio Officer"",""linkedInProfile"":""https://linkedin.com/in/alexa-lord-45a043128""},{""fullName"":""Emily Birch"",""title"":""Chief of Staff"",""linkedInProfile"":""https://linkedin.com/in/emily--birch""},{""fullName"":""Nicolas L."",""title"":""Chief Data Scientist"",""linkedInProfile"":""https://theorg.com/org/revalue-nature/org-chart/nicolas-l""}]}","{""seniorLeadership"":[{""fullName"":""Stuart Rowland"",""title"":""Founder & CEO"",""linkedInProfile"":""https://linkedin.com/in/stuart-r-472830243""},{""fullName"":""Jade Bouhmouch"",""title"":""Chief Operating Officer"",""linkedInProfile"":""https://theorg.com/org/revalue-nature/org-chart/jade-bouhmouch""},{""fullName"":""Laura Sekula"",""title"":""COO & General Counsel"",""linkedInProfile"":""https://linkedin.com/in/laura-s-5946a29""},{""fullName"":""Laura S."",""title"":""VP Ops & General Counsel"",""linkedInProfile"":""https://theorg.com/org/revalue-nature/org-chart/laura-s""},{""fullName"":""Alexa Lord"",""title"":""Chief Portfolio Officer"",""linkedInProfile"":""https://linkedin.com/in/alexa-lord-45a043128""},{""fullName"":""Emily Birch"",""title"":""Chief of Staff"",""linkedInProfile"":""https://linkedin.com/in/emily--birch""},{""fullName"":""Nicolas L."",""title"":""Chief Data Scientist"",""linkedInProfile"":""https://theorg.com/org/revalue-nature/org-chart/nicolas-l""}]}","{ - ""websiteURL"": ""https://revalue.earth"", - ""companyDescription"": ""Revalue partners with project operators and capital investors to create radically better carbon credits that avoid, remove, and durably store CO2 while valuing nature. Their mission focuses on making carbon credits the planet can trust, employing advanced technologies like LiDAR, AI, eDNA, and dynamic baselines. They combine nature and engineering in a single landscape and emphasize a multidisciplinary team focused on impact over ego. Revalue's mission is to create the most cutting-edge and trusted nature-based carbon credits for the planet by protecting and restoring nature, reimagining nature credits, and fundamentally shifting the quality of these credits to surpass all expectations. The company is dedicated to designing nature credits that create a fundamental shift in quality and positive impact. Their vision is seeing nature regenerated at the planetary scale."", - ""productDescription"": ""Revalue partners with on-the-ground operators to develop high quality nature-based carbon projects, aiming to deliver high quality nature-based credits at scale. Their services include project financing, project and credit development, and credit marketing and sales. They provide financiers access to investment-ready carbon projects and help create carbon projects that meet high standards. Revalue delivers carbon credits that avoid, remove, and durably store CO2, prioritizing nature and communities, offering quality, transparency, and impact."", - ""clientCategories"": [ - ""Project operators"", - ""Capital investors"", - ""Government agencies"", - ""NGOs"", - ""Community groups"", - ""Private companies"", - ""Multi-stakeholder collaborations"" - ], - ""sectorDescription"": ""Operates in the environmental sector, specializing in the development and financing of high-quality nature-based carbon credits and carbon projects to combat climate change."", - ""geographicFocus"": ""Works globally with project operators from across 3 continents and 8+ countries; no specific headquarters location provided."", - ""keyExecutives"": [ - {""name"": ""Stuart Rowland, PhD"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Rebecca Kinsella, PhD"", ""title"": ""Business Operations Director"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Nicolas Loncle, PhD"", ""title"": ""Chief Data Scientist"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Ljeta Putane, PhD"", ""title"": ""Chief Operations Officer"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Lucia Garnett, PhD"", ""title"": ""Chief of Staff"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Youn Yee Poon, PhD"", ""title"": ""Commercial Director"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Laura Sekula, PhD"", ""title"": ""General Counsel"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit headquarters location or physical address was found on the website or contact page. The company operates globally but does not specify a primary headquarters."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.revalue.earth/our-people/about-us"", - ""productDescription"": ""https://www.revalue.earth/partner-with-us"", - ""clientCategories"": ""https://www.revalue.earth/partner-with-us"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.revalue.earth/our-people/team"" - } -}","{ - ""websiteURL"": ""https://revalue.earth"", - ""companyDescription"": ""Revalue partners with project operators and capital investors to create radically better carbon credits that avoid, remove, and durably store CO2 while valuing nature. Their mission focuses on making carbon credits the planet can trust, employing advanced technologies like LiDAR, AI, eDNA, and dynamic baselines. They combine nature and engineering in a single landscape and emphasize a multidisciplinary team focused on impact over ego. Revalue's mission is to create the most cutting-edge and trusted nature-based carbon credits for the planet by protecting and restoring nature, reimagining nature credits, and fundamentally shifting the quality of these credits to surpass all expectations. The company is dedicated to designing nature credits that create a fundamental shift in quality and positive impact. Their vision is seeing nature regenerated at the planetary scale."", - ""productDescription"": ""Revalue partners with on-the-ground operators to develop high quality nature-based carbon projects, aiming to deliver high quality nature-based credits at scale. Their services include project financing, project and credit development, and credit marketing and sales. They provide financiers access to investment-ready carbon projects and help create carbon projects that meet high standards. Revalue delivers carbon credits that avoid, remove, and durably store CO2, prioritizing nature and communities, offering quality, transparency, and impact."", - ""clientCategories"": [ - ""Project operators"", - ""Capital investors"", - ""Government agencies"", - ""NGOs"", - ""Community groups"", - ""Private companies"", - ""Multi-stakeholder collaborations"" - ], - ""sectorDescription"": ""Operates in the environmental sector, specializing in the development and financing of high-quality nature-based carbon credits and carbon projects to combat climate change."", - ""geographicFocus"": ""Works globally with project operators from across 3 continents and 8+ countries; no specific headquarters location provided."", - ""keyExecutives"": [ - {""name"": ""Stuart Rowland, PhD"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Rebecca Kinsella, PhD"", ""title"": ""Business Operations Director"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Nicolas Loncle, PhD"", ""title"": ""Chief Data Scientist"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Ljeta Putane, PhD"", ""title"": ""Chief Operations Officer"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Lucia Garnett, PhD"", ""title"": ""Chief of Staff"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Youn Yee Poon, PhD"", ""title"": ""Commercial Director"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""}, - {""name"": ""Laura Sekula, PhD"", ""title"": ""General Counsel"", ""sourceUrl"": ""https://www.revalue.earth/our-people/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit headquarters location or physical address was found on the website or contact page. The company operates globally but does not specify a primary headquarters."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.revalue.earth/our-people/about-us"", - ""productDescription"": ""https://www.revalue.earth/partner-with-us"", - ""clientCategories"": ""https://www.revalue.earth/partner-with-us"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.revalue.earth/our-people/team"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://revalue.earth"", - ""companyDescription"": ""Revalue partners with project operators and capital investors to create radically better carbon credits that avoid, remove, and durably store CO2 while valuing nature. Their mission focuses on making carbon credits the planet can trust, employing advanced technologies like LiDAR, AI, eDNA, and dynamic baselines. They combine nature and engineering in a single landscape and emphasize a multidisciplinary team focused on impact over ego. Revalue's mission is to create the most cutting-edge and trusted nature-based carbon credits for the planet by protecting and restoring nature, reimagining nature credits, and fundamentally shifting the quality of these credits to surpass all expectations. The company is dedicated to designing nature credits that create a fundamental shift in quality and positive impact. Their vision is seeing nature regenerated at the planetary scale."", - ""productDescription"": ""Revalue partners with on-the-ground operators to develop high quality nature-based carbon projects, aiming to deliver high quality nature-based credits at scale. Their services include project financing, project and credit development, and credit marketing and sales. They provide financiers access to investment-ready carbon projects and help create carbon projects that meet high standards. Revalue delivers carbon credits that avoid, remove, and durably store CO2, prioritizing nature and communities, offering quality, transparency, and impact."", - ""clientCategories"": [ - ""Project operators"", - ""Capital investors"", - ""Government agencies"", - ""NGOs"", - ""Community groups"", - ""Private companies"", - ""Multi-stakeholder collaborations"" - ], - ""sectorDescription"": ""Environmental services focused on the development and financing of high-quality nature-based carbon credits and project financing to combat climate change."", - ""geographicFocus"": ""Global operations working with project operators across 3 continents and 8+ countries; no specific headquarters location is publicly disclosed."", - ""keyExecutives"": [ - { - ""name"": ""Stuart Rowland, PhD"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - }, - { - ""name"": ""Rebecca Kinsella, PhD"", - ""title"": ""Business Operations Director"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - }, - { - ""name"": ""Nicolas Loncle, PhD"", - ""title"": ""Chief Data Scientist"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - }, - { - ""name"": ""Ljeta Putane, PhD"", - ""title"": ""Chief Operations Officer"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - }, - { - ""name"": ""Lucia Garnett, PhD"", - ""title"": ""Chief of Staff"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - }, - { - ""name"": ""Youn Yee Poon, PhD"", - ""title"": ""Commercial Director"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - }, - { - ""name"": ""Laura Sekula, PhD"", - ""title"": ""General Counsel"", - ""sourceUrl"": ""https://www.revalue.earth/our-people/team"" - } - ], - ""researcherNotes"": ""The geographic focus is described as global, with operations spanning multiple continents and countries, but no specific headquarters or physical address is provided on the company website or official sources. Titles and senior leadership names align between the company website and LinkedIn data, confirming entity accuracy. Some discrepancy in COO role title exists: LinkedIn lists Jade Bouhmouch as COO whereas the company team page lists Ljeta Putane, PhD. The company emphasizes a multidisciplinary and global approach in nature-based carbon credit development."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.revalue.earth/our-people/about-us"", - ""productDescription"": ""https://www.revalue.earth/partner-with-us"", - ""clientCategories"": ""https://www.revalue.earth/partner-with-us"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.revalue.earth/our-people/team"" - } -}","{""clientCategories"":[""Project operators"",""Capital investors"",""Government agencies"",""NGOs"",""Community groups"",""Private companies"",""Multi-stakeholder collaborations""],""companyDescription"":""Revalue partners with project operators and capital investors to create radically better carbon credits that avoid, remove, and durably store CO2 while valuing nature. Their mission focuses on making carbon credits the planet can trust, employing advanced technologies like LiDAR, AI, eDNA, and dynamic baselines. They combine nature and engineering in a single landscape and emphasize a multidisciplinary team focused on impact over ego. Revalue's mission is to create the most cutting-edge and trusted nature-based carbon credits for the planet by protecting and restoring nature, reimagining nature credits, and fundamentally shifting the quality of these credits to surpass all expectations. The company is dedicated to designing nature credits that create a fundamental shift in quality and positive impact. Their vision is seeing nature regenerated at the planetary scale."",""geographicFocus"":""Global operations working with project operators across 3 continents and 8+ countries; no specific headquarters location is publicly disclosed."",""keyExecutives"":[{""name"":""Stuart Rowland, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Founder & CEO""},{""name"":""Rebecca Kinsella, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Business Operations Director""},{""name"":""Nicolas Loncle, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Chief Data Scientist""},{""name"":""Ljeta Putane, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Chief Operations Officer""},{""name"":""Lucia Garnett, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Chief of Staff""},{""name"":""Youn Yee Poon, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Commercial Director""},{""name"":""Laura Sekula, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""General Counsel""}],""missingImportantFields"":[],""productDescription"":""Revalue partners with on-the-ground operators to develop high quality nature-based carbon projects, aiming to deliver high quality nature-based credits at scale. Their services include project financing, project and credit development, and credit marketing and sales. They provide financiers access to investment-ready carbon projects and help create carbon projects that meet high standards. Revalue delivers carbon credits that avoid, remove, and durably store CO2, prioritizing nature and communities, offering quality, transparency, and impact."",""researcherNotes"":""The geographic focus is described as global, with operations spanning multiple continents and countries, but no specific headquarters or physical address is provided on the company website or official sources. Titles and senior leadership names align between the company website and LinkedIn data, confirming entity accuracy. Some discrepancy in COO role title exists: LinkedIn lists Jade Bouhmouch as COO whereas the company team page lists Ljeta Putane, PhD. The company emphasizes a multidisciplinary and global approach in nature-based carbon credit development."",""sectorDescription"":""Environmental services focused on the development and financing of high-quality nature-based carbon credits and project financing to combat climate change."",""sources"":{""clientCategories"":""https://www.revalue.earth/partner-with-us"",""companyDescription"":""https://www.revalue.earth/our-people/about-us"",""geographicFocus"":null,""keyExecutives"":""https://www.revalue.earth/our-people/team"",""productDescription"":""https://www.revalue.earth/partner-with-us""},""websiteURL"":""https://revalue.earth""}","Correctness: 95% Completeness: 90% The information about Revalue is largely accurate and consistent with multiple recent authoritative sources dated early 2025. The company is indeed focused on creating radically better nature-based carbon credits that avoid, remove, and durably store CO2 while prioritizing nature and communities; this is confirmed by the company website and interviews with Founder & CEO Stuart Rowland who emphasizes advanced technologies and multidisciplinary teams in achieving high-quality carbon credits (sources [1], [2], [4], [5]). The key executives, including Stuart Rowland as CEO and others with PhD titles, match those listed on the official team page. The geographic footprint is global with operations spanning multiple continents and countries but no disclosed headquarters, consistent with official sources (sources [3], [4]). The product offering described—project financing, credit development, marketing, and sales—is supported by company statements and external profiles (sources [1], [3], [4]). A minor discrepancy exists regarding the COO title: the company team page lists Ljeta Putane, PhD, while LinkedIn may list an alternative name, but official site info is primary here. Some specific details, such as exact headquarters location or more recent funding amounts beyond 2024 details, are either undisclosed or missing, slightly affecting completeness. Overall, the depiction aligns very well with verified and current company-controlled content as of early 2025. The following URLs provide direct support: https://www.revalue.earth/our-people/team, https://www.revalue.earth/partner-with-us, https://www.maddyness.com/uk/2025/01/14/revalue-the-nature-tech-dedicated-to-designing-cutting-edge-and-trusted-carbon-credit/, https://www.entrepreneur.com/en-gb/technology/rethinking-carbon-credits-a-new-era-for-climate-action/485996.","{""clientCategories"":[""Project operators"",""Capital investors"",""Government agencies"",""NGOs"",""Community groups"",""Private companies"",""Multi-stakeholder collaborations""],""companyDescription"":""Revalue partners with project operators and capital investors to create radically better carbon credits that avoid, remove, and durably store CO2 while valuing nature. Their mission focuses on making carbon credits the planet can trust, employing advanced technologies like LiDAR, AI, eDNA, and dynamic baselines. They combine nature and engineering in a single landscape and emphasize a multidisciplinary team focused on impact over ego. Revalue's mission is to create the most cutting-edge and trusted nature-based carbon credits for the planet by protecting and restoring nature, reimagining nature credits, and fundamentally shifting the quality of these credits to surpass all expectations. The company is dedicated to designing nature credits that create a fundamental shift in quality and positive impact. Their vision is seeing nature regenerated at the planetary scale."",""geographicFocus"":""Works globally with project operators from across 3 continents and 8+ countries; no specific headquarters location provided."",""keyExecutives"":[{""name"":""Stuart Rowland, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Founder & CEO""},{""name"":""Rebecca Kinsella, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Business Operations Director""},{""name"":""Nicolas Loncle, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Chief Data Scientist""},{""name"":""Ljeta Putane, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Chief Operations Officer""},{""name"":""Lucia Garnett, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Chief of Staff""},{""name"":""Youn Yee Poon, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""Commercial Director""},{""name"":""Laura Sekula, PhD"",""sourceUrl"":""https://www.revalue.earth/our-people/team"",""title"":""General Counsel""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Revalue partners with on-the-ground operators to develop high quality nature-based carbon projects, aiming to deliver high quality nature-based credits at scale. Their services include project financing, project and credit development, and credit marketing and sales. They provide financiers access to investment-ready carbon projects and help create carbon projects that meet high standards. Revalue delivers carbon credits that avoid, remove, and durably store CO2, prioritizing nature and communities, offering quality, transparency, and impact."",""researcherNotes"":""No explicit headquarters location or physical address was found on the website or contact page. The company operates globally but does not specify a primary headquarters."",""sectorDescription"":""Operates in the environmental sector, specializing in the development and financing of high-quality nature-based carbon credits and carbon projects to combat climate change."",""sources"":{""clientCategories"":""https://www.revalue.earth/partner-with-us"",""companyDescription"":""https://www.revalue.earth/our-people/about-us"",""geographicFocus"":null,""keyExecutives"":""https://www.revalue.earth/our-people/team"",""productDescription"":""https://www.revalue.earth/partner-with-us""},""websiteURL"":""https://revalue.earth""}" -Sundew,https://www.sundew.bio,"Export and Investment Fund, SOSV, The Yield Lab",sundew.bio,https://www.linkedin.com/company/sundew-aps,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.sundew.bio"", - ""companyDescription"": ""Sundew is a Danish blue biotech venture developing and selling biological products that solve major problems in aquatic ecosystems, specifically targeting issues in the blue economy sector. Their mission involves creating effective, economical, robust, and environmentally benign biological solutions for aquatic pests, diseases, hazardous algal blooms, and aquatic invasive species by using precision fermentation and engineered biology. They produce natural actives from marine organisms and high-performance microalgal delivery systems for RNA and antigens."", - ""productDescription"": ""Sundew offers a range of biological products including Ich-Away™, an all-natural treatment for protozoa in freshwater aquariums using Biokos®, a natural extract from fermented marine microbes. Key products and technologies include:\n- Biokos®: an advanced natural microbial extract killing protozoan parasites of fish such as Ich, Cryptocaryon, and Trichodina\n- Ich-Away™: tablet treatment for protozoan diseases safe for fish and invertebrates\n- Microalgal delivery systems for RNA and antigen bioencapsulation to protect aquaculture species and control invasive species. These products are environmentally benign, biofilter-friendly, and degrade naturally in water."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the blue biotech sector, developing biological solutions for aquatic ecosystem health, aquaculture, and invasive species control."", - ""geographicFocus"": ""HQ: Sundew ApS, Innovation House, Maskinvej 52, 8600 S\u00f8borg, Denmark; Additional office: Sundew BV, Bronland 10-D, 6708 WH Wageningen, Netherlands."", - ""keyExecutives"": [ - {""name"": ""Neil Goldsmith"", ""title"": ""Founder, CEO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""}, - {""name"": ""Andy Gardiner"", ""title"": ""Founder, CFO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""}, - {""name"": ""Jørgen Hansen"", ""title"": ""Founder, CTO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""}, - {""name"": ""Luc Gruner"", ""title"": ""COO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide specific information about client categories or distinct customer segments."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.sundew.bio/"", - ""productDescription"": ""https://www.sundew.bio/products-ichaway"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.sundew.bio/contact-us"", - ""keyExecutives"": ""https://www.sundew.bio/theteam"" - } -}","{ - ""websiteURL"": ""https://www.sundew.bio"", - ""companyDescription"": ""Sundew is a Danish blue biotech venture developing and selling biological products that solve major problems in aquatic ecosystems, specifically targeting issues in the blue economy sector. Their mission involves creating effective, economical, robust, and environmentally benign biological solutions for aquatic pests, diseases, hazardous algal blooms, and aquatic invasive species by using precision fermentation and engineered biology. They produce natural actives from marine organisms and high-performance microalgal delivery systems for RNA and antigens."", - ""productDescription"": ""Sundew offers a range of biological products including Ich-Away™, an all-natural treatment for protozoa in freshwater aquariums using Biokos®, a natural extract from fermented marine microbes. Key products and technologies include:\n- Biokos®: an advanced natural microbial extract killing protozoan parasites of fish such as Ich, Cryptocaryon, and Trichodina\n- Ich-Away™: tablet treatment for protozoan diseases safe for fish and invertebrates\n- Microalgal delivery systems for RNA and antigen bioencapsulation to protect aquaculture species and control invasive species. These products are environmentally benign, biofilter-friendly, and degrade naturally in water."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the blue biotech sector, developing biological solutions for aquatic ecosystem health, aquaculture, and invasive species control."", - ""geographicFocus"": ""HQ: Sundew ApS, Innovation House, Maskinvej 52, 8600 S\u00f8borg, Denmark; Additional office: Sundew BV, Bronland 10-D, 6708 WH Wageningen, Netherlands."", - ""keyExecutives"": [ - {""name"": ""Neil Goldsmith"", ""title"": ""Founder, CEO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""}, - {""name"": ""Andy Gardiner"", ""title"": ""Founder, CFO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""}, - {""name"": ""Jørgen Hansen"", ""title"": ""Founder, CTO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""}, - {""name"": ""Luc Gruner"", ""title"": ""COO"", ""sourceUrl"": ""https://www.sundew.bio/theteam""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide specific information about client categories or distinct customer segments."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.sundew.bio/"", - ""productDescription"": ""https://www.sundew.bio/products-ichaway"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.sundew.bio/contact-us"", - ""keyExecutives"": ""https://www.sundew.bio/theteam"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.sundew.bio"", - ""companyDescription"": ""Sundew is a Danish blue biotech venture developing and selling biological products that solve major problems in aquatic ecosystems, specifically targeting challenges in the blue economy sector valued at $1.5 trillion annually. The company uses precision fermentation and engineered biology to create natural, economical, robust, and environmentally benign solutions that address aquatic pests, diseases, hazardous algal blooms, and invasive species. Their technology leverages natural products from marine organisms and advanced microalgal delivery systems to protect aquaculture species and aquatic environments, aligning with strong ESG principles."", - ""productDescription"": ""Sundew offers biological products including Biokos®, a natural microbial extract effective against protozoan parasites such as Ich, Cryptocaryon, and Trichodina in fish. Its Ich-Away™ tablet uses Biokos® for safe freshwater aquarium treatment. The company also develops high-performance microalgal delivery systems for RNA and antigen bioencapsulation, targeting aquatic pests and diseases while being environmentally safe, biofilter-friendly, and naturally degradable in water."", - ""clientCategories"": [ - ""Aquaculture Producers"", - ""Fish Breeders"", - ""Aquarium Owners"", - ""Environmental Managers"", - ""Blue Economy Stakeholders"" - ], - ""sectorDescription"": ""Blue biotechnology company focused on biological solutions for the health and sustainability of aquatic ecosystems, aquaculture, and invasive species control."", - ""geographicFocus"": ""Headquartered in Søborg, Denmark, with an additional office in Wageningen, Netherlands, Sundew operates primarily in the European blue economy sector with a focus on sustainable aquatic ecosystem solutions."", - ""keyExecutives"": [ - { - ""name"": ""Neil Goldsmith"", - ""title"": ""Founder, CEO"", - ""sourceUrl"": ""https://www.sundew.bio/theteam"" - }, - { - ""name"": ""Andy Gardiner"", - ""title"": ""Founder, CFO"", - ""sourceUrl"": ""https://www.sundew.bio/theteam"" - }, - { - ""name"": ""Jørgen Hansen"", - ""title"": ""Founder, CTO"", - ""sourceUrl"": ""https://www.sundew.bio/theteam"" - }, - { - ""name"": ""Luc Gruner"", - ""title"": ""COO"", - ""sourceUrl"": ""https://www.sundew.bio/theteam"" - } - ], - ""researcherNotes"": ""Client categories were not specified on the company website or LinkedIn; categories were inferred from company sector and product focus. Geographic focus is primarily European based on HQ and office locations, with no explicit global footprint stated. No conflicting executive information was found. The CEO name differs from a 2024 page mentioning 'Giovanni' but the current source URL lists Neil Goldsmith as CEO, indicating a leadership change."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://app.dealroom.co/companies/sundew"", - ""productDescription"": ""https://www.sundew.bio/products-ichaway"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.sundew.bio/contact-us"", - ""keyExecutives"": ""https://www.sundew.bio/theteam"" - } -}","{""clientCategories"":[""Aquaculture Producers"",""Fish Breeders"",""Aquarium Owners"",""Environmental Managers"",""Blue Economy Stakeholders""],""companyDescription"":""Sundew is a Danish blue biotech venture developing and selling biological products that solve major problems in aquatic ecosystems, specifically targeting challenges in the blue economy sector valued at $1.5 trillion annually. The company uses precision fermentation and engineered biology to create natural, economical, robust, and environmentally benign solutions that address aquatic pests, diseases, hazardous algal blooms, and invasive species. Their technology leverages natural products from marine organisms and advanced microalgal delivery systems to protect aquaculture species and aquatic environments, aligning with strong ESG principles."",""geographicFocus"":""Headquartered in Søborg, Denmark, with an additional office in Wageningen, Netherlands, Sundew operates primarily in the European blue economy sector with a focus on sustainable aquatic ecosystem solutions."",""keyExecutives"":[{""name"":""Neil Goldsmith"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""Founder, CEO""},{""name"":""Andy Gardiner"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""Founder, CFO""},{""name"":""Jørgen Hansen"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""Founder, CTO""},{""name"":""Luc Gruner"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""COO""}],""missingImportantFields"":[],""productDescription"":""Sundew offers biological products including Biokos®, a natural microbial extract effective against protozoan parasites such as Ich, Cryptocaryon, and Trichodina in fish. Its Ich-Away™ tablet uses Biokos® for safe freshwater aquarium treatment. The company also develops high-performance microalgal delivery systems for RNA and antigen bioencapsulation, targeting aquatic pests and diseases while being environmentally safe, biofilter-friendly, and naturally degradable in water."",""researcherNotes"":""Client categories were not specified on the company website or LinkedIn; categories were inferred from company sector and product focus. Geographic focus is primarily European based on HQ and office locations, with no explicit global footprint stated. No conflicting executive information was found. The CEO name differs from a 2024 page mentioning 'Giovanni' but the current source URL lists Neil Goldsmith as CEO, indicating a leadership change."",""sectorDescription"":""Blue biotechnology company focused on biological solutions for the health and sustainability of aquatic ecosystems, aquaculture, and invasive species control."",""sources"":{""clientCategories"":null,""companyDescription"":""https://app.dealroom.co/companies/sundew"",""geographicFocus"":""https://www.sundew.bio/contact-us"",""keyExecutives"":""https://www.sundew.bio/theteam"",""productDescription"":""https://www.sundew.bio/products-ichaway""},""websiteURL"":""https://www.sundew.bio""}","Correctness: 98% Completeness: 95% - -The description of Sundew as a Danish blue biotech company focused on biological products addressing aquatic ecosystem challenges in the blue economy is accurate and well-supported by multiple sources including their official site and Dealroom, confirming the $1.5 trillion sector valuation and their use of precision fermentation and engineered biology to create natural, environmentally benign solutions such as Biokos® against fish parasites like Ich[2][4][1]. Leadership names Neil Goldsmith (CEO), Andy Gardiner (CFO), Jørgen Hansen (CTO), and Luc Gruner (COO) match the latest company team page, although a note about a previously different CEO name 'Giovanni' was found and explained as a leadership change[4]. The geographic focus on Denmark and the Netherlands is consistent with the corporate contact info and locations given[4]. The product description, including Biokos® and Ich-Away™ tablet for safe freshwater aquarium treatment, plus advanced microalgal delivery systems for RNA and antigen bioencapsulation targeting aquatic pests and diseases, aligns well with official sources[2][4][1]. The company’s commitment to ESG principles and recent funding round (€2.3 million) led by Danish EIFO is confirmed in the news[1]. Minor details such as client categories being inferred rather than explicitly stated explain slight confidence reduction. Overall, the information is thoroughly supported by multiple credible sources including Sundew’s official website, Dealroom, and recent news articles dated within the last 24 months, ensuring recency and accuracy. - -Sources: https://www.sundew.bio, https://app.dealroom.co/companies/sundew, https://www.eifo.dk/en/knowledge/news/danish-biotech-venture-raises-new-capital-to-address-aquatic-ecosystems/","{""clientCategories"":[],""companyDescription"":""Sundew is a Danish blue biotech venture developing and selling biological products that solve major problems in aquatic ecosystems, specifically targeting issues in the blue economy sector. Their mission involves creating effective, economical, robust, and environmentally benign biological solutions for aquatic pests, diseases, hazardous algal blooms, and aquatic invasive species by using precision fermentation and engineered biology. They produce natural actives from marine organisms and high-performance microalgal delivery systems for RNA and antigens."",""geographicFocus"":""HQ: Sundew ApS, Innovation House, Maskinvej 52, 8600 Søborg, Denmark; Additional office: Sundew BV, Bronland 10-D, 6708 WH Wageningen, Netherlands."",""keyExecutives"":[{""name"":""Neil Goldsmith"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""Founder, CEO""},{""name"":""Andy Gardiner"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""Founder, CFO""},{""name"":""Jørgen Hansen"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""Founder, CTO""},{""name"":""Luc Gruner"",""sourceUrl"":""https://www.sundew.bio/theteam"",""title"":""COO""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Sundew offers a range of biological products including Ich-Away™, an all-natural treatment for protozoa in freshwater aquariums using Biokos®, a natural extract from fermented marine microbes. Key products and technologies include:\n- Biokos®: an advanced natural microbial extract killing protozoan parasites of fish such as Ich, Cryptocaryon, and Trichodina\n- Ich-Away™: tablet treatment for protozoan diseases safe for fish and invertebrates\n- Microalgal delivery systems for RNA and antigen bioencapsulation to protect aquaculture species and control invasive species. These products are environmentally benign, biofilter-friendly, and degrade naturally in water."",""researcherNotes"":""The website does not provide specific information about client categories or distinct customer segments."",""sectorDescription"":""Operates in the blue biotech sector, developing biological solutions for aquatic ecosystem health, aquaculture, and invasive species control."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.sundew.bio/"",""geographicFocus"":""https://www.sundew.bio/contact-us"",""keyExecutives"":""https://www.sundew.bio/theteam"",""productDescription"":""https://www.sundew.bio/products-ichaway""},""websiteURL"":""https://www.sundew.bio""}" -ChainCraft,http://www.chaincraft.com,"Convent Capital, Horizon 3, PDENH, SHIFT Invest",chaincraft.com,https://www.linkedin.com/company/chaincraft,"{""seniorLeadership"":[{""name"":""Niels Van Stralen"",""title"":""Co-Founder and Director"",""profileURL"":""https://www.linkedin.com/company/chaincraft""}]}","{""seniorLeadership"":[{""name"":""Niels Van Stralen"",""title"":""Co-Founder and Director"",""profileURL"":""https://www.linkedin.com/company/chaincraft""}]}","{ - ""websiteURL"": ""http://www.chaincraft.com"", - ""companyDescription"": ""ChainCraft is a Dutch biotech company focused on developing proprietary fermentation processes to convert organic food waste into biochemicals, specifically circular and bio-based fatty acids. Their mission is to support transitioning from petrochemical compounds to sustainable chemicals through circular chemistry. Founded as a Wageningen University spin-off in 2010, the company progressed from lab scale proof of concept to commercial production by 2020, with scaling plans underway."", - ""productDescription"": ""ChainCraft offers a product range including: - C-Craft® for animal nutrition - X-Craft® for chemical derivatives - SensiCraft® for food, flavors & fragrances - AgriCraft® for agricultural applications. Their technology converts low-value food waste into medium-chain fatty acids used in nutrition, home & personal care, industrial chemicals, flavor & fragrance, lubricants, plasticizers, and solvents."", - ""clientCategories"": [""Animal nutrition"", ""Chemical industry"", ""Food flavoring & fragrances"", ""Agriculture"", ""Home & personal care""], - ""sectorDescription"": ""Operates in the biotech sector, specifically developing sustainable biochemicals from organic waste using proprietary fermentation technology to replace petrochemical chemicals."", - ""geographicFocus"": ""HQ: Basisweg 68, Amsterdam, Netherlands; Sales Focus: Primarily Europe with collaborations in the agri-food sector."", - ""keyExecutives"": [ - { - ""name"": ""Niels Van Stralen"", - ""title"": ""Co-Founder, Director"", - ""sourceUrl"": ""https://craft.co/chaincraft/executives"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official company website appears to have minimal or no accessible content, requiring reliance on third-party sources for accurate data. Contact page and team page contents were not found on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://worldbiomarketinsights.com/5-minutes-with-niels-van-stralen-ceo-of-chaincraft/"", - ""productDescription"": ""https://chaincraft.com/"", - ""clientCategories"": ""https://chaincraft.com/"", - ""geographicFocus"": ""https://www.bloomberg.com/profile/company/2149297D:NA"", - ""keyExecutives"": ""https://craft.co/chaincraft/executives"" - } -}","{ - ""websiteURL"": ""http://www.chaincraft.com"", - ""companyDescription"": ""ChainCraft is a Dutch biotech company focused on developing proprietary fermentation processes to convert organic food waste into biochemicals, specifically circular and bio-based fatty acids. Their mission is to support transitioning from petrochemical compounds to sustainable chemicals through circular chemistry. Founded as a Wageningen University spin-off in 2010, the company progressed from lab scale proof of concept to commercial production by 2020, with scaling plans underway."", - ""productDescription"": ""ChainCraft offers a product range including: - C-Craft® for animal nutrition - X-Craft® for chemical derivatives - SensiCraft® for food, flavors & fragrances - AgriCraft® for agricultural applications. Their technology converts low-value food waste into medium-chain fatty acids used in nutrition, home & personal care, industrial chemicals, flavor & fragrance, lubricants, plasticizers, and solvents."", - ""clientCategories"": [""Animal nutrition"", ""Chemical industry"", ""Food flavoring & fragrances"", ""Agriculture"", ""Home & personal care""], - ""sectorDescription"": ""Operates in the biotech sector, specifically developing sustainable biochemicals from organic waste using proprietary fermentation technology to replace petrochemical chemicals."", - ""geographicFocus"": ""HQ: Basisweg 68, Amsterdam, Netherlands; Sales Focus: Primarily Europe with collaborations in the agri-food sector."", - ""keyExecutives"": [ - { - ""name"": ""Niels Van Stralen"", - ""title"": ""Co-Founder, Director"", - ""sourceUrl"": ""https://craft.co/chaincraft/executives"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official company website appears to have minimal or no accessible content, requiring reliance on third-party sources for accurate data. Contact page and team page contents were not found on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://worldbiomarketinsights.com/5-minutes-with-niels-van-stralen-ceo-of-chaincraft/"", - ""productDescription"": ""https://chaincraft.com/"", - ""clientCategories"": ""https://chaincraft.com/"", - ""geographicFocus"": ""https://www.bloomberg.com/profile/company/2149297D:NA"", - ""keyExecutives"": ""https://craft.co/chaincraft/executives"" - } -}",[],"{ - ""websiteURL"": ""https://www.chaincraft.com"", - ""companyDescription"": ""ChainCraft is a Dutch biotechnology company founded in 2010 as a spin-off from Wageningen University, specializing in proprietary fermentation processes that convert organic food waste into circular, bio-based medium-chain fatty acids. Their mission supports transitioning from petrochemical-based chemicals to sustainable, circular alternatives. The company has scaled from lab proofs to commercial production by 2020 and aims to lead in circular chemical production for multiple industries."", - ""productDescription"": ""ChainCraft produces a range of bio-based products derived from organic food waste fermentation, including C-Craft® for animal nutrition, X-Craft® for chemical derivatives, SensiCraft® for food, flavors & fragrances, and AgriCraft® for agricultural uses. These products are medium-chain fatty acids used as sustainable ingredients in nutrition, home and personal care, industrial chemicals, lubricants, plasticizers, solvents, flavors, and fragrances."", - ""clientCategories"": [ - ""Animal Nutrition"", - ""Chemical Industry"", - ""Food Flavoring & Fragrances"", - ""Agriculture"", - ""Home & Personal Care"" - ], - ""sectorDescription"": ""Biotechnology company specializing in sustainable biochemicals produced via fermentation of organic waste streams to replace traditional petrochemical chemicals."", - ""geographicFocus"": ""Headquartered in Amsterdam, Netherlands, ChainCraft primarily serves the European market with active collaborations across the agri-food and biochemical sectors."", - ""keyExecutives"": [ - { - ""name"": ""Niels Van Stralen"", - ""title"": ""Co-Founder and Director"", - ""sourceUrl"": ""https://craft.co/chaincraft/executives"" - }, - { - ""name"": ""Marc den Hartog"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://businessforgoodpodcast.com/episodes/168-marc-den-hartog-chaincraft-converting-food-waste-into-sustainable-chemicals"" - } - ], - ""researcherNotes"": ""The company is a Wageningen University spin-off founded in 2010, with HQ in Amsterdam, confirming correct entity disambiguation. The official website has limited accessible content; complementary executive information was obtained from LinkedIn and secondary sources. Marc den Hartog is identified as CEO as of recent interviews, in addition to co-founder/director Niels Van Stralen. Geographic focus is primarily Europe, consistent across sources. No regulatory filings found explicitly for further detail."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://worldbiomarketinsights.com/5-minutes-with-niels-van-stralen-ceo-of-chaincraft/"", - ""productDescription"": ""https://chaincraft.com/"", - ""clientCategories"": ""https://chaincraft.com/"", - ""geographicFocus"": ""https://www.bloomberg.com/profile/company/2149297D:NA"", - ""keyExecutives"": ""https://craft.co/chaincraft/executives"" - } -}","{""clientCategories"":[""Animal Nutrition"",""Chemical Industry"",""Food Flavoring & Fragrances"",""Agriculture"",""Home & Personal Care""],""companyDescription"":""ChainCraft is a Dutch biotechnology company founded in 2010 as a spin-off from Wageningen University, specializing in proprietary fermentation processes that convert organic food waste into circular, bio-based medium-chain fatty acids. Their mission supports transitioning from petrochemical-based chemicals to sustainable, circular alternatives. The company has scaled from lab proofs to commercial production by 2020 and aims to lead in circular chemical production for multiple industries."",""geographicFocus"":""Headquartered in Amsterdam, Netherlands, ChainCraft primarily serves the European market with active collaborations across the agri-food and biochemical sectors."",""keyExecutives"":[{""name"":""Niels Van Stralen"",""sourceUrl"":""https://craft.co/chaincraft/executives"",""title"":""Co-Founder and Director""},{""name"":""Marc den Hartog"",""sourceUrl"":""https://businessforgoodpodcast.com/episodes/168-marc-den-hartog-chaincraft-converting-food-waste-into-sustainable-chemicals"",""title"":""Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""ChainCraft produces a range of bio-based products derived from organic food waste fermentation, including C-Craft® for animal nutrition, X-Craft® for chemical derivatives, SensiCraft® for food, flavors & fragrances, and AgriCraft® for agricultural uses. These products are medium-chain fatty acids used as sustainable ingredients in nutrition, home and personal care, industrial chemicals, lubricants, plasticizers, solvents, flavors, and fragrances."",""researcherNotes"":""The company is a Wageningen University spin-off founded in 2010, with HQ in Amsterdam, confirming correct entity disambiguation. The official website has limited accessible content; complementary executive information was obtained from LinkedIn and secondary sources. Marc den Hartog is identified as CEO as of recent interviews, in addition to co-founder/director Niels Van Stralen. Geographic focus is primarily Europe, consistent across sources. No regulatory filings found explicitly for further detail."",""sectorDescription"":""Biotechnology company specializing in sustainable biochemicals produced via fermentation of organic waste streams to replace traditional petrochemical chemicals."",""sources"":{""clientCategories"":""https://chaincraft.com/"",""companyDescription"":""https://worldbiomarketinsights.com/5-minutes-with-niels-van-stralen-ceo-of-chaincraft/"",""geographicFocus"":""https://www.bloomberg.com/profile/company/2149297D:NA"",""keyExecutives"":""https://craft.co/chaincraft/executives"",""productDescription"":""https://chaincraft.com/""},""websiteURL"":""https://www.chaincraft.com""}","Correctness: 98% Completeness: 90% The information about ChainCraft is highly accurate and well supported by multiple recent and authoritative sources. ChainCraft is a Dutch biotechnology company founded in 2010 as a spin-off from Wageningen University, specializing in producing medium-chain fatty acids via proprietary fermentation of organic food waste, which aligns with its mission to replace petrochemical-based chemicals with sustainable, circular alternatives[2][4][5]. The company is headquartered in Amsterdam and primarily serves the European market, with plans to build its first commercial fermentation factory in the Northern Netherlands, expanding beyond its demo facility in Amsterdam[1][3][4]. Leadership details confirm Niels van Stralen as founder and CEO; while some sources list him CEO, other executive titles such as Marc den Hartog’s CEO role were not widely corroborated in the freshest sources, slightly lowering completeness[3][4]. The product portfolio accurately covers C-Craft® (animal nutrition), X-Craft® (chemical derivatives), SensiCraft® (food, flavors & fragrances), and AgriCraft® (agricultural applications) based on company statements[5]. The description of ChainCraft’s fermentation process, scale-up progress, and industry collaborations is consistent across sources. Missing are explicit regulatory filings or detailed funding history besides the €11M raise announced recently, which modestly restricts completeness[3][4]. Overall, the depiction is factually precise and includes key aspects of ChainCraft’s business, leadership as of 2023-2025, and strategic scope with validated URLs including the official site, Bloomberg, Wageningen University reporting, and industry databases. -https://chaincraft.com/our-company/ -https://epca.eu/company/chaincraft -https://northerntimes.nl/biotech-company-chooses-northern-netherlands-for-first-commercial-fermentation-factory/ -https://www.wur.nl/en/article/eic-accelerator-grant-chaincraft.htm -https://siliconcanals.com/chaincraft-raises-11m/","{""clientCategories"":[""Animal nutrition"",""Chemical industry"",""Food flavoring & fragrances"",""Agriculture"",""Home & personal care""],""companyDescription"":""ChainCraft is a Dutch biotech company focused on developing proprietary fermentation processes to convert organic food waste into biochemicals, specifically circular and bio-based fatty acids. Their mission is to support transitioning from petrochemical compounds to sustainable chemicals through circular chemistry. Founded as a Wageningen University spin-off in 2010, the company progressed from lab scale proof of concept to commercial production by 2020, with scaling plans underway."",""geographicFocus"":""HQ: Basisweg 68, Amsterdam, Netherlands; Sales Focus: Primarily Europe with collaborations in the agri-food sector."",""keyExecutives"":[{""name"":""Niels Van Stralen"",""sourceUrl"":""https://craft.co/chaincraft/executives"",""title"":""Co-Founder, Director""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""ChainCraft offers a product range including: - C-Craft® for animal nutrition - X-Craft® for chemical derivatives - SensiCraft® for food, flavors & fragrances - AgriCraft® for agricultural applications. Their technology converts low-value food waste into medium-chain fatty acids used in nutrition, home & personal care, industrial chemicals, flavor & fragrance, lubricants, plasticizers, and solvents."",""researcherNotes"":""The official company website appears to have minimal or no accessible content, requiring reliance on third-party sources for accurate data. Contact page and team page contents were not found on the site."",""sectorDescription"":""Operates in the biotech sector, specifically developing sustainable biochemicals from organic waste using proprietary fermentation technology to replace petrochemical chemicals."",""sources"":{""clientCategories"":""https://chaincraft.com/"",""companyDescription"":""https://worldbiomarketinsights.com/5-minutes-with-niels-van-stralen-ceo-of-chaincraft/"",""geographicFocus"":""https://www.bloomberg.com/profile/company/2149297D:NA"",""keyExecutives"":""https://craft.co/chaincraft/executives"",""productDescription"":""https://chaincraft.com/""},""websiteURL"":""http://www.chaincraft.com""}" -Nofence,http://www.nofence.no/en,"Ferd, Pelican Ag, Sandwater",nofence.no,https://www.linkedin.com/company/nofence,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.nofence.no/en"", - ""companyDescription"": ""Nofence builds technology for farmers with 10+ years of experience, offering GPS-enabled virtual fencing solutions for livestock management. Their patented PastureGuard system uses solar-powered GPS collars and a mobile app to replace traditional fences, allowing flexible boundary control and real-time monitoring. Mission: To empower farmers with profitable and sustainable livestock management that supports natural grazing behavior, respecting farming rhythms and nature's wisdom."", - ""productDescription"": ""Nofence offers virtual fencing products for cattle, sheep, and goats with two collar types: Cattle Collar (tough, durable for cattle) and Sheep & Goat Collar (smaller, lighter). The collars feature solar cells, a rechargeable battery, Bluetooth, motion sensor, mobile network (2G/4G), and GPS receiver. Products include collars with a 5-year warranty, chargers, batteries, and subscriptions. Key features include no base stations or buried wires, simple smartphone app setup, and support for smart pasture management."", - ""clientCategories"": [""Farmers"", ""Livestock Owners""], - ""sectorDescription"": ""Operates in the agricultural technology (AgTech) sector, specializing in GPS-enabled virtual fencing and livestock management solutions."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Norway, United Kingdom, Ireland, United States, Spain, European Union, France"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://nofence.no/legal/product-and-subscription-terms-2025-01-23"",""https://nofence.no/en-us/legal-overview"",""https://nofence.no/legal/privacy-policy"",""https://nofence.no/en-us/legal/warranty-policy-2025-01-07""], - ""researcherNotes"": ""No specific headquarters address or detailed leadership information is provided on the website's English pages. Leadership section was not found."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""http://www.nofence.no/en"", - ""productDescription"": ""https://nofence.no/en-us/pricing"", - ""clientCategories"": ""https://nofence.no/kundehistorier"", - ""geographicFocus"": ""http://www.nofence.no/en"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.nofence.no/en"", - ""companyDescription"": ""Nofence builds technology for farmers with 10+ years of experience, offering GPS-enabled virtual fencing solutions for livestock management. Their patented PastureGuard system uses solar-powered GPS collars and a mobile app to replace traditional fences, allowing flexible boundary control and real-time monitoring. Mission: To empower farmers with profitable and sustainable livestock management that supports natural grazing behavior, respecting farming rhythms and nature's wisdom."", - ""productDescription"": ""Nofence offers virtual fencing products for cattle, sheep, and goats with two collar types: Cattle Collar (tough, durable for cattle) and Sheep & Goat Collar (smaller, lighter). The collars feature solar cells, a rechargeable battery, Bluetooth, motion sensor, mobile network (2G/4G), and GPS receiver. Products include collars with a 5-year warranty, chargers, batteries, and subscriptions. Key features include no base stations or buried wires, simple smartphone app setup, and support for smart pasture management."", - ""clientCategories"": [""Farmers"", ""Livestock Owners""], - ""sectorDescription"": ""Operates in the agricultural technology (AgTech) sector, specializing in GPS-enabled virtual fencing and livestock management solutions."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Norway, United Kingdom, Ireland, United States, Spain, European Union, France"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://nofence.no/legal/product-and-subscription-terms-2025-01-23"",""https://nofence.no/en-us/legal-overview"",""https://nofence.no/legal/privacy-policy"",""https://nofence.no/en-us/legal/warranty-policy-2025-01-07""], - ""researcherNotes"": ""No specific headquarters address or detailed leadership information is provided on the website's English pages. Leadership section was not found."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""http://www.nofence.no/en"", - ""productDescription"": ""https://nofence.no/en-us/pricing"", - ""clientCategories"": ""https://nofence.no/kundehistorier"", - ""geographicFocus"": ""http://www.nofence.no/en"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.nofence.no"", - ""companyDescription"": ""Nofence is a pioneering agritech company with over 10 years of experience, specializing in GPS-enabled virtual fencing solutions that help farmers manage livestock more sustainably and profitably. Leveraging patented technology, Nofence's PastureGuard system replaces traditional physical fences with solar-powered GPS collars and a mobile app, allowing flexible boundary control and real-time monitoring. Their mission is to empower farmers to support natural grazing behaviors and farming rhythms while respecting nature's balance."", - ""productDescription"": ""Nofence provides virtual fencing products designed for cattle, sheep, and goats via two collar types: a tough, durable Cattle Collar and a smaller, lighter Sheep & Goat Collar. Each collar integrates solar cells, rechargeable batteries, Bluetooth, motion sensors, mobile network connectivity (2G/4G), and GPS. Offered with a 5-year warranty, the system requires no base stations or buried wires and is managed through a simple smartphone app that supports smart pasture and livestock management."", - ""clientCategories"": [ - ""Farmers"", - ""Livestock Owners"" - ], - ""sectorDescription"": ""Agricultural technology (AgTech) firm specializing in GPS-based virtual fencing and advanced livestock management solutions."", - ""geographicFocus"": ""Primary sales focus includes Norway, United Kingdom, Ireland, United States, Spain, France, and the wider European Union."", - ""keyExecutives"": [], - ""researcherNotes"": ""The exact headquarters address is available as Evjevegen 8, 6631 Batnfjordsøra, Norway, confirmed from an external business directory. However, no detailed or verified senior leadership information was found on the company website or LinkedIn profiles. The absence of listed key executives is noted, consistent with the company sources. The website domain is confirmed as https://www.nofence.no, which aligns with the company identity. Sources include businessnorway.com and official company pages."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.nofence.no/en-us/about-us"", - ""productDescription"": ""https://nofence.no/en-us/pricing"", - ""clientCategories"": ""https://nofence.no/kundehistorier"", - ""geographicFocus"": ""https://businessnorway.com/company/nofence-as"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Farmers"",""Livestock Owners""],""companyDescription"":""Nofence is a pioneering agritech company with over 10 years of experience, specializing in GPS-enabled virtual fencing solutions that help farmers manage livestock more sustainably and profitably. Leveraging patented technology, Nofence's PastureGuard system replaces traditional physical fences with solar-powered GPS collars and a mobile app, allowing flexible boundary control and real-time monitoring. Their mission is to empower farmers to support natural grazing behaviors and farming rhythms while respecting nature's balance."",""geographicFocus"":""Primary sales focus includes Norway, United Kingdom, Ireland, United States, Spain, France, and the wider European Union."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Nofence provides virtual fencing products designed for cattle, sheep, and goats via two collar types: a tough, durable Cattle Collar and a smaller, lighter Sheep & Goat Collar. Each collar integrates solar cells, rechargeable batteries, Bluetooth, motion sensors, mobile network connectivity (2G/4G), and GPS. Offered with a 5-year warranty, the system requires no base stations or buried wires and is managed through a simple smartphone app that supports smart pasture and livestock management."",""researcherNotes"":""The exact headquarters address is available as Evjevegen 8, 6631 Batnfjordsøra, Norway, confirmed from an external business directory. However, no detailed or verified senior leadership information was found on the company website or LinkedIn profiles. The absence of listed key executives is noted, consistent with the company sources. The website domain is confirmed as https://www.nofence.no, which aligns with the company identity. Sources include businessnorway.com and official company pages."",""sectorDescription"":""Agricultural technology (AgTech) firm specializing in GPS-based virtual fencing and advanced livestock management solutions."",""sources"":{""clientCategories"":""https://nofence.no/kundehistorier"",""companyDescription"":""https://www.nofence.no/en-us/about-us"",""geographicFocus"":""https://businessnorway.com/company/nofence-as"",""keyExecutives"":null,""productDescription"":""https://nofence.no/en-us/pricing""},""websiteURL"":""https://www.nofence.no""}","Correctness: 95% Completeness: 90% The information provided about Nofence aligns well with verified sources. Nofence is indeed a Norwegian agritech company founded in 2011 by Oscar Hovde, specializing in GPS-based virtual fencing for livestock, including cattle, sheep, and goats, using solar-powered GPS collars and a smartphone app for flexible, wire-free herd management[1][3][4]. Their product includes two collar types with integrated solar cells, rechargeable batteries, GPS, Bluetooth, motion sensors, and mobile network connectivity (2G/4G), offered with a 5-year warranty and no physical base stations required[1][4]. Nofence's primary markets include Norway, the UK, Ireland, the US, Spain, France, and the EU more broadly[2][3]. The company's headquarters is confirmed at Evjevegen 8, 6631 Batnfjordsøra, Norway, which is consistent with external business directories[2]. However, there is an absence of publicly available detailed information on their key executives in company sources or LinkedIn, which reduces completeness[1][2]. Additionally, some minor details like precise funding rounds remain sparse or partially unclear, though their valuation and employee count (~51-200) are supported[2]. Overall, the description is factually strong with minor omissions regarding leadership and detailed funding information. Sources include official website, Irish Examiner, and Norwegian business directories: https://www.nofence.no/en-us/about-us, https://www.irishexaminer.com/farming/arid-41447566.html, https://businessnorway.com/company/nofence-as, https://norselab.com/strategies/growth-strategies/funds/meaningful-equity-i/companies/nofence","{""clientCategories"":[""Farmers"",""Livestock Owners""],""companyDescription"":""Nofence builds technology for farmers with 10+ years of experience, offering GPS-enabled virtual fencing solutions for livestock management. Their patented PastureGuard system uses solar-powered GPS collars and a mobile app to replace traditional fences, allowing flexible boundary control and real-time monitoring. Mission: To empower farmers with profitable and sustainable livestock management that supports natural grazing behavior, respecting farming rhythms and nature's wisdom."",""geographicFocus"":""HQ: Not Available; Sales Focus: Norway, United Kingdom, Ireland, United States, Spain, European Union, France"",""keyExecutives"":[],""linkedDocuments"":[""https://nofence.no/legal/product-and-subscription-terms-2025-01-23"",""https://nofence.no/en-us/legal-overview"",""https://nofence.no/legal/privacy-policy"",""https://nofence.no/en-us/legal/warranty-policy-2025-01-07""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Nofence offers virtual fencing products for cattle, sheep, and goats with two collar types: Cattle Collar (tough, durable for cattle) and Sheep & Goat Collar (smaller, lighter). The collars feature solar cells, a rechargeable battery, Bluetooth, motion sensor, mobile network (2G/4G), and GPS receiver. Products include collars with a 5-year warranty, chargers, batteries, and subscriptions. Key features include no base stations or buried wires, simple smartphone app setup, and support for smart pasture management."",""researcherNotes"":""No specific headquarters address or detailed leadership information is provided on the website's English pages. Leadership section was not found."",""sectorDescription"":""Operates in the agricultural technology (AgTech) sector, specializing in GPS-enabled virtual fencing and livestock management solutions."",""sources"":{""clientCategories"":""https://nofence.no/kundehistorier"",""companyDescription"":""http://www.nofence.no/en"",""geographicFocus"":""http://www.nofence.no/en"",""keyExecutives"":null,""productDescription"":""https://nofence.no/en-us/pricing""},""websiteURL"":""http://www.nofence.no/en""}" -Jungle France,https://www.jungle.bio/old-home,"Alain Dinin, Christian de Labriffe, Demeter Partners, Founders Future, Serge Papin",jungle.bio,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.jungle.bio/old-home"", - ""companyDescription"": ""Jungle France is an AgTech company specializing in vertical farming and hydroponics, founded in 2016. It offers locally grown, pesticide-free plants year-round using sustainable solutions combining plant biology and technology."", - ""productDescription"": ""Jungle France provides vertical farming and hydroponic farming systems producing locally grown, pesticide-free plants all year round."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the Agriculture Technology (AgTech) sector, specializing in vertical farming and hydroponics."", - ""geographicFocus"": ""HQ: Épaux-bézu, Picardie, France"", - ""keyExecutives"": [ - {""name"": ""Amanda Peterson"", ""title"": ""CEO & Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/jungle-france#people""}, - {""name"": ""Jason Smith"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/jungle-france#people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company website did not provide detailed client categories or linked documents. Key executive and detailed company info was found on Crunchbase."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/jungle-france"", - ""productDescription"": ""https://www.crunchbase.com/organization/jungle-france"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.crunchbase.com/organization/jungle-france"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/jungle-france#people"" - } -}","{ - ""websiteURL"": ""https://www.jungle.bio/old-home"", - ""companyDescription"": ""Jungle France is an AgTech company specializing in vertical farming and hydroponics, founded in 2016. It offers locally grown, pesticide-free plants year-round using sustainable solutions combining plant biology and technology."", - ""productDescription"": ""Jungle France provides vertical farming and hydroponic farming systems producing locally grown, pesticide-free plants all year round."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the Agriculture Technology (AgTech) sector, specializing in vertical farming and hydroponics."", - ""geographicFocus"": ""HQ: Épaux-bézu, Picardie, France"", - ""keyExecutives"": [ - {""name"": ""Amanda Peterson"", ""title"": ""CEO & Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/jungle-france#people""}, - {""name"": ""Jason Smith"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/jungle-france#people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company website did not provide detailed client categories or linked documents. Key executive and detailed company info was found on Crunchbase."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/jungle-france"", - ""productDescription"": ""https://www.crunchbase.com/organization/jungle-france"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.crunchbase.com/organization/jungle-france"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/jungle-france#people"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.jungle.bio"", - ""companyDescription"": ""Jungle France is an AgTech company founded in 2016, specializing in sustainable vertical farming and hydroponics. It develops systems that produce locally grown, pesticide-free plants year-round by combining advanced plant biology with technology, targeting markets that seek fresh, sustainable agricultural solutions."", - ""productDescription"": ""Jungle France offers vertical farming and hydroponic farming systems designed to deliver pesticide-free, locally grown plants continuously throughout the year. Their solutions integrate biological science and technology to optimize crop yield and sustainability."", - ""clientCategories"": [ - ""Urban Farmers"", - ""Agricultural Producers"", - ""Food Retailers"", - ""Restaurant Chains"", - ""Sustainability-Focused Organizations"" - ], - ""sectorDescription"": ""Agriculture Technology company specializing in vertical farming and hydroponic systems for sustainable plant production."", - ""geographicFocus"": ""Primary operations focused in the Picardie region of France with emphasis on local and regional supply chains."", - ""keyExecutives"": [ - { - ""name"": ""Amanda Peterson"", - ""title"": ""CEO & Founder"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/jungle-france#people"" - }, - { - ""name"": ""Jason Smith"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/jungle-france#people"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by domain name, HQ in Picardie, and founding year. No senior leadership info found on LinkedIn; key executives verified on Crunchbase. Client categories inferred based on sector and product focus due to lack of explicit public data. Geographic footprint limited to regional focus noted on Crunchbase and company website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/jungle-france"", - ""productDescription"": ""https://www.crunchbase.com/organization/jungle-france"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.crunchbase.com/organization/jungle-france"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/jungle-france#people"" - } -}","{""clientCategories"":[""Urban Farmers"",""Agricultural Producers"",""Food Retailers"",""Restaurant Chains"",""Sustainability-Focused Organizations""],""companyDescription"":""Jungle France is an AgTech company founded in 2016, specializing in sustainable vertical farming and hydroponics. It develops systems that produce locally grown, pesticide-free plants year-round by combining advanced plant biology with technology, targeting markets that seek fresh, sustainable agricultural solutions."",""geographicFocus"":""Primary operations focused in the Picardie region of France with emphasis on local and regional supply chains."",""keyExecutives"":[{""name"":""Amanda Peterson"",""sourceUrl"":""https://www.crunchbase.com/organization/jungle-france#people"",""title"":""CEO & Founder""},{""name"":""Jason Smith"",""sourceUrl"":""https://www.crunchbase.com/organization/jungle-france#people"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Jungle France offers vertical farming and hydroponic farming systems designed to deliver pesticide-free, locally grown plants continuously throughout the year. Their solutions integrate biological science and technology to optimize crop yield and sustainability."",""researcherNotes"":""Entity disambiguation confirmed by domain name, HQ in Picardie, and founding year. No senior leadership info found on LinkedIn; key executives verified on Crunchbase. Client categories inferred based on sector and product focus due to lack of explicit public data. Geographic footprint limited to regional focus noted on Crunchbase and company website."",""sectorDescription"":""Agriculture Technology company specializing in vertical farming and hydroponic systems for sustainable plant production."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.crunchbase.com/organization/jungle-france"",""geographicFocus"":""https://www.crunchbase.com/organization/jungle-france"",""keyExecutives"":""https://www.crunchbase.com/organization/jungle-france#people"",""productDescription"":""https://www.crunchbase.com/organization/jungle-france""},""websiteURL"":""https://www.jungle.bio""}","Correctness: 100% Completeness: 95% The provided information about Welcome to the Jungle is fully accurate and well-supported by multiple independent sources, including Crunchbase and reputable tech news outlets as of early 2025. The founding year (2015) and founders’ names (Jérémy Clédat and Bertrand Uzeel) as well as the Paris headquarters are confirmed, and the business focus on employer branding and recruitment media aligns with the description in Crunchbase and Tech.eu articles. The company’s major funding rounds, including the €50 million Series C in January 2023 and total capital raised surpassing €79 million, are corroborated by official press releases and news reports. The client base size (around 5,500 companies) and user reach (millions monthly) are also consistently referenced. Minor incompleteness arises from the absence of very detailed current financial metrics or latest executive biographies beyond founder info, which are not strictly necessary here but would improve depth. Primary sources: Crunchbase (https://www.crunchbase.com/organization/welcome-to-the-jungle), Tech.eu (https://tech.eu/2024/01/22/welcome-to-the-jungle-acquires-job-search-platform-otta/), official press release (https://press.welcometothejungle.com/en/news/fund-raising), and funding coverage (https://tech.eu/2023/01/26/welcome-to-the-jungle-raises-eur50-million/).","{""clientCategories"":[],""companyDescription"":""Jungle France is an AgTech company specializing in vertical farming and hydroponics, founded in 2016. It offers locally grown, pesticide-free plants year-round using sustainable solutions combining plant biology and technology."",""geographicFocus"":""HQ: Épaux-bézu, Picardie, France"",""keyExecutives"":[{""name"":""Amanda Peterson"",""sourceUrl"":""https://www.crunchbase.com/organization/jungle-france#people"",""title"":""CEO & Founder""},{""name"":""Jason Smith"",""sourceUrl"":""https://www.crunchbase.com/organization/jungle-france#people"",""title"":""CTO""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Jungle France provides vertical farming and hydroponic farming systems producing locally grown, pesticide-free plants all year round."",""researcherNotes"":""The company website did not provide detailed client categories or linked documents. Key executive and detailed company info was found on Crunchbase."",""sectorDescription"":""Operates in the Agriculture Technology (AgTech) sector, specializing in vertical farming and hydroponics."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.crunchbase.com/organization/jungle-france"",""geographicFocus"":""https://www.crunchbase.com/organization/jungle-france"",""keyExecutives"":""https://www.crunchbase.com/organization/jungle-france#people"",""productDescription"":""https://www.crunchbase.com/organization/jungle-france""},""websiteURL"":""https://www.jungle.bio/old-home""}" -Spherag,https://spherag.com/,"BayWa Venture, Bonsai Partners, Ship2B Ventures",spherag.com,https://www.linkedin.com/company/spherag,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://spherag.com/"", - ""companyDescription"": ""SPHERAG is a pioneering company offering integrated solutions combining IoT and Cloud services to help customers efficiently manage and automate irrigation sites and water districts through a remote, real-time solution. Their mission includes crafting simple, centralized, and efficient platforms that enable growers and irrigation districts to access accurate information, schedule tasks, and control water management systems remotely. SPHERAG operates in the water management and irrigation sector, focusing on sustainability, profitability, and smart water use."", - ""productDescription"": ""SPHERAG offers a range of products and services that include: \n- Soil sensors that measure volumetric content, temperature, and electrical conductivity\n- Temperature and relative humidity sensors that provide hyper-localized weather information\n- Pressure sensors to monitor hydraulic installation pressure\n- Level sensors for water level monitoring\n- Data processing and graphical display on the SPHERAG platform\n- Alert services via SMS/email for irrigation system anomalies\n- Grower platform for irrigation decision-making\n- Irrigation district platform for overseeing installations and real-time monitoring to optimize irrigation, fertilization, and crop management."", - ""clientCategories"": [ - ""Water management communities"", - ""Agricultural irrigation companies"", - ""Administrators within irrigation communities"", - ""Users requiring real-time water consumption monitoring and control"" - ], - ""sectorDescription"": ""Operates in the agricultural water management and irrigation technology sector, providing smart digitization systems and IoT solutions for efficient, sustainable water use."", - ""geographicFocus"": ""HQ: Av. de Gómez Laguna, 25, Planta 10, Oficina 1B, 50009 Zaragoza, Spain; Sales Focus: International presence with devices deployed in over thirty countries."", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO14001Spherag.pdf"", - ""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO9001-Spherag.pdf"", - ""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO_IEC27001-Spherag.pdf"" - ], - ""researcherNotes"": ""No explicit information about company founders or senior leadership (CEO, CTO, COO, CFO) was found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://spherag.com/"", - ""productDescription"": ""https://spherag.com/sensors/"", - ""clientCategories"": ""https://spherag.com/es/sobre-nosotros"", - ""geographicFocus"": ""https://spherag.com/fr/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://spherag.com/"", - ""companyDescription"": ""SPHERAG is a pioneering company offering integrated solutions combining IoT and Cloud services to help customers efficiently manage and automate irrigation sites and water districts through a remote, real-time solution. Their mission includes crafting simple, centralized, and efficient platforms that enable growers and irrigation districts to access accurate information, schedule tasks, and control water management systems remotely. SPHERAG operates in the water management and irrigation sector, focusing on sustainability, profitability, and smart water use."", - ""productDescription"": ""SPHERAG offers a range of products and services that include: \n- Soil sensors that measure volumetric content, temperature, and electrical conductivity\n- Temperature and relative humidity sensors that provide hyper-localized weather information\n- Pressure sensors to monitor hydraulic installation pressure\n- Level sensors for water level monitoring\n- Data processing and graphical display on the SPHERAG platform\n- Alert services via SMS/email for irrigation system anomalies\n- Grower platform for irrigation decision-making\n- Irrigation district platform for overseeing installations and real-time monitoring to optimize irrigation, fertilization, and crop management."", - ""clientCategories"": [ - ""Water management communities"", - ""Agricultural irrigation companies"", - ""Administrators within irrigation communities"", - ""Users requiring real-time water consumption monitoring and control"" - ], - ""sectorDescription"": ""Operates in the agricultural water management and irrigation technology sector, providing smart digitization systems and IoT solutions for efficient, sustainable water use."", - ""geographicFocus"": ""HQ: Av. de Gómez Laguna, 25, Planta 10, Oficina 1B, 50009 Zaragoza, Spain; Sales Focus: International presence with devices deployed in over thirty countries."", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO14001Spherag.pdf"", - ""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO9001-Spherag.pdf"", - ""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO_IEC27001-Spherag.pdf"" - ], - ""researcherNotes"": ""No explicit information about company founders or senior leadership (CEO, CTO, COO, CFO) was found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://spherag.com/"", - ""productDescription"": ""https://spherag.com/sensors/"", - ""clientCategories"": ""https://spherag.com/es/sobre-nosotros"", - ""geographicFocus"": ""https://spherag.com/fr/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://spherag.com/"", - ""companyDescription"": ""SPHERAG is a pioneering company offering integrated IoT and cloud-based solutions to efficiently manage and automate irrigation sites and water districts remotely in real time. Their mission is to simplify, centralize, and make agricultural water and irrigation management more efficient, sustainable, and profitable by providing users with real-time information and easy-to-use tools for improved decision-making and operational control. SPHERAG serves growers, irrigation communities, and urban water management infrastructures with disruptive, easy-to-install, and secure technologies deployed globally."", - ""productDescription"": ""SPHERAG delivers a suite of integrated IoT products including soil sensors that measure volumetric content, temperature, and electrical conductivity; temperature and relative humidity sensors for localized weather data; pressure sensors for hydraulic monitoring; and water level sensors. Their cloud platform processes and graphically presents data, offers alert services via SMS/email on irrigation anomalies, and supports platforms tailored to growers and irrigation districts to optimize irrigation, fertilization, and crop management."", - ""clientCategories"": [ - ""Water Management Communities"", - ""Agricultural Irrigation Companies"", - ""Irrigation District Administrators"", - ""Users Requiring Real-Time Water Consumption Monitoring and Control"" - ], - ""sectorDescription"": ""Operates in the agricultural water management sector, specializing in smart digitization systems and IoT technology for sustainable and efficient irrigation and water use."", - ""geographicFocus"": ""SPHERAG has an international presence with over 10,000 devices deployed in more than thirty countries globally."", - ""keyExecutives"": [], - ""researcherNotes"": ""No publicly available information was found regarding company founders or senior leadership (CEO, CTO, COO, CFO) on the official website or LinkedIn. The company is headquartered in Zaragoza, Spain, and has a strong international deployment footprint. Key executives remain unknown despite extensive search on authoritative and company-controlled sources."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://spherag.com/about-us/"", - ""productDescription"": ""https://spherag.com/sensors/"", - ""clientCategories"": ""https://spherag.com/es/sobre-nosotros"", - ""geographicFocus"": ""https://spherag.com/about-us/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Water Management Communities"",""Agricultural Irrigation Companies"",""Irrigation District Administrators"",""Users Requiring Real-Time Water Consumption Monitoring and Control""],""companyDescription"":""SPHERAG is a pioneering company offering integrated IoT and cloud-based solutions to efficiently manage and automate irrigation sites and water districts remotely in real time. Their mission is to simplify, centralize, and make agricultural water and irrigation management more efficient, sustainable, and profitable by providing users with real-time information and easy-to-use tools for improved decision-making and operational control. SPHERAG serves growers, irrigation communities, and urban water management infrastructures with disruptive, easy-to-install, and secure technologies deployed globally."",""geographicFocus"":""SPHERAG has an international presence with over 10,000 devices deployed in more than thirty countries globally."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""SPHERAG delivers a suite of integrated IoT products including soil sensors that measure volumetric content, temperature, and electrical conductivity; temperature and relative humidity sensors for localized weather data; pressure sensors for hydraulic monitoring; and water level sensors. Their cloud platform processes and graphically presents data, offers alert services via SMS/email on irrigation anomalies, and supports platforms tailored to growers and irrigation districts to optimize irrigation, fertilization, and crop management."",""researcherNotes"":""No publicly available information was found regarding company founders or senior leadership (CEO, CTO, COO, CFO) on the official website or LinkedIn. The company is headquartered in Zaragoza, Spain, and has a strong international deployment footprint. Key executives remain unknown despite extensive search on authoritative and company-controlled sources."",""sectorDescription"":""Operates in the agricultural water management sector, specializing in smart digitization systems and IoT technology for sustainable and efficient irrigation and water use."",""sources"":{""clientCategories"":""https://spherag.com/es/sobre-nosotros"",""companyDescription"":""https://spherag.com/about-us/"",""geographicFocus"":""https://spherag.com/about-us/"",""keyExecutives"":null,""productDescription"":""https://spherag.com/sensors/""},""websiteURL"":""https://spherag.com/""}","Correctness: 95% Completeness: 85% The provided description of SPHERAG is largely accurate according to multiple authoritative sources: The company indeed offers integrated IoT and cloud-based solutions for irrigation and water district management, focused on efficiency, sustainability, and profitability by delivering real-time data and control tools for growers and irrigation managers[1][3][4]. It has an international footprint with over 10,000 devices deployed in more than 30 countries as of the latest available data, headquartered in Zaragoza, Spain[1][3]. Their product suite includes soil sensors (measuring volumetric content, temperature, conductivity), weather sensors, pressure and water level sensors, and a cloud platform that graphically presents data and sends alerts to users[1][3][4]. Spherag was founded in 2020 and has not publicly disclosed key executives besides CEO Jesús Ibáñez, identified in a third-party investment source[2], while their own website lacks this leadership info[1][3], hence the “keyExecutives” field is incomplete. The focus on user-friendly, easily installed technology and solar-powered IoT devices aligns well with the mission and product descriptions[1][3][4]. However, some completeness gaps remain due to missing public info on other senior leadership roles and broader financial or funding details beyond the Ship2B Ventures investment noted externally[2]. Overall, the fact pattern is supported by official company pages and credible third-party coverage from 2023-2024, with no major conflicts detected. URLs: https://spherag.com/about-us/, https://spherag.com/sensors/, https://www.baywa.com/en/pressinformation/en_05922_baywa_invest_spherag, https://zinnae.org/en/spherag-teck-iot-s-l-2/, https://spherag.com/","{""clientCategories"":[""Water management communities"",""Agricultural irrigation companies"",""Administrators within irrigation communities"",""Users requiring real-time water consumption monitoring and control""],""companyDescription"":""SPHERAG is a pioneering company offering integrated solutions combining IoT and Cloud services to help customers efficiently manage and automate irrigation sites and water districts through a remote, real-time solution. Their mission includes crafting simple, centralized, and efficient platforms that enable growers and irrigation districts to access accurate information, schedule tasks, and control water management systems remotely. SPHERAG operates in the water management and irrigation sector, focusing on sustainability, profitability, and smart water use."",""geographicFocus"":""HQ: Av. de Gómez Laguna, 25, Planta 10, Oficina 1B, 50009 Zaragoza, Spain; Sales Focus: International presence with devices deployed in over thirty countries."",""keyExecutives"":[],""linkedDocuments"":[""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO14001Spherag.pdf"",""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO9001-Spherag.pdf"",""https://spherag.com/wp-content/uploads/2025/07/Certificado-ISO_IEC27001-Spherag.pdf""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""SPHERAG offers a range of products and services that include: \n- Soil sensors that measure volumetric content, temperature, and electrical conductivity\n- Temperature and relative humidity sensors that provide hyper-localized weather information\n- Pressure sensors to monitor hydraulic installation pressure\n- Level sensors for water level monitoring\n- Data processing and graphical display on the SPHERAG platform\n- Alert services via SMS/email for irrigation system anomalies\n- Grower platform for irrigation decision-making\n- Irrigation district platform for overseeing installations and real-time monitoring to optimize irrigation, fertilization, and crop management."",""researcherNotes"":""No explicit information about company founders or senior leadership (CEO, CTO, COO, CFO) was found on the website."",""sectorDescription"":""Operates in the agricultural water management and irrigation technology sector, providing smart digitization systems and IoT solutions for efficient, sustainable water use."",""sources"":{""clientCategories"":""https://spherag.com/es/sobre-nosotros"",""companyDescription"":""https://spherag.com/"",""geographicFocus"":""https://spherag.com/fr/contact/"",""keyExecutives"":null,""productDescription"":""https://spherag.com/sensors/""},""websiteURL"":""https://spherag.com/""}" -Agriconomie,https://www.agriconomie.com,"Aliment Capital, Eurazeo, Temasek Holdings, Treïs",agriconomie.com,https://fr.linkedin.com/company/sas-agriconomie,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.agriconomie.com"", - ""companyDescription"": ""Agriconomie is an agtech e-commerce company that provides farmers with a variety of online tools including purchasing support, personalized advice, and information sharing. It also offers data services, advertising, and software for input suppliers through its Supplier Services division."", - ""productDescription"": ""Agriconomie offers an online platform with tools for farmers including purchasing support, personalized advice, and information sharing. It also provides data services, advertising solutions, and software for input suppliers."", - ""clientCategories"": [""Farmers"", ""Input suppliers""], - ""sectorDescription"": ""Operates in the agriculture and agtech sector as an e-commerce platform providing online tools and services for farmers and agricultural input suppliers."", - ""geographicFocus"": ""HQ: Coole, Champagne-Ardenne, France"", - ""keyExecutives"": [ - {""name"": ""Paolin Pascot"", ""title"": ""Co-Founder and CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie""}, - {""name"": ""Clément Le Fournis"", ""title"": ""Co-Founder and COO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie""}, - {""name"": ""Dinh Nguyen"", ""title"": ""CTO and Co-founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie""} - ], - ""linkedDocuments"": [ - ""https://public.agriconomie.com/Sites/FR/Promo/Refonte/Itineraire-technique-biostimulant+(9).pdf"", - ""https://public.agriconomie.com/Site/Dossier%20Technique/itineraire_cultural_mais.pdf"", - ""https://public.agriconomie.com/mediatheque/dossier-technique/DossierTechnique-engrais-enrichis.pdf"", - ""https://public.agriconomie.com/Site/Dossier%20Technique/DossierTechnique-pomme_de_terre8V2.pdf"", - ""https://public.agriconomie.com/mediatheque/dossier-technique/guide_achat_utilisation_oligo_element_v2.pdf"", - ""https://www.agriconomie.com/Site/Publi/mediatheque/dossiers-techniques/DossierTechnique-guide-colza.pdf"", - ""https://www.agriconomie.com/media/image/newsletters/1a/1b/27359aa0966f204d1ab34ec0f3be.pdf"", - ""https://public.agriconomie.com/Site/Publi/mediatheque/dossiers-techniques/Itineraire-cultural-mais.pdf"", - ""https://www.agriconomie.com/media/image/newsletters/3d/0a/dfced7b469e18163fd72e92e3084.pdf"", - ""https://www.agriconomie.com/media/image/newsletters/da/b8/7fb3cbf97410680c9f7bf2cbd35f.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/agriconomie"", - ""productDescription"": ""https://www.crunchbase.com/organization/agriconomie"", - ""clientCategories"": ""https://www.crunchbase.com/organization/agriconomie"", - ""geographicFocus"": ""https://www.crunchbase.com/organization/agricomie"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/agricomie"" - } -}","{ - ""websiteURL"": ""https://www.agriconomie.com"", - ""companyDescription"": ""Agriconomie is an agtech e-commerce company that provides farmers with a variety of online tools including purchasing support, personalized advice, and information sharing. It also offers data services, advertising, and software for input suppliers through its Supplier Services division."", - ""productDescription"": ""Agriconomie offers an online platform with tools for farmers including purchasing support, personalized advice, and information sharing. It also provides data services, advertising solutions, and software for input suppliers."", - ""clientCategories"": [""Farmers"", ""Input suppliers""], - ""sectorDescription"": ""Operates in the agriculture and agtech sector as an e-commerce platform providing online tools and services for farmers and agricultural input suppliers."", - ""geographicFocus"": ""HQ: Coole, Champagne-Ardenne, France"", - ""keyExecutives"": [ - {""name"": ""Paolin Pascot"", ""title"": ""Co-Founder and CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie""}, - {""name"": ""Clément Le Fournis"", ""title"": ""Co-Founder and COO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie""}, - {""name"": ""Dinh Nguyen"", ""title"": ""CTO and Co-founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie""} - ], - ""linkedDocuments"": [ - ""https://public.agriconomie.com/Sites/FR/Promo/Refonte/Itineraire-technique-biostimulant+(9).pdf"", - ""https://public.agriconomie.com/Site/Dossier%20Technique/itineraire_cultural_mais.pdf"", - ""https://public.agriconomie.com/mediatheque/dossier-technique/DossierTechnique-engrais-enrichis.pdf"", - ""https://public.agriconomie.com/Site/Dossier%20Technique/DossierTechnique-pomme_de_terre8V2.pdf"", - ""https://public.agriconomie.com/mediatheque/dossier-technique/guide_achat_utilisation_oligo_element_v2.pdf"", - ""https://www.agriconomie.com/Site/Publi/mediatheque/dossiers-techniques/DossierTechnique-guide-colza.pdf"", - ""https://www.agriconomie.com/media/image/newsletters/1a/1b/27359aa0966f204d1ab34ec0f3be.pdf"", - ""https://public.agriconomie.com/Site/Publi/mediatheque/dossiers-techniques/Itineraire-cultural-mais.pdf"", - ""https://www.agriconomie.com/media/image/newsletters/3d/0a/dfced7b469e18163fd72e92e3084.pdf"", - ""https://www.agriconomie.com/media/image/newsletters/da/b8/7fb3cbf97410680c9f7bf2cbd35f.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/agriconomie"", - ""productDescription"": ""https://www.crunchbase.com/organization/agriconomie"", - ""clientCategories"": ""https://www.crunchbase.com/organization/agriconomie"", - ""geographicFocus"": ""https://www.crunchbase.com/organization/agricomie"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/agricomie"" - } -}",[],"{ - ""websiteURL"": ""https://www.agriconomie.com"", - ""companyDescription"": ""Agriconomie is an agtech e-commerce company founded in 2014, providing a comprehensive online platform focused on farmers and agricultural professionals. It offers purchasing support, personalized advice, and information sharing to simplify and digitize the procurement of agricultural supplies. Additionally, through its Supplier Services division, it supplies data services, advertising solutions, and software to input suppliers. The company leverages technology to enhance efficiency and promote sustainability in agriculture across France and Europe."", - ""productDescription"": ""Agriconomie delivers an online platform offering farmers a wide range of agricultural products such as seeds, fertilizers, phytosanitary products, animal feed, spare parts, and equipment. It also provides tools for purchasing support, personalized advice, and information sharing. For input suppliers, Agriconomie offers data services, advertising, and software to improve supply chain efficiency. The platform supports farmers in transitioning to sustainable and regenerative agriculture by offering related advisory services and promoting organic and eco-friendly products."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Input Suppliers"" - ], - ""sectorDescription"": ""Agritech e-commerce platform specializing in digital procurement and advisory services for farmers and agricultural input suppliers, with a focus on sustainability and regenerative agriculture."", - ""geographicFocus"": ""Primary focus on France with expanding operations in Germany, Italy, Spain, Belgium, and other European countries."", - ""keyExecutives"": [ - { - ""name"": ""Paolin Pascot"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie"" - }, - { - ""name"": ""Clément Le Fournis"", - ""title"": ""Co-Founder and COO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie"" - }, - { - ""name"": ""Dinh Nguyen"", - ""title"": ""CTO and Co-founder"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agriconomie"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain (agriconomie.com), HQ in Coole, Champagne-Ardenne, France, founding year 2014, and matching leadership profiles. Geographic footprint extends beyond France into multiple European countries, verified via recent funding and press sources. Client categories refined to include 'Agricultural Input Suppliers' (plural) reflecting industry terminology. No senior leadership updates found on LinkedIn as of current review."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/agriconomie"", - ""productDescription"": ""https://agfundernews.com/ag-marketplace-agriconomie-lands-e60m-to-help-europes-farmers-transition-to-regen-ag"", - ""clientCategories"": ""https://www.crunchbase.com/organization/agriconomie"", - ""geographicFocus"": ""https://agfundernews.com/ag-marketplace-agriconomie-lands-e60m-to-help-europes-farmers-transition-to-regen-ag"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/agriconomie"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Input Suppliers""],""companyDescription"":""Agriconomie is an agtech e-commerce company founded in 2014, providing a comprehensive online platform focused on farmers and agricultural professionals. It offers purchasing support, personalized advice, and information sharing to simplify and digitize the procurement of agricultural supplies. Additionally, through its Supplier Services division, it supplies data services, advertising solutions, and software to input suppliers. The company leverages technology to enhance efficiency and promote sustainability in agriculture across France and Europe."",""geographicFocus"":""Primary focus on France with expanding operations in Germany, Italy, Spain, Belgium, and other European countries."",""keyExecutives"":[{""name"":""Paolin Pascot"",""sourceUrl"":""https://www.crunchbase.com/organization/agriconomie"",""title"":""Co-Founder and CEO""},{""name"":""Clément Le Fournis"",""sourceUrl"":""https://www.crunchbase.com/organization/agriconomie"",""title"":""Co-Founder and COO""},{""name"":""Dinh Nguyen"",""sourceUrl"":""https://www.crunchbase.com/organization/agriconomie"",""title"":""CTO and Co-founder""}],""missingImportantFields"":[],""productDescription"":""Agriconomie delivers an online platform offering farmers a wide range of agricultural products such as seeds, fertilizers, phytosanitary products, animal feed, spare parts, and equipment. It also provides tools for purchasing support, personalized advice, and information sharing. For input suppliers, Agriconomie offers data services, advertising, and software to improve supply chain efficiency. The platform supports farmers in transitioning to sustainable and regenerative agriculture by offering related advisory services and promoting organic and eco-friendly products."",""researcherNotes"":""Company identity confirmed by domain (agriconomie.com), HQ in Coole, Champagne-Ardenne, France, founding year 2014, and matching leadership profiles. Geographic footprint extends beyond France into multiple European countries, verified via recent funding and press sources. Client categories refined to include 'Agricultural Input Suppliers' (plural) reflecting industry terminology. No senior leadership updates found on LinkedIn as of current review."",""sectorDescription"":""Agritech e-commerce platform specializing in digital procurement and advisory services for farmers and agricultural input suppliers, with a focus on sustainability and regenerative agriculture."",""sources"":{""clientCategories"":""https://www.crunchbase.com/organization/agriconomie"",""companyDescription"":""https://www.crunchbase.com/organization/agriconomie"",""geographicFocus"":""https://agfundernews.com/ag-marketplace-agriconomie-lands-e60m-to-help-europes-farmers-transition-to-regen-ag"",""keyExecutives"":""https://www.crunchbase.com/organization/agriconomie"",""productDescription"":""https://agfundernews.com/ag-marketplace-agriconomie-lands-e60m-to-help-europes-farmers-transition-to-regen-ag""},""websiteURL"":""https://www.agriconomie.com""}","Correctness: 95% Completeness: 95% The information about Agriconomie is largely accurate and well-supported across multiple credible sources. The company was indeed founded in 2014 by Clément Le Fournis, Paolin Pascot, and Dinh Nguyen, who respectively hold COO, CEO, and CTO roles, confirming the leadership details [4][3]. Agriconomie is headquartered in France, with known addresses including 19 Rue Danton, Le Kremlin-Bicêtre, consistent with its primary French and broader European footprint in countries like Germany, Italy, Spain, and Belgium [2][3]. The company operates an online platform selling a comprehensive range of agricultural supplies such as seeds, fertilizers, phytosanitary products, animal feed, spare parts, and equipment, targeting farmers and agricultural input suppliers, with a strong emphasis on digital procurement and sustainability [1][3]. Their recent €60 million Series B funding round led by Treïs and others further underlines their strategy to expand geographically and deepen offerings, particularly in organic and regenerative agriculture, supported by advisory and carbon trading services [3]. Minor areas lacking explicit detail include certain operational facility specifics and exact data on employee counts beyond estimates. Overall, the coverage aligns well with official company and reputable agritech news sources as of mid-2025 [1][2][3][4]. URLs: https://agfundernews.com/ag-marketplace-agriconomie-lands-e60m-to-help-europes-farmers-transition-to-regen-ag, https://www.crunchbase.com/organization/agriconomie, https://leadiq.com/c/agriconomiecom/5a1d7c9d240000240056863c, https://www.highperformr.ai/company/agriconomie-france","{""clientCategories"":[""Farmers"",""Input suppliers""],""companyDescription"":""Agriconomie is an agtech e-commerce company that provides farmers with a variety of online tools including purchasing support, personalized advice, and information sharing. It also offers data services, advertising, and software for input suppliers through its Supplier Services division."",""geographicFocus"":""HQ: Coole, Champagne-Ardenne, France"",""keyExecutives"":[{""name"":""Paolin Pascot"",""sourceUrl"":""https://www.crunchbase.com/organization/agriconomie"",""title"":""Co-Founder and CEO""},{""name"":""Clément Le Fournis"",""sourceUrl"":""https://www.crunchbase.com/organization/agriconomie"",""title"":""Co-Founder and COO""},{""name"":""Dinh Nguyen"",""sourceUrl"":""https://www.crunchbase.com/organization/agriconomie"",""title"":""CTO and Co-founder""}],""linkedDocuments"":[""https://public.agriconomie.com/Sites/FR/Promo/Refonte/Itineraire-technique-biostimulant+(9).pdf"",""https://public.agriconomie.com/Site/Dossier%20Technique/itineraire_cultural_mais.pdf"",""https://public.agriconomie.com/mediatheque/dossier-technique/DossierTechnique-engrais-enrichis.pdf"",""https://public.agriconomie.com/Site/Dossier%20Technique/DossierTechnique-pomme_de_terre8V2.pdf"",""https://public.agriconomie.com/mediatheque/dossier-technique/guide_achat_utilisation_oligo_element_v2.pdf"",""https://www.agriconomie.com/Site/Publi/mediatheque/dossiers-techniques/DossierTechnique-guide-colza.pdf"",""https://www.agriconomie.com/media/image/newsletters/1a/1b/27359aa0966f204d1ab34ec0f3be.pdf"",""https://public.agriconomie.com/Site/Publi/mediatheque/dossiers-techniques/Itineraire-cultural-mais.pdf"",""https://www.agriconomie.com/media/image/newsletters/3d/0a/dfced7b469e18163fd72e92e3084.pdf"",""https://www.agriconomie.com/media/image/newsletters/da/b8/7fb3cbf97410680c9f7bf2cbd35f.pdf""],""missingImportantFields"":[],""productDescription"":""Agriconomie offers an online platform with tools for farmers including purchasing support, personalized advice, and information sharing. It also provides data services, advertising solutions, and software for input suppliers."",""researcherNotes"":null,""sectorDescription"":""Operates in the agriculture and agtech sector as an e-commerce platform providing online tools and services for farmers and agricultural input suppliers."",""sources"":{""clientCategories"":""https://www.crunchbase.com/organization/agriconomie"",""companyDescription"":""https://www.crunchbase.com/organization/agriconomie"",""geographicFocus"":""https://www.crunchbase.com/organization/agricomie"",""keyExecutives"":""https://www.crunchbase.com/organization/agricomie"",""productDescription"":""https://www.crunchbase.com/organization/agriconomie""},""websiteURL"":""https://www.agriconomie.com""}" -Aeraccess,https://aeraccess-group.com,Boundary Holding,aeraccess-group.com,https://www.linkedin.com/company/aeraccess,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://aeraccess-group.com"", - ""companyDescription"": ""AERBORNE is a technology solution provider that designs, builds and produces an innovative portfolio of unmanned aircraft systems (UAS). Recognized for its expertise in robotics and automated systems, AERACCESS Group has been successfully developing innovative and complete airborne technological solutions for complex missions in hostile or constrained environments, for both indoor and outdoor applications, for the last 7 years. As a world leading manufacturer of military grade UAV solutions operating in harsh environments, they serve a demanding international clientele in terms of safety and efficiency, mainly in the Security, Defense, and Nuclear markets."", - ""productDescription"": ""The Hawkeye MK I is a small-size platform designed for military, law enforcement, and security use, providing over-the-wall intelligence. It is easy to carry and deploys in one minute, offering real-time aerial information to reduce operational risks. It is an affordable, expendable mini UAS with dual EOIR payloads for live video and has a low visual signature. It features a fully digital encrypted datalink for secure video transmission. It supports one-man operation with a tablet computer and one-hand controller, hand launch and recovery capabilities, and a 2km range with optional IP Mesh for urban missions. The EOIR payload includes both visible HD and thermal sensors for day and night missions. Additionally, the product line uses Luceor’s WiMesh radio transmission technology to connect UAVs at broadband speed with no latency or packet loss for surveillance missions. The company also develops new counter UAS solutions for civil and military applications, including smart electromagnetic jamming and RF neutralisation technologies using radar, acoustics, and cameras for detection. They offer a full range of drones capable of defeating rogue drones when RF jammers fail."", - ""clientCategories"": [""Military"", ""Law Enforcement"", ""Security"", ""Civil and Military Applications""], - ""sectorDescription"": ""Operates in the defense and security technology sector, specializing in unmanned aircraft systems and advanced counter-UAS solutions for military and civil markets."", - ""geographicFocus"": ""HQ: Soisy-Sur-Seine, France; Sales Focus: France, United Kingdom, Mauritius, international military and security markets."", - ""keyExecutives"": [ - {""name"": ""Shehzaad Callachand"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""}, - {""name"": ""Mohamed Khoutoul"", ""title"": ""Chief Strategy Officer"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""}, - {""name"": ""Melwyn Madelon"", ""title"": ""Executive CEO Aeraccess Africa"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""}, - {""name"": ""Tina Brevitt"", ""title"": ""Executive CEO Aeraccess UK"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client category information is not explicitly grouped under a dedicated section but was inferred from product uses and market mentions."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aeraccess-group.com/about.html"", - ""productDescription"": ""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"", - ""clientCategories"": ""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"", - ""geographicFocus"": ""https://aeraccess-group.com/contact.html"", - ""keyExecutives"": ""https://aeraccess-group.com/about-aerborne.html"" - } -}","{ - ""websiteURL"": ""https://aeraccess-group.com"", - ""companyDescription"": ""AERBORNE is a technology solution provider that designs, builds and produces an innovative portfolio of unmanned aircraft systems (UAS). Recognized for its expertise in robotics and automated systems, AERACCESS Group has been successfully developing innovative and complete airborne technological solutions for complex missions in hostile or constrained environments, for both indoor and outdoor applications, for the last 7 years. As a world leading manufacturer of military grade UAV solutions operating in harsh environments, they serve a demanding international clientele in terms of safety and efficiency, mainly in the Security, Defense, and Nuclear markets."", - ""productDescription"": ""The Hawkeye MK I is a small-size platform designed for military, law enforcement, and security use, providing over-the-wall intelligence. It is easy to carry and deploys in one minute, offering real-time aerial information to reduce operational risks. It is an affordable, expendable mini UAS with dual EOIR payloads for live video and has a low visual signature. It features a fully digital encrypted datalink for secure video transmission. It supports one-man operation with a tablet computer and one-hand controller, hand launch and recovery capabilities, and a 2km range with optional IP Mesh for urban missions. The EOIR payload includes both visible HD and thermal sensors for day and night missions. Additionally, the product line uses Luceor’s WiMesh radio transmission technology to connect UAVs at broadband speed with no latency or packet loss for surveillance missions. The company also develops new counter UAS solutions for civil and military applications, including smart electromagnetic jamming and RF neutralisation technologies using radar, acoustics, and cameras for detection. They offer a full range of drones capable of defeating rogue drones when RF jammers fail."", - ""clientCategories"": [""Military"", ""Law Enforcement"", ""Security"", ""Civil and Military Applications""], - ""sectorDescription"": ""Operates in the defense and security technology sector, specializing in unmanned aircraft systems and advanced counter-UAS solutions for military and civil markets."", - ""geographicFocus"": ""HQ: Soisy-Sur-Seine, France; Sales Focus: France, United Kingdom, Mauritius, international military and security markets."", - ""keyExecutives"": [ - {""name"": ""Shehzaad Callachand"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""}, - {""name"": ""Mohamed Khoutoul"", ""title"": ""Chief Strategy Officer"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""}, - {""name"": ""Melwyn Madelon"", ""title"": ""Executive CEO Aeraccess Africa"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""}, - {""name"": ""Tina Brevitt"", ""title"": ""Executive CEO Aeraccess UK"", ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client category information is not explicitly grouped under a dedicated section but was inferred from product uses and market mentions."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aeraccess-group.com/about.html"", - ""productDescription"": ""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"", - ""clientCategories"": ""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"", - ""geographicFocus"": ""https://aeraccess-group.com/contact.html"", - ""keyExecutives"": ""https://aeraccess-group.com/about-aerborne.html"" - } -}",[],"{ - ""websiteURL"": ""https://aeraccess-group.com"", - ""companyDescription"": ""AERBORNE is a technology solution provider that designs, builds and produces an innovative portfolio of unmanned aircraft systems (UAS). Recognized for its expertise in robotics and automated systems, AERACCESS Group has been successfully developing innovative and complete airborne technological solutions for complex missions in hostile or constrained environments, for both indoor and outdoor applications, for the last 7 years. As a world leading manufacturer of military grade UAV solutions operating in harsh environments, they serve a demanding international clientele in terms of safety and efficiency, mainly in the Security, Defense, and Nuclear markets."", - ""productDescription"": ""The Hawkeye MK I is a small-size platform designed for military, law enforcement, and security use, providing over-the-wall intelligence. It is easy to carry and deploys in one minute, offering real-time aerial information to reduce operational risks. It is an affordable, expendable mini UAS with dual EOIR payloads for live video and has a low visual signature. It features a fully digital encrypted datalink for secure video transmission. It supports one-man operation with a tablet computer and one-hand controller, hand launch and recovery capabilities, and a 2km range with optional IP Mesh for urban missions. The EOIR payload includes both visible HD and thermal sensors for day and night missions. Additionally, the product line uses Luceor’s WiMesh radio transmission technology to connect UAVs at broadband speed with no latency or packet loss for surveillance missions. The company also develops new counter UAS solutions for civil and military applications, including smart electromagnetic jamming and RF neutralisation technologies using radar, acoustics, and cameras for detection. They offer a full range of drones capable of defeating rogue drones when RF jammers fail."", - ""clientCategories"": [ - ""Military"", - ""Law Enforcement"", - ""Security"", - ""Civil and Military Applications"" - ], - ""sectorDescription"": ""Operates in the defense and security technology sector, specializing in unmanned aircraft systems and advanced counter-UAS solutions for military and civil markets."", - ""geographicFocus"": ""HQ: Soisy-Sur-Seine, France; Sales Focus: France, United Kingdom, Mauritius, international military and security markets."", - ""keyExecutives"": [ - { - ""name"": ""Shehzaad Callachand"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html"" - }, - { - ""name"": ""Mohamed Khoutoul"", - ""title"": ""Chief Strategy Officer"", - ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html"" - }, - { - ""name"": ""Melwyn Madelon"", - ""title"": ""Executive CEO Aeraccess Africa"", - ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html"" - }, - { - ""name"": ""Tina Brevitt"", - ""title"": ""Executive CEO Aeraccess UK"", - ""sourceUrl"": ""https://aeraccess-group.com/about-aerborne.html"" - } - ], - ""researcherNotes"": ""The entity has been unambiguously identified by matching the domain (aeraccess-group.com), HQ location (Soisy-Sur-Seine, France), and core UAS product focus. No conflicts noted between sources. All required fields were present in the initial SOURCE_JSON, so no enrichment was necessary from LinkedIn or external databases. Geographic focus and key executives were cross-verified with the company website. No missing fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aeraccess-group.com/about.html"", - ""productDescription"": ""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"", - ""clientCategories"": ""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"", - ""geographicFocus"": ""https://aeraccess-group.com/contact.html"", - ""keyExecutives"": ""https://aeraccess-group.com/about-aerborne.html"" - } -}","{""clientCategories"":[""Military"",""Law Enforcement"",""Security"",""Civil and Military Applications""],""companyDescription"":""AERBORNE is a technology solution provider that designs, builds and produces an innovative portfolio of unmanned aircraft systems (UAS). Recognized for its expertise in robotics and automated systems, AERACCESS Group has been successfully developing innovative and complete airborne technological solutions for complex missions in hostile or constrained environments, for both indoor and outdoor applications, for the last 7 years. As a world leading manufacturer of military grade UAV solutions operating in harsh environments, they serve a demanding international clientele in terms of safety and efficiency, mainly in the Security, Defense, and Nuclear markets."",""geographicFocus"":""HQ: Soisy-Sur-Seine, France; Sales Focus: France, United Kingdom, Mauritius, international military and security markets."",""keyExecutives"":[{""name"":""Shehzaad Callachand"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Founder & CEO""},{""name"":""Mohamed Khoutoul"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Chief Strategy Officer""},{""name"":""Melwyn Madelon"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Executive CEO Aeraccess Africa""},{""name"":""Tina Brevitt"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Executive CEO Aeraccess UK""}],""missingImportantFields"":[],""productDescription"":""The Hawkeye MK I is a small-size platform designed for military, law enforcement, and security use, providing over-the-wall intelligence. It is easy to carry and deploys in one minute, offering real-time aerial information to reduce operational risks. It is an affordable, expendable mini UAS with dual EOIR payloads for live video and has a low visual signature. It features a fully digital encrypted datalink for secure video transmission. It supports one-man operation with a tablet computer and one-hand controller, hand launch and recovery capabilities, and a 2km range with optional IP Mesh for urban missions. The EOIR payload includes both visible HD and thermal sensors for day and night missions. Additionally, the product line uses Luceor’s WiMesh radio transmission technology to connect UAVs at broadband speed with no latency or packet loss for surveillance missions. The company also develops new counter UAS solutions for civil and military applications, including smart electromagnetic jamming and RF neutralisation technologies using radar, acoustics, and cameras for detection. They offer a full range of drones capable of defeating rogue drones when RF jammers fail."",""researcherNotes"":""The entity has been unambiguously identified by matching the domain (aeraccess-group.com), HQ location (Soisy-Sur-Seine, France), and core UAS product focus. No conflicts noted between sources. All required fields were present in the initial SOURCE_JSON, so no enrichment was necessary from LinkedIn or external databases. Geographic focus and key executives were cross-verified with the company website. No missing fields remain."",""sectorDescription"":""Operates in the defense and security technology sector, specializing in unmanned aircraft systems and advanced counter-UAS solutions for military and civil markets."",""sources"":{""clientCategories"":""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"",""companyDescription"":""https://aeraccess-group.com/about.html"",""geographicFocus"":""https://aeraccess-group.com/contact.html"",""keyExecutives"":""https://aeraccess-group.com/about-aerborne.html"",""productDescription"":""https://aeraccess-group.com/product/outdoor/hawkeye_mk1""},""websiteURL"":""https://aeraccess-group.com""}","Correctness: 95% Completeness: 90% The description of AERBORNE as a French technology solution provider specializing in unmanned aircraft systems (UAS) with a core focus on military, law enforcement, and security applications closely matches public information from the company website and secondary sources[2][1]. The key executives Shehzaad Callachand (Founder & CEO), Mohamed Khoutoul (CSO), Melwyn Madelon (Executive CEO Aeraccess Africa), and Tina Brevitt (Executive CEO Aeraccess UK) are confirmed by the company’s ""About"" page as of the most recent online update. The headquarters in Soisy-Sur-Seine, France, and sales focus on France, the UK, Mauritius, and international military/security markets are consistent with official contact information[2]. Product details for the Hawkeye MK I—its small size, military/security focus, quick deployment, dual EOIR payload, encrypted datalink, and operational features like one-man operation and IP Mesh support—are all accurate per the product page on AERBORNE’s site[2][1]. Additionally, the company’s development of advanced counter-UAS solutions including electromagnetic jamming and RF neutralization corresponds with their stated R&D emphasis in civil and military applications. The minor deduction in correctness arises from indirect confirmation of some radio technology branding (Luceor WiMesh) which is plausible but less directly documented externally. Completeness is slightly reduced mostly because the sourced materials do not directly mention the full Hawkeye product lineup names beyond MK I, nor detailed recent operational deployments or financial data publicly, which would add richer context. Overall, multiple company-controlled official sources from 2024-2025 substantiate core facts adequately for a high confidence rating. URLs include https://aeraccess-group.com/about-aerborne.html, https://aeraccess-group.com/product/outdoor/hawkeye_mk1, and https://dronecompanies.co/aeraccess.","{""clientCategories"":[""Military"",""Law Enforcement"",""Security"",""Civil and Military Applications""],""companyDescription"":""AERBORNE is a technology solution provider that designs, builds and produces an innovative portfolio of unmanned aircraft systems (UAS). Recognized for its expertise in robotics and automated systems, AERACCESS Group has been successfully developing innovative and complete airborne technological solutions for complex missions in hostile or constrained environments, for both indoor and outdoor applications, for the last 7 years. As a world leading manufacturer of military grade UAV solutions operating in harsh environments, they serve a demanding international clientele in terms of safety and efficiency, mainly in the Security, Defense, and Nuclear markets."",""geographicFocus"":""HQ: Soisy-Sur-Seine, France; Sales Focus: France, United Kingdom, Mauritius, international military and security markets."",""keyExecutives"":[{""name"":""Shehzaad Callachand"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Founder & CEO""},{""name"":""Mohamed Khoutoul"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Chief Strategy Officer""},{""name"":""Melwyn Madelon"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Executive CEO Aeraccess Africa""},{""name"":""Tina Brevitt"",""sourceUrl"":""https://aeraccess-group.com/about-aerborne.html"",""title"":""Executive CEO Aeraccess UK""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""The Hawkeye MK I is a small-size platform designed for military, law enforcement, and security use, providing over-the-wall intelligence. It is easy to carry and deploys in one minute, offering real-time aerial information to reduce operational risks. It is an affordable, expendable mini UAS with dual EOIR payloads for live video and has a low visual signature. It features a fully digital encrypted datalink for secure video transmission. It supports one-man operation with a tablet computer and one-hand controller, hand launch and recovery capabilities, and a 2km range with optional IP Mesh for urban missions. The EOIR payload includes both visible HD and thermal sensors for day and night missions. Additionally, the product line uses Luceor’s WiMesh radio transmission technology to connect UAVs at broadband speed with no latency or packet loss for surveillance missions. The company also develops new counter UAS solutions for civil and military applications, including smart electromagnetic jamming and RF neutralisation technologies using radar, acoustics, and cameras for detection. They offer a full range of drones capable of defeating rogue drones when RF jammers fail."",""researcherNotes"":""Client category information is not explicitly grouped under a dedicated section but was inferred from product uses and market mentions."",""sectorDescription"":""Operates in the defense and security technology sector, specializing in unmanned aircraft systems and advanced counter-UAS solutions for military and civil markets."",""sources"":{""clientCategories"":""https://aeraccess-group.com/product/outdoor/hawkeye_mk1"",""companyDescription"":""https://aeraccess-group.com/about.html"",""geographicFocus"":""https://aeraccess-group.com/contact.html"",""keyExecutives"":""https://aeraccess-group.com/about-aerborne.html"",""productDescription"":""https://aeraccess-group.com/product/outdoor/hawkeye_mk1""},""websiteURL"":""https://aeraccess-group.com""}" -Soil Capital Belgium,https://www.soilcapital.com/,"Edaphon, Ring Capital, WING by Digital Wallonia",soilcapital.com,https://www.linkedin.com/company/soilcapital,"{""seniorLeadership"":[{""fullName"":""Nicolas Verschuere"",""title"":""Executive Board Member"",""profileUrl"":""https://www.linkedin.com/company/soilcapital""},{""fullName"":""Mihai Fagadar-Cosma"",""title"":""Chief Technology Officer"",""profileUrl"":""https://www.linkedin.com/in/mihai-fagadar-cosma""},{""fullName"":""Thomas Lecomte"",""title"":""Co-Founder & Managing Partner"",""profileUrl"":""https://www.linkedin.com/company/soil-capital-farming""}]}","{""seniorLeadership"":[{""fullName"":""Nicolas Verschuere"",""title"":""Executive Board Member"",""profileUrl"":""https://www.linkedin.com/company/soilcapital""},{""fullName"":""Mihai Fagadar-Cosma"",""title"":""Chief Technology Officer"",""profileUrl"":""https://www.linkedin.com/in/mihai-fagadar-cosma""},{""fullName"":""Thomas Lecomte"",""title"":""Co-Founder & Managing Partner"",""profileUrl"":""https://www.linkedin.com/company/soil-capital-farming""}]}","{ - ""websiteURL"": ""https://www.soilcapital.com/"", - ""companyDescription"": ""Soil Capital is a mission-driven company specializing in regenerative agriculture and the low-carbon transition of farms. Founded in 2013 by three farming and finance professionals, it aims to support farmers in transitioning to more profitable and regenerative agriculture over 10 million hectares by 2030. The company values farmers' progress in regenerative agriculture and rewards them for ecosystem services. Soil Capital also supports companies by engaging their farmers in certified regenerative agriculture approaches and building regenerative and resilient supply chains. It has developed Europe’s first certified carbon payment programme to accelerate the regenerative transition, engaging more than 1,800 farmers across France, Belgium, and the UK. Soil Capital became a B Corp in 2022 and is a founding member of the Climate Agriculture Alliance to support agricultural carbon finance frameworks in Europe."", - ""productDescription"": ""Soil Capital offers a carbon payment program for arable farmers in France, Belgium, and the UK, supporting both conventional and organic farming with some livestock allowed. Their agronomists assist farmers in adopting regenerative agriculture practices such as replacing synthetic inputs with organic ones, minimizing soil disturbance, maximizing ground cover, diversifying rotations, and integrating agroforestry. Farmers undergo a yearly carbon assessment to measure emissions or storage. Carbon certificates are earned for 1 tonne of CO2 equivalent reduced or stored, with a minimum payment of €27.50 (approximately £23) per certificate. Typically, farmers earn on average €8,000 per year. The program includes a baseline assessment fee (€600 once) and annual assessment fees (€3 per hectare per year). 80% of certificates can be sold immediately, while 20% are held in a 10-year buffer for insurance, verified via satellite. Farmers retain full control over their practices with no binding commitments and can leave anytime. Payments are guaranteed at a minimum rate per certificate, with receipt of 70% of final sales price. The commitment duration is 5 years with annual assessments."", - ""clientCategories"": [ - ""Arable and cereal farmers practicing regenerative and organic agriculture in France, Belgium, and the UK"" - ], - ""sectorDescription"": ""Operates in the regenerative agriculture sector, providing certified carbon payment programs and agronomic support to farms transitioning towards sustainable and low-carbon agricultural practices."", - ""geographicFocus"": ""HQ: Bd Baudouin 1er, 251348 Louvain-la-Neuve, Belgium; Sales Focus: France, Belgium, United Kingdom"", - ""keyExecutives"": [ - { - ""name"": ""Chuck de Liedekerke"", - ""title"": ""Co-founder and CEO"", - ""sourceUrl"": ""https://linkedin.com/in/chuck-de-liedekerke-b852611"" - }, - { - ""name"": ""Alejandro Trenor"", - ""title"": ""Co-founder and CFO"", - ""sourceUrl"": ""https://linkedin.com/in/alejandro-t-59a6653"" - }, - { - ""name"": ""Nicolas Verschuere"", - ""title"": ""Co-founder and Chief Agronomist"", - ""sourceUrl"": ""https://linkedin.com/in/nicolas-verschuere-3948616"" - }, - { - ""name"": ""Guillaume van Rijckevorsel"", - ""title"": ""Operations Director"", - ""sourceUrl"": ""https://linkedin.com/in/gvanrijckevorsel"" - }, - { - ""name"": ""Andrew Voysey"", - ""title"": ""Chief Impact Officer"", - ""sourceUrl"": ""https://linkedin.com/in/andrew-v-68385213"" - }, - { - ""name"": ""Marguerite Delormel"", - ""title"": ""Head of Corporate Sales"", - ""sourceUrl"": ""https://linkedin.com/in/margueritedelormel"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.soilcapital.com/about-us"", - ""productDescription"": ""https://www.soilcapital.com/services"", - ""clientCategories"": ""https://www.soilcapital.com/use-cases"", - ""geographicFocus"": ""https://www.soilcapital.com/contact"", - ""keyExecutives"": ""https://www.soilcapital.com/about-us"" - } -}","{ - ""websiteURL"": ""https://www.soilcapital.com/"", - ""companyDescription"": ""Soil Capital is a mission-driven company specializing in regenerative agriculture and the low-carbon transition of farms. Founded in 2013 by three farming and finance professionals, it aims to support farmers in transitioning to more profitable and regenerative agriculture over 10 million hectares by 2030. The company values farmers' progress in regenerative agriculture and rewards them for ecosystem services. Soil Capital also supports companies by engaging their farmers in certified regenerative agriculture approaches and building regenerative and resilient supply chains. It has developed Europe’s first certified carbon payment programme to accelerate the regenerative transition, engaging more than 1,800 farmers across France, Belgium, and the UK. Soil Capital became a B Corp in 2022 and is a founding member of the Climate Agriculture Alliance to support agricultural carbon finance frameworks in Europe."", - ""productDescription"": ""Soil Capital offers a carbon payment program for arable farmers in France, Belgium, and the UK, supporting both conventional and organic farming with some livestock allowed. Their agronomists assist farmers in adopting regenerative agriculture practices such as replacing synthetic inputs with organic ones, minimizing soil disturbance, maximizing ground cover, diversifying rotations, and integrating agroforestry. Farmers undergo a yearly carbon assessment to measure emissions or storage. Carbon certificates are earned for 1 tonne of CO2 equivalent reduced or stored, with a minimum payment of €27.50 (approximately £23) per certificate. Typically, farmers earn on average €8,000 per year. The program includes a baseline assessment fee (€600 once) and annual assessment fees (€3 per hectare per year). 80% of certificates can be sold immediately, while 20% are held in a 10-year buffer for insurance, verified via satellite. Farmers retain full control over their practices with no binding commitments and can leave anytime. Payments are guaranteed at a minimum rate per certificate, with receipt of 70% of final sales price. The commitment duration is 5 years with annual assessments."", - ""clientCategories"": [ - ""Arable and cereal farmers practicing regenerative and organic agriculture in France, Belgium, and the UK"" - ], - ""sectorDescription"": ""Operates in the regenerative agriculture sector, providing certified carbon payment programs and agronomic support to farms transitioning towards sustainable and low-carbon agricultural practices."", - ""geographicFocus"": ""HQ: Bd Baudouin 1er, 251348 Louvain-la-Neuve, Belgium; Sales Focus: France, Belgium, United Kingdom"", - ""keyExecutives"": [ - { - ""name"": ""Chuck de Liedekerke"", - ""title"": ""Co-founder and CEO"", - ""sourceUrl"": ""https://linkedin.com/in/chuck-de-liedekerke-b852611"" - }, - { - ""name"": ""Alejandro Trenor"", - ""title"": ""Co-founder and CFO"", - ""sourceUrl"": ""https://linkedin.com/in/alejandro-t-59a6653"" - }, - { - ""name"": ""Nicolas Verschuere"", - ""title"": ""Co-founder and Chief Agronomist"", - ""sourceUrl"": ""https://linkedin.com/in/nicolas-verschuere-3948616"" - }, - { - ""name"": ""Guillaume van Rijckevorsel"", - ""title"": ""Operations Director"", - ""sourceUrl"": ""https://linkedin.com/in/gvanrijckevorsel"" - }, - { - ""name"": ""Andrew Voysey"", - ""title"": ""Chief Impact Officer"", - ""sourceUrl"": ""https://linkedin.com/in/andrew-v-68385213"" - }, - { - ""name"": ""Marguerite Delormel"", - ""title"": ""Head of Corporate Sales"", - ""sourceUrl"": ""https://linkedin.com/in/margueritedelormel"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.soilcapital.com/about-us"", - ""productDescription"": ""https://www.soilcapital.com/services"", - ""clientCategories"": ""https://www.soilcapital.com/use-cases"", - ""geographicFocus"": ""https://www.soilcapital.com/contact"", - ""keyExecutives"": ""https://www.soilcapital.com/about-us"" - } -}",[],"{ - ""websiteURL"": ""https://www.soilcapital.com"", - ""companyDescription"": ""Soil Capital is a mission-driven company specializing in regenerative agriculture and the low-carbon transition of farms. Founded in 2013 by three farming and finance professionals, it aims to support farmers transitioning to more profitable and regenerative agriculture across 10 million hectares by 2030. The company values farmers' progress in regenerative agriculture and rewards them for ecosystem services, operating a certified carbon payment programme engaging over 1,800 farmers in France, Belgium, and the UK. Soil Capital also supports companies by building regenerative and resilient supply chains and became a B Corp in 2022. It is a founding member of the Climate Agriculture Alliance to establish rigorous frameworks for agricultural carbon finance in Europe."", - ""productDescription"": ""Soil Capital offers a carbon payment program for arable farmers in France, Belgium, and the UK, supporting both conventional and organic farming with some livestock allowed. Agronomists assist farmers adopting regenerative practices such as reducing synthetic inputs, minimizing soil disturbance, maximizing ground cover, diversifying rotations, and agroforestry integration. Farmers undergo annual carbon assessments to measure emissions or carbon storage, earning certified carbon certificates for verified reductions. Payments typically average €8,000 per farmer per year, with a baseline assessment fee and annual per-hectare fees. 80% of certificates can be sold immediately, and the remaining 20% are held as a 10-year insurance buffer. Farmers retain full control without binding commitments and can exit anytime, with a typical commitment duration of 5 years."", - ""clientCategories"": [ - ""Arable Farmers"", - ""Cereal Farmers"", - ""Regenerative Agriculture Farmers"", - ""Organic Agriculture Farmers"" - ], - ""sectorDescription"": ""Operates in the regenerative agriculture sector, providing certified carbon payment programs and agronomic support to farms transitioning towards sustainable and low-carbon agricultural practices."", - ""geographicFocus"": ""Primary focus on France, Belgium, and the United Kingdom, serving farmers across these three countries."", - ""keyExecutives"": [ - { - ""name"": ""Chuck de Liedekerke"", - ""title"": ""Co-founder and CEO"", - ""sourceUrl"": ""https://linkedin.com/in/chuck-de-liedekerke-b852611"" - }, - { - ""name"": ""Alejandro Trenor"", - ""title"": ""Co-founder and CFO"", - ""sourceUrl"": ""https://linkedin.com/in/alejandro-t-59a6653"" - }, - { - ""name"": ""Nicolas Verschuere"", - ""title"": ""Co-founder and Chief Agronomist"", - ""sourceUrl"": ""https://linkedin.com/in/nicolas-verschuere-3948616"" - }, - { - ""name"": ""Guillaume van Rijckevorsel"", - ""title"": ""Operations Director"", - ""sourceUrl"": ""https://linkedin.com/in/gvanrijckevorsel"" - }, - { - ""name"": ""Andrew Voysey"", - ""title"": ""Chief Impact Officer"", - ""sourceUrl"": ""https://linkedin.com/in/andrew-v-68385213"" - }, - { - ""name"": ""Marguerite Delormel"", - ""title"": ""Head of Corporate Sales"", - ""sourceUrl"": ""https://linkedin.com/in/margueritedelormel"" - }, - { - ""name"": ""Mihai Fagadar-Cosma"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/mihai-fagadar-cosma"" - }, - { - ""name"": ""Thomas Lecomte"", - ""title"": ""Co-Founder & Managing Partner"", - ""sourceUrl"": ""https://www.linkedin.com/company/soil-capital-farming"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by website domain matching 'soilcapital.com', HQ in Louvain-la-Neuve, Belgium, founding year 2013, and focus on regenerative agriculture with a carbon payment program active in France, Belgium, and the UK. Key executives cross-verified on LinkedIn include original co-founders and current C-suite and board members. Geographic focus specified clearly on primary countries served. Some leadership titles vary slightly between company website and LinkedIn profiles but overall consistent. No major conflicting information found. No blank required fields remain after enrichment."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.soilcapital.com/about-us"", - ""productDescription"": ""https://www.soilcapital.com/services"", - ""clientCategories"": ""https://www.soilcapital.com/use-cases"", - ""geographicFocus"": ""https://www.soilcapital.com/contact"", - ""keyExecutives"": ""https://www.soilcapital.com/about-us"" - } -}","{""clientCategories"":[""Arable Farmers"",""Cereal Farmers"",""Regenerative Agriculture Farmers"",""Organic Agriculture Farmers""],""companyDescription"":""Soil Capital is a mission-driven company specializing in regenerative agriculture and the low-carbon transition of farms. Founded in 2013 by three farming and finance professionals, it aims to support farmers transitioning to more profitable and regenerative agriculture across 10 million hectares by 2030. The company values farmers' progress in regenerative agriculture and rewards them for ecosystem services, operating a certified carbon payment programme engaging over 1,800 farmers in France, Belgium, and the UK. Soil Capital also supports companies by building regenerative and resilient supply chains and became a B Corp in 2022. It is a founding member of the Climate Agriculture Alliance to establish rigorous frameworks for agricultural carbon finance in Europe."",""geographicFocus"":""Primary focus on France, Belgium, and the United Kingdom, serving farmers across these three countries."",""keyExecutives"":[{""name"":""Chuck de Liedekerke"",""sourceUrl"":""https://linkedin.com/in/chuck-de-liedekerke-b852611"",""title"":""Co-founder and CEO""},{""name"":""Alejandro Trenor"",""sourceUrl"":""https://linkedin.com/in/alejandro-t-59a6653"",""title"":""Co-founder and CFO""},{""name"":""Nicolas Verschuere"",""sourceUrl"":""https://linkedin.com/in/nicolas-verschuere-3948616"",""title"":""Co-founder and Chief Agronomist""},{""name"":""Guillaume van Rijckevorsel"",""sourceUrl"":""https://linkedin.com/in/gvanrijckevorsel"",""title"":""Operations Director""},{""name"":""Andrew Voysey"",""sourceUrl"":""https://linkedin.com/in/andrew-v-68385213"",""title"":""Chief Impact Officer""},{""name"":""Marguerite Delormel"",""sourceUrl"":""https://linkedin.com/in/margueritedelormel"",""title"":""Head of Corporate Sales""},{""name"":""Mihai Fagadar-Cosma"",""sourceUrl"":""https://www.linkedin.com/in/mihai-fagadar-cosma"",""title"":""Chief Technology Officer""},{""name"":""Thomas Lecomte"",""sourceUrl"":""https://www.linkedin.com/company/soil-capital-farming"",""title"":""Co-Founder & Managing Partner""}],""missingImportantFields"":[],""productDescription"":""Soil Capital offers a carbon payment program for arable farmers in France, Belgium, and the UK, supporting both conventional and organic farming with some livestock allowed. Agronomists assist farmers adopting regenerative practices such as reducing synthetic inputs, minimizing soil disturbance, maximizing ground cover, diversifying rotations, and agroforestry integration. Farmers undergo annual carbon assessments to measure emissions or carbon storage, earning certified carbon certificates for verified reductions. Payments typically average €8,000 per farmer per year, with a baseline assessment fee and annual per-hectare fees. 80% of certificates can be sold immediately, and the remaining 20% are held as a 10-year insurance buffer. Farmers retain full control without binding commitments and can exit anytime, with a typical commitment duration of 5 years."",""researcherNotes"":""Entity disambiguation confirmed by website domain matching 'soilcapital.com', HQ in Louvain-la-Neuve, Belgium, founding year 2013, and focus on regenerative agriculture with a carbon payment program active in France, Belgium, and the UK. Key executives cross-verified on LinkedIn include original co-founders and current C-suite and board members. Geographic focus specified clearly on primary countries served. Some leadership titles vary slightly between company website and LinkedIn profiles but overall consistent. No major conflicting information found. No blank required fields remain after enrichment."",""sectorDescription"":""Operates in the regenerative agriculture sector, providing certified carbon payment programs and agronomic support to farms transitioning towards sustainable and low-carbon agricultural practices."",""sources"":{""clientCategories"":""https://www.soilcapital.com/use-cases"",""companyDescription"":""https://www.soilcapital.com/about-us"",""geographicFocus"":""https://www.soilcapital.com/contact"",""keyExecutives"":""https://www.soilcapital.com/about-us"",""productDescription"":""https://www.soilcapital.com/services""},""websiteURL"":""https://www.soilcapital.com""}","Correctness: 98% Completeness: 95% The information about Soil Capital is highly accurate and comprehensive based on multiple authoritative sources. Soil Capital was indeed founded in 2013 by three farming and finance professionals and is headquartered in Belgium (Louvain-la-Neuve/Brussels) focusing on France, Belgium, and the UK as its primary geographic footprint[2][3][5]. The company operates a certified carbon payment program launched in 2019 that supports regenerative agriculture practices with over 1,800 farmers engaged by 2025, providing payments averaging €8,000 per farmer annually with verified carbon certificates sold[1][2][3]. Key executives including Chuck de Liedekerke (Co-founder and CEO), Alejandro Trenor (Co-founder and CFO), and Nicolas Verschuere (Co-founder and Chief Agronomist) match the leadership profile verified on LinkedIn and corporate sources[2][3]. Soil Capital became a B Corp in 2022 and is a founding member of the Climate Agriculture Alliance for agricultural carbon finance frameworks in Europe[3]. The product offering, sector focus, client categories, and company values are all consistent across sources with no major discrepancies. Minor variations appear in some leadership title formats but not in identities. No significant important fields like funding or recent leadership changes are missing from the data provided. Overall, this yields very high correctness and completeness scores. Sources: https://www.soilcapital.com/about-us, https://www.trillimpact.com/portfolio-companies/soil-capital, https://www.welcometothejungle.com/en/companies/soilcapital/culture-1, https://deephorizon.eu/soil_capital-2/, https://www.trillimpact.com/insights/trill-impact-soil-capital","{""clientCategories"":[""Arable and cereal farmers practicing regenerative and organic agriculture in France, Belgium, and the UK""],""companyDescription"":""Soil Capital is a mission-driven company specializing in regenerative agriculture and the low-carbon transition of farms. Founded in 2013 by three farming and finance professionals, it aims to support farmers in transitioning to more profitable and regenerative agriculture over 10 million hectares by 2030. The company values farmers' progress in regenerative agriculture and rewards them for ecosystem services. Soil Capital also supports companies by engaging their farmers in certified regenerative agriculture approaches and building regenerative and resilient supply chains. It has developed Europe’s first certified carbon payment programme to accelerate the regenerative transition, engaging more than 1,800 farmers across France, Belgium, and the UK. Soil Capital became a B Corp in 2022 and is a founding member of the Climate Agriculture Alliance to support agricultural carbon finance frameworks in Europe."",""geographicFocus"":""HQ: Bd Baudouin 1er, 251348 Louvain-la-Neuve, Belgium; Sales Focus: France, Belgium, United Kingdom"",""keyExecutives"":[{""name"":""Chuck de Liedekerke"",""sourceUrl"":""https://linkedin.com/in/chuck-de-liedekerke-b852611"",""title"":""Co-founder and CEO""},{""name"":""Alejandro Trenor"",""sourceUrl"":""https://linkedin.com/in/alejandro-t-59a6653"",""title"":""Co-founder and CFO""},{""name"":""Nicolas Verschuere"",""sourceUrl"":""https://linkedin.com/in/nicolas-verschuere-3948616"",""title"":""Co-founder and Chief Agronomist""},{""name"":""Guillaume van Rijckevorsel"",""sourceUrl"":""https://linkedin.com/in/gvanrijckevorsel"",""title"":""Operations Director""},{""name"":""Andrew Voysey"",""sourceUrl"":""https://linkedin.com/in/andrew-v-68385213"",""title"":""Chief Impact Officer""},{""name"":""Marguerite Delormel"",""sourceUrl"":""https://linkedin.com/in/margueritedelormel"",""title"":""Head of Corporate Sales""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Soil Capital offers a carbon payment program for arable farmers in France, Belgium, and the UK, supporting both conventional and organic farming with some livestock allowed. Their agronomists assist farmers in adopting regenerative agriculture practices such as replacing synthetic inputs with organic ones, minimizing soil disturbance, maximizing ground cover, diversifying rotations, and integrating agroforestry. Farmers undergo a yearly carbon assessment to measure emissions or storage. Carbon certificates are earned for 1 tonne of CO2 equivalent reduced or stored, with a minimum payment of €27.50 (approximately £23) per certificate. Typically, farmers earn on average €8,000 per year. The program includes a baseline assessment fee (€600 once) and annual assessment fees (€3 per hectare per year). 80% of certificates can be sold immediately, while 20% are held in a 10-year buffer for insurance, verified via satellite. Farmers retain full control over their practices with no binding commitments and can leave anytime. Payments are guaranteed at a minimum rate per certificate, with receipt of 70% of final sales price. The commitment duration is 5 years with annual assessments."",""researcherNotes"":null,""sectorDescription"":""Operates in the regenerative agriculture sector, providing certified carbon payment programs and agronomic support to farms transitioning towards sustainable and low-carbon agricultural practices."",""sources"":{""clientCategories"":""https://www.soilcapital.com/use-cases"",""companyDescription"":""https://www.soilcapital.com/about-us"",""geographicFocus"":""https://www.soilcapital.com/contact"",""keyExecutives"":""https://www.soilcapital.com/about-us"",""productDescription"":""https://www.soilcapital.com/services""},""websiteURL"":""https://www.soilcapital.com/""}" -Innomar Ocean Technology,https://www.innomar.no,"European Innovation Council, Ocean Impact",innomar.no,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.innomar.no"", - ""companyDescription"": ""For more than 25 years, Innomar has been providing innovative and high-quality parametric sub-bottom profilers and software for marine and offshore industries, focusing on imaging sub-seabed structures and buried objects with high resolution and excellent penetration across all water depths (0.5 to 11,000+ meters). Innomar emphasizes user-friendly data acquisition, post-processing, and has a wide product range including shallow water, high power, remotely operated, multi-transducer solutions, and proprietary software for data acquisition and conversion (e.g., SEG-Y, XTF)."", - ""productDescription"": ""Innomar offers a range of Parametric Sub-Bottom Profilers (SBPs) categorized as Shallow Water, High Power, and Remotely Operated systems. Products include:\n- 'smart' SBP\n- 'essential' SBP\n- 'compact' SBP\n- 'light' SBP\n- 'standard' SBP (under Shallow Water)\n- 'medium-100' SBP\n- 'deep-36' SBP\n- 'deep-15' SBP (under High Power)\n- 'smart' SBP\n- 'essential' SBP\n- 'compact-usv' SBP\n- 'standard-usv' SBP\n- 'medium-usv' SBP\n- 'standard-rov' SBP (under Remotely Operated).\nEach product is designed for specific water depths and applications, providing high-resolution sub-seafloor imaging with excellent penetration. Innomar also provides software packages for data acquisition, conversion (to formats like SEG-Y and XTF), and post-processing."", - ""clientCategories"": [""Marine and Offshore Business""], - ""sectorDescription"": ""Operates in the ocean technology sector, specializing in parametric sub-bottom profilers and software solutions for marine and offshore geophysical imaging."", - ""geographicFocus"": ""HQ: Rostock, Germany; Sales Focus: Europe, Asia, Africa, Americas, Australasia"", - ""keyExecutives"": [ - { - ""name"": ""Tore Halvorsen"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"" - } - ], - ""linkedDocuments"": [ - ""https://innomar.com/upload/publications/2001_DredgingSurveying_Scheveningen.pdf"", - ""https://innomar.com/upload/Innomar-ISE2-Manual.pdf"", - ""https://innomar.com/upload/INNOMAR_TermsAndConditions_Sales.pdf"", - ""https://innomar.com/DHyG/HT22Messe.pdf"", - ""https://innomar.com/upload/publications/2009_SeabedAcoustics_AtlanticOcean.pdf"", - ""https://innomar.com/upload/publications/2008_NJG_ComparingShallowGeophysicalMethods.pdf"", - ""https://innomar.com/upload/publications/2005_EAGE_NearSurface_Palermo.pdf"", - ""https://innomar.com/upload/publications/2009_OffshoreTechnologyInternational.pdf"", - ""https://innomar.com/upload/publications/2000_PortTechnology17.pdf"", - ""https://innomar.com/upload/publications/2012_Geomorphology_MassMovements.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://innomar.com/company"", - ""productDescription"": ""https://innomar.com/products"", - ""clientCategories"": ""https://innomar.com/company"", - ""geographicFocus"": ""https://innomar.com/contact/sales-agents"", - ""keyExecutives"": ""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"" - } -}","{ - ""websiteURL"": ""https://www.innomar.no"", - ""companyDescription"": ""For more than 25 years, Innomar has been providing innovative and high-quality parametric sub-bottom profilers and software for marine and offshore industries, focusing on imaging sub-seabed structures and buried objects with high resolution and excellent penetration across all water depths (0.5 to 11,000+ meters). Innomar emphasizes user-friendly data acquisition, post-processing, and has a wide product range including shallow water, high power, remotely operated, multi-transducer solutions, and proprietary software for data acquisition and conversion (e.g., SEG-Y, XTF)."", - ""productDescription"": ""Innomar offers a range of Parametric Sub-Bottom Profilers (SBPs) categorized as Shallow Water, High Power, and Remotely Operated systems. Products include:\n- 'smart' SBP\n- 'essential' SBP\n- 'compact' SBP\n- 'light' SBP\n- 'standard' SBP (under Shallow Water)\n- 'medium-100' SBP\n- 'deep-36' SBP\n- 'deep-15' SBP (under High Power)\n- 'smart' SBP\n- 'essential' SBP\n- 'compact-usv' SBP\n- 'standard-usv' SBP\n- 'medium-usv' SBP\n- 'standard-rov' SBP (under Remotely Operated).\nEach product is designed for specific water depths and applications, providing high-resolution sub-seafloor imaging with excellent penetration. Innomar also provides software packages for data acquisition, conversion (to formats like SEG-Y and XTF), and post-processing."", - ""clientCategories"": [""Marine and Offshore Business""], - ""sectorDescription"": ""Operates in the ocean technology sector, specializing in parametric sub-bottom profilers and software solutions for marine and offshore geophysical imaging."", - ""geographicFocus"": ""HQ: Rostock, Germany; Sales Focus: Europe, Asia, Africa, Americas, Australasia"", - ""keyExecutives"": [ - { - ""name"": ""Tore Halvorsen"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"" - } - ], - ""linkedDocuments"": [ - ""https://innomar.com/upload/publications/2001_DredgingSurveying_Scheveningen.pdf"", - ""https://innomar.com/upload/Innomar-ISE2-Manual.pdf"", - ""https://innomar.com/upload/INNOMAR_TermsAndConditions_Sales.pdf"", - ""https://innomar.com/DHyG/HT22Messe.pdf"", - ""https://innomar.com/upload/publications/2009_SeabedAcoustics_AtlanticOcean.pdf"", - ""https://innomar.com/upload/publications/2008_NJG_ComparingShallowGeophysicalMethods.pdf"", - ""https://innomar.com/upload/publications/2005_EAGE_NearSurface_Palermo.pdf"", - ""https://innomar.com/upload/publications/2009_OffshoreTechnologyInternational.pdf"", - ""https://innomar.com/upload/publications/2000_PortTechnology17.pdf"", - ""https://innomar.com/upload/publications/2012_Geomorphology_MassMovements.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://innomar.com/company"", - ""productDescription"": ""https://innomar.com/products"", - ""clientCategories"": ""https://innomar.com/company"", - ""geographicFocus"": ""https://innomar.com/contact/sales-agents"", - ""keyExecutives"": ""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"" - } -}",[],"{ - ""websiteURL"": ""https://www.innomar.no"", - ""companyDescription"": ""For more than 25 years, Innomar has been providing innovative and high-quality parametric sub-bottom profilers and software for marine and offshore industries, focusing on imaging sub-seabed structures and buried objects with high resolution and excellent penetration across all water depths (0.5 to 11,000+ meters). Innomar emphasizes user-friendly data acquisition, post-processing, and has a wide product range including shallow water, high power, remotely operated, multi-transducer solutions, and proprietary software for data acquisition and conversion (e.g., SEG-Y, XTF). It is headquartered in Rostock, Germany and was acquired in July 2024 by NORBIT ASA, integrating its technology and expertise within the larger maritime technology group[1][2][4]."", - ""productDescription"": ""Innomar offers a comprehensive range of Parametric Sub-Bottom Profilers (SBPs) including shallow water (e.g., 'smart', 'essential', 'compact', 'light', 'standard'), high power (e.g., 'medium-100', 'deep-36', 'deep-15'), and remotely operated systems (e.g., 'standard-rov'). These systems provide high-resolution sub-seafloor imaging with excellent penetration for applications such as sediment structure exploration, archaeological artefact detection, pipeline surveying, and dredging. The company also provides dedicated software for data acquisition, real-time control, and post-processing, supporting formats like SEG-Y and XTF, enabling efficient marine geophysical surveys[4]."", - ""clientCategories"": [ - ""Marine and Offshore Businesses"" - ], - ""sectorDescription"": ""Ocean technology sector specializing in parametric sub-bottom profilers and software solutions for marine and offshore geophysical imaging."", - ""geographicFocus"": ""Headquartered in Rostock, Germany, Innomar serves a global customer base with sales focus across Europe, Asia, Africa, Americas, and Australasia, demonstrating wide international reach through over 80 countries[1][4]."", - ""keyExecutives"": [ - { - ""name"": ""Tore Halvorsen"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"" - } - ], - ""researcherNotes"": ""Innomar is correctly disambiguated by its official domain (innomar.no), headquarters location (Rostock, Germany), and distinctive parametric sub-bottom profiler products. The acquisition by NORBIT ASA in June 2024 confirms corporate control and strategic positioning within the ocean technology sector. Geographic focus is broad and global per multiple official sources. No conflicting executive or product information was found. Client categories remain narrowly defined consistent with marine/offshore markets. No senior leadership beyond the founder/CEO was found on LinkedIn or other sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innomar.com/company/about-innomar"", - ""productDescription"": ""https://www.innomar.com/products"", - ""clientCategories"": ""https://www.innomar.com/company/about-innomar"", - ""geographicFocus"": ""https://www.innomar.com/contact/sales-agents"", - ""keyExecutives"": ""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"" - } -}","{""clientCategories"":[""Marine and Offshore Businesses""],""companyDescription"":""For more than 25 years, Innomar has been providing innovative and high-quality parametric sub-bottom profilers and software for marine and offshore industries, focusing on imaging sub-seabed structures and buried objects with high resolution and excellent penetration across all water depths (0.5 to 11,000+ meters). Innomar emphasizes user-friendly data acquisition, post-processing, and has a wide product range including shallow water, high power, remotely operated, multi-transducer solutions, and proprietary software for data acquisition and conversion (e.g., SEG-Y, XTF). It is headquartered in Rostock, Germany and was acquired in July 2024 by NORBIT ASA, integrating its technology and expertise within the larger maritime technology group[1][2][4]."",""geographicFocus"":""Headquartered in Rostock, Germany, Innomar serves a global customer base with sales focus across Europe, Asia, Africa, Americas, and Australasia, demonstrating wide international reach through over 80 countries[1][4]."",""keyExecutives"":[{""name"":""Tore Halvorsen"",""sourceUrl"":""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"",""title"":""Founder & CEO""}],""missingImportantFields"":[],""productDescription"":""Innomar offers a comprehensive range of Parametric Sub-Bottom Profilers (SBPs) including shallow water (e.g., 'smart', 'essential', 'compact', 'light', 'standard'), high power (e.g., 'medium-100', 'deep-36', 'deep-15'), and remotely operated systems (e.g., 'standard-rov'). These systems provide high-resolution sub-seafloor imaging with excellent penetration for applications such as sediment structure exploration, archaeological artefact detection, pipeline surveying, and dredging. The company also provides dedicated software for data acquisition, real-time control, and post-processing, supporting formats like SEG-Y and XTF, enabling efficient marine geophysical surveys[4]."",""researcherNotes"":""Innomar is correctly disambiguated by its official domain (innomar.no), headquarters location (Rostock, Germany), and distinctive parametric sub-bottom profiler products. The acquisition by NORBIT ASA in June 2024 confirms corporate control and strategic positioning within the ocean technology sector. Geographic focus is broad and global per multiple official sources. No conflicting executive or product information was found. Client categories remain narrowly defined consistent with marine/offshore markets. No senior leadership beyond the founder/CEO was found on LinkedIn or other sources."",""sectorDescription"":""Ocean technology sector specializing in parametric sub-bottom profilers and software solutions for marine and offshore geophysical imaging."",""sources"":{""clientCategories"":""https://www.innomar.com/company/about-innomar"",""companyDescription"":""https://www.innomar.com/company/about-innomar"",""geographicFocus"":""https://www.innomar.com/contact/sales-agents"",""keyExecutives"":""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"",""productDescription"":""https://www.innomar.com/products""},""websiteURL"":""https://www.innomar.no""}","Correctness: 100% Completeness: 98% The provided description of Innomar is factually accurate and comprehensive. Innomar is indeed headquartered in Rostock, Germany, and specializes in high-quality parametric sub-bottom profilers used in marine and offshore industries for sub-seabed imaging, with a product range covering shallow water, high power, remotely operated systems, and proprietary software handling formats like SEG-Y and XTF. The company serves a global customer base in over 80 countries and maintains a strong focus on user-friendly acquisition and processing software. The acquisition by NORBIT ASA was officially completed on July 1, 2024, with a purchase price around EUR 39.9 million paid partly in cash and partly in shares issued to Innomar’s founding management, confirming NORBIT’s integration of Innomar’s technology and expertise into its ocean technology offering. Leadership information naming Tore Halvorsen as Founder & CEO aligns with publicly available credible reports. Minor completeness deductions are only due to the absence of listing other senior executives beyond the founder/CEO, which aligns with available sources. These details are confirmed explicitly by NORBIT ASA press releases and Innomar official information from July 2024, the most recent and authoritative documents on the matter: https://www.globenewswire.com/news-release/2024/07/12/2912489/0/en/NORBIT-ASA-Closing-of-NORBIT-s-acquisition-of-the-maritime-technology-company-Innomar.html, https://norbit.com/norbit-to-acquire-the-maritime-technology-company-innomar/, and https://www.innomar.no/about/[1][3][4].","{""clientCategories"":[""Marine and Offshore Business""],""companyDescription"":""For more than 25 years, Innomar has been providing innovative and high-quality parametric sub-bottom profilers and software for marine and offshore industries, focusing on imaging sub-seabed structures and buried objects with high resolution and excellent penetration across all water depths (0.5 to 11,000+ meters). Innomar emphasizes user-friendly data acquisition, post-processing, and has a wide product range including shallow water, high power, remotely operated, multi-transducer solutions, and proprietary software for data acquisition and conversion (e.g., SEG-Y, XTF)."",""geographicFocus"":""HQ: Rostock, Germany; Sales Focus: Europe, Asia, Africa, Americas, Australasia"",""keyExecutives"":[{""name"":""Tore Halvorsen"",""sourceUrl"":""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"",""title"":""Founder & CEO""}],""linkedDocuments"":[""https://innomar.com/upload/publications/2001_DredgingSurveying_Scheveningen.pdf"",""https://innomar.com/upload/Innomar-ISE2-Manual.pdf"",""https://innomar.com/upload/INNOMAR_TermsAndConditions_Sales.pdf"",""https://innomar.com/DHyG/HT22Messe.pdf"",""https://innomar.com/upload/publications/2009_SeabedAcoustics_AtlanticOcean.pdf"",""https://innomar.com/upload/publications/2008_NJG_ComparingShallowGeophysicalMethods.pdf"",""https://innomar.com/upload/publications/2005_EAGE_NearSurface_Palermo.pdf"",""https://innomar.com/upload/publications/2009_OffshoreTechnologyInternational.pdf"",""https://innomar.com/upload/publications/2000_PortTechnology17.pdf"",""https://innomar.com/upload/publications/2012_Geomorphology_MassMovements.pdf""],""missingImportantFields"":[],""productDescription"":""Innomar offers a range of Parametric Sub-Bottom Profilers (SBPs) categorized as Shallow Water, High Power, and Remotely Operated systems. Products include:\n- 'smart' SBP\n- 'essential' SBP\n- 'compact' SBP\n- 'light' SBP\n- 'standard' SBP (under Shallow Water)\n- 'medium-100' SBP\n- 'deep-36' SBP\n- 'deep-15' SBP (under High Power)\n- 'smart' SBP\n- 'essential' SBP\n- 'compact-usv' SBP\n- 'standard-usv' SBP\n- 'medium-usv' SBP\n- 'standard-rov' SBP (under Remotely Operated).\nEach product is designed for specific water depths and applications, providing high-resolution sub-seafloor imaging with excellent penetration. Innomar also provides software packages for data acquisition, conversion (to formats like SEG-Y and XTF), and post-processing."",""researcherNotes"":null,""sectorDescription"":""Operates in the ocean technology sector, specializing in parametric sub-bottom profilers and software solutions for marine and offshore geophysical imaging."",""sources"":{""clientCategories"":""https://innomar.com/company"",""companyDescription"":""https://innomar.com/company"",""geographicFocus"":""https://innomar.com/contact/sales-agents"",""keyExecutives"":""https://www.marinetechnologynews.com/news/innomar-ocean-technology-raises-624839"",""productDescription"":""https://innomar.com/products""},""websiteURL"":""https://www.innomar.no""}" -Virkesbörsen,https://www.virkesborsen.se/,BackingMinds,virkesborsen.se,https://www.linkedin.com/company/treebula,"{""seniorLeadership"":[{""fullName"":""Daniel Kernell"",""title"":""CEO"",""linkedinProfile"":""https://www.linkedin.com/in/dameke""},{""fullName"":""Adam Aljaraidah Mashagbeh"",""title"":""CEO, COO & Co-founder - Swedens digital marketplace for timber trading"",""linkedinProfile"":""https://www.linkedin.com/in/adamaljaraidah""},{""fullName"":""Mattin Lotfi"",""title"":""CTO"",""linkedinProfile"":""https://www.linkedin.com/in/mattin-lotfi-2b8258126""}]}","{""seniorLeadership"":[{""fullName"":""Daniel Kernell"",""title"":""CEO"",""linkedinProfile"":""https://www.linkedin.com/in/dameke""},{""fullName"":""Adam Aljaraidah Mashagbeh"",""title"":""CEO, COO & Co-founder - Swedens digital marketplace for timber trading"",""linkedinProfile"":""https://www.linkedin.com/in/adamaljaraidah""},{""fullName"":""Mattin Lotfi"",""title"":""CTO"",""linkedinProfile"":""https://www.linkedin.com/in/mattin-lotfi-2b8258126""}]}","{ - ""websiteURL"": ""https://www.virkesborsen.se/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website https://www.virkesborsen.se/ contains no accessible content or extractable information, making it impossible to perform the required data extraction. No information about the company, its products, customers, geographic focus, leadership, or linked documents could be found."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.virkesborsen.se/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website https://www.virkesborsen.se/ contains no accessible content or extractable information, making it impossible to perform the required data extraction. No information about the company, its products, customers, geographic focus, leadership, or linked documents could be found."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.virkesborsen.se"", - ""companyDescription"": ""Virkesbörsen, founded in 2016 and headquartered in Jönköping, Sweden, operates a digital marketplace for buying and selling wood. It aims to increase efficiency and transparency in the timber trade by connecting forest owners and timber buyers through a user-friendly platform. The company focuses on serving the Swedish timber market, which includes approximately 330,000 forest owners, and promotes fair pricing and ease of transaction within the forestry sector."", - ""productDescription"": ""Virkesbörsen delivers a digital marketplace platform that enables forest owners to advertise their timber and receive bids from multiple buyers, streamlining the procurement and sale of wood. The platform enhances transparency, improves access to market data, and facilitates efficient transactions between sellers and buyers in the forestry industry. Additional offerings include advisory services on forest management and market trends to support customers' decision-making."", - ""clientCategories"": [""Forest Owners"", ""Timber Buyers"", ""Forest Companies"", ""Forestry Advisors""], - ""sectorDescription"": ""Digital marketplace specializing in timber trading, focused on enhancing transparency and efficiency in the forestry industry within Sweden."", - ""geographicFocus"": ""Primary focus on the Swedish timber market, with operations extending into the Norwegian market and plans for global expansion."", - ""keyExecutives"": [ - { - ""name"": ""Adam Aljaraidah"", - ""title"": ""CEO & Co-founder"", - ""sourceUrl"": ""https://www.linkedin.com/in/adamaljaraidah"" - }, - { - ""name"": ""Daniel Kernell"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/dameke"" - }, - { - ""name"": ""Mattin Lotfi"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.linkedin.com/in/mattin-lotfi-2b8258126"" - } - ], - ""researcherNotes"": ""The company is confirmed as the Swedish digital marketplace for timber trading headquartered in Jönköping, Sweden, originally launched in 2017. Its official website contains no accessible detailed content, so primary enrichment was from LinkedIn exec profiles and multiple secondary sources including Nordic9 and Dealroom describing the business model, market focus, and recent funding. Some executive titles differ slightly across sources (two CEO titles found on LinkedIn), suggesting possible dual or transitional leadership. Geographic focus is Sweden primarily, with Norwegian involvement and plans for global expansion. No regulatory filings found to verify legal entity details."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordic9.com/news/virkesborsen-grabs-1-3m-from-backing-minds-to-further-develop-a-digital-marketplace-for-buying-and-s-news4403744947/"", - ""productDescription"": ""https://app.dealroom.co/companies/virkesb_rsen"", - ""clientCategories"": ""https://nordic9.com/news/virkesborsen-grabs-1-3m-from-backing-minds-to-further-develop-a-digital-marketplace-for-buying-and-s-news4403744947/"", - ""geographicFocus"": ""https://app.dealroom.co/companies/virkesb_rsen"", - ""keyExecutives"": ""https://www.linkedin.com/in/adamaljaraidah"" - } -}","{""clientCategories"":[""Forest Owners"",""Timber Buyers"",""Forest Companies"",""Forestry Advisors""],""companyDescription"":""Virkesbörsen, founded in 2016 and headquartered in Jönköping, Sweden, operates a digital marketplace for buying and selling wood. It aims to increase efficiency and transparency in the timber trade by connecting forest owners and timber buyers through a user-friendly platform. The company focuses on serving the Swedish timber market, which includes approximately 330,000 forest owners, and promotes fair pricing and ease of transaction within the forestry sector."",""geographicFocus"":""Primary focus on the Swedish timber market, with operations extending into the Norwegian market and plans for global expansion."",""keyExecutives"":[{""name"":""Adam Aljaraidah"",""sourceUrl"":""https://www.linkedin.com/in/adamaljaraidah"",""title"":""CEO & Co-founder""},{""name"":""Daniel Kernell"",""sourceUrl"":""https://www.linkedin.com/in/dameke"",""title"":""CEO""},{""name"":""Mattin Lotfi"",""sourceUrl"":""https://www.linkedin.com/in/mattin-lotfi-2b8258126"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Virkesbörsen delivers a digital marketplace platform that enables forest owners to advertise their timber and receive bids from multiple buyers, streamlining the procurement and sale of wood. The platform enhances transparency, improves access to market data, and facilitates efficient transactions between sellers and buyers in the forestry industry. Additional offerings include advisory services on forest management and market trends to support customers' decision-making."",""researcherNotes"":""The company is confirmed as the Swedish digital marketplace for timber trading headquartered in Jönköping, Sweden, originally launched in 2017. Its official website contains no accessible detailed content, so primary enrichment was from LinkedIn exec profiles and multiple secondary sources including Nordic9 and Dealroom describing the business model, market focus, and recent funding. Some executive titles differ slightly across sources (two CEO titles found on LinkedIn), suggesting possible dual or transitional leadership. Geographic focus is Sweden primarily, with Norwegian involvement and plans for global expansion. No regulatory filings found to verify legal entity details."",""sectorDescription"":""Digital marketplace specializing in timber trading, focused on enhancing transparency and efficiency in the forestry industry within Sweden."",""sources"":{""clientCategories"":""https://nordic9.com/news/virkesborsen-grabs-1-3m-from-backing-minds-to-further-develop-a-digital-marketplace-for-buying-and-s-news4403744947/"",""companyDescription"":""https://nordic9.com/news/virkesborsen-grabs-1-3m-from-backing-minds-to-further-develop-a-digital-marketplace-for-buying-and-s-news4403744947/"",""geographicFocus"":""https://app.dealroom.co/companies/virkesb_rsen"",""keyExecutives"":""https://www.linkedin.com/in/adamaljaraidah"",""productDescription"":""https://app.dealroom.co/companies/virkesb_rsen""},""websiteURL"":""https://www.virkesborsen.se""}","Correctness: 85% Completeness: 80% The company profile is mostly accurate: Virkesbörsen (now rebranded as Treebula) is a digital marketplace primarily focused on the Swedish timber market, connecting forest owners and timber buyers, aiming to increase efficiency and transparency in timber trading. It was founded around 2016 and headquartered in Sweden, originally Jönköping but later sources indicate HQ in Stockholm municipality, reflecting some inconsistency in HQ location[2][3][4]. Key executives include Adam Aljaraidah as CEO and co-founder, with some evidence of dual leadership or transitional CEO titles, but Daniel Kernell and Mattin Lotfi as CTO are less clearly documented in the most recent profiles[1][2]. The platform allows timber advertisement and bidding, improving access to market data and offering advisory services on forest management and trends, confirming the product description[2]. Geographic focus is Sweden and Norway, with plans for global expansion, aligned with multiple sources[2][3]. Funding details are sparse and incomplete, with some mentions of early VC rounds (~$2.6m) but no definitive sourcing from official filings, and no regulatory filings found to confirm legal entity or funding details, which affects completeness and correctness on that front[2][3][5]. Also, the company’s website currently redirects to treebula.se, indicating a rebrand, which is missing in the original text. Overall, while core facts about the business model, market, leadership, and product are well supported, the HQ location inconsistency, leadership title discrepancies, and limited funding and legal entity details reduce correctness and completeness. https://nordic9.com/news/virkesborsen-grabs-1-3m-from-backing-minds-to-further-develop-a-digital-marketplace-for-buying-and-s-news4403744947/ https://app.dealroom.co/companies/virkesb_rsen https://www.linkedin.com/in/adamaljaraidah https://ecosystem.madrimasd.org/companies/virkesb_rsen","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website https://www.virkesborsen.se/ contains no accessible content or extractable information, making it impossible to perform the required data extraction. No information about the company, its products, customers, geographic focus, leadership, or linked documents could be found."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://www.virkesborsen.se/""}" -Atekka,https://www.atekka.fr,"Agro Invest, Invivo Capital Partners",atekka.fr,https://www.linkedin.com/company/atekka,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.atekka.fr"", - ""companyDescription"": ""Atekka is described as the first new generation agricultural insurance that protects against agricultural risks by combining technical and technological innovation for a tailor-made support of agricultural sectors. Their mission is to protect farmers to protect agriculture and food supply. The insurance is personalized according to production specifics and risk exposure, offered in partnership with cooperatives and local agents across France. Atekka reconciles farmers, their suppliers, and clients with insurance by providing more effective, closer, and simpler technical and technological solutions. Their mission is to make insurance accessible to all, using their dual expertise in agriculture and insurance, based on feedback from agricultural professionals. They protect farmers to safeguard the agricultural sector and food supply, serving both economic and societal roles. Their values include innovation (technical, technological, and economic model innovation), deep roots in the agricultural sector, and strong support with an ultra-proximity approach. Atekka was created in collaboration with 40 agricultural cooperatives to develop tailored solutions for all agricultural sector players."", - ""productDescription"": ""Atekka develops agricultural insurance products co-constructed with cooperatives and farmers, tailored to their needs. Their insurance, called Ne9o Assurance, is close to customers with agricultural advisors throughout France, offers modular pricing, rapid compensation matching real losses, and a simple digital process from quotes to claims. They offer customized insurance for agricultural suppliers, cooperatives/traders/professional organizations, and agri-food industries to secure supply chains and product quality. Their core products/services include:\n- Agricultural insurance for farmers\n- Insurance for suppliers and procurement organizations\n- Customized insurance solutions tailored to specific risks and production modes\n- Digital services facilitating insurance processes\n"", - ""clientCategories"": [ - ""Farmers"", - ""Collectors/Processors"", - ""Suppliers/Procurement"", - ""Agricultural Cooperatives/Traders"", - ""Agri-food Industries"" - ], - ""sectorDescription"": ""Operates in the agricultural insurance sector, providing innovative, tailored insurance solutions for various agricultural stakeholders including farmers, suppliers, and cooperatives."", - ""geographicFocus"": ""HQ: 26 rue du Printemps, 75017 Paris, France; Sales Focus: France (served through partnerships with agricultural cooperatives and local agents throughout the country)"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No data on key executives such as founders, CEO, CTO, CFO was found on the website including 'Qui sommes-nous ?' and 'Presse' pages."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://atekka.fr/qui-sommes-nous"", - ""productDescription"": ""https://atekka.fr/assurance-agricole"", - ""clientCategories"": ""https://atekka.fr/assurance-agriculteurs"", - ""geographicFocus"": ""https://atekka.fr/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.atekka.fr"", - ""companyDescription"": ""Atekka is described as the first new generation agricultural insurance that protects against agricultural risks by combining technical and technological innovation for a tailor-made support of agricultural sectors. Their mission is to protect farmers to protect agriculture and food supply. The insurance is personalized according to production specifics and risk exposure, offered in partnership with cooperatives and local agents across France. Atekka reconciles farmers, their suppliers, and clients with insurance by providing more effective, closer, and simpler technical and technological solutions. Their mission is to make insurance accessible to all, using their dual expertise in agriculture and insurance, based on feedback from agricultural professionals. They protect farmers to safeguard the agricultural sector and food supply, serving both economic and societal roles. Their values include innovation (technical, technological, and economic model innovation), deep roots in the agricultural sector, and strong support with an ultra-proximity approach. Atekka was created in collaboration with 40 agricultural cooperatives to develop tailored solutions for all agricultural sector players."", - ""productDescription"": ""Atekka develops agricultural insurance products co-constructed with cooperatives and farmers, tailored to their needs. Their insurance, called Ne9o Assurance, is close to customers with agricultural advisors throughout France, offers modular pricing, rapid compensation matching real losses, and a simple digital process from quotes to claims. They offer customized insurance for agricultural suppliers, cooperatives/traders/professional organizations, and agri-food industries to secure supply chains and product quality. Their core products/services include:\n- Agricultural insurance for farmers\n- Insurance for suppliers and procurement organizations\n- Customized insurance solutions tailored to specific risks and production modes\n- Digital services facilitating insurance processes\n"", - ""clientCategories"": [ - ""Farmers"", - ""Collectors/Processors"", - ""Suppliers/Procurement"", - ""Agricultural Cooperatives/Traders"", - ""Agri-food Industries"" - ], - ""sectorDescription"": ""Operates in the agricultural insurance sector, providing innovative, tailored insurance solutions for various agricultural stakeholders including farmers, suppliers, and cooperatives."", - ""geographicFocus"": ""HQ: 26 rue du Printemps, 75017 Paris, France; Sales Focus: France (served through partnerships with agricultural cooperatives and local agents throughout the country)"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No data on key executives such as founders, CEO, CTO, CFO was found on the website including 'Qui sommes-nous ?' and 'Presse' pages."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://atekka.fr/qui-sommes-nous"", - ""productDescription"": ""https://atekka.fr/assurance-agricole"", - ""clientCategories"": ""https://atekka.fr/assurance-agriculteurs"", - ""geographicFocus"": ""https://atekka.fr/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.atekka.fr"", - ""companyDescription"": ""Atekka is the first new generation agricultural insurance intermediary in France, founded in 2017. It provides innovative, tailored insurance solutions that combine technical and technological innovations to protect agricultural risks. Atekka’s mission is to protect farmers and the agricultural sector by offering personalized insurance that matches specific production characteristics and risk exposures. The company operates in partnership with about 40 agricultural cooperatives and local agents, serving farmers, suppliers, cooperatives, and agri-food industries across France. Their approach emphasizes accessibility, proximity, and innovation in both technical support and economic models."", - ""productDescription"": ""Atekka develops and distributes agricultural insurance products co-constructed with cooperatives and farmers, under the brand Ne9o Assurance. The products offer modular pricing, rapid compensation aligned with actual losses, and a simple digital process from quotations to claims. They provide customized insurance covering farmers, suppliers, cooperatives/traders, and agri-food industries to secure supply chains and product quality, supported by a network of agricultural advisors throughout France."", - ""clientCategories"": [ - ""Farmers"", - ""Collectors/Processors"", - ""Suppliers/Procurement"", - ""Agricultural Cooperatives/Traders"", - ""Agri-food Industries"" - ], - ""sectorDescription"": ""Agricultural insurance intermediary specializing in innovative, tailor-made insurance solutions for French agricultural stakeholders including farmers, cooperatives, and suppliers."", - ""geographicFocus"": ""Headquartered in Paris, France, Atekka’s sales and coverage focus exclusively on the French market through partnerships with agricultural cooperatives and local agents nationwide."", - ""keyExecutives"": [], - ""researcherNotes"": ""No publicly available data on key executives such as founders, CEO, or other senior leadership was found on the company website or LinkedIn page as of current research. The company is confirmed as the correct entity based on domain (atekka.fr), HQ location (Paris), founding year (2017), and specialized agricultural insurance focus. Sources consulted include official company website and specialized investment pages. Geographic focus limited to France only."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.atekka.fr/qui-sommes-nous"", - ""productDescription"": ""https://www.atekka.fr/assurance-agricole"", - ""clientCategories"": ""https://www.atekka.fr/assurance-agriculteurs"", - ""geographicFocus"": ""https://www.atekka.fr/contact"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Farmers"",""Collectors/Processors"",""Suppliers/Procurement"",""Agricultural Cooperatives/Traders"",""Agri-food Industries""],""companyDescription"":""Atekka is the first new generation agricultural insurance intermediary in France, founded in 2017. It provides innovative, tailored insurance solutions that combine technical and technological innovations to protect agricultural risks. Atekka’s mission is to protect farmers and the agricultural sector by offering personalized insurance that matches specific production characteristics and risk exposures. The company operates in partnership with about 40 agricultural cooperatives and local agents, serving farmers, suppliers, cooperatives, and agri-food industries across France. Their approach emphasizes accessibility, proximity, and innovation in both technical support and economic models."",""geographicFocus"":""Headquartered in Paris, France, Atekka’s sales and coverage focus exclusively on the French market through partnerships with agricultural cooperatives and local agents nationwide."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Atekka develops and distributes agricultural insurance products co-constructed with cooperatives and farmers, under the brand Ne9o Assurance. The products offer modular pricing, rapid compensation aligned with actual losses, and a simple digital process from quotations to claims. They provide customized insurance covering farmers, suppliers, cooperatives/traders, and agri-food industries to secure supply chains and product quality, supported by a network of agricultural advisors throughout France."",""researcherNotes"":""No publicly available data on key executives such as founders, CEO, or other senior leadership was found on the company website or LinkedIn page as of current research. The company is confirmed as the correct entity based on domain (atekka.fr), HQ location (Paris), founding year (2017), and specialized agricultural insurance focus. Sources consulted include official company website and specialized investment pages. Geographic focus limited to France only."",""sectorDescription"":""Agricultural insurance intermediary specializing in innovative, tailor-made insurance solutions for French agricultural stakeholders including farmers, cooperatives, and suppliers."",""sources"":{""clientCategories"":""https://www.atekka.fr/assurance-agriculteurs"",""companyDescription"":""https://www.atekka.fr/qui-sommes-nous"",""geographicFocus"":""https://www.atekka.fr/contact"",""keyExecutives"":null,""productDescription"":""https://www.atekka.fr/assurance-agricole""},""websiteURL"":""https://www.atekka.fr""}","Correctness: 98% Completeness: 85% The described profile of Atekka as the first new-generation agricultural insurance intermediary in France, founded in 2017, headquartered in Paris, and focused solely on the French market is confirmed by multiple sources including FrenchFoodCapital and Dealroom, supporting key facts about its founding year, specialized insurance products, and geographic focus[1][2][4]. The description of Atekka’s tailored, innovative insurance offerings co-constructed with cooperatives and farmers under the Ne9o Assurance brand aligns closely with public company statements emphasizing technical and technological innovation and multi-risk climate insurance targeting French farmers[1][2]. The company’s partnership network with about 40 cooperatives and local agents serving various agricultural clients matches reported collaborative distribution models[2][4]. However, no independent public sources provide detailed information on key executives, which is a notable omission affecting completeness despite confirmation that no leadership data is publicly found[1][2][3]. No contradictory information was found regarding product or sector focus. Overall, the description is accurate but incomplete regarding leadership details, and has solid corroboration on core company identity, activities, and market approach. Official company and investment pages were primary references as of 2025-09-10. https://frenchfoodcapital.com/en/participation/atekka/ https://app.dealroom.co/companies/atekka https://www.centerofstartups.de/companies/atekka","{""clientCategories"":[""Farmers"",""Collectors/Processors"",""Suppliers/Procurement"",""Agricultural Cooperatives/Traders"",""Agri-food Industries""],""companyDescription"":""Atekka is described as the first new generation agricultural insurance that protects against agricultural risks by combining technical and technological innovation for a tailor-made support of agricultural sectors. Their mission is to protect farmers to protect agriculture and food supply. The insurance is personalized according to production specifics and risk exposure, offered in partnership with cooperatives and local agents across France. Atekka reconciles farmers, their suppliers, and clients with insurance by providing more effective, closer, and simpler technical and technological solutions. Their mission is to make insurance accessible to all, using their dual expertise in agriculture and insurance, based on feedback from agricultural professionals. They protect farmers to safeguard the agricultural sector and food supply, serving both economic and societal roles. Their values include innovation (technical, technological, and economic model innovation), deep roots in the agricultural sector, and strong support with an ultra-proximity approach. Atekka was created in collaboration with 40 agricultural cooperatives to develop tailored solutions for all agricultural sector players."",""geographicFocus"":""HQ: 26 rue du Printemps, 75017 Paris, France; Sales Focus: France (served through partnerships with agricultural cooperatives and local agents throughout the country)"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Atekka develops agricultural insurance products co-constructed with cooperatives and farmers, tailored to their needs. Their insurance, called Ne9o Assurance, is close to customers with agricultural advisors throughout France, offers modular pricing, rapid compensation matching real losses, and a simple digital process from quotes to claims. They offer customized insurance for agricultural suppliers, cooperatives/traders/professional organizations, and agri-food industries to secure supply chains and product quality. Their core products/services include:\n- Agricultural insurance for farmers\n- Insurance for suppliers and procurement organizations\n- Customized insurance solutions tailored to specific risks and production modes\n- Digital services facilitating insurance processes\n"",""researcherNotes"":""No data on key executives such as founders, CEO, CTO, CFO was found on the website including 'Qui sommes-nous ?' and 'Presse' pages."",""sectorDescription"":""Operates in the agricultural insurance sector, providing innovative, tailored insurance solutions for various agricultural stakeholders including farmers, suppliers, and cooperatives."",""sources"":{""clientCategories"":""https://atekka.fr/assurance-agriculteurs"",""companyDescription"":""https://atekka.fr/qui-sommes-nous"",""geographicFocus"":""https://atekka.fr/contact"",""keyExecutives"":null,""productDescription"":""https://atekka.fr/assurance-agricole""},""websiteURL"":""https://www.atekka.fr""}" -SEEDERAL Technologies,https://seederal.fr/,"Ankaa Ventures, Breizh Up, Crédit Agricole du Morbihan, Epopée Gestion, Kima Ventures, Supernova Invest, Unigrains",seederal.fr,https://www.linkedin.com/company/seederal-technologies/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://seederal.fr/"", - ""companyDescription"": ""Seederal is a young industrial company pioneering 100% electric agricultural machinery. It works with farmers and expert teams to develop sustainable, energy-autonomous agriculture. The company has developed a 160 HP electric tractor prototype with 8-12 hours of work autonomy and a 2-hour full recharge time at max power. Seederal focuses on decarbonizing agriculture and innovating the tractor of tomorrow."", - ""productDescription"": ""Seederal's core offering is a 160 horsepower fully electric agricultural tractor with 8-12 hours of work autonomy and a 2-hour full recharge time at maximum power. The tractor is designed without a gearbox and developed in collaboration with farmers for sustainable and energy-autonomous agriculture."", - ""clientCategories"": [""Agricultural sector"", ""Farmers""], - ""sectorDescription"": ""Operates in the agricultural machinery sector, pioneering electric mobility solutions for sustainable farming."", - ""geographicFocus"": ""HQ: Rennes and Brest, France; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Antoine Venet"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"" - }, - { - ""name"": ""Arthur Rivoal"", - ""title"": ""CTO and CVO, Co-founder"", - ""sourceUrl"": ""https://siliconcanals.com/seederal-bags-11m/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://seederal.fr/fr/"", - ""productDescription"": ""https://seederal.fr/fr/"", - ""clientCategories"": ""https://www.cbinsights.com/company/seederal"", - ""geographicFocus"": ""https://siliconcanals.com/seederal-bags-11m/"", - ""keyExecutives"": ""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"" - } -}","{ - ""websiteURL"": ""https://seederal.fr/"", - ""companyDescription"": ""Seederal is a young industrial company pioneering 100% electric agricultural machinery. It works with farmers and expert teams to develop sustainable, energy-autonomous agriculture. The company has developed a 160 HP electric tractor prototype with 8-12 hours of work autonomy and a 2-hour full recharge time at max power. Seederal focuses on decarbonizing agriculture and innovating the tractor of tomorrow."", - ""productDescription"": ""Seederal's core offering is a 160 horsepower fully electric agricultural tractor with 8-12 hours of work autonomy and a 2-hour full recharge time at maximum power. The tractor is designed without a gearbox and developed in collaboration with farmers for sustainable and energy-autonomous agriculture."", - ""clientCategories"": [""Agricultural sector"", ""Farmers""], - ""sectorDescription"": ""Operates in the agricultural machinery sector, pioneering electric mobility solutions for sustainable farming."", - ""geographicFocus"": ""HQ: Rennes and Brest, France; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Antoine Venet"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"" - }, - { - ""name"": ""Arthur Rivoal"", - ""title"": ""CTO and CVO, Co-founder"", - ""sourceUrl"": ""https://siliconcanals.com/seederal-bags-11m/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://seederal.fr/fr/"", - ""productDescription"": ""https://seederal.fr/fr/"", - ""clientCategories"": ""https://www.cbinsights.com/company/seederal"", - ""geographicFocus"": ""https://siliconcanals.com/seederal-bags-11m/"", - ""keyExecutives"": ""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://seederal.fr"", - ""companyDescription"": ""Seederal is a French industrial startup pioneering 100% electric agricultural machinery to promote sustainable, energy-autonomous farming. It collaborates closely with farmers and expert teams to develop innovative and decarbonized tractors. The company has created a 160 horsepower electric tractor prototype that offers 8-12 hours of continuous work autonomy and can fully recharge in 2 hours at maximum power, aiming to reduce the carbon footprint of agricultural operations."", - ""productDescription"": ""Seederal’s main product is a 160 horsepower fully electric agricultural tractor tested on a converted JCB Fastrac platform. It features a unique transmission-less design and an integrated chassis-battery system inspired by automotive innovations to deliver 8-12 hours of operational autonomy per charge and a 2-hour full recharge time on DC fast charging. The tractor targets medium-power agricultural machinery users requiring high efficiency and sustainability in farming operations."", - ""clientCategories"": [""Agricultural sector"", ""Farmers""], - ""sectorDescription"": ""Operates in the agricultural machinery sector specializing in medium-power electric tractor solutions for sustainable and decarbonized farming."", - ""geographicFocus"": ""Headquartered in Rennes and Brest, France, Seederal focuses primarily on the French and European agricultural machinery markets."", - ""keyExecutives"": [ - { - ""name"": ""Antoine Venet"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"" - }, - { - ""name"": ""Arthur Rivoal"", - ""title"": ""CTO and CVO, Co-founder"", - ""sourceUrl"": ""https://siliconcanals.com/seederal-bags-11m/"" - } - ], - ""researcherNotes"": ""The company profile is well corroborated by multiple recent sources from 2024 emphasizing Seederal’s innovative 160 hp electric tractor prototype and funding rounds. Geographic focus beyond France and Europe is not explicitly stated, so the field is filled based on HQ and market references. No senior leadership data was available from LinkedIn. The tractor is positioned in the medium-power segment with a novel chassis-battery approach similar to Tesla's design philosophy."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://seederal.fr/fr/"", - ""productDescription"": ""https://electrek.co/2024/05/30/e-quipment-highlight-seederal-160-hp-electric-tractor-gets-real/"", - ""clientCategories"": ""https://www.cbinsights.com/company/seederal"", - ""geographicFocus"": ""https://siliconcanals.com/seederal-bags-11m/"", - ""keyExecutives"": ""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"" - } -}","{""clientCategories"":[""Agricultural sector"",""Farmers""],""companyDescription"":""Seederal is a French industrial startup pioneering 100% electric agricultural machinery to promote sustainable, energy-autonomous farming. It collaborates closely with farmers and expert teams to develop innovative and decarbonized tractors. The company has created a 160 horsepower electric tractor prototype that offers 8-12 hours of continuous work autonomy and can fully recharge in 2 hours at maximum power, aiming to reduce the carbon footprint of agricultural operations."",""geographicFocus"":""Headquartered in Rennes and Brest, France, Seederal focuses primarily on the French and European agricultural machinery markets."",""keyExecutives"":[{""name"":""Antoine Venet"",""sourceUrl"":""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"",""title"":""CEO and Co-founder""},{""name"":""Arthur Rivoal"",""sourceUrl"":""https://siliconcanals.com/seederal-bags-11m/"",""title"":""CTO and CVO, Co-founder""}],""missingImportantFields"":[],""productDescription"":""Seederal’s main product is a 160 horsepower fully electric agricultural tractor tested on a converted JCB Fastrac platform. It features a unique transmission-less design and an integrated chassis-battery system inspired by automotive innovations to deliver 8-12 hours of operational autonomy per charge and a 2-hour full recharge time on DC fast charging. The tractor targets medium-power agricultural machinery users requiring high efficiency and sustainability in farming operations."",""researcherNotes"":""The company profile is well corroborated by multiple recent sources from 2024 emphasizing Seederal’s innovative 160 hp electric tractor prototype and funding rounds. Geographic focus beyond France and Europe is not explicitly stated, so the field is filled based on HQ and market references. No senior leadership data was available from LinkedIn. The tractor is positioned in the medium-power segment with a novel chassis-battery approach similar to Tesla's design philosophy."",""sectorDescription"":""Operates in the agricultural machinery sector specializing in medium-power electric tractor solutions for sustainable and decarbonized farming."",""sources"":{""clientCategories"":""https://www.cbinsights.com/company/seederal"",""companyDescription"":""https://seederal.fr/fr/"",""geographicFocus"":""https://siliconcanals.com/seederal-bags-11m/"",""keyExecutives"":""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"",""productDescription"":""https://electrek.co/2024/05/30/e-quipment-highlight-seederal-160-hp-electric-tractor-gets-real/""},""websiteURL"":""https://seederal.fr""}","Correctness: 98% Completeness: 95% The profile of Seederal is factually accurate and well-supported by multiple recent sources from 2024. Seederal is a French startup headquartered in Brittany, focusing on a 160 horsepower (around 118-120 kW) fully electric agricultural tractor prototype based on a converted JCB Fastrac platform, with unique transmission-less design and integrated chassis-battery system enabling 8-12 hours of continuous operation and a 2-hour fast recharge capability[2][3][4][5]. Key executives Antoine Venet (CEO and Co-founder) and Arthur Rivoal (CTO and CVO, Co-founder) are correctly named with confirmed roles[4]. The company's market focus is primarily French and European agricultural machinery[4]. The tractor targets medium-power users (100-200 hp segment) emphasizing sustainability, energy autonomy, and reduced carbon footprint, with claims of reduced CO2 emissions equivalent to 15-20 tons annually per tractor[3][4]. Funding of around €11 million in 2024 for development and expansion of teams is accurately noted[3][5]. Minor variation appears only in the exact kW rating (118 kW vs. 120 kW) and slight nuance that the final production tractor is expected by 2026 after prototypes[4], which fits expectations and plans. No major material omissions are evident, though more details on geographic sales beyond France/Europe or later leadership updates after mid-2024 are not available. Overall, the information is consistent, current, and comes from official company statements, trade press, and industry news[2][3][4][5]. -Sources: https://electrek.co/2024/05/30/e-quipment-highlight-seederal-160-hp-electric-tractor-gets-real/, https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/, https://siliconcanals.com/seederal-bags-11m/, https://www.electrive.com/2024/05/31/french-startup-seederal-plans-to-launch-electric-tractor/, https://www.fwi.co.uk/machinery/tractors/101-200hp/seederal-develops-prototype-160hp-battery-electric-fastrac","{""clientCategories"":[""Agricultural sector"",""Farmers""],""companyDescription"":""Seederal is a young industrial company pioneering 100% electric agricultural machinery. It works with farmers and expert teams to develop sustainable, energy-autonomous agriculture. The company has developed a 160 HP electric tractor prototype with 8-12 hours of work autonomy and a 2-hour full recharge time at max power. Seederal focuses on decarbonizing agriculture and innovating the tractor of tomorrow."",""geographicFocus"":""HQ: Rennes and Brest, France; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Antoine Venet"",""sourceUrl"":""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"",""title"":""CEO and Co-founder""},{""name"":""Arthur Rivoal"",""sourceUrl"":""https://siliconcanals.com/seederal-bags-11m/"",""title"":""CTO and CVO, Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Seederal's core offering is a 160 horsepower fully electric agricultural tractor with 8-12 hours of work autonomy and a 2-hour full recharge time at maximum power. The tractor is designed without a gearbox and developed in collaboration with farmers for sustainable and energy-autonomous agriculture."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural machinery sector, pioneering electric mobility solutions for sustainable farming."",""sources"":{""clientCategories"":""https://www.cbinsights.com/company/seederal"",""companyDescription"":""https://seederal.fr/fr/"",""geographicFocus"":""https://siliconcanals.com/seederal-bags-11m/"",""keyExecutives"":""https://futurride.com/2024/05/31/seederal-targets-medium-power-electric-ag-tractor-segment/"",""productDescription"":""https://seederal.fr/fr/""},""websiteURL"":""https://seederal.fr/""}" -Frutaria,https://frutaria.com,Moriah Asset,frutaria.com,https://www.linkedin.com/company/frutaria,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://frutaria.com"", - ""companyDescription"": ""El grupo Frutaria es una organización hortofrutícola con plantaciones propias en tres zonas de la península ibérica: Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz) y Sur (Sevilla, Huelva). Comercializan anualmente 120 millones de kilos de fruta de hueso, cítricos, uva y fruta de pepita."", - ""productDescription"": ""Frutaria ofrece una variedad de productos a través de sus marcas incluyendo:\n- Cachirulo, que representa tradición, sabor y seguridad alimentaria\n- Frutaria, innovación mediante la comercialización de nuevas variedades cultivadas y controladas internamente\n- Clemenmiel, la mejor mandarina de primavera con acidez y azúcar equilibrados\n- Iridis, un nuevo fruto híbrido que combina albaricoque y ciruela, atractivo, delicioso y nutritivo."", - ""clientCategories"": [""Intermediarios que conectan con el consumidor final""], - ""sectorDescription"": ""Opera en el sector hortofrutícola, especializado en el cultivo, comercialización y distribución integrada de frutas frescas en la península ibérica y mercados internacionales."", - ""geographicFocus"": ""HQ: Calle Bilbao 5, 50004 – Zaragoza, Spain; Sales Focus: Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz), Sur (Sevilla, Huelva), Nacional e Internacional"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No se pudo encontrar información sobre los ejecutivos clave en las páginas públicas del sitio web."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://frutaria.com/empresa/"", - ""productDescription"": ""https://frutaria.com/marcas/"", - ""clientCategories"": ""https://frutaria.com/comercio/"", - ""geographicFocus"": ""https://frutaria.com/contacto/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://frutaria.com"", - ""companyDescription"": ""El grupo Frutaria es una organización hortofrutícola con plantaciones propias en tres zonas de la península ibérica: Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz) y Sur (Sevilla, Huelva). Comercializan anualmente 120 millones de kilos de fruta de hueso, cítricos, uva y fruta de pepita."", - ""productDescription"": ""Frutaria ofrece una variedad de productos a través de sus marcas incluyendo:\n- Cachirulo, que representa tradición, sabor y seguridad alimentaria\n- Frutaria, innovación mediante la comercialización de nuevas variedades cultivadas y controladas internamente\n- Clemenmiel, la mejor mandarina de primavera con acidez y azúcar equilibrados\n- Iridis, un nuevo fruto híbrido que combina albaricoque y ciruela, atractivo, delicioso y nutritivo."", - ""clientCategories"": [""Intermediarios que conectan con el consumidor final""], - ""sectorDescription"": ""Opera en el sector hortofrutícola, especializado en el cultivo, comercialización y distribución integrada de frutas frescas en la península ibérica y mercados internacionales."", - ""geographicFocus"": ""HQ: Calle Bilbao 5, 50004 – Zaragoza, Spain; Sales Focus: Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz), Sur (Sevilla, Huelva), Nacional e Internacional"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No se pudo encontrar información sobre los ejecutivos clave en las páginas públicas del sitio web."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://frutaria.com/empresa/"", - ""productDescription"": ""https://frutaria.com/marcas/"", - ""clientCategories"": ""https://frutaria.com/comercio/"", - ""geographicFocus"": ""https://frutaria.com/contacto/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://frutaria.com"", - ""companyDescription"": ""El grupo Frutaria es una organización hortofrutícola con plantaciones propias en tres zonas principales de la península ibérica (Norte: Zaragoza, Navarra, Lleida; Oeste: Badajoz; Sur: Sevilla, Huelva). Comercializan anualmente 120 millones de kilos de frutas como fruta de hueso, cítricos, uva y fruta de pepita. La empresa está integrada verticalmente para controlar todos los procesos y garantizar la calidad de sus productos, con un enfoque en sostenibilidad y eficiencia en el uso del agua."", - ""productDescription"": ""Frutaria ofrece una amplia variedad de productos a través de sus marcas, entre ellas: Cachirulo, que representa tradición, sabor y seguridad alimentaria; Frutaria, que se centra en la innovación y comercialización de nuevas variedades cultivadas y controladas internamente; Clemenmiel, una mandarina de primavera que combina acidez y azúcar equilibrados; e Iridis, un innovador fruto híbrido de albaricoque y ciruela, atractivo, delicioso y nutritivo. Adicionalmente desarrollan plantas y árboles frutales de alta calidad para agricultores mediante su división Frutaria Life."", - ""clientCategories"": [ - ""Intermediarios Que Conectan Con El Consumidor Final"" - ], - ""sectorDescription"": ""Opera en el sector hortofrutícola especializado en cultivo, comercialización y distribución integrada de frutas frescas en la península ibérica y mercados internacionales."", - ""geographicFocus"": ""Su actividad principal abarca las zonas Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz), Sur (Sevilla, Huelva) de España, con presencia nacional e internacional."", - ""keyExecutives"": [ - { - ""name"": ""Andrés Stewart"", - ""title"": ""Responsable de Frutaria Life"", - ""sourceUrl"": ""https://fruticultura.quatrebcn.es/andres-stewart-responsable-de-frutaria-life"" - } - ], - ""researcherNotes"": ""No se encontró información pública sobre otros ejecutivos clave en el sitio web oficial ni en LinkedIn. Andrés Stewart fue identificado como responsable de la división Frutaria Life a través de una entrevista externa. La falta de datos sobre otros altos cargos limita la completitud del perfil directivo."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://frutaria.com/empresa/"", - ""productDescription"": ""https://frutaria.com/marcas/"", - ""clientCategories"": ""https://frutaria.com/comercio/"", - ""geographicFocus"": ""https://frutaria.com/contacto/"", - ""keyExecutives"": ""https://fruticultura.quatrebcn.es/andres-stewart-responsable-de-frutaria-life"" - } -}","{""clientCategories"":[""Intermediarios Que Conectan Con El Consumidor Final""],""companyDescription"":""El grupo Frutaria es una organización hortofrutícola con plantaciones propias en tres zonas principales de la península ibérica (Norte: Zaragoza, Navarra, Lleida; Oeste: Badajoz; Sur: Sevilla, Huelva). Comercializan anualmente 120 millones de kilos de frutas como fruta de hueso, cítricos, uva y fruta de pepita. La empresa está integrada verticalmente para controlar todos los procesos y garantizar la calidad de sus productos, con un enfoque en sostenibilidad y eficiencia en el uso del agua."",""geographicFocus"":""Su actividad principal abarca las zonas Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz), Sur (Sevilla, Huelva) de España, con presencia nacional e internacional."",""keyExecutives"":[{""name"":""Andrés Stewart"",""sourceUrl"":""https://fruticultura.quatrebcn.es/andres-stewart-responsable-de-frutaria-life"",""title"":""Responsable de Frutaria Life""}],""missingImportantFields"":[],""productDescription"":""Frutaria ofrece una amplia variedad de productos a través de sus marcas, entre ellas: Cachirulo, que representa tradición, sabor y seguridad alimentaria; Frutaria, que se centra en la innovación y comercialización de nuevas variedades cultivadas y controladas internamente; Clemenmiel, una mandarina de primavera que combina acidez y azúcar equilibrados; e Iridis, un innovador fruto híbrido de albaricoque y ciruela, atractivo, delicioso y nutritivo. Adicionalmente desarrollan plantas y árboles frutales de alta calidad para agricultores mediante su división Frutaria Life."",""researcherNotes"":""No se encontró información pública sobre otros ejecutivos clave en el sitio web oficial ni en LinkedIn. Andrés Stewart fue identificado como responsable de la división Frutaria Life a través de una entrevista externa. La falta de datos sobre otros altos cargos limita la completitud del perfil directivo."",""sectorDescription"":""Opera en el sector hortofrutícola especializado en cultivo, comercialización y distribución integrada de frutas frescas en la península ibérica y mercados internacionales."",""sources"":{""clientCategories"":""https://frutaria.com/comercio/"",""companyDescription"":""https://frutaria.com/empresa/"",""geographicFocus"":""https://frutaria.com/contacto/"",""keyExecutives"":""https://fruticultura.quatrebcn.es/andres-stewart-responsable-de-frutaria-life"",""productDescription"":""https://frutaria.com/marcas/""},""websiteURL"":""https://frutaria.com""}","Correctness: 95% Completeness: 90% The factual summary of Frutaria is highly accurate based on official company sources and credible business databases, confirming its nature as a vertically integrated horticultural group with own plantations in the north (Zaragoza, Navarra, Lleida), west (Badajoz), and south (Sevilla, Huelva) of Spain, commercializing around 120 million kilos of stone fruits, citrus, grapes, and pome fruits annually[1][2]. The product brands (Cachirulo, Frutaria, Clemenmiel, Iridis) and the leadership role of Andrés Stewart for Frutaria Life are also supported by company and interview sources[1][5]. The company’s official address is Zaragoza, matching external registry data[2][3]. Completeness is slightly reduced because besides Andrés Stewart, no additional key executives were publicly found, and more recent financial or executive updates within the last 12 months are lacking. Overall, the description aligns well with official and external sources as of 2025-09, with minimal missing leadership or detailed financial disclosures[1][2][3][5]. URLs: https://frutaria.com/empresa/, https://frutaria.com/marcas/, https://fruticultura.quatrebcn.es/andres-stewart-responsable-de-frutaria-life, https://www.iberinform.es/empresa/689281/frutaria-agricultura, https://fruittoday.com/frutaria-nuevas-inversiones-y-plantaciones/","{""clientCategories"":[""Intermediarios que conectan con el consumidor final""],""companyDescription"":""El grupo Frutaria es una organización hortofrutícola con plantaciones propias en tres zonas de la península ibérica: Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz) y Sur (Sevilla, Huelva). Comercializan anualmente 120 millones de kilos de fruta de hueso, cítricos, uva y fruta de pepita."",""geographicFocus"":""HQ: Calle Bilbao 5, 50004 – Zaragoza, Spain; Sales Focus: Norte (Zaragoza, Navarra, Lleida), Oeste (Badajoz), Sur (Sevilla, Huelva), Nacional e Internacional"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Frutaria ofrece una variedad de productos a través de sus marcas incluyendo:\n- Cachirulo, que representa tradición, sabor y seguridad alimentaria\n- Frutaria, innovación mediante la comercialización de nuevas variedades cultivadas y controladas internamente\n- Clemenmiel, la mejor mandarina de primavera con acidez y azúcar equilibrados\n- Iridis, un nuevo fruto híbrido que combina albaricoque y ciruela, atractivo, delicioso y nutritivo."",""researcherNotes"":""No se pudo encontrar información sobre los ejecutivos clave en las páginas públicas del sitio web."",""sectorDescription"":""Opera en el sector hortofrutícola, especializado en el cultivo, comercialización y distribución integrada de frutas frescas en la península ibérica y mercados internacionales."",""sources"":{""clientCategories"":""https://frutaria.com/comercio/"",""companyDescription"":""https://frutaria.com/empresa/"",""geographicFocus"":""https://frutaria.com/contacto/"",""keyExecutives"":null,""productDescription"":""https://frutaria.com/marcas/""},""websiteURL"":""https://frutaria.com""}" -Multus,http://www.multus.bio,"Asahi Kasei, Big Idea Ventures, IndieBio, Mandi Ventures, SOSV, SynBioVen",multus.bio,https://www.linkedin.com/company/multus-media,"{""seniorLeadership"":[{""name"":""Matthew Wattel"",""title"":""Director of Operations and Finance"",""linkedinProfile"":""https://www.linkedin.com/in/matt-wattel""},{""name"":""Cai Linton"",""title"":""Co-Founder & CEO"",""linkedinProfile"":""https://www.linkedin.com/in/cailinton""},{""name"":""Brandon Seonghyun Ma"",""title"":""Senior Scientist"",""linkedinProfile"":""https://www.linkedin.com/in/brndn11multus""},{""name"":""Anirvan Gogol Guha"",""title"":""Chief Scientific Officer"",""linkedinProfile"":""https://www.linkedin.com/in/anirvan-guha""}]}","{""seniorLeadership"":[{""name"":""Matthew Wattel"",""title"":""Director of Operations and Finance"",""linkedinProfile"":""https://www.linkedin.com/in/matt-wattel""},{""name"":""Cai Linton"",""title"":""Co-Founder & CEO"",""linkedinProfile"":""https://www.linkedin.com/in/cailinton""},{""name"":""Brandon Seonghyun Ma"",""title"":""Senior Scientist"",""linkedinProfile"":""https://www.linkedin.com/in/brndn11multus""},{""name"":""Anirvan Gogol Guha"",""title"":""Chief Scientific Officer"",""linkedinProfile"":""https://www.linkedin.com/in/anirvan-guha""}]}","{ - ""websiteURL"": ""http://www.multus.bio"", - ""companyDescription"": ""Origin: Started in 2020 by engineers and scientists aiming to grow a sustainable bioeconomy by applying computational and biological tools to scale-up biomanufacturing, initially creating cheaper, safer feedstock for cultivated meat production. Vision: Building a world where biomanufactured products are globally accessible as part of a sustainable bioeconomy, with a focus on making cultivated meat affordable by reducing costs and enabling scale. Mission: Reducing time and cost to bring biomanufactured foods, medicines, and materials to market by accelerating development of better, less costly media to help partners deliver impact at scale."", - ""productDescription"": ""Products offered include Proliferum® P (porcine adipose-derived stem cells, animal component-free), Proliferum® B (bovine fibroblasts, animal component-free), Proliferum® M 10X and M 50X (murine myoblasts and fibroblasts, serum-free with BSA), Proliferum® LSR (life sciences research, serum-free), and Recombinant Bovine Vitronectin (non-human cell attachment factor). Services include development, manufacturing, and media optimization for cellular agriculture (cultivated meat) and advanced therapeutics (cell therapy). The media formulations are 100% free from animal-derived ingredients."", - ""clientCategories"": [ - ""Cellular agriculture"", - ""Cultivated meat companies"", - ""Advanced therapeutics"", - ""Cell therapy sectors"" - ], - ""sectorDescription"": ""Operates in the cellular agriculture and advanced therapeutics sectors, developing animal-free biomanufacturing media optimized for specific cell types to support cost-effective proliferation and scale-up of cultivated meat and cell therapies."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://www.multus.bio/resources/product-documentation""], - ""researcherNotes"": ""No relevant data found on key executives or clear geographic headquarters on the website."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.multus.bio/about"", - ""productDescription"": ""https://www.multus.bio/products"", - ""clientCategories"": ""https://www.multus.bio/clients/cultivated-meat"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.multus.bio"", - ""companyDescription"": ""Origin: Started in 2020 by engineers and scientists aiming to grow a sustainable bioeconomy by applying computational and biological tools to scale-up biomanufacturing, initially creating cheaper, safer feedstock for cultivated meat production. Vision: Building a world where biomanufactured products are globally accessible as part of a sustainable bioeconomy, with a focus on making cultivated meat affordable by reducing costs and enabling scale. Mission: Reducing time and cost to bring biomanufactured foods, medicines, and materials to market by accelerating development of better, less costly media to help partners deliver impact at scale."", - ""productDescription"": ""Products offered include Proliferum® P (porcine adipose-derived stem cells, animal component-free), Proliferum® B (bovine fibroblasts, animal component-free), Proliferum® M 10X and M 50X (murine myoblasts and fibroblasts, serum-free with BSA), Proliferum® LSR (life sciences research, serum-free), and Recombinant Bovine Vitronectin (non-human cell attachment factor). Services include development, manufacturing, and media optimization for cellular agriculture (cultivated meat) and advanced therapeutics (cell therapy). The media formulations are 100% free from animal-derived ingredients."", - ""clientCategories"": [ - ""Cellular agriculture"", - ""Cultivated meat companies"", - ""Advanced therapeutics"", - ""Cell therapy sectors"" - ], - ""sectorDescription"": ""Operates in the cellular agriculture and advanced therapeutics sectors, developing animal-free biomanufacturing media optimized for specific cell types to support cost-effective proliferation and scale-up of cultivated meat and cell therapies."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://www.multus.bio/resources/product-documentation""], - ""researcherNotes"": ""No relevant data found on key executives or clear geographic headquarters on the website."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.multus.bio/about"", - ""productDescription"": ""https://www.multus.bio/products"", - ""clientCategories"": ""https://www.multus.bio/clients/cultivated-meat"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.multus.bio"", - ""companyDescription"": ""Founded in 2020 by engineers and scientists, Multus Biotechnology aims to grow a sustainable bioeconomy by applying computational and biological tools to scale biomanufacturing. The company focuses on creating animal-free, cost-effective growth media optimized for specific cell types to accelerate the development and scale-up of cultivated meat and advanced therapeutics. Its mission is to reduce time and cost for bringing biomanufactured foods, medicines, and materials to market, enabling partners to deliver impact at scale while ensuring sustainability and affordability."", - ""productDescription"": ""Multus offers a portfolio of animal-component-free and serum-free cellular growth media products—including Proliferum® P (porcine adipose-derived stem cells), Proliferum® B (bovine fibroblasts), and Proliferum® M 10X/50X (murine myoblasts and fibroblasts)—and recombinant bovine vitronectin for non-human cell attachment. Their media formulations are designed to support cost-effective proliferation and scale-up in cellular agriculture (cultivated meat) and advanced therapeutics (cell therapy) sectors. Additionally, they provide development, manufacturing, and media optimization services. Notably, in 2025 they launched a food-grade DMEM/F12 basal media, DMEM/F12-FG, developed with AI and global food ingredient partners for scalable, regulatory-compliant cultivated meat production."", - ""clientCategories"": [ - ""Cellular Agriculture"", - ""Cultivated Meat Companies"", - ""Advanced Therapeutics"", - ""Cell Therapy Sectors"" - ], - ""sectorDescription"": ""Multus operates in the cellular agriculture and advanced therapeutics sectors, specializing in developing animal-free growth media to enable scalable and cost-effective manufacturing of cultivated meat and cell therapies."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Cai Linton"", - ""title"": ""Co-Founder & CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/cailinton"" - }, - { - ""name"": ""Anirvan Gogol Guha"", - ""title"": ""Chief Scientific Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/anirvan-guha"" - }, - { - ""name"": ""Matthew Wattel"", - ""title"": ""Director of Operations and Finance"", - ""sourceUrl"": ""https://www.linkedin.com/in/matt-wattel"" - } - ], - ""researcherNotes"": ""The company is confirmed as Multus Biotechnology (multus.bio) founded in 2020, focused on sustainable media for cultivated meat and cell therapies. No clear geographic footprint or headquarters information is available from public or company sources. Executive data sourced from LinkedIn profiles, providing current senior leadership titles with no official company leadership page found. Product and company descriptions are consolidated from official site and recent press."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://www.multus.bio/about"", - ""productDescription"": ""https://www.multus.bio/products"", - ""clientCategories"": ""https://www.multus.bio/clients/cultivated-meat"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.linkedin.com/in/cailinton"" - } -}","{""clientCategories"":[""Cellular Agriculture"",""Cultivated Meat Companies"",""Advanced Therapeutics"",""Cell Therapy Sectors""],""companyDescription"":""Founded in 2020 by engineers and scientists, Multus Biotechnology aims to grow a sustainable bioeconomy by applying computational and biological tools to scale biomanufacturing. The company focuses on creating animal-free, cost-effective growth media optimized for specific cell types to accelerate the development and scale-up of cultivated meat and advanced therapeutics. Its mission is to reduce time and cost for bringing biomanufactured foods, medicines, and materials to market, enabling partners to deliver impact at scale while ensuring sustainability and affordability."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Cai Linton"",""sourceUrl"":""https://www.linkedin.com/in/cailinton"",""title"":""Co-Founder & CEO""},{""name"":""Anirvan Gogol Guha"",""sourceUrl"":""https://www.linkedin.com/in/anirvan-guha"",""title"":""Chief Scientific Officer""},{""name"":""Matthew Wattel"",""sourceUrl"":""https://www.linkedin.com/in/matt-wattel"",""title"":""Director of Operations and Finance""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Multus offers a portfolio of animal-component-free and serum-free cellular growth media products—including Proliferum® P (porcine adipose-derived stem cells), Proliferum® B (bovine fibroblasts), and Proliferum® M 10X/50X (murine myoblasts and fibroblasts)—and recombinant bovine vitronectin for non-human cell attachment. Their media formulations are designed to support cost-effective proliferation and scale-up in cellular agriculture (cultivated meat) and advanced therapeutics (cell therapy) sectors. Additionally, they provide development, manufacturing, and media optimization services. Notably, in 2025 they launched a food-grade DMEM/F12 basal media, DMEM/F12-FG, developed with AI and global food ingredient partners for scalable, regulatory-compliant cultivated meat production."",""researcherNotes"":""The company is confirmed as Multus Biotechnology (multus.bio) founded in 2020, focused on sustainable media for cultivated meat and cell therapies. No clear geographic footprint or headquarters information is available from public or company sources. Executive data sourced from LinkedIn profiles, providing current senior leadership titles with no official company leadership page found. Product and company descriptions are consolidated from official site and recent press."",""sectorDescription"":""Multus operates in the cellular agriculture and advanced therapeutics sectors, specializing in developing animal-free growth media to enable scalable and cost-effective manufacturing of cultivated meat and cell therapies."",""sources"":{""clientCategories"":""https://www.multus.bio/clients/cultivated-meat"",""companyDescription"":""https://www.multus.bio/about"",""geographicFocus"":null,""keyExecutives"":""https://www.linkedin.com/in/cailinton"",""productDescription"":""https://www.multus.bio/products""},""websiteURL"":""https://www.multus.bio""}","Correctness: 95% Completeness: 90% The core factual details about Multus Biotechnology are accurate and well-supported by multiple UK Companies House filings and credible sources: it was incorporated on March 18, 2020, and is registered at Translation and Innovation Hub, 84 Wood Lane, London, UK[1]. The executive leadership names and roles (Cai Linton – Co-Founder & CEO, Anirvan Gogol Guha – CSO, Matthew Wattel – Director of Operations and Finance) are consistent with publicly verifiable LinkedIn profiles and company disclosures. Product offerings focused on animal-free and serum-free media for cultivated meat and advanced therapeutics, including Proliferum® line and the 2025 launch of DMEM/F12-FG basal media, align with company website claims and industry coverage[2][3][4]. Slight discrepancies exist in the founding year (some sources mention 2019) but 2020 is corroborated by official registration and most recent accounts[1][5]. The geographic footprint is notably missing from public sources, confirming the gap. The company’s participation in renowned biotech accelerators and funding rounds totaling around £7.9M (~$9.5M) is also verified[2][3]. Overall, the description is materially correct and nearly complete except for explicit geographic focus details and slightly dated minor founding year conflicts. Sources: https://find-and-update.company-information.service.gov.uk/company/12524885, https://www.imperial.ac.uk/news/242599/cultivated-meat-startup-multus-raises-79m/, https://www.multus.bio/about, https://www.multus.bio/products, https://indiebio.co/company/multus-media/","{""clientCategories"":[""Cellular agriculture"",""Cultivated meat companies"",""Advanced therapeutics"",""Cell therapy sectors""],""companyDescription"":""Origin: Started in 2020 by engineers and scientists aiming to grow a sustainable bioeconomy by applying computational and biological tools to scale-up biomanufacturing, initially creating cheaper, safer feedstock for cultivated meat production. Vision: Building a world where biomanufactured products are globally accessible as part of a sustainable bioeconomy, with a focus on making cultivated meat affordable by reducing costs and enabling scale. Mission: Reducing time and cost to bring biomanufactured foods, medicines, and materials to market by accelerating development of better, less costly media to help partners deliver impact at scale."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[""https://www.multus.bio/resources/product-documentation""],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Products offered include Proliferum® P (porcine adipose-derived stem cells, animal component-free), Proliferum® B (bovine fibroblasts, animal component-free), Proliferum® M 10X and M 50X (murine myoblasts and fibroblasts, serum-free with BSA), Proliferum® LSR (life sciences research, serum-free), and Recombinant Bovine Vitronectin (non-human cell attachment factor). Services include development, manufacturing, and media optimization for cellular agriculture (cultivated meat) and advanced therapeutics (cell therapy). The media formulations are 100% free from animal-derived ingredients."",""researcherNotes"":""No relevant data found on key executives or clear geographic headquarters on the website."",""sectorDescription"":""Operates in the cellular agriculture and advanced therapeutics sectors, developing animal-free biomanufacturing media optimized for specific cell types to support cost-effective proliferation and scale-up of cultivated meat and cell therapies."",""sources"":{""clientCategories"":""https://www.multus.bio/clients/cultivated-meat"",""companyDescription"":""https://www.multus.bio/about"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.multus.bio/products""},""websiteURL"":""http://www.multus.bio""}" -Farmforce,https://farmforce.com/,NorgesGruppen,farmforce.com,https://www.linkedin.com/company/farmforce,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://farmforce.com/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The Farmforce website and its subpages currently have no accessible content. Attempts to locate company mission, product offerings, client categories, geographic footprint, leadership details, and linked documents were unsuccessful due to unavailability of public content on the website. No information was retrievable from the website itself or from direct subpages. External information sources were also unable to provide verified content from the official site."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://farmforce.com/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The Farmforce website and its subpages currently have no accessible content. Attempts to locate company mission, product offerings, client categories, geographic footprint, leadership details, and linked documents were unsuccessful due to unavailability of public content on the website. No information was retrievable from the website itself or from direct subpages. External information sources were also unable to provide verified content from the official site."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://farmforce.com"", - ""companyDescription"": ""Farmforce is a mission-driven company providing digital software solutions that deliver data-driven insights to organizations sourcing from smallholder farmers. Their SaaS platform helps secure sustainable sourcing, improve farmer quality of life, and protect the environment by digitizing first-mile supply chain data. Operating globally with a focus on sustainable food supply chains, Farmforce supports multinational companies and manages data for over 1.3 million farmers across 30 countries."", - ""productDescription"": ""Farmforce offers cloud-hosted Software as a Service (SaaS) solutions including mobile apps for field staff and a web platform for operations and sustainability managers. These tools enable collection and management of accurate, actionable data from smallholder farmers to ensure traceability, compliance with regulations like the EU Deforestation Regulation, and sustainable farm management. The platform supports complex surveys, farmer databases, and field mapping to enhance supply chain transparency and improve impacts on farmer communities."", - ""clientCategories"": [ - ""Multinational Companies"", - ""Non-Governmental Organizations"", - ""Small and Medium Enterprises"" - ], - ""sectorDescription"": ""Technology company specializing in SaaS solutions for sustainable food supply chain traceability and first-mile agricultural data management."", - ""geographicFocus"": ""Farmforce operates in 30 countries across 166 regions worldwide, focusing on global first-mile agricultural supply chains."", - ""keyExecutives"": [ - { - ""name"": ""Grethe Viksaas"", - ""title"": ""Chair of the Board"", - ""sourceUrl"": ""https://farmforce.com/about/"" - }, - { - ""name"": ""John-Arne Hørløck"", - ""title"": ""Investor / Board Member"", - ""sourceUrl"": ""https://farmforce.com/about/"" - }, - { - ""name"": ""Ivar Kroghrud"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://farmforce.com/about/"" - }, - { - ""name"": ""Bjart Pedersen"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://farmforce.com/about/"" - }, - { - ""name"": ""Ola Svensson"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://farmforce.com/about/"" - }, - { - ""name"": ""Mats Andersen"", - ""title"": ""Board Observer"", - ""sourceUrl"": ""https://farmforce.com/about/"" - }, - { - ""name"": ""Robert Berlin"", - ""title"": ""Senior Executive"", - ""sourceUrl"": ""https://farmforce.com/about/"" - } - ], - ""researcherNotes"": ""The company was confirmed based on domain match (farmforce.com) and alignment of unique product description focusing on digital first-mile supply chain solutions for smallholder farmers. Key leadership information was sourced from the official Farmforce about page. Geographic focus and scale were verified from multiple sources including Farmforce and Unreasonable Group sites. Some minor title ambiguities exist due to limited role details on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://unreasonablegroup.com/ventures/farmforce"", - ""productDescription"": ""https://farmforce.com/about/"", - ""clientCategories"": ""https://cleantechscandinavia.com/wp-content/uploads/2022/11/Farmforce-Company-introduction-20.10.2022.pdf"", - ""geographicFocus"": ""https://unreasonablegroup.com/ventures/farmforce"", - ""keyExecutives"": ""https://farmforce.com/about/"" - } -}","{""clientCategories"":[""Multinational Companies"",""Non-Governmental Organizations"",""Small and Medium Enterprises""],""companyDescription"":""Farmforce is a mission-driven company providing digital software solutions that deliver data-driven insights to organizations sourcing from smallholder farmers. Their SaaS platform helps secure sustainable sourcing, improve farmer quality of life, and protect the environment by digitizing first-mile supply chain data. Operating globally with a focus on sustainable food supply chains, Farmforce supports multinational companies and manages data for over 1.3 million farmers across 30 countries."",""geographicFocus"":""Farmforce operates in 30 countries across 166 regions worldwide, focusing on global first-mile agricultural supply chains."",""keyExecutives"":[{""name"":""Grethe Viksaas"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Chair of the Board""},{""name"":""John-Arne Hørløck"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Investor / Board Member""},{""name"":""Ivar Kroghrud"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Board Member""},{""name"":""Bjart Pedersen"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Board Member""},{""name"":""Ola Svensson"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Board Member""},{""name"":""Mats Andersen"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Board Observer""},{""name"":""Robert Berlin"",""sourceUrl"":""https://farmforce.com/about/"",""title"":""Senior Executive""}],""missingImportantFields"":[],""productDescription"":""Farmforce offers cloud-hosted Software as a Service (SaaS) solutions including mobile apps for field staff and a web platform for operations and sustainability managers. These tools enable collection and management of accurate, actionable data from smallholder farmers to ensure traceability, compliance with regulations like the EU Deforestation Regulation, and sustainable farm management. The platform supports complex surveys, farmer databases, and field mapping to enhance supply chain transparency and improve impacts on farmer communities."",""researcherNotes"":""The company was confirmed based on domain match (farmforce.com) and alignment of unique product description focusing on digital first-mile supply chain solutions for smallholder farmers. Key leadership information was sourced from the official Farmforce about page. Geographic focus and scale were verified from multiple sources including Farmforce and Unreasonable Group sites. Some minor title ambiguities exist due to limited role details on the site."",""sectorDescription"":""Technology company specializing in SaaS solutions for sustainable food supply chain traceability and first-mile agricultural data management."",""sources"":{""clientCategories"":""https://cleantechscandinavia.com/wp-content/uploads/2022/11/Farmforce-Company-introduction-20.10.2022.pdf"",""companyDescription"":""https://unreasonablegroup.com/ventures/farmforce"",""geographicFocus"":""https://unreasonablegroup.com/ventures/farmforce"",""keyExecutives"":""https://farmforce.com/about/"",""productDescription"":""https://farmforce.com/about/""},""websiteURL"":""https://farmforce.com""}","Correctness: 95% Completeness: 90% The information provided about Farmforce is largely accurate and aligns with authoritative sources. Farmforce is a Norwegian technology company spun out from the Syngenta Foundation project started around 2011-2012 in Kenya to address transparency in food supply chains, specifically supporting smallholder farmers with digital SaaS solutions for first-mile agricultural data and sustainable sourcing[1][3][5]. The company operates globally, with a presence in around 30 countries and supports over 1.3 million farmers as per recent data, although earlier figures cited around 730,000 farmers in 15 languages and 125 value chains, indicating growth over time[2][5]. The leadership team including Chair of the Board Grethe Viksaas, board members John-Arne Hørløck, Ivar Kroghrud, Bjart Pedersen, Ola Svensson, and board observer Mats Andersen is consistent with official Farmforce company pages[5]. Robert Berlin is confirmed as a senior executive. Laura Johnson Blair is noted elsewhere (2025) as Chief Strategy Officer with strong ties to the company’s growth trajectory[4]. The product description accurately reflects Farmforce’s SaaS platform, cloud-hosted with mobile and web interfaces for managing farmer data, ensuring traceability and compliance with regulations including the EU Deforestation Regulation, with tools for surveys, field mapping, and sustainability management[5]. The geographic focus on 30 countries across 166 regions is supported but specific recent regional expansion was less detailed in sources, slightly lowering completeness[2][5]. Some minor title ambiguities and the exact scale of farmer coverage over time introduce slight uncertainty. Recent financing and company growth plans were also noted but not fully detailed in the original brief, slightly impacting completeness[3]. Overall, the description is correct and comprehensive with minor gaps mostly around real-time growth metrics and latest funding rounds. URLs: https://farmforce.com/about/, https://cleantechscandinavia.com/wp-content/uploads/2022/11/Farmforce-Company-introduction-20.10.2022.pdf, https://unreasonablegroup.com/ventures/farmforce, https://farmforce.com/articles/from-the-syngenta-foundation-to-the-world-the-story-of-farmforce/, https://enspire.ox.ac.uk/article/laura-johnson-blair-chief-strategy-officer-of-farmforce","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The Farmforce website and its subpages currently have no accessible content. Attempts to locate company mission, product offerings, client categories, geographic footprint, leadership details, and linked documents were unsuccessful due to unavailability of public content on the website. No information was retrievable from the website itself or from direct subpages. External information sources were also unable to provide verified content from the official site."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://farmforce.com/""}" -Hectare,https://www.wearehectare.com,,wearehectare.com,https://www.linkedin.com/company/hectare-agritech-ltd,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.wearehectare.com/"", - ""companyDescription"": ""Hectare Trading is the UK's #1 online crop marketplace aiming to give farmers confidence in securing the best price for their grain through a transparent platform comparing multiple offers from verified buyers. Their mission includes providing free local market insights, enabling control over listings without obligation to sell, and ensuring secure transactions through strict buyer verification. The company emphasizes ease of use, time-saving trading processes, and access to the largest network of vetted buyers in the UK. Hectare Agritech was founded in 2015 by Jamie McInnes, founder and CEO, and Dan Luff, a beef farmer. In 2016, arable farmer Andrew Huxham joined the founding team."", - ""productDescription"": ""Hectare Agritech operates the UK's largest online livestock market, SellMyLivestock, and the UK's #1 crop marketplace, Graindex (relaunched in 2023 as Hectare Trading). The company provides direct farmer-to-farmer trading platforms for livestock and grain, offering localized market insights and access to verified buyers. Their product offerings include: - SellMyLivestock (online livestock market) - Graindex/Hectare Trading (online grain trading platform with digital features and localized market insights)."", - ""clientCategories"": [""Farmers"", ""Buyers of agricultural crops and livestock""], - ""sectorDescription"": ""Operates in the online agriculture marketplace sector, focusing on crop and livestock trading platforms connecting farmers and buyers."", - ""geographicFocus"": ""HQ: Wadebridge House, 16 Wadebridge Square, Poundbury, Dorchester, DT1 3AQ, UK; Sales Focus: UK"", - ""keyExecutives"": [ - {""name"": ""Jamie McInnes"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""https://wearehectare.com/about-us""}, - {""name"": ""Dan Luff"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://wearehectare.com/about-us""}, - {""name"": ""Andrew Huxham"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://wearehectare.com/about-us""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.wearehectare.com/"", - ""productDescription"": ""https://www.wearehectare.com/about-us"", - ""clientCategories"": ""https://www.wearehectare.com/trading"", - ""geographicFocus"": ""https://www.wearehectare.com/contact"", - ""keyExecutives"": ""https://wearehectare.com/about-us"" - } -}","{ - ""websiteURL"": ""https://www.wearehectare.com/"", - ""companyDescription"": ""Hectare Trading is the UK's #1 online crop marketplace aiming to give farmers confidence in securing the best price for their grain through a transparent platform comparing multiple offers from verified buyers. Their mission includes providing free local market insights, enabling control over listings without obligation to sell, and ensuring secure transactions through strict buyer verification. The company emphasizes ease of use, time-saving trading processes, and access to the largest network of vetted buyers in the UK. Hectare Agritech was founded in 2015 by Jamie McInnes, founder and CEO, and Dan Luff, a beef farmer. In 2016, arable farmer Andrew Huxham joined the founding team."", - ""productDescription"": ""Hectare Agritech operates the UK's largest online livestock market, SellMyLivestock, and the UK's #1 crop marketplace, Graindex (relaunched in 2023 as Hectare Trading). The company provides direct farmer-to-farmer trading platforms for livestock and grain, offering localized market insights and access to verified buyers. Their product offerings include: - SellMyLivestock (online livestock market) - Graindex/Hectare Trading (online grain trading platform with digital features and localized market insights)."", - ""clientCategories"": [""Farmers"", ""Buyers of agricultural crops and livestock""], - ""sectorDescription"": ""Operates in the online agriculture marketplace sector, focusing on crop and livestock trading platforms connecting farmers and buyers."", - ""geographicFocus"": ""HQ: Wadebridge House, 16 Wadebridge Square, Poundbury, Dorchester, DT1 3AQ, UK; Sales Focus: UK"", - ""keyExecutives"": [ - {""name"": ""Jamie McInnes"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""https://wearehectare.com/about-us""}, - {""name"": ""Dan Luff"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://wearehectare.com/about-us""}, - {""name"": ""Andrew Huxham"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://wearehectare.com/about-us""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.wearehectare.com/"", - ""productDescription"": ""https://www.wearehectare.com/about-us"", - ""clientCategories"": ""https://www.wearehectare.com/trading"", - ""geographicFocus"": ""https://www.wearehectare.com/contact"", - ""keyExecutives"": ""https://wearehectare.com/about-us"" - } -}",[],"{ - ""websiteURL"": ""https://www.wearehectare.com"", - ""companyDescription"": ""Hectare Trading is the UK's leading online crop marketplace that empowers farmers to secure the best prices for their grain through a transparent platform that aggregates multiple offers from verified buyers. Founded by industry insiders, their mission includes offering free local market insights, enabling listing control without sales obligations, and ensuring secure, trusted transactions via strict buyer verification. The company focuses on simplifying trading, saving time, and connecting farmers to the largest vetted buyer network in the UK."", - ""productDescription"": ""Hectare Agritech operates the UK's largest online livestock market, SellMyLivestock, and runs Hectare Trading (relaunched in 2023 from the former Graindex), the top UK crop marketplace. Their platforms facilitate direct farmer-to-farmer trading of livestock and grain, provide localized market insights, and ensure access to verified buyers, enhancing price transparency and trade security."", - ""clientCategories"": [""Farmers"", ""Buyers of Agricultural Crops and Livestock""], - ""sectorDescription"": ""Online agriculture marketplace specializing in crop and livestock digital trading platforms connecting UK farmers with verified buyers."", - ""geographicFocus"": ""Primary sales focus in the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Jamie McInnes"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://wearehectare.com/about-us"" - }, - { - ""name"": ""Dan Luff"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://wearehectare.com/about-us"" - }, - { - ""name"": ""Andrew Huxham"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://wearehectare.com/about-us"" - } - ], - ""researcherNotes"": ""The company has a clear UK focus, headquartered in Dorchester, UK, with no indication of operations outside the UK. Official Companies House data confirms company registration since 2012 under 'Hectare Agritech Limited' with address matching the website. Leadership details align with company About page; no senior leadership updates found on LinkedIn or other sources. Geographic sales focus is UK as per company site; no global footprint information found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.wearehectare.com/"", - ""productDescription"": ""https://www.wearehectare.com/about-us"", - ""clientCategories"": ""https://www.wearehectare.com/trading"", - ""geographicFocus"": ""https://www.wearehectare.com/contact"", - ""keyExecutives"": ""https://wearehectare.com/about-us"" - } -}","{""clientCategories"":[""Farmers"",""Buyers of Agricultural Crops and Livestock""],""companyDescription"":""Hectare Trading is the UK's leading online crop marketplace that empowers farmers to secure the best prices for their grain through a transparent platform that aggregates multiple offers from verified buyers. Founded by industry insiders, their mission includes offering free local market insights, enabling listing control without sales obligations, and ensuring secure, trusted transactions via strict buyer verification. The company focuses on simplifying trading, saving time, and connecting farmers to the largest vetted buyer network in the UK."",""geographicFocus"":""Primary sales focus in the United Kingdom."",""keyExecutives"":[{""name"":""Jamie McInnes"",""sourceUrl"":""https://wearehectare.com/about-us"",""title"":""Founder and CEO""},{""name"":""Dan Luff"",""sourceUrl"":""https://wearehectare.com/about-us"",""title"":""Co-founder""},{""name"":""Andrew Huxham"",""sourceUrl"":""https://wearehectare.com/about-us"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""Hectare Agritech operates the UK's largest online livestock market, SellMyLivestock, and runs Hectare Trading (relaunched in 2023 from the former Graindex), the top UK crop marketplace. Their platforms facilitate direct farmer-to-farmer trading of livestock and grain, provide localized market insights, and ensure access to verified buyers, enhancing price transparency and trade security."",""researcherNotes"":""The company has a clear UK focus, headquartered in Dorchester, UK, with no indication of operations outside the UK. Official Companies House data confirms company registration since 2012 under 'Hectare Agritech Limited' with address matching the website. Leadership details align with company About page; no senior leadership updates found on LinkedIn or other sources. Geographic sales focus is UK as per company site; no global footprint information found."",""sectorDescription"":""Online agriculture marketplace specializing in crop and livestock digital trading platforms connecting UK farmers with verified buyers."",""sources"":{""clientCategories"":""https://www.wearehectare.com/trading"",""companyDescription"":""https://www.wearehectare.com/"",""geographicFocus"":""https://www.wearehectare.com/contact"",""keyExecutives"":""https://wearehectare.com/about-us"",""productDescription"":""https://www.wearehectare.com/about-us""},""websiteURL"":""https://www.wearehectare.com""}","Correctness: 98% Completeness: 95% The description of Hectare Trading and its parent company Hectare Agritech is highly accurate and comprehensive. The company was founded in 2015 by Jamie McInnes (Founder and CEO) and Dan Luff (Co-founder), with Andrew Huxham joining later as a co-founder, consistent across multiple sources. The UK focus is confirmed, with headquarters in Dorchester, UK, and an emphasis on the UK market for both crops and livestock trading. Hectare Trading is the relaunched 2023 version of the former Graindex platform, now the UK’s leading online crop marketplace that connects farmers to verified buyers and offers local market insights. The group also operates SellMyLivestock, the UK’s largest online livestock market. Their SaaS offering supports over 130,000 farmers and businesses, facilitating secure, transparent trading and contributing to sustainability in the supply chain. Funding details align with a recent $20M / £16.5M Series A round supporting product development and global expansion plans. No significant factual contradictions were found and key time-sensitive details (leadership, product relaunched 2023, funding rounds) are current as of at least early 2023. Minor completeness deductions apply because a specific UK Companies House filing was referenced in the prompt but not directly cited here; nevertheless, all public company and executive information is well corroborated. Primary sources include the company’s own site and recent industry coverage from 2023. See https://www.wearehectare.com/about-us, https://globalaginvesting.com/hectare-closes-on-20m-series-a, https://www.sustainabletimes.co.uk/post/sustainable-agritech-firm-hectare-secures-17m-investment, https://www.uktech.news/foodtech/hectare-raises-16-5m-20230301, and https://app.dealroom.co/companies/hectare for detailed support.","{""clientCategories"":[""Farmers"",""Buyers of agricultural crops and livestock""],""companyDescription"":""Hectare Trading is the UK's #1 online crop marketplace aiming to give farmers confidence in securing the best price for their grain through a transparent platform comparing multiple offers from verified buyers. Their mission includes providing free local market insights, enabling control over listings without obligation to sell, and ensuring secure transactions through strict buyer verification. The company emphasizes ease of use, time-saving trading processes, and access to the largest network of vetted buyers in the UK. Hectare Agritech was founded in 2015 by Jamie McInnes, founder and CEO, and Dan Luff, a beef farmer. In 2016, arable farmer Andrew Huxham joined the founding team."",""geographicFocus"":""HQ: Wadebridge House, 16 Wadebridge Square, Poundbury, Dorchester, DT1 3AQ, UK; Sales Focus: UK"",""keyExecutives"":[{""name"":""Jamie McInnes"",""sourceUrl"":""https://wearehectare.com/about-us"",""title"":""Founder and CEO""},{""name"":""Dan Luff"",""sourceUrl"":""https://wearehectare.com/about-us"",""title"":""Co-founder""},{""name"":""Andrew Huxham"",""sourceUrl"":""https://wearehectare.com/about-us"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Hectare Agritech operates the UK's largest online livestock market, SellMyLivestock, and the UK's #1 crop marketplace, Graindex (relaunched in 2023 as Hectare Trading). The company provides direct farmer-to-farmer trading platforms for livestock and grain, offering localized market insights and access to verified buyers. Their product offerings include: - SellMyLivestock (online livestock market) - Graindex/Hectare Trading (online grain trading platform with digital features and localized market insights)."",""researcherNotes"":null,""sectorDescription"":""Operates in the online agriculture marketplace sector, focusing on crop and livestock trading platforms connecting farmers and buyers."",""sources"":{""clientCategories"":""https://www.wearehectare.com/trading"",""companyDescription"":""https://www.wearehectare.com/"",""geographicFocus"":""https://www.wearehectare.com/contact"",""keyExecutives"":""https://wearehectare.com/about-us"",""productDescription"":""https://www.wearehectare.com/about-us""},""websiteURL"":""https://www.wearehectare.com/""}" -Javelot,https://www.javelot-agriculture.com/,"Crédit Agricole, IDIA Capital Investissement, NextStage AM, Sparkling Partners",javelot-agriculture.com,https://www.linkedin.com/company/hellojavelot,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.javelot-agriculture.com/"", - ""companyDescription"": ""Javelot is an Agritech company providing post-harvest services. Recognized for their Store&save® grain storage management platform, their mission includes integrating the entire grain data chain to optimize operations for simpler, more efficient, responsible, and accompanied post-harvest processes that create sustainable value. Their core values are Trust, Teamwork, Progress, and Commitment to customers, teams, and sustainable agriculture."", - ""productDescription"": ""Javelot offers connected solutions for grain storage and logistics tailored for cooperatives, traders, and farmers. Core offerings include: \n- Store&save: Optimization of grain storage and ventilation management\n- StoreInFarm: Farm-level grain storage solutions\n- Plan&save: Supply chain management tool\nThey also provide expertise in insect risk prevention and optimal grain silo ventilation to maintain grain quality during storage."", - ""clientCategories"": [""Storage operators"", ""Farmers"", ""Agricultural cooperatives"", ""Grain traders""], - ""sectorDescription"": ""Operates in the agritech sector, specializing in post-harvest grain storage and logistics solutions."", - ""geographicFocus"": ""HQ: 1001 Avenue de la République, 59700 Marcq-en-Barœul, France; Sales Focus: France, Belgium, Germany, Poland, Europe"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No clear information on founders or C-level executives was found on the website or accessible pages. Whitepapers require form submission and are not directly downloadable."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.javelot-agriculture.com/en/"", - ""productDescription"": ""https://www.javelot-agriculture.com/solutions/"", - ""clientCategories"": ""https://www.javelot-agriculture.com/solutions/"", - ""geographicFocus"": ""https://www.javelot-agriculture.com/qui-sommes-nous/implantations"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.javelot-agriculture.com/"", - ""companyDescription"": ""Javelot is an Agritech company providing post-harvest services. Recognized for their Store&save® grain storage management platform, their mission includes integrating the entire grain data chain to optimize operations for simpler, more efficient, responsible, and accompanied post-harvest processes that create sustainable value. Their core values are Trust, Teamwork, Progress, and Commitment to customers, teams, and sustainable agriculture."", - ""productDescription"": ""Javelot offers connected solutions for grain storage and logistics tailored for cooperatives, traders, and farmers. Core offerings include: \n- Store&save: Optimization of grain storage and ventilation management\n- StoreInFarm: Farm-level grain storage solutions\n- Plan&save: Supply chain management tool\nThey also provide expertise in insect risk prevention and optimal grain silo ventilation to maintain grain quality during storage."", - ""clientCategories"": [""Storage operators"", ""Farmers"", ""Agricultural cooperatives"", ""Grain traders""], - ""sectorDescription"": ""Operates in the agritech sector, specializing in post-harvest grain storage and logistics solutions."", - ""geographicFocus"": ""HQ: 1001 Avenue de la République, 59700 Marcq-en-Barœul, France; Sales Focus: France, Belgium, Germany, Poland, Europe"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No clear information on founders or C-level executives was found on the website or accessible pages. Whitepapers require form submission and are not directly downloadable."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.javelot-agriculture.com/en/"", - ""productDescription"": ""https://www.javelot-agriculture.com/solutions/"", - ""clientCategories"": ""https://www.javelot-agriculture.com/solutions/"", - ""geographicFocus"": ""https://www.javelot-agriculture.com/qui-sommes-nous/implantations"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.javelot-agriculture.com"", - ""companyDescription"": ""Javelot is an Agritech company providing post-harvest services. Recognized for their Store&save® grain storage management platform, their mission includes integrating the entire grain data chain to optimize operations for simpler, more efficient, responsible, and accompanied post-harvest processes that create sustainable value. Their core values are Trust, Teamwork, Progress, and Commitment to customers, teams, and sustainable agriculture."", - ""productDescription"": ""Javelot offers connected solutions for grain storage and logistics tailored for cooperatives, traders, and farmers. Core offerings include Store&save for optimization of grain storage and ventilation management, StoreInFarm for farm-level grain storage solutions, and Plan&save, a supply chain management tool. They also provide expertise in insect risk prevention and optimal grain silo ventilation to maintain grain quality during storage."", - ""clientCategories"": [""Storage operators"", ""Farmers"", ""Agricultural cooperatives"", ""Grain traders""], - ""sectorDescription"": ""Operates in the agritech sector, specializing in post-harvest grain storage and logistics solutions."", - ""geographicFocus"": ""Headquartered in France with a sales focus across France, Belgium, Germany, Poland, the United Kingdom, Romania, Hungary, and expanding into the United States with a new headquarters in Chicago, Illinois."", - ""keyExecutives"": [ - { - ""name"": ""Félix Bonduelle"", - ""title"": ""Chief Executive Officer and Co-founder"", - ""sourceUrl"": ""https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market"" - }, - { - ""name"": ""Benjamin Coatanea-Hubert"", - ""title"": ""US Head of Business Development"", - ""sourceUrl"": ""https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market"" - } - ], - ""researcherNotes"": ""No formal leadership page is available on the official company website. Key executives were identified through reputable industry news sources reporting on the company's expansion into the US market. Geographic scope was expanded from Europe to include the US following recent announcements. The company is actively expanding and digitally transforming post-harvest grain storage processes across multiple European countries and the US. No conflicts were found; however, the company does not publicly list additional senior leadership online."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.javelot-agriculture.com/en/"", - ""productDescription"": ""https://www.javelot-agriculture.com/solutions/"", - ""clientCategories"": ""https://www.javelot-agriculture.com/solutions/"", - ""geographicFocus"": ""https://igrownews.com/javelot-latest-news/"", - ""keyExecutives"": ""https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market"" - } -}","{""clientCategories"":[""Storage operators"",""Farmers"",""Agricultural cooperatives"",""Grain traders""],""companyDescription"":""Javelot is an Agritech company providing post-harvest services. Recognized for their Store&save® grain storage management platform, their mission includes integrating the entire grain data chain to optimize operations for simpler, more efficient, responsible, and accompanied post-harvest processes that create sustainable value. Their core values are Trust, Teamwork, Progress, and Commitment to customers, teams, and sustainable agriculture."",""geographicFocus"":""Headquartered in France with a sales focus across France, Belgium, Germany, Poland, the United Kingdom, Romania, Hungary, and expanding into the United States with a new headquarters in Chicago, Illinois."",""keyExecutives"":[{""name"":""Félix Bonduelle"",""sourceUrl"":""https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market"",""title"":""Chief Executive Officer and Co-founder""},{""name"":""Benjamin Coatanea-Hubert"",""sourceUrl"":""https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market"",""title"":""US Head of Business Development""}],""missingImportantFields"":[],""productDescription"":""Javelot offers connected solutions for grain storage and logistics tailored for cooperatives, traders, and farmers. Core offerings include Store&save for optimization of grain storage and ventilation management, StoreInFarm for farm-level grain storage solutions, and Plan&save, a supply chain management tool. They also provide expertise in insect risk prevention and optimal grain silo ventilation to maintain grain quality during storage."",""researcherNotes"":""No formal leadership page is available on the official company website. Key executives were identified through reputable industry news sources reporting on the company's expansion into the US market. Geographic scope was expanded from Europe to include the US following recent announcements. The company is actively expanding and digitally transforming post-harvest grain storage processes across multiple European countries and the US. No conflicts were found; however, the company does not publicly list additional senior leadership online."",""sectorDescription"":""Operates in the agritech sector, specializing in post-harvest grain storage and logistics solutions."",""sources"":{""clientCategories"":""https://www.javelot-agriculture.com/solutions/"",""companyDescription"":""https://www.javelot-agriculture.com/en/"",""geographicFocus"":""https://igrownews.com/javelot-latest-news/"",""keyExecutives"":""https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market"",""productDescription"":""https://www.javelot-agriculture.com/solutions/""},""websiteURL"":""https://www.javelot-agriculture.com""}","Correctness: 98% Completeness: 95% The description of Javelot as a French agritech company specializing in post-harvest grain storage and logistics with its registered/legal headquarters in Marcq-en-Barœul and Wasquehal, France, is accurate and corroborated by official company legal notices and contact pages[2][3]. The stated focus on their Store&save® platform and other connected solutions for grain storage management tailored to farmers, cooperatives, and traders aligns with the product information on their website[3]. The key executives Félix Bonduelle (CEO and Co-founder) and Benjamin Coatanea-Hubert (US Head of Business Development) are confirmed by reputable industry news reports about their US market expansion, including establishing a new Chicago headquarters[4]. The geographic footprint covering multiple European countries and recent US expansion is also supported by third-party news sources and company information[4]. Minor discrepancy exists in reported HQ address specifics between Wasquehal and Marcq-en-Barœul, though both are in Hauts-de-France region and appear as registered office locations in different official contexts[2][5]. No major omissions or inaccuracies were observed, though the absence of a formal leadership page on the company’s site is noted. No claims about funding or extensive senior leadership beyond cited executives were found to weigh on completeness[2][4][5]. This yields high correctness and completeness based on official company pages and recent industry news coverage. URLs: https://www.javelot-agriculture.com/en/legal-notices/, https://www.javelot-agriculture.com/en/who-are-we/locations/, https://igrownews.com/javelot-latest-news/, https://www.world-grain.com/articles/21468-agtech-company-javelot-to-expand-into-us-market","{""clientCategories"":[""Storage operators"",""Farmers"",""Agricultural cooperatives"",""Grain traders""],""companyDescription"":""Javelot is an Agritech company providing post-harvest services. Recognized for their Store&save® grain storage management platform, their mission includes integrating the entire grain data chain to optimize operations for simpler, more efficient, responsible, and accompanied post-harvest processes that create sustainable value. Their core values are Trust, Teamwork, Progress, and Commitment to customers, teams, and sustainable agriculture."",""geographicFocus"":""HQ: 1001 Avenue de la République, 59700 Marcq-en-Barœul, France; Sales Focus: France, Belgium, Germany, Poland, Europe"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Javelot offers connected solutions for grain storage and logistics tailored for cooperatives, traders, and farmers. Core offerings include: \n- Store&save: Optimization of grain storage and ventilation management\n- StoreInFarm: Farm-level grain storage solutions\n- Plan&save: Supply chain management tool\nThey also provide expertise in insect risk prevention and optimal grain silo ventilation to maintain grain quality during storage."",""researcherNotes"":""No clear information on founders or C-level executives was found on the website or accessible pages. Whitepapers require form submission and are not directly downloadable."",""sectorDescription"":""Operates in the agritech sector, specializing in post-harvest grain storage and logistics solutions."",""sources"":{""clientCategories"":""https://www.javelot-agriculture.com/solutions/"",""companyDescription"":""https://www.javelot-agriculture.com/en/"",""geographicFocus"":""https://www.javelot-agriculture.com/qui-sommes-nous/implantations"",""keyExecutives"":null,""productDescription"":""https://www.javelot-agriculture.com/solutions/""},""websiteURL"":""https://www.javelot-agriculture.com/""}" -Intact,https://intact-regenerative.com,"Axereal, ISALT",intact-regenerative.com,https://www.linkedin.com/company/intact-regenerative,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://intact-regenerative.com"", - ""companyDescription"": ""Intact® produces regenerative plant-based proteins and fermentation products, focusing on innovation-driven products for a sustainable future. The company has developed a low-carbon fermentation technology with a pending patent, enabling circular co-production of plant-based proteins and fermentation products, ensuring unrivalled sustainability. Their plant-based proteins are extracted using natural green technology, free from additives, chemicals, and solvents. The plants are grown locally following regenerative agriculture practices that include pulse inclusion in crop rotation, diversified and extended rotation, permanent soil coverage, reduced soil tilling, and reduced use of chemical inputs. Intact’s mission includes acting for the planet, people, and earth by promoting sustainability, nutrition, and regenerative agriculture."", - ""productDescription"": ""Intact regenerative offers plant-based protein ingredients derived from peas and field beans using an innovative process. These proteins contain over 55% protein, contain no allergens or GMOs, are low in sugar, salt, and saturated fats, and are rich in dietary fiber, vitamins (B1, B3, B6), minerals (potassium, magnesium, phosphorus, zinc, copper, manganese), iron, and antioxidants. They can replace soy proteins, traditional flours, or eggs in plant-based products. Suitable for use in plant-based products, snacks, cereals, biscuits, gluten-free baked goods, soups, etc. The products are natural, vegan, additive-free, chemical-free, and produced in France without chemicals or solvents."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the regenerative agriculture and plant-based protein ingredient sector, producing sustainable, natural proteins and fermentation products for food applications."", - ""geographicFocus"": ""HQ: 36, Rue de la Manufacture, 45160 Olivet, France; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Alexis Duval"", ""title"": ""Co-founder and chairman"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Fanny de Castelnau"", ""title"": ""Co-founder and managing director"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Didier Lefebvre"", ""title"": ""Chief Research, Development and Technology Officer"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Cédric Launay"", ""title"": ""Chief Industrial Officer"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Augustin Ringô"", ""title"": ""Chief Agriculture and Sustainability Officer"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not found on the website. The sales focus regions are not explicitly mentioned."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://intact-regenerative.com/en/"", - ""productDescription"": ""https://intact-regenerative.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://intact-regenerative.com/en/contact/"", - ""keyExecutives"": ""https://intact-regenerative.com/en/company/"" - } -}","{ - ""websiteURL"": ""https://intact-regenerative.com"", - ""companyDescription"": ""Intact® produces regenerative plant-based proteins and fermentation products, focusing on innovation-driven products for a sustainable future. The company has developed a low-carbon fermentation technology with a pending patent, enabling circular co-production of plant-based proteins and fermentation products, ensuring unrivalled sustainability. Their plant-based proteins are extracted using natural green technology, free from additives, chemicals, and solvents. The plants are grown locally following regenerative agriculture practices that include pulse inclusion in crop rotation, diversified and extended rotation, permanent soil coverage, reduced soil tilling, and reduced use of chemical inputs. Intact’s mission includes acting for the planet, people, and earth by promoting sustainability, nutrition, and regenerative agriculture."", - ""productDescription"": ""Intact regenerative offers plant-based protein ingredients derived from peas and field beans using an innovative process. These proteins contain over 55% protein, contain no allergens or GMOs, are low in sugar, salt, and saturated fats, and are rich in dietary fiber, vitamins (B1, B3, B6), minerals (potassium, magnesium, phosphorus, zinc, copper, manganese), iron, and antioxidants. They can replace soy proteins, traditional flours, or eggs in plant-based products. Suitable for use in plant-based products, snacks, cereals, biscuits, gluten-free baked goods, soups, etc. The products are natural, vegan, additive-free, chemical-free, and produced in France without chemicals or solvents."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the regenerative agriculture and plant-based protein ingredient sector, producing sustainable, natural proteins and fermentation products for food applications."", - ""geographicFocus"": ""HQ: 36, Rue de la Manufacture, 45160 Olivet, France; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Alexis Duval"", ""title"": ""Co-founder and chairman"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Fanny de Castelnau"", ""title"": ""Co-founder and managing director"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Didier Lefebvre"", ""title"": ""Chief Research, Development and Technology Officer"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Cédric Launay"", ""title"": ""Chief Industrial Officer"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""}, - {""name"": ""Augustin Ringô"", ""title"": ""Chief Agriculture and Sustainability Officer"", ""sourceUrl"": ""https://intact-regenerative.com/en/company/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not found on the website. The sales focus regions are not explicitly mentioned."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://intact-regenerative.com/en/"", - ""productDescription"": ""https://intact-regenerative.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://intact-regenerative.com/en/contact/"", - ""keyExecutives"": ""https://intact-regenerative.com/en/company/"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://intact-regenerative.com"", - ""companyDescription"": ""Intact® produces regenerative plant-based proteins and fermentation products, focusing on innovation-driven products for a sustainable future. The company has developed a low-carbon fermentation technology with a pending patent, enabling circular co-production of plant-based proteins and fermentation products, ensuring unrivalled sustainability. Their plant-based proteins are extracted using natural green technology, free from additives, chemicals, and solvents. The plants are grown locally following regenerative agriculture practices that include pulse inclusion in crop rotation, diversified and extended rotation, permanent soil coverage, reduced soil tilling, and reduced use of chemical inputs. Intact’s mission includes acting for the planet, people, and earth by promoting sustainability, nutrition, and regenerative agriculture."", - ""productDescription"": ""Intact regenerative offers plant-based protein ingredients derived from peas and field beans using an innovative process. These proteins contain over 55% protein, contain no allergens or GMOs, are low in sugar, salt, and saturated fats, and are rich in dietary fiber, vitamins (B1, B3, B6), minerals (potassium, magnesium, phosphorus, zinc, copper, manganese), iron, and antioxidants. They can replace soy proteins, traditional flours, or eggs in plant-based products. Suitable for use in plant-based products, snacks, cereals, biscuits, gluten-free baked goods, soups, etc. The products are natural, vegan, additive-free, chemical-free, and produced in France without chemicals or solvents."", - ""clientCategories"": [ - ""Food Manufacturers"", - ""Collective Catering Services"", - ""Plant-Based Product Developers"", - ""Snack Producers"", - ""Cereal and Biscuit Producers"", - ""Gluten-Free Baked Goods Producers"" - ], - ""sectorDescription"": ""Operates in the regenerative agriculture and plant-based protein ingredient sector, producing sustainable, natural proteins and fermentation products for food applications."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Alexis Duval"", - ""title"": ""Co-founder and chairman"", - ""sourceUrl"": ""https://intact-regenerative.com/en/company/"" - }, - { - ""name"": ""Fanny de Castelnau"", - ""title"": ""Co-founder and managing director"", - ""sourceUrl"": ""https://intact-regenerative.com/en/company/"" - }, - { - ""name"": ""Didier Lefebvre"", - ""title"": ""Chief Research, Development and Technology Officer"", - ""sourceUrl"": ""https://intact-regenerative.com/en/company/"" - }, - { - ""name"": ""Cédric Launay"", - ""title"": ""Chief Industrial Officer"", - ""sourceUrl"": ""https://intact-regenerative.com/en/company/"" - }, - { - ""name"": ""Augustin Ringô"", - ""title"": ""Chief Agriculture and Sustainability Officer"", - ""sourceUrl"": ""https://intact-regenerative.com/en/company/"" - } - ], - ""researcherNotes"": ""Client categories are not explicitly listed on the company's official website but have been reasonably inferred from the product applications and market focus described. Geographic focus is not disclosed explicitly and thus set to null. Company disambiguation confirmed by matching domain, HQ city (Olivet, France), founding year (2022 from external funding news), and distinctive focus on regenerative plant-based protein and fermentation products. The key executives list is confirmed from official company site leadership page."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://intact-regenerative.com/en/"", - ""productDescription"": ""https://intact-regenerative.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": ""https://intact-regenerative.com/en/company/"" - } -}","{""clientCategories"":[""Food Manufacturers"",""Collective Catering Services"",""Plant-Based Product Developers"",""Snack Producers"",""Cereal and Biscuit Producers"",""Gluten-Free Baked Goods Producers""],""companyDescription"":""Intact® produces regenerative plant-based proteins and fermentation products, focusing on innovation-driven products for a sustainable future. The company has developed a low-carbon fermentation technology with a pending patent, enabling circular co-production of plant-based proteins and fermentation products, ensuring unrivalled sustainability. Their plant-based proteins are extracted using natural green technology, free from additives, chemicals, and solvents. The plants are grown locally following regenerative agriculture practices that include pulse inclusion in crop rotation, diversified and extended rotation, permanent soil coverage, reduced soil tilling, and reduced use of chemical inputs. Intact’s mission includes acting for the planet, people, and earth by promoting sustainability, nutrition, and regenerative agriculture."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Alexis Duval"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Co-founder and chairman""},{""name"":""Fanny de Castelnau"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Co-founder and managing director""},{""name"":""Didier Lefebvre"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Chief Research, Development and Technology Officer""},{""name"":""Cédric Launay"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Chief Industrial Officer""},{""name"":""Augustin Ringô"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Chief Agriculture and Sustainability Officer""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Intact regenerative offers plant-based protein ingredients derived from peas and field beans using an innovative process. These proteins contain over 55% protein, contain no allergens or GMOs, are low in sugar, salt, and saturated fats, and are rich in dietary fiber, vitamins (B1, B3, B6), minerals (potassium, magnesium, phosphorus, zinc, copper, manganese), iron, and antioxidants. They can replace soy proteins, traditional flours, or eggs in plant-based products. Suitable for use in plant-based products, snacks, cereals, biscuits, gluten-free baked goods, soups, etc. The products are natural, vegan, additive-free, chemical-free, and produced in France without chemicals or solvents."",""researcherNotes"":""Client categories are not explicitly listed on the company's official website but have been reasonably inferred from the product applications and market focus described. Geographic focus is not disclosed explicitly and thus set to null. Company disambiguation confirmed by matching domain, HQ city (Olivet, France), founding year (2022 from external funding news), and distinctive focus on regenerative plant-based protein and fermentation products. The key executives list is confirmed from official company site leadership page."",""sectorDescription"":""Operates in the regenerative agriculture and plant-based protein ingredient sector, producing sustainable, natural proteins and fermentation products for food applications."",""sources"":{""clientCategories"":null,""companyDescription"":""https://intact-regenerative.com/en/"",""geographicFocus"":null,""keyExecutives"":""https://intact-regenerative.com/en/company/"",""productDescription"":""https://intact-regenerative.com/en/products/""},""websiteURL"":""https://intact-regenerative.com""}","Correctness: 98% Completeness: 90% The provided description is highly accurate and mostly complete based on the official Intact Regenerative website as of 2025-09-10. The company indeed produces *regenerative plant-based proteins and fermentation products* using a *low-carbon fermentation technology* protected by a *pending patent*, enabling circular co-production and emphasizing sustainability[1][2]. Their plant-based proteins are extracted by a *100% natural green technology*, free from additives, chemicals, and solvents, with a focus on local growth via *regenerative agriculture practices* such as diversified crop rotations and reduced chemical inputs[1][5]. The product nutritional details listing over 55% protein content, absence of allergens and GMOs, low sugar/salt/fat content, and richness in fiber, vitamins, minerals, and antioxidants align with the website’s nutritional claims[2]. The leadership team titles match those listed on the company’s official page, confirming key executives[1]. The geographic focus is not explicitly stated on the site, justifying its null status. Client categories were reasonably inferred from product applications like plant-based foods, snacks, cereals, and gluten-free baked goods but are not explicitly listed, explaining a slight completeness deduction[1][2]. Overall, no conflicting information was found, and the main missing field is geographic focus beyond the confirmed French production base. Sources: Intact Regenerative official site — https://intact-regenerative.com/en/, company leadership page https://intact-regenerative.com/en/company/, product page https://intact-regenerative.com/en/products/, regenerative agriculture description https://intact-regenerative.com/en/regenerative/","{""clientCategories"":[],""companyDescription"":""Intact® produces regenerative plant-based proteins and fermentation products, focusing on innovation-driven products for a sustainable future. The company has developed a low-carbon fermentation technology with a pending patent, enabling circular co-production of plant-based proteins and fermentation products, ensuring unrivalled sustainability. Their plant-based proteins are extracted using natural green technology, free from additives, chemicals, and solvents. The plants are grown locally following regenerative agriculture practices that include pulse inclusion in crop rotation, diversified and extended rotation, permanent soil coverage, reduced soil tilling, and reduced use of chemical inputs. Intact’s mission includes acting for the planet, people, and earth by promoting sustainability, nutrition, and regenerative agriculture."",""geographicFocus"":""HQ: 36, Rue de la Manufacture, 45160 Olivet, France; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Alexis Duval"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Co-founder and chairman""},{""name"":""Fanny de Castelnau"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Co-founder and managing director""},{""name"":""Didier Lefebvre"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Chief Research, Development and Technology Officer""},{""name"":""Cédric Launay"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Chief Industrial Officer""},{""name"":""Augustin Ringô"",""sourceUrl"":""https://intact-regenerative.com/en/company/"",""title"":""Chief Agriculture and Sustainability Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Intact regenerative offers plant-based protein ingredients derived from peas and field beans using an innovative process. These proteins contain over 55% protein, contain no allergens or GMOs, are low in sugar, salt, and saturated fats, and are rich in dietary fiber, vitamins (B1, B3, B6), minerals (potassium, magnesium, phosphorus, zinc, copper, manganese), iron, and antioxidants. They can replace soy proteins, traditional flours, or eggs in plant-based products. Suitable for use in plant-based products, snacks, cereals, biscuits, gluten-free baked goods, soups, etc. The products are natural, vegan, additive-free, chemical-free, and produced in France without chemicals or solvents."",""researcherNotes"":""Client categories were not found on the website. The sales focus regions are not explicitly mentioned."",""sectorDescription"":""Operates in the regenerative agriculture and plant-based protein ingredient sector, producing sustainable, natural proteins and fermentation products for food applications."",""sources"":{""clientCategories"":null,""companyDescription"":""https://intact-regenerative.com/en/"",""geographicFocus"":""https://intact-regenerative.com/en/contact/"",""keyExecutives"":""https://intact-regenerative.com/en/company/"",""productDescription"":""https://intact-regenerative.com/en/products/""},""websiteURL"":""https://intact-regenerative.com""}" -Agricooltur,https://agricooltur.it,Alkemia Capital,agricooltur.it,https://www.linkedin.com/company/agricooltur-societa-agricola,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://agricooltur.it"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and all its subpages contain very limited to no explicit textual data on key topics such as company mission, product offerings, client categories, sector description, geographic focus, and leadership. Attempts to find PDFs or linked documents also yielded no results. The content appears to be minimal or heavily reliant on visual or non-extractable media."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://agricooltur.it"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and all its subpages contain very limited to no explicit textual data on key topics such as company mission, product offerings, client categories, sector description, geographic focus, and leadership. Attempts to find PDFs or linked documents also yielded no results. The content appears to be minimal or heavily reliant on visual or non-extractable media."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://agricooltur.it"", - ""companyDescription"": ""Agricooltur is an Italian startup founded in 2018 that specializes in the design and development of modular systems for aeroponic cultivation, an innovative agricultural technique that grows plants without soil in controlled environments. This method significantly reduces water usage by up to 98% compared to traditional farming and minimizes fertilizer application. The company combines expertise in agronomy, electronics, and technology innovation to provide sustainable and efficient solutions for various markets, including retail and corporate clients. Agricooltur aims to revolutionize agriculture by enabling food production anywhere with an ethical, efficient, and sustainable approach."", - ""productDescription"": ""Agricooltur delivers aeroponic cultivation systems that use a patented root misting technology to allow plants to absorb water and nutrients without soil. Their products are modular, 100% made in Italy, and designed to be delivered alive and unbagged to preserve freshness and quality. The systems include precise controls for irrigation, temperature, and humidity to optimize production efficiency, enhance product quality, and reduce environmental impact. Agricooltur serves companies, retailers, entrepreneurs, and educational institutions interested in fresh, healthy produce with minimal resource consumption."", - ""clientCategories"": [ - ""Companies"", - ""Retailers"", - ""Entrepreneurs"", - ""Educational Institutions"", - ""Schools"", - ""Real Estate Developers"" - ], - ""sectorDescription"": ""Agricooltur operates in the agritech sector, specializing in sustainable aeroponic cultivation systems that enable efficient, soil-free agricultural production."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""The company Agricooltur was confirmed as the correct entity via matching the primary domain agricooltur.it and descriptions from multiple independent sources referencing its founding in 2018 in Italy and specialization in aeroponic systems. The company website and LinkedIn pages contain limited textual data on leadership and geographic operating regions, and no definitive senior executive information was found from official or LinkedIn sources. Geographic focus is not explicitly stated and could not be reliably verified from available sources. Agricooltur's mission, product, and client categories were substantiated from multiple Italian-language and English sources, including a startup directory and investor platform."", - ""missingImportantFields"": [ - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://ongreening.com/en/GreenPeople/agricooltur-s-p-a-63311"", - ""productDescription"": ""https://www.alkemiacapital.com/en/fondi/agricooltur/"", - ""clientCategories"": ""https://www.agricooltur.it/en/eng/homepage.html"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{""clientCategories"":[""Companies"",""Retailers"",""Entrepreneurs"",""Educational Institutions"",""Schools"",""Real Estate Developers""],""companyDescription"":""Agricooltur is an Italian startup founded in 2018 that specializes in the design and development of modular systems for aeroponic cultivation, an innovative agricultural technique that grows plants without soil in controlled environments. This method significantly reduces water usage by up to 98% compared to traditional farming and minimizes fertilizer application. The company combines expertise in agronomy, electronics, and technology innovation to provide sustainable and efficient solutions for various markets, including retail and corporate clients. Agricooltur aims to revolutionize agriculture by enabling food production anywhere with an ethical, efficient, and sustainable approach."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Agricooltur delivers aeroponic cultivation systems that use a patented root misting technology to allow plants to absorb water and nutrients without soil. Their products are modular, 100% made in Italy, and designed to be delivered alive and unbagged to preserve freshness and quality. The systems include precise controls for irrigation, temperature, and humidity to optimize production efficiency, enhance product quality, and reduce environmental impact. Agricooltur serves companies, retailers, entrepreneurs, and educational institutions interested in fresh, healthy produce with minimal resource consumption."",""researcherNotes"":""The company Agricooltur was confirmed as the correct entity via matching the primary domain agricooltur.it and descriptions from multiple independent sources referencing its founding in 2018 in Italy and specialization in aeroponic systems. The company website and LinkedIn pages contain limited textual data on leadership and geographic operating regions, and no definitive senior executive information was found from official or LinkedIn sources. Geographic focus is not explicitly stated and could not be reliably verified from available sources. Agricooltur's mission, product, and client categories were substantiated from multiple Italian-language and English sources, including a startup directory and investor platform."",""sectorDescription"":""Agricooltur operates in the agritech sector, specializing in sustainable aeroponic cultivation systems that enable efficient, soil-free agricultural production."",""sources"":{""clientCategories"":""https://www.agricooltur.it/en/eng/homepage.html"",""companyDescription"":""https://ongreening.com/en/GreenPeople/agricooltur-s-p-a-63311"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.alkemiacapital.com/en/fondi/agricooltur/""},""websiteURL"":""https://agricooltur.it""}","Correctness: 95% Completeness: 80% Agricooltur is accurately described as an Italian startup founded in 2018 specializing in modular aeroponic cultivation systems that grow plants without soil and significantly reduce water usage by up to 98% compared to traditional farming, with reduced fertilizer use as well[1][2]. The company combines agronomy, electronics, and technology innovation to offer sustainable solutions mainly serving companies, retailers, entrepreneurs, and educational institutions, consistent with multiple sources[1][2][4]. Its patented root-misting technology and Italian-made modular products delivered fresh and alive are also confirmed[2][4]. However, key executives are publicly identified as founders Marco Bartolomeo Divià, Alessandro Boniforte, and Stefano Ferrero, which was missing in the original data[2]. Geographic focus is partially verifiable: activities are in northern and central Italy (Lombardy, Piedmont, Liguria, Lazio/Rome) with plans for broader European expansion by 2025, especially France and Spain[2]. The omission of this geographic detail and leadership reduces completeness. No contradictions were found in core claims. The founding date, product claims, client categories, and sector description match official and investor-related documentation[1][2][4]. The funding round of €5 million in 2023 led by Sinergia Venture Fund is confirmed but also missing in the original data[1]. Overall, the information is factually strong but incomplete regarding leadership, geographic scope, and recent funding. Sources: https://www.alkemiacapital.com/en/fondi/agricooltur/ ; https://www.verticalfarmdaily.com/article/9571436/a-business-model-for-the-delivery-of-a-fresh-produce-with-the-roots-intact-to-end-consumers/ ; https://www.doorwayplatform.com/en/portfolio/deal/agricooltur","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website and all its subpages contain very limited to no explicit textual data on key topics such as company mission, product offerings, client categories, sector description, geographic focus, and leadership. Attempts to find PDFs or linked documents also yielded no results. The content appears to be minimal or heavily reliant on visual or non-extractable media."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://agricooltur.it""}" -FarmInsect,https://farminsect.eu/,"Bayern Kapital, European Innovation Council, HTGF (High-Tech Gruenderfonds), Minderoo Foundation, Sandwater, UnternehmerTUM",farminsect.eu,https://www.linkedin.com/company/farminsect,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://farminsect.eu/"", - ""companyDescription"": ""Unsere Produkte integrieren Insekten als natürliche Proteinquelle in den landwirtschaftlichen Kreislauf und schaffen Mehrwert für Umwelt und Wirtschaft. Wir bieten innovative, hochautomatisierte Anlagen für die Insektenzucht an. Unsere Mission ist es, nachhaltige, effiziente und zukunftsorientierte Lösungen für die Landwirtschaft und Futtermittelhersteller zu schaffen. FarmInsect fördert regionale Kreislaufwirtschaft durch modulare Mastanlagen, die Landwirte betreiben, um Larven als Proteinquelle zu produzieren. Ziel und Zweck ist die nachhaltige Produktion von Proteinen für Tierfutter und Petfood-Bereich, die Umwelt schont und Ressourcen effizient nutzt."", - ""productDescription"": ""FarmInsect offers protein-rich animal feed based on insect larvae, specifically from the black soldier fly, produced sustainably and regionally in Germany. Core product: Larvae protein with optimal amino acid and fatty acid profile for animal nutrition. Services include weekly supply of young larvae to farmers, monitoring and remote access to production systems, and a larvae buy-back option to maximize utilization and reduce waste. They emphasize decentralized production networks for risk reduction, transparency in the supply chain from egg to end product, and integration into existing farm operations."", - ""clientCategories"": [ - ""Landwirte (farmers)"", - ""Futtermittelhersteller (feed manufacturers)"" - ], - ""sectorDescription"": ""Operates in the sustainable agricultural sector, producing high-protein insect-based animal feed with advanced automated breeding systems."", - ""geographicFocus"": ""HQ: Münchner Str. 10, D-85232 Bergkirchen, Deutschland; Sales Focus: Regional production and markets primarily in Germany."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Kühn"", - ""title"": ""Geschäftsführer (Managing Director/CEO)"", - ""sourceUrl"": ""https://farminsect.eu/impressum"" - }, - { - ""name"": ""Wolfgang Westermeier"", - ""title"": ""Geschäftsführer (Managing Director/COO)"", - ""sourceUrl"": ""https://farminsect.eu/impressum"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct links to downloadable documents such as PDFs or DOCX found on the website during the research."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://farminsect.eu/ueber-uns"", - ""productDescription"": ""https://farminsect.eu/produkte"", - ""clientCategories"": ""https://farminsect.eu/produkte/landwirt"", - ""geographicFocus"": ""https://farminsect.eu/kontakt"", - ""keyExecutives"": ""https://farminsect.eu/impressum"" - } -}","{ - ""websiteURL"": ""https://farminsect.eu/"", - ""companyDescription"": ""Unsere Produkte integrieren Insekten als natürliche Proteinquelle in den landwirtschaftlichen Kreislauf und schaffen Mehrwert für Umwelt und Wirtschaft. Wir bieten innovative, hochautomatisierte Anlagen für die Insektenzucht an. Unsere Mission ist es, nachhaltige, effiziente und zukunftsorientierte Lösungen für die Landwirtschaft und Futtermittelhersteller zu schaffen. FarmInsect fördert regionale Kreislaufwirtschaft durch modulare Mastanlagen, die Landwirte betreiben, um Larven als Proteinquelle zu produzieren. Ziel und Zweck ist die nachhaltige Produktion von Proteinen für Tierfutter und Petfood-Bereich, die Umwelt schont und Ressourcen effizient nutzt."", - ""productDescription"": ""FarmInsect offers protein-rich animal feed based on insect larvae, specifically from the black soldier fly, produced sustainably and regionally in Germany. Core product: Larvae protein with optimal amino acid and fatty acid profile for animal nutrition. Services include weekly supply of young larvae to farmers, monitoring and remote access to production systems, and a larvae buy-back option to maximize utilization and reduce waste. They emphasize decentralized production networks for risk reduction, transparency in the supply chain from egg to end product, and integration into existing farm operations."", - ""clientCategories"": [ - ""Landwirte (farmers)"", - ""Futtermittelhersteller (feed manufacturers)"" - ], - ""sectorDescription"": ""Operates in the sustainable agricultural sector, producing high-protein insect-based animal feed with advanced automated breeding systems."", - ""geographicFocus"": ""HQ: Münchner Str. 10, D-85232 Bergkirchen, Deutschland; Sales Focus: Regional production and markets primarily in Germany."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Kühn"", - ""title"": ""Geschäftsführer (Managing Director/CEO)"", - ""sourceUrl"": ""https://farminsect.eu/impressum"" - }, - { - ""name"": ""Wolfgang Westermeier"", - ""title"": ""Geschäftsführer (Managing Director/COO)"", - ""sourceUrl"": ""https://farminsect.eu/impressum"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct links to downloadable documents such as PDFs or DOCX found on the website during the research."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://farminsect.eu/ueber-uns"", - ""productDescription"": ""https://farminsect.eu/produkte"", - ""clientCategories"": ""https://farminsect.eu/produkte/landwirt"", - ""geographicFocus"": ""https://farminsect.eu/kontakt"", - ""keyExecutives"": ""https://farminsect.eu/impressum"" - } -}",[],"{ - ""websiteURL"": ""https://farminsect.eu"", - ""companyDescription"": ""FarmInsect integrates insects as a natural protein source into the agricultural cycle, providing sustainable, efficient, and innovative insect breeding systems for farmers and feed manufacturers. Their mission focuses on creating added value for both the environment and the economy by supplying regionally produced, high-protein insect larvae that reduce reliance on imported soy and fishmeal, thereby promoting circular economy principles and resource efficiency."", - ""productDescription"": ""FarmInsect offers protein-rich animal feed derived from black soldier fly larvae produced sustainably in Germany. Their core product is larvae protein with an optimal amino acid and fatty acid profile suited for animal nutrition. Services include weekly delivery of young larvae to farmers, remote monitoring of breeding systems, and buy-back options for larvae to maximize utilization and minimize waste, supporting decentralized production networks that enhance supply chain transparency and risk management."", - ""clientCategories"": [ - ""Farmers"", - ""Feed Manufacturers"" - ], - ""sectorDescription"": ""Sustainable agriculture technology company specializing in high-protein insect-based animal feed production with automated breeding systems."", - ""geographicFocus"": ""Operations and sales primarily focused on regional production and markets within Germany."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Kühn"", - ""title"": ""Managing Director (CEO)"", - ""sourceUrl"": ""https://farminsect.eu/impressum"" - }, - { - ""name"": ""Wolfgang Westermeier"", - ""title"": ""Managing Director (COO)"", - ""sourceUrl"": ""https://farminsect.eu/impressum"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain match (farminsect.eu) and HQ location in Bergkirchen, Germany. Information on leadership and product details corroborated via company website and background pages. No additional senior leadership found on LinkedIn. Geographic focus limited to Germany based on company site and contacts. No downloadable documents found on the site. All required fields completed from official company sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://farminsect.eu/en/about-us"", - ""productDescription"": ""https://farminsect.eu/en/produkte"", - ""clientCategories"": ""https://farminsect.eu/en/produkte/landwirt"", - ""geographicFocus"": ""https://farminsect.eu/kontakt"", - ""keyExecutives"": ""https://farminsect.eu/impressum"" - } -}","{""clientCategories"":[""Farmers"",""Feed Manufacturers""],""companyDescription"":""FarmInsect integrates insects as a natural protein source into the agricultural cycle, providing sustainable, efficient, and innovative insect breeding systems for farmers and feed manufacturers. Their mission focuses on creating added value for both the environment and the economy by supplying regionally produced, high-protein insect larvae that reduce reliance on imported soy and fishmeal, thereby promoting circular economy principles and resource efficiency."",""geographicFocus"":""Operations and sales primarily focused on regional production and markets within Germany."",""keyExecutives"":[{""name"":""Thomas Kühn"",""sourceUrl"":""https://farminsect.eu/impressum"",""title"":""Managing Director (CEO)""},{""name"":""Wolfgang Westermeier"",""sourceUrl"":""https://farminsect.eu/impressum"",""title"":""Managing Director (COO)""}],""missingImportantFields"":[],""productDescription"":""FarmInsect offers protein-rich animal feed derived from black soldier fly larvae produced sustainably in Germany. Their core product is larvae protein with an optimal amino acid and fatty acid profile suited for animal nutrition. Services include weekly delivery of young larvae to farmers, remote monitoring of breeding systems, and buy-back options for larvae to maximize utilization and minimize waste, supporting decentralized production networks that enhance supply chain transparency and risk management."",""researcherNotes"":""Company identity confirmed by domain match (farminsect.eu) and HQ location in Bergkirchen, Germany. Information on leadership and product details corroborated via company website and background pages. No additional senior leadership found on LinkedIn. Geographic focus limited to Germany based on company site and contacts. No downloadable documents found on the site. All required fields completed from official company sources."",""sectorDescription"":""Sustainable agriculture technology company specializing in high-protein insect-based animal feed production with automated breeding systems."",""sources"":{""clientCategories"":""https://farminsect.eu/en/produkte/landwirt"",""companyDescription"":""https://farminsect.eu/en/about-us"",""geographicFocus"":""https://farminsect.eu/kontakt"",""keyExecutives"":""https://farminsect.eu/impressum"",""productDescription"":""https://farminsect.eu/en/produkte""},""websiteURL"":""https://farminsect.eu""}","Correctness: 98% Completeness: 95% The description is highly accurate and well-supported by multiple authoritative sources including FarmInsect’s official website and reputable industry news. Key claims such as FarmInsect’s focus on sustainable insect protein feed from black soldier fly larvae produced in Germany, modular decentralized farming systems, weekly supply of young larvae to farmers, efforts to substitute imported soy and fishmeal, and leadership by Thomas Kühn (CEO) and Wolfgang Westermeier (COO) are all confirmed by FarmInsect’s site and detailed reports from TUM and Feedstuffs (2024-09-10) [1][2][3][5]. The company’s mission to optimize circular economy principles and regional production in Germany aligns across sources. The €8 million Series A funding round to scale commercialization is a timely addition absent from the original text but provides valuable completeness [5]. The only minor omission is mention of the “EcoCircle” buy-back platform and future expansion plans within Europe, which do not contradict but extend the existing profile [4]. Overall, the information is correct and nearly complete based on the latest official and third-party sources. URLs: https://farminsect.eu/en/about-us, https://farminsect.eu/en/produkte, https://www.feedstuffs.com/nutrition-and-health/german-startup-offers-alternative-to-conventional-animal-feed, https://www.tum.de/en/news-and-events/all-news/press-releases/details/36232-1, https://www.petfoodprocessing.net/articles/17532-insect-technology-company-raises-848-million-to-scale","{""clientCategories"":[""Landwirte (farmers)"",""Futtermittelhersteller (feed manufacturers)""],""companyDescription"":""Unsere Produkte integrieren Insekten als natürliche Proteinquelle in den landwirtschaftlichen Kreislauf und schaffen Mehrwert für Umwelt und Wirtschaft. Wir bieten innovative, hochautomatisierte Anlagen für die Insektenzucht an. Unsere Mission ist es, nachhaltige, effiziente und zukunftsorientierte Lösungen für die Landwirtschaft und Futtermittelhersteller zu schaffen. FarmInsect fördert regionale Kreislaufwirtschaft durch modulare Mastanlagen, die Landwirte betreiben, um Larven als Proteinquelle zu produzieren. Ziel und Zweck ist die nachhaltige Produktion von Proteinen für Tierfutter und Petfood-Bereich, die Umwelt schont und Ressourcen effizient nutzt."",""geographicFocus"":""HQ: Münchner Str. 10, D-85232 Bergkirchen, Deutschland; Sales Focus: Regional production and markets primarily in Germany."",""keyExecutives"":[{""name"":""Thomas Kühn"",""sourceUrl"":""https://farminsect.eu/impressum"",""title"":""Geschäftsführer (Managing Director/CEO)""},{""name"":""Wolfgang Westermeier"",""sourceUrl"":""https://farminsect.eu/impressum"",""title"":""Geschäftsführer (Managing Director/COO)""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""FarmInsect offers protein-rich animal feed based on insect larvae, specifically from the black soldier fly, produced sustainably and regionally in Germany. Core product: Larvae protein with optimal amino acid and fatty acid profile for animal nutrition. Services include weekly supply of young larvae to farmers, monitoring and remote access to production systems, and a larvae buy-back option to maximize utilization and reduce waste. They emphasize decentralized production networks for risk reduction, transparency in the supply chain from egg to end product, and integration into existing farm operations."",""researcherNotes"":""No direct links to downloadable documents such as PDFs or DOCX found on the website during the research."",""sectorDescription"":""Operates in the sustainable agricultural sector, producing high-protein insect-based animal feed with advanced automated breeding systems."",""sources"":{""clientCategories"":""https://farminsect.eu/produkte/landwirt"",""companyDescription"":""https://farminsect.eu/ueber-uns"",""geographicFocus"":""https://farminsect.eu/kontakt"",""keyExecutives"":""https://farminsect.eu/impressum"",""productDescription"":""https://farminsect.eu/produkte""},""websiteURL"":""https://farminsect.eu/""}" -Invers,https://invers-groupe.fr,"Agri Impact, Crédit Agricole, IDIA Capital Investissement, Limagrain, UI Investissement",invers-groupe.fr,https://www.linkedin.com/company/invers-protéinesdurables,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://invers-groupe.fr"", - ""companyDescription"": ""Invers develops an innovative, farm-based insect protein supply chain for sustainable animal feed and natural pet food. It focuses on replacing imported proteins (soy and fishmeal) with locally produced mealworm proteins, promoting agricultural circular economy and supporting local farmers in the Auvergne-Rhône-Alpes region. Mission is to create a sustainable, local protein production system that ensures resilience, environmental respect, and fair remuneration for farmers."", - ""productDescription"": ""INVERS offers innovative products and services including dehydrated mealworms, fresh larvae, wet and dry ingredients for animal feed; insect droppings as soil fertilization components; and natural protein farms producing insect-based animal feed and natural pet food. The company emphasizes local sourcing, compliance with strict European standards, complete traceability, and sustainable development based on a circular, regenerative economy model."", - ""clientCategories"": [""Aquaculture"", ""Poultry"", ""Dogs and Cats"", ""Soil Fertilization""], - ""sectorDescription"": ""Operates in sustainable agriculture, specializing in insect protein production for animal nutrition and organic fertilisation."", - ""geographicFocus"": ""HQ: Champ de la Croix, 63720 Saint-Ignat, FRANCE; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Sébastien Crépieux"", ""title"": ""Founder and President"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""}, - {""name"": ""Stéphanie Cailloux"", ""title"": ""Co-founder and General Director"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""}, - {""name"": ""François Moury"", ""title"": ""President of Supervisory Board"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""}, - {""name"": ""Bastien Sachet"", ""title"": ""Vice President of Supervisory Board"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""} - ], - ""linkedDocuments"": [ - ""https://drive.google.com/drive/folders/1jqhO37WbUDIvPPTg4JzQ-wJFkUg7zzIo"" - ], - ""researcherNotes"": ""Primary sales regions or detailed market geography are not explicitly stated on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://invers-groupe.fr/"", - ""productDescription"": ""https://invers-groupe.fr/nos-solutions/"", - ""clientCategories"": ""https://invers-groupe.fr/presse/"", - ""geographicFocus"": ""https://invers-groupe.fr/contact/"", - ""keyExecutives"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - } -}","{ - ""websiteURL"": ""https://invers-groupe.fr"", - ""companyDescription"": ""Invers develops an innovative, farm-based insect protein supply chain for sustainable animal feed and natural pet food. It focuses on replacing imported proteins (soy and fishmeal) with locally produced mealworm proteins, promoting agricultural circular economy and supporting local farmers in the Auvergne-Rhône-Alpes region. Mission is to create a sustainable, local protein production system that ensures resilience, environmental respect, and fair remuneration for farmers."", - ""productDescription"": ""INVERS offers innovative products and services including dehydrated mealworms, fresh larvae, wet and dry ingredients for animal feed; insect droppings as soil fertilization components; and natural protein farms producing insect-based animal feed and natural pet food. The company emphasizes local sourcing, compliance with strict European standards, complete traceability, and sustainable development based on a circular, regenerative economy model."", - ""clientCategories"": [""Aquaculture"", ""Poultry"", ""Dogs and Cats"", ""Soil Fertilization""], - ""sectorDescription"": ""Operates in sustainable agriculture, specializing in insect protein production for animal nutrition and organic fertilisation."", - ""geographicFocus"": ""HQ: Champ de la Croix, 63720 Saint-Ignat, FRANCE; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Sébastien Crépieux"", ""title"": ""Founder and President"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""}, - {""name"": ""Stéphanie Cailloux"", ""title"": ""Co-founder and General Director"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""}, - {""name"": ""François Moury"", ""title"": ""President of Supervisory Board"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""}, - {""name"": ""Bastien Sachet"", ""title"": ""Vice President of Supervisory Board"", ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance""} - ], - ""linkedDocuments"": [ - ""https://drive.google.com/drive/folders/1jqhO37WbUDIvPPTg4JzQ-wJFkUg7zzIo"" - ], - ""researcherNotes"": ""Primary sales regions or detailed market geography are not explicitly stated on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://invers-groupe.fr/"", - ""productDescription"": ""https://invers-groupe.fr/nos-solutions/"", - ""clientCategories"": ""https://invers-groupe.fr/presse/"", - ""geographicFocus"": ""https://invers-groupe.fr/contact/"", - ""keyExecutives"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://invers-groupe.fr"", - ""companyDescription"": ""Invers develops an innovative, farm-based insect protein supply chain for sustainable animal feed and natural pet food. It focuses on replacing imported proteins (soy and fishmeal) with locally produced mealworm proteins, promoting agricultural circular economy and supporting local farmers in the Auvergne-Rhône-Alpes region. Mission is to create a sustainable, local protein production system that ensures resilience, environmental respect, and fair remuneration for farmers."", - ""productDescription"": ""INVERS offers innovative products and services including dehydrated mealworms, fresh larvae, wet and dry ingredients for animal feed; insect droppings as soil fertilization components; and natural protein farms producing insect-based animal feed and natural pet food. The company emphasizes local sourcing, compliance with strict European standards, complete traceability, and sustainable development based on a circular, regenerative economy model."", - ""clientCategories"": [ - ""Aquaculture"", - ""Poultry"", - ""Dogs and Cats"", - ""Soil Fertilization"" - ], - ""sectorDescription"": ""Operates in sustainable agriculture, specializing in insect protein production for animal nutrition and organic fertilisation."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Sébastien Crépieux"", - ""title"": ""Founder and President"", - ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - }, - { - ""name"": ""Stéphanie Cailloux"", - ""title"": ""Co-founder and General Director"", - ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - }, - { - ""name"": ""François Moury"", - ""title"": ""President of Supervisory Board"", - ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - }, - { - ""name"": ""Bastien Sachet"", - ""title"": ""Vice President of Supervisory Board"", - ""sourceUrl"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - } - ], - ""researcherNotes"": ""The company is clearly identified via domain match (invers-groupe.fr), regional HQ in Saint-Ignat, France, and its insect protein specialization. Geographic operating footprint or sales regions are not explicitly stated on official sources or LinkedIn. No senior leadership data found on LinkedIn beyond company website. The geographicFocus remains unknown due to lack of verifiable public information despite thorough review of official website and external trusted industry sources."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://invers-groupe.fr/"", - ""productDescription"": ""https://invers-groupe.fr/nos-solutions/"", - ""clientCategories"": ""https://invers-groupe.fr/presse/"", - ""geographicFocus"": ""https://invers-groupe.fr/contact/"", - ""keyExecutives"": ""https://invers-groupe.fr/nous-connaitre/gouvernance"" - } -}","{""clientCategories"":[""Aquaculture"",""Poultry"",""Dogs and Cats"",""Soil Fertilization""],""companyDescription"":""Invers develops an innovative, farm-based insect protein supply chain for sustainable animal feed and natural pet food. It focuses on replacing imported proteins (soy and fishmeal) with locally produced mealworm proteins, promoting agricultural circular economy and supporting local farmers in the Auvergne-Rhône-Alpes region. Mission is to create a sustainable, local protein production system that ensures resilience, environmental respect, and fair remuneration for farmers."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Sébastien Crépieux"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""Founder and President""},{""name"":""Stéphanie Cailloux"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""Co-founder and General Director""},{""name"":""François Moury"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""President of Supervisory Board""},{""name"":""Bastien Sachet"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""Vice President of Supervisory Board""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""INVERS offers innovative products and services including dehydrated mealworms, fresh larvae, wet and dry ingredients for animal feed; insect droppings as soil fertilization components; and natural protein farms producing insect-based animal feed and natural pet food. The company emphasizes local sourcing, compliance with strict European standards, complete traceability, and sustainable development based on a circular, regenerative economy model."",""researcherNotes"":""The company is clearly identified via domain match (invers-groupe.fr), regional HQ in Saint-Ignat, France, and its insect protein specialization. Geographic operating footprint or sales regions are not explicitly stated on official sources or LinkedIn. No senior leadership data found on LinkedIn beyond company website. The geographicFocus remains unknown due to lack of verifiable public information despite thorough review of official website and external trusted industry sources."",""sectorDescription"":""Operates in sustainable agriculture, specializing in insect protein production for animal nutrition and organic fertilisation."",""sources"":{""clientCategories"":""https://invers-groupe.fr/presse/"",""companyDescription"":""https://invers-groupe.fr/"",""geographicFocus"":""https://invers-groupe.fr/contact/"",""keyExecutives"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""productDescription"":""https://invers-groupe.fr/nos-solutions/""},""websiteURL"":""https://invers-groupe.fr""}","Correctness: 98% Completeness: 85% - -The description of Invers is highly accurate and well supported by multiple official and reputable sources. Invers is correctly identified as a French sustainable agriculture company specializing in farm-based production of mealworm (Tenebrio molitor) proteins for animal feed and natural pet food, aiming to replace imported soy and fishmeal with locally produced insect protein and promoting circular economy principles centered on farmers in the Auvergne-Rhône-Alpes region[1][2][3][4]. The leadership names and titles listed (Sébastien Crépieux as Founder and President, Stéphanie Cailloux as Co-founder and General Director, François Moury and Bastien Sachet on the Supervisory Board) are consistent with the company’s official governance page as of 2025[3]. The product range including dehydrated mealworms, larvae, insect droppings as soil fertilization, and a focus on European regulatory compliance and full traceability are verified on Invers’s official site and trade event presentations[3][4]. The headquarters in Saint-Ignat, France, is confirmed by multiple company sources[2][4]. - -The main completeness gap concerns the lack of explicit geographic footprint or sales region detail beyond the general Auvergne-Rhône-Alpes focus; although there is mention of plans for scaling nationally across French regions, no comprehensive verified data on current operational scope or international presence is available publicly[1][2]. This explains the noted absence of a clear “geographicFocus” field. No major factual inaccuracies were found, but the completeness is limited by unavailable or undisclosed details on scale and market footprint. Overall, the data is current as of 2025 and well aligned with official company communications. - -Sources include the official Invers website governance, product, and contact pages (https://invers-groupe.fr), Arbios directory (https://www.arbios.org/en/annuaire/invers-2/), Avolta transaction overview (https://avolta.io/transaction/invers/), Interzoo exhibitor profile (https://www.interzoo.com/en/exhibitors/invers-2291530), and a 2025 interview with founder Sébastien Crépieux (https://investinginregenerativeagriculture.com/2025/02/18/sebastien-crepieux/).","{""clientCategories"":[""Aquaculture"",""Poultry"",""Dogs and Cats"",""Soil Fertilization""],""companyDescription"":""Invers develops an innovative, farm-based insect protein supply chain for sustainable animal feed and natural pet food. It focuses on replacing imported proteins (soy and fishmeal) with locally produced mealworm proteins, promoting agricultural circular economy and supporting local farmers in the Auvergne-Rhône-Alpes region. Mission is to create a sustainable, local protein production system that ensures resilience, environmental respect, and fair remuneration for farmers."",""geographicFocus"":""HQ: Champ de la Croix, 63720 Saint-Ignat, FRANCE; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Sébastien Crépieux"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""Founder and President""},{""name"":""Stéphanie Cailloux"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""Co-founder and General Director""},{""name"":""François Moury"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""President of Supervisory Board""},{""name"":""Bastien Sachet"",""sourceUrl"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""title"":""Vice President of Supervisory Board""}],""linkedDocuments"":[""https://drive.google.com/drive/folders/1jqhO37WbUDIvPPTg4JzQ-wJFkUg7zzIo""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""INVERS offers innovative products and services including dehydrated mealworms, fresh larvae, wet and dry ingredients for animal feed; insect droppings as soil fertilization components; and natural protein farms producing insect-based animal feed and natural pet food. The company emphasizes local sourcing, compliance with strict European standards, complete traceability, and sustainable development based on a circular, regenerative economy model."",""researcherNotes"":""Primary sales regions or detailed market geography are not explicitly stated on the website."",""sectorDescription"":""Operates in sustainable agriculture, specializing in insect protein production for animal nutrition and organic fertilisation."",""sources"":{""clientCategories"":""https://invers-groupe.fr/presse/"",""companyDescription"":""https://invers-groupe.fr/"",""geographicFocus"":""https://invers-groupe.fr/contact/"",""keyExecutives"":""https://invers-groupe.fr/nous-connaitre/gouvernance"",""productDescription"":""https://invers-groupe.fr/nos-solutions/""},""websiteURL"":""https://invers-groupe.fr""}" -HSL Technologies,http://hsl.tech,"CAAP Creation, EDP Ventures, Equinor Ventures, European Innovation Council, KREAXI, PLD Automobile, Région Sud Investissement",hsl.tech,https://www.linkedin.com/company/hysilabs,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://hsl.tech"", - ""companyDescription"": ""HSL Technologies is a deeptech company based in Aix-en-Provence, transforming hydrogen and silica markets with its breakthrough HydroSil technology. This safe, scalable liquid carrier enables carbon-free hydrogen transport and storage using existing infrastructure. By combining low-carbon silica production with decentralized hydrogen solutions, HSL empowers industrial clients to decarbonize efficiently and sustainably."", - ""productDescription"": ""HSL Technologies offers HydroSil, a sustainable liquid carrier that stores and transports hydrogen and silica at ambient temperature and pressure. HydroSil uses renewable inputs like green electricity, biomass reductants, and green silicon. The production process forms a stable liquid hydrogen carrier with a CO2 neutral process, while recovering heat. It is compatible with existing infrastructure, easy to handle, non-toxic, and non-pyrophoric. HydroSil enables energy-free hydrogen release at 50 bars without losses, producing high-value low-carbon silica (187 tons silica per ton hydrogen released) with up to 50% CO2 reduction. It has high safety thresholds (flash point >60°C) and optimized density for storage and transport (store 3x more than standard silica, 7x more than compressed gas)."", - ""clientCategories"": [ - ""Major energy companies"", - ""Marine and inland waterway vessels"", - ""Logistics and port operators"", - ""Pipeline infrastructure operators"", - ""Startups and industry leaders in logistics, mobility, and supply chain technologies"", - ""Hydrogen importers and storage hubs"", - ""Fluid logistics companies"" - ], - ""sectorDescription"": ""Operates in the deeptech sector, providing innovative hydrogen transport and storage solutions using a breakthrough liquid carrier technology for clean energy industries."", - ""geographicFocus"": ""HQ: SAS HySiLabs, Av. Louis Philibert, Bâtiment Lavoisier, 13290 Aix-en-Provence; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Pierre-Emmanuel Casanova"", - ""title"": ""Co-Founder & Chief Business Officer"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Vincent Lôme"", - ""title"": ""PhD - Advanced Research Director & co-founder"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Corine Dubruel"", - ""title"": ""Executive President"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Tristan Robino"", - ""title"": ""Industrial Director"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Federico Folco"", - ""title"": ""PhD - Chemistry Director"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Alexandre Laroche"", - ""title"": ""Financial Administrative Manager"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - } - ], - ""linkedDocuments"": [ - ""https://hsl.tech/about-hsl/press-kit"" - ], - ""researcherNotes"": ""No specific sales regions or geographic sales focus details were found on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://hsl.tech/"", - ""productDescription"": ""https://hsl.tech/solutions/"", - ""clientCategories"": ""https://hsl.tech/projects/"", - ""geographicFocus"": ""https://hsl.tech/contact/"", - ""keyExecutives"": ""https://hsl.tech/about-hsl/"" - } -}","{ - ""websiteURL"": ""http://hsl.tech"", - ""companyDescription"": ""HSL Technologies is a deeptech company based in Aix-en-Provence, transforming hydrogen and silica markets with its breakthrough HydroSil technology. This safe, scalable liquid carrier enables carbon-free hydrogen transport and storage using existing infrastructure. By combining low-carbon silica production with decentralized hydrogen solutions, HSL empowers industrial clients to decarbonize efficiently and sustainably."", - ""productDescription"": ""HSL Technologies offers HydroSil, a sustainable liquid carrier that stores and transports hydrogen and silica at ambient temperature and pressure. HydroSil uses renewable inputs like green electricity, biomass reductants, and green silicon. The production process forms a stable liquid hydrogen carrier with a CO2 neutral process, while recovering heat. It is compatible with existing infrastructure, easy to handle, non-toxic, and non-pyrophoric. HydroSil enables energy-free hydrogen release at 50 bars without losses, producing high-value low-carbon silica (187 tons silica per ton hydrogen released) with up to 50% CO2 reduction. It has high safety thresholds (flash point >60°C) and optimized density for storage and transport (store 3x more than standard silica, 7x more than compressed gas)."", - ""clientCategories"": [ - ""Major energy companies"", - ""Marine and inland waterway vessels"", - ""Logistics and port operators"", - ""Pipeline infrastructure operators"", - ""Startups and industry leaders in logistics, mobility, and supply chain technologies"", - ""Hydrogen importers and storage hubs"", - ""Fluid logistics companies"" - ], - ""sectorDescription"": ""Operates in the deeptech sector, providing innovative hydrogen transport and storage solutions using a breakthrough liquid carrier technology for clean energy industries."", - ""geographicFocus"": ""HQ: SAS HySiLabs, Av. Louis Philibert, Bâtiment Lavoisier, 13290 Aix-en-Provence; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Pierre-Emmanuel Casanova"", - ""title"": ""Co-Founder & Chief Business Officer"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Vincent Lôme"", - ""title"": ""PhD - Advanced Research Director & co-founder"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Corine Dubruel"", - ""title"": ""Executive President"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Tristan Robino"", - ""title"": ""Industrial Director"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Federico Folco"", - ""title"": ""PhD - Chemistry Director"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Alexandre Laroche"", - ""title"": ""Financial Administrative Manager"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - } - ], - ""linkedDocuments"": [ - ""https://hsl.tech/about-hsl/press-kit"" - ], - ""researcherNotes"": ""No specific sales regions or geographic sales focus details were found on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://hsl.tech/"", - ""productDescription"": ""https://hsl.tech/solutions/"", - ""clientCategories"": ""https://hsl.tech/projects/"", - ""geographicFocus"": ""https://hsl.tech/contact/"", - ""keyExecutives"": ""https://hsl.tech/about-hsl/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://hsl.tech"", - ""companyDescription"": ""HSL Technologies is a deeptech company based in Aix-en-Provence, transforming hydrogen and silica markets with its breakthrough HydroSil technology. This safe, scalable liquid carrier enables carbon-free hydrogen transport and storage using existing infrastructure. By combining low-carbon silica production with decentralized hydrogen solutions, HSL empowers industrial clients to decarbonize efficiently and sustainably."", - ""productDescription"": ""HSL Technologies offers HydroSil, a sustainable liquid carrier that stores and transports hydrogen and silica at ambient temperature and pressure. HydroSil uses renewable inputs like green electricity, biomass reductants, and green silicon. The production process forms a stable liquid hydrogen carrier with a CO2 neutral process, while recovering heat. It is compatible with existing infrastructure, easy to handle, non-toxic, and non-pyrophoric. HydroSil enables energy-free hydrogen release at 50 bars without losses, producing high-value low-carbon silica (187 tons silica per ton hydrogen released) with up to 50% CO2 reduction. It has high safety thresholds (flash point >60°C) and optimized density for storage and transport (store 3x more than standard silica, 7x more than compressed gas)."", - ""clientCategories"": [ - ""Major Energy Companies"", - ""Marine and Inland Waterway Vessels"", - ""Logistics and Port Operators"", - ""Pipeline Infrastructure Operators"", - ""Startups and Industry Leaders in Logistics, Mobility, and Supply Chain Technologies"", - ""Hydrogen Importers and Storage Hubs"", - ""Fluid Logistics Companies"" - ], - ""sectorDescription"": ""Operates in the deeptech sector, providing innovative hydrogen transport and storage solutions using a breakthrough liquid carrier technology for clean energy industries."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Pierre-Emmanuel Casanova"", - ""title"": ""Co-Founder & Chief Business Officer"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Vincent Lôme"", - ""title"": ""PhD - Advanced Research Director & co-founder"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Corine Dubruel"", - ""title"": ""Executive President"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Tristan Robino"", - ""title"": ""Industrial Director"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Federico Folco"", - ""title"": ""PhD - Chemistry Director"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - }, - { - ""name"": ""Alexandre Laroche"", - ""title"": ""Financial Administrative Manager"", - ""sourceUrl"": ""https://hsl.tech/about-hsl/"" - } - ], - ""researcherNotes"": ""Company correctly identified as HSL Technologies (SAS HySiLabs) headquartered in Aix-en-Provence, France, confirmed by matching domain and executive names. No verifiable geographic sales focus or operating footprint is publicly available beyond the HQ location and general mentions of serving industrial clients globally. Key executives and leadership titles match company website data. Geographic focus remains null due to lack of authoritative source for sales or operational regions."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://hsl.tech/"", - ""productDescription"": ""https://hsl.tech/solutions/"", - ""clientCategories"": ""https://hsl.tech/projects/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://hsl.tech/about-hsl/"" - } -}","{""clientCategories"":[""Major Energy Companies"",""Marine and Inland Waterway Vessels"",""Logistics and Port Operators"",""Pipeline Infrastructure Operators"",""Startups and Industry Leaders in Logistics, Mobility, and Supply Chain Technologies"",""Hydrogen Importers and Storage Hubs"",""Fluid Logistics Companies""],""companyDescription"":""HSL Technologies is a deeptech company based in Aix-en-Provence, transforming hydrogen and silica markets with its breakthrough HydroSil technology. This safe, scalable liquid carrier enables carbon-free hydrogen transport and storage using existing infrastructure. By combining low-carbon silica production with decentralized hydrogen solutions, HSL empowers industrial clients to decarbonize efficiently and sustainably."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Pierre-Emmanuel Casanova"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Co-Founder & Chief Business Officer""},{""name"":""Vincent Lôme"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""PhD - Advanced Research Director & co-founder""},{""name"":""Corine Dubruel"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Executive President""},{""name"":""Tristan Robino"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Industrial Director""},{""name"":""Federico Folco"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""PhD - Chemistry Director""},{""name"":""Alexandre Laroche"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Financial Administrative Manager""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""HSL Technologies offers HydroSil, a sustainable liquid carrier that stores and transports hydrogen and silica at ambient temperature and pressure. HydroSil uses renewable inputs like green electricity, biomass reductants, and green silicon. The production process forms a stable liquid hydrogen carrier with a CO2 neutral process, while recovering heat. It is compatible with existing infrastructure, easy to handle, non-toxic, and non-pyrophoric. HydroSil enables energy-free hydrogen release at 50 bars without losses, producing high-value low-carbon silica (187 tons silica per ton hydrogen released) with up to 50% CO2 reduction. It has high safety thresholds (flash point >60°C) and optimized density for storage and transport (store 3x more than standard silica, 7x more than compressed gas)."",""researcherNotes"":""Company correctly identified as HSL Technologies (SAS HySiLabs) headquartered in Aix-en-Provence, France, confirmed by matching domain and executive names. No verifiable geographic sales focus or operating footprint is publicly available beyond the HQ location and general mentions of serving industrial clients globally. Key executives and leadership titles match company website data. Geographic focus remains null due to lack of authoritative source for sales or operational regions."",""sectorDescription"":""Operates in the deeptech sector, providing innovative hydrogen transport and storage solutions using a breakthrough liquid carrier technology for clean energy industries."",""sources"":{""clientCategories"":""https://hsl.tech/projects/"",""companyDescription"":""https://hsl.tech/"",""geographicFocus"":null,""keyExecutives"":""https://hsl.tech/about-hsl/"",""productDescription"":""https://hsl.tech/solutions/""},""websiteURL"":""https://hsl.tech""}","Correctness: 98% Completeness: 90% The description of HSL Technologies and its HydroSil product is highly accurate and well supported by multiple sources. The company is correctly identified as a deeptech firm based in Aix-en-Provence, France, developing a liquid inorganic hydrogen carrier named HydroSil that enables hydrogen storage and transport at ambient temperature and pressure with no energy required for hydrogen release. This technology leverages silicon-based chemistry and offers high safety and density advantages, aligning with information from HSL’s official site and supporting third-party confirmations, such as InnoEnergy[1], Solar Impulse[3], and EIT[5]. The identified key executives match those listed on HSL’s website, confirming current leadership data. The product description accurately reflects that HydroSil uses renewable inputs, provides CO2 reduction, and is compatible with existing logistics infrastructure as noted in the company’s site and external summaries[2][4]. The only notable omission is the lack of concrete public data on geographic sales or operational footprint beyond the HQ location, which remains unspecified in official sources and thus the geographicFocus field is correctly noted as null. This reduces completeness slightly but no factual errors arise from that absence. Overall, the material claims about company identity, leadership, product technology, and sector role are substantiated by authoritative company websites and recognized innovation platforms as of 2025-09-10. Sources: https://hsl.tech/, https://innoenergy.com/portfolio/hysilabs/265786/, https://solarimpulse.com/solutions-explorer/hydrosil-1, https://evolutioneurope.eu/success-stories/hsl-technologies-hydrosil-en/, https://www.eit.europa.eu/news-events/success-stories/shaping-tomorrow-unlocking-future-green-energy-hsl-technologies-and","{""clientCategories"":[""Major energy companies"",""Marine and inland waterway vessels"",""Logistics and port operators"",""Pipeline infrastructure operators"",""Startups and industry leaders in logistics, mobility, and supply chain technologies"",""Hydrogen importers and storage hubs"",""Fluid logistics companies""],""companyDescription"":""HSL Technologies is a deeptech company based in Aix-en-Provence, transforming hydrogen and silica markets with its breakthrough HydroSil technology. This safe, scalable liquid carrier enables carbon-free hydrogen transport and storage using existing infrastructure. By combining low-carbon silica production with decentralized hydrogen solutions, HSL empowers industrial clients to decarbonize efficiently and sustainably."",""geographicFocus"":""HQ: SAS HySiLabs, Av. Louis Philibert, Bâtiment Lavoisier, 13290 Aix-en-Provence; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Pierre-Emmanuel Casanova"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Co-Founder & Chief Business Officer""},{""name"":""Vincent Lôme"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""PhD - Advanced Research Director & co-founder""},{""name"":""Corine Dubruel"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Executive President""},{""name"":""Tristan Robino"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Industrial Director""},{""name"":""Federico Folco"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""PhD - Chemistry Director""},{""name"":""Alexandre Laroche"",""sourceUrl"":""https://hsl.tech/about-hsl/"",""title"":""Financial Administrative Manager""}],""linkedDocuments"":[""https://hsl.tech/about-hsl/press-kit""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""HSL Technologies offers HydroSil, a sustainable liquid carrier that stores and transports hydrogen and silica at ambient temperature and pressure. HydroSil uses renewable inputs like green electricity, biomass reductants, and green silicon. The production process forms a stable liquid hydrogen carrier with a CO2 neutral process, while recovering heat. It is compatible with existing infrastructure, easy to handle, non-toxic, and non-pyrophoric. HydroSil enables energy-free hydrogen release at 50 bars without losses, producing high-value low-carbon silica (187 tons silica per ton hydrogen released) with up to 50% CO2 reduction. It has high safety thresholds (flash point >60°C) and optimized density for storage and transport (store 3x more than standard silica, 7x more than compressed gas)."",""researcherNotes"":""No specific sales regions or geographic sales focus details were found on the website."",""sectorDescription"":""Operates in the deeptech sector, providing innovative hydrogen transport and storage solutions using a breakthrough liquid carrier technology for clean energy industries."",""sources"":{""clientCategories"":""https://hsl.tech/projects/"",""companyDescription"":""https://hsl.tech/"",""geographicFocus"":""https://hsl.tech/contact/"",""keyExecutives"":""https://hsl.tech/about-hsl/"",""productDescription"":""https://hsl.tech/solutions/""},""websiteURL"":""http://hsl.tech""}" -WellFish Tech,https://wellfishtech.com,Ocean 14 Capital,wellfishtech.com,https://www.linkedin.com/company/wellfish-diagnostics,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://wellfishtech.com"", - ""companyDescription"": ""Wellfish Tech is revolutionizing fish healthcare in aquaculture through rapid blood testing, enabling a proactive, data-informed healthcare model to increase productivity, fish health, and profitability. To enable farmers to gain novel health insights on their fish through routine non-lethal blood testing. By harnessing the power of data, the company empowers fish farmers with knowledge and insights to take preventive measures, ensuring fish well-being and supporting industry growth."", - ""productDescription"": ""WellFish Tech offers continuous health monitoring of fish through blood-based biomarker analysis, enabling timely decisions on feeding, treatment, and harvesting to optimize fish health, quality, and production. Their service rapidly assesses fish health within 24 hours of sample receipt using blood samples analyzed in a laboratory with bespoke algorithms. Benefits include avoiding fish downgrading, optimizing nutrition and feed use, planning treatments for maximum efficacy, and making precise harvesting decisions. Customers receive sampling kits and training on blood collection."", - ""clientCategories"": [ - ""Aquaculture farms"", - ""Fish health production teams"" - ], - ""sectorDescription"": ""Operates in the aquaculture fish health monitoring sector using biomarker analysis from blood samples for continuous health assessment, feed optimization, treatment planning, and harvest decision making."", - ""geographicFocus"": ""HQ: University of the West of Scotland, F117 Henry Building West, Paisley, PA1 2BE, Scotland; Sales Focus: Scotland, Norway, North America"", - ""keyExecutives"": [ - {""name"": ""Charlie Granfelt"", ""title"": ""CEO"", ""sourceUrl"": ""https://wellfishtech.com/new-about-us/""}, - {""name"": ""Professor Brian Quinn"", ""title"": ""CSO / Founder"", ""sourceUrl"": ""https://wellfishtech.com/new-about-us/""}, - {""name"": ""Shona Banks"", ""title"": ""COO"", ""sourceUrl"": ""https://wellfishtech.com/new-about-us/""} - ], - ""linkedDocuments"": [ - ""https://wellfishtech.com/wp-content/uploads/2024/09/Josip-feed-trial-paper.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/Barisic-2019.-Azamethiphos-rainbow-trout.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/1-s2.0-S0044848621009765-main.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/1-s2.0-S1874391913005277-main.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/Best-practices-for-nonlethal-blood-sampling.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/Journal-of-Fish-Diseases-2014-Braceland-Serum-enolase-a-non%E2%80%90destructive-biomarker-of-white-skeletal-myopathy-during.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://wellfishtech.com/new-about-us/"", - ""productDescription"": ""https://wellfishtech.com/"", - ""clientCategories"": ""https://wellfishtech.com/"", - ""geographicFocus"": ""https://wellfishtech.com/contact-us/"", - ""keyExecutives"": ""https://wellfishtech.com/new-about-us/"" - } -}","{ - ""websiteURL"": ""https://wellfishtech.com"", - ""companyDescription"": ""Wellfish Tech is revolutionizing fish healthcare in aquaculture through rapid blood testing, enabling a proactive, data-informed healthcare model to increase productivity, fish health, and profitability. To enable farmers to gain novel health insights on their fish through routine non-lethal blood testing. By harnessing the power of data, the company empowers fish farmers with knowledge and insights to take preventive measures, ensuring fish well-being and supporting industry growth."", - ""productDescription"": ""WellFish Tech offers continuous health monitoring of fish through blood-based biomarker analysis, enabling timely decisions on feeding, treatment, and harvesting to optimize fish health, quality, and production. Their service rapidly assesses fish health within 24 hours of sample receipt using blood samples analyzed in a laboratory with bespoke algorithms. Benefits include avoiding fish downgrading, optimizing nutrition and feed use, planning treatments for maximum efficacy, and making precise harvesting decisions. Customers receive sampling kits and training on blood collection."", - ""clientCategories"": [ - ""Aquaculture farms"", - ""Fish health production teams"" - ], - ""sectorDescription"": ""Operates in the aquaculture fish health monitoring sector using biomarker analysis from blood samples for continuous health assessment, feed optimization, treatment planning, and harvest decision making."", - ""geographicFocus"": ""HQ: University of the West of Scotland, F117 Henry Building West, Paisley, PA1 2BE, Scotland; Sales Focus: Scotland, Norway, North America"", - ""keyExecutives"": [ - {""name"": ""Charlie Granfelt"", ""title"": ""CEO"", ""sourceUrl"": ""https://wellfishtech.com/new-about-us/""}, - {""name"": ""Professor Brian Quinn"", ""title"": ""CSO / Founder"", ""sourceUrl"": ""https://wellfishtech.com/new-about-us/""}, - {""name"": ""Shona Banks"", ""title"": ""COO"", ""sourceUrl"": ""https://wellfishtech.com/new-about-us/""} - ], - ""linkedDocuments"": [ - ""https://wellfishtech.com/wp-content/uploads/2024/09/Josip-feed-trial-paper.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/Barisic-2019.-Azamethiphos-rainbow-trout.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/1-s2.0-S0044848621009765-main.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/1-s2.0-S1874391913005277-main.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/Best-practices-for-nonlethal-blood-sampling.pdf"", - ""https://wellfishtech.com/wp-content/uploads/2024/09/Journal-of-Fish-Diseases-2014-Braceland-Serum-enolase-a-non%E2%80%90destructive-biomarker-of-white-skeletal-myopathy-during.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://wellfishtech.com/new-about-us/"", - ""productDescription"": ""https://wellfishtech.com/"", - ""clientCategories"": ""https://wellfishtech.com/"", - ""geographicFocus"": ""https://wellfishtech.com/contact-us/"", - ""keyExecutives"": ""https://wellfishtech.com/new-about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://wellfishtech.com"", - ""companyDescription"": ""Wellfish Tech is revolutionizing fish healthcare in the aquaculture industry through rapid blood testing, enabling a proactive, data-informed healthcare model to increase productivity, fish health, and profitability. The company enables fish farmers to gain novel health insights on their fish through routine non-lethal blood testing, harnessing data and AI-powered biomarker analysis to support preventive measures and industry growth. Founded as a spin-out from the University of the West of Scotland in 2021, Wellfish Tech is focused on optimizing fish health and welfare assessment globally."", - ""productDescription"": ""WellFish Tech offers continuous health monitoring of fish using blood-based biomarker analysis combined with bespoke algorithms and AI, delivering rapid health assessments within 24 hours of sample receipt. Their service enables timely decisions on feeding, treatment planning, and harvest timing, improving fish health, nutrition optimization, and production efficiency. Customers receive sampling kits and training on non-lethal blood collection to integrate productive health insights into their operations."", - ""clientCategories"": [ - ""Aquaculture Farms"", - ""Fish Health Production Teams"" - ], - ""sectorDescription"": ""Aquaculture fish health monitoring using blood biomarker analysis and AI to provide continuous assessment, optimize feed use, plan treatments, and support precise harvest decisions."", - ""geographicFocus"": ""Headquartered in Paisley, Scotland, with sales focus and operations in Scotland, Norway, and North America."", - ""keyExecutives"": [ - { - ""name"": ""Charlie Granfelt"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://wellfishtech.com/new-about-us/"" - }, - { - ""name"": ""Professor Brian Quinn"", - ""title"": ""CSO / Founder"", - ""sourceUrl"": ""https://wellfishtech.com/new-about-us/"" - }, - { - ""name"": ""Shona Banks"", - ""title"": ""COO"", - ""sourceUrl"": ""https://wellfishtech.com/new-about-us/"" - } - ], - ""researcherNotes"": ""Company identity is confirmed by domain match, company history as a UWS spin-out in 2021, founder Professor Brian Quinn, and headquarters in Paisley, Scotland. Geographic footprint including Scotland, Norway and North America is consistent across sources. The key executives list aligns with the company’s official About page. No senior leadership details found on LinkedIn. Missing only researcherNotes and missingImportantFields were initially empty."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://wellfishtech.com/new-about-us/"", - ""productDescription"": ""https://wellfishtech.com/"", - ""clientCategories"": ""https://wellfishtech.com/"", - ""geographicFocus"": ""https://wellfishtech.com/contact-us/"", - ""keyExecutives"": ""https://wellfishtech.com/new-about-us/"" - } -}","{""clientCategories"":[""Aquaculture Farms"",""Fish Health Production Teams""],""companyDescription"":""Wellfish Tech is revolutionizing fish healthcare in the aquaculture industry through rapid blood testing, enabling a proactive, data-informed healthcare model to increase productivity, fish health, and profitability. The company enables fish farmers to gain novel health insights on their fish through routine non-lethal blood testing, harnessing data and AI-powered biomarker analysis to support preventive measures and industry growth. Founded as a spin-out from the University of the West of Scotland in 2021, Wellfish Tech is focused on optimizing fish health and welfare assessment globally."",""geographicFocus"":""Headquartered in Paisley, Scotland, with sales focus and operations in Scotland, Norway, and North America."",""keyExecutives"":[{""name"":""Charlie Granfelt"",""sourceUrl"":""https://wellfishtech.com/new-about-us/"",""title"":""CEO""},{""name"":""Professor Brian Quinn"",""sourceUrl"":""https://wellfishtech.com/new-about-us/"",""title"":""CSO / Founder""},{""name"":""Shona Banks"",""sourceUrl"":""https://wellfishtech.com/new-about-us/"",""title"":""COO""}],""missingImportantFields"":[],""productDescription"":""WellFish Tech offers continuous health monitoring of fish using blood-based biomarker analysis combined with bespoke algorithms and AI, delivering rapid health assessments within 24 hours of sample receipt. Their service enables timely decisions on feeding, treatment planning, and harvest timing, improving fish health, nutrition optimization, and production efficiency. Customers receive sampling kits and training on non-lethal blood collection to integrate productive health insights into their operations."",""researcherNotes"":""Company identity is confirmed by domain match, company history as a UWS spin-out in 2021, founder Professor Brian Quinn, and headquarters in Paisley, Scotland. Geographic footprint including Scotland, Norway and North America is consistent across sources. The key executives list aligns with the company’s official About page. No senior leadership details found on LinkedIn. Missing only researcherNotes and missingImportantFields were initially empty."",""sectorDescription"":""Aquaculture fish health monitoring using blood biomarker analysis and AI to provide continuous assessment, optimize feed use, plan treatments, and support precise harvest decisions."",""sources"":{""clientCategories"":""https://wellfishtech.com/"",""companyDescription"":""https://wellfishtech.com/new-about-us/"",""geographicFocus"":""https://wellfishtech.com/contact-us/"",""keyExecutives"":""https://wellfishtech.com/new-about-us/"",""productDescription"":""https://wellfishtech.com/""},""websiteURL"":""https://wellfishtech.com""}","Correctness: 98% Completeness: 90% The facts about Wellfish Tech are largely accurate and well-supported by official sources. The company was incorporated as Wellfish Diagnostics Ltd in February 2021 and renamed Wellfish Tech Ltd in September 2023, with headquarters registered at the University of the West of Scotland in Paisley, Scotland[1][2]. It is confirmed as a UWS spin-out founded by Professor Brian Quinn, who remains a key figure[3][4]. The geographic focus on Scotland, Norway, and North America, as well as the product offering involving non-lethal rapid blood testing for fish health using AI and biomarkers, aligns with company disclosures on their official website and validated industry profiles[3][5]. Key executives including Charlie Granfelt (CEO), Professor Brian Quinn (CSO/Founder), and Shona Banks (COO) match leadership listings on the company’s About page; however, no independent LinkedIn confirmation was found, slightly limiting verification of current titles[3]. The company’s focus on continuous fish health monitoring and non-lethal blood sample processing within 24 hours is consistent with their marketing and scientific descriptions[5]. Funding details are limited publicly, with seed rounds mentioned but no clear recent updates or investor details, impacting completeness[3]. Overall, core identity, leadership, headquarters, product details, and history are correct and well-documented from official filings and company-controlled sources, with minor gaps on funding transparency and third-party executive confirmations. https://wellfishtech.com/new-about-us/ https://wellfishtech.com/contact-us/ https://find-and-update.company-information.service.gov.uk/company/SC687885 https://app.dealroom.co/companies/wellfish_diagnostics https://healthequityclinicaltrialcongress.com/founder-journey-profiles/wellfish-tech","{""clientCategories"":[""Aquaculture farms"",""Fish health production teams""],""companyDescription"":""Wellfish Tech is revolutionizing fish healthcare in aquaculture through rapid blood testing, enabling a proactive, data-informed healthcare model to increase productivity, fish health, and profitability. To enable farmers to gain novel health insights on their fish through routine non-lethal blood testing. By harnessing the power of data, the company empowers fish farmers with knowledge and insights to take preventive measures, ensuring fish well-being and supporting industry growth."",""geographicFocus"":""HQ: University of the West of Scotland, F117 Henry Building West, Paisley, PA1 2BE, Scotland; Sales Focus: Scotland, Norway, North America"",""keyExecutives"":[{""name"":""Charlie Granfelt"",""sourceUrl"":""https://wellfishtech.com/new-about-us/"",""title"":""CEO""},{""name"":""Professor Brian Quinn"",""sourceUrl"":""https://wellfishtech.com/new-about-us/"",""title"":""CSO / Founder""},{""name"":""Shona Banks"",""sourceUrl"":""https://wellfishtech.com/new-about-us/"",""title"":""COO""}],""linkedDocuments"":[""https://wellfishtech.com/wp-content/uploads/2024/09/Josip-feed-trial-paper.pdf"",""https://wellfishtech.com/wp-content/uploads/2024/09/Barisic-2019.-Azamethiphos-rainbow-trout.pdf"",""https://wellfishtech.com/wp-content/uploads/2024/09/1-s2.0-S0044848621009765-main.pdf"",""https://wellfishtech.com/wp-content/uploads/2024/09/1-s2.0-S1874391913005277-main.pdf"",""https://wellfishtech.com/wp-content/uploads/2024/09/Best-practices-for-nonlethal-blood-sampling.pdf"",""https://wellfishtech.com/wp-content/uploads/2024/09/Journal-of-Fish-Diseases-2014-Braceland-Serum-enolase-a-non%E2%80%90destructive-biomarker-of-white-skeletal-myopathy-during.pdf""],""missingImportantFields"":[],""productDescription"":""WellFish Tech offers continuous health monitoring of fish through blood-based biomarker analysis, enabling timely decisions on feeding, treatment, and harvesting to optimize fish health, quality, and production. Their service rapidly assesses fish health within 24 hours of sample receipt using blood samples analyzed in a laboratory with bespoke algorithms. Benefits include avoiding fish downgrading, optimizing nutrition and feed use, planning treatments for maximum efficacy, and making precise harvesting decisions. Customers receive sampling kits and training on blood collection."",""researcherNotes"":null,""sectorDescription"":""Operates in the aquaculture fish health monitoring sector using biomarker analysis from blood samples for continuous health assessment, feed optimization, treatment planning, and harvest decision making."",""sources"":{""clientCategories"":""https://wellfishtech.com/"",""companyDescription"":""https://wellfishtech.com/new-about-us/"",""geographicFocus"":""https://wellfishtech.com/contact-us/"",""keyExecutives"":""https://wellfishtech.com/new-about-us/"",""productDescription"":""https://wellfishtech.com/""},""websiteURL"":""https://wellfishtech.com""}" -Better Dairy,https://betterdairy.com/,"Acequia Capital (AceCap), Happiness Capital, Manta Ray Ventures, redalpine, Stray Dog Capital, Vorwerk Ventures",betterdairy.com,https://www.linkedin.com/company/betterdairy,"{""seniorLeadership"":[{""fullName"":""Jevan Nagarajah"",""title"":""Founder and Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/betterdairy""}]}","{""seniorLeadership"":[{""fullName"":""Jevan Nagarajah"",""title"":""Founder and Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/betterdairy""}]}","{""websiteURL"":""https://betterdairy.com/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website betterdairy.com and its subpages contain no accessible content or textual data to extract any requested information. All attempts to retrieve company description, product offerings, client categories, sector details, geographic focus, leadership, and linked documents were unsuccessful due to absence of content."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""https://betterdairy.com/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website betterdairy.com and its subpages contain no accessible content or textual data to extract any requested information. All attempts to retrieve company description, product offerings, client categories, sector details, geographic focus, leadership, and linked documents were unsuccessful due to absence of content."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://betterdairy.com"", - ""companyDescription"": ""Better Dairy is a food technology company pioneering sustainable, animal-free dairy alternatives by using synthetic biology and precision fermentation to produce products molecularly identical to traditional dairy. Founded in 2020 and headquartered in London, UK, they focus on creating cheeses, yoghurts, and ice creams without relying on animals, aiming to reduce environmental impact and improve sustainability in the dairy industry."", - ""productDescription"": ""Better Dairy delivers dairy products such as cheese, yoghurt, and ice cream made through precision fermentation and synthetic biology, producing animal-free dairy that mimics traditional dairy’s taste, texture, and nutritional profile. Their products target consumers seeking sustainable, lactose-free, and antibiotic/hormone-free dairy alternatives with the same melting, stretching, and umami qualities as conventional dairy."", - ""clientCategories"": [ - ""Food Manufacturers"", - ""Retailers"", - ""Sustainable Food Brands"", - ""Food Service Providers"", - ""Environmentally Conscious Consumers"" - ], - ""sectorDescription"": ""Food technology company specializing in sustainable, animal-free dairy products produced via precision fermentation and synthetic biology."", - ""geographicFocus"": ""Primary focus on the United Kingdom market with potential global expansion."", - ""keyExecutives"": [ - { - ""name"": ""Jevan Nagarajah"", - ""title"": ""Founder and Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/betterdairy"" - } - ], - ""researcherNotes"": ""The company Better Dairy was confidently identified through domain matching (betterdairy.com), UK Companies House registration (Better Dairy Limited, company number 12393734), and consistent industry descriptors from multiple reputable sources. The official website betterdairy.com contains no accessible content, so company and product descriptions were synthesized from LinkedIn executive data and multiple third-party credible sources including regulatory filings and business profiles. Geographic focus is inferred primarily UK-based due to registered office and news sources but global ambitions are likely. Some client categories are inferred based on industry typicals given lack of explicit lists."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://unreasonablegroup.com/ventures/better-dairy"", - ""productDescription"": ""https://leadiq.com/c/better-dairy/5ea2c50760fe562750cffa9d"", - ""clientCategories"": ""https://leadiq.com/c/better-dairy/5ea2c50760fe562750cffa9d"", - ""geographicFocus"": ""https://find-and-update.company-information.service.gov.uk/company/12393734"", - ""keyExecutives"": ""https://www.linkedin.com/company/betterdairy"" - } -}","{""clientCategories"":[""Food Manufacturers"",""Retailers"",""Sustainable Food Brands"",""Food Service Providers"",""Environmentally Conscious Consumers""],""companyDescription"":""Better Dairy is a food technology company pioneering sustainable, animal-free dairy alternatives by using synthetic biology and precision fermentation to produce products molecularly identical to traditional dairy. Founded in 2020 and headquartered in London, UK, they focus on creating cheeses, yoghurts, and ice creams without relying on animals, aiming to reduce environmental impact and improve sustainability in the dairy industry."",""geographicFocus"":""Primary focus on the United Kingdom market with potential global expansion."",""keyExecutives"":[{""name"":""Jevan Nagarajah"",""sourceUrl"":""https://www.linkedin.com/company/betterdairy"",""title"":""Founder and Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""Better Dairy delivers dairy products such as cheese, yoghurt, and ice cream made through precision fermentation and synthetic biology, producing animal-free dairy that mimics traditional dairy’s taste, texture, and nutritional profile. Their products target consumers seeking sustainable, lactose-free, and antibiotic/hormone-free dairy alternatives with the same melting, stretching, and umami qualities as conventional dairy."",""researcherNotes"":""The company Better Dairy was confidently identified through domain matching (betterdairy.com), UK Companies House registration (Better Dairy Limited, company number 12393734), and consistent industry descriptors from multiple reputable sources. The official website betterdairy.com contains no accessible content, so company and product descriptions were synthesized from LinkedIn executive data and multiple third-party credible sources including regulatory filings and business profiles. Geographic focus is inferred primarily UK-based due to registered office and news sources but global ambitions are likely. Some client categories are inferred based on industry typicals given lack of explicit lists."",""sectorDescription"":""Food technology company specializing in sustainable, animal-free dairy products produced via precision fermentation and synthetic biology."",""sources"":{""clientCategories"":""https://leadiq.com/c/better-dairy/5ea2c50760fe562750cffa9d"",""companyDescription"":""https://unreasonablegroup.com/ventures/better-dairy"",""geographicFocus"":""https://find-and-update.company-information.service.gov.uk/company/12393734"",""keyExecutives"":""https://www.linkedin.com/company/betterdairy"",""productDescription"":""https://leadiq.com/c/better-dairy/5ea2c50760fe562750cffa9d""},""websiteURL"":""https://betterdairy.com""}","Correctness: 98% Completeness: 95% The information about Better Dairy is highly accurate and well-supported by multiple sources. Jevan Nagarajah is confirmed as Founder and CEO, with extensive detailed bios from LinkedIn and interviews confirming his role and experience[1][2][3]. The company focuses on sustainable, animal-free dairy alternatives produced via precision fermentation and synthetic biology to mimic traditional dairy's taste, texture, and molecular profile, with products including cheese, yoghurt, and ice cream[1][5]. The UK headquarters is supported by registrations and news profiles, indicating a primary UK market focus with global ambitions implied[3]. The product description aligning with molecular identity to traditional dairy and the sustainability mission is consistent across interviews and podcasts[5]. The completeness is slightly reduced because the official website betterdairy.com currently lacks accessible content for direct verification, and some inferred client categories and geographic scope could be more explicitly stated in primary sources[1][3]. No contradictions were found, and the leadership information is current as of mid-2025. Overall, the factual claims are very reliable, drawn from credible official interviews, regulatory filings, and executive profiles. Relevant sources include https://unreasonablegroup.com/ventures/better-dairy, https://www.linkedin.com/company/betterdairy, and UK Companies House data at https://find-and-update.company-information.service.gov.uk/company/12393734.","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website betterdairy.com and its subpages contain no accessible content or textual data to extract any requested information. All attempts to retrieve company description, product offerings, client categories, sector details, geographic focus, leadership, and linked documents were unsuccessful due to absence of content."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://betterdairy.com/""}" -Mosa Meat,http://www.mosameat.com,"Doux Investments, Invest-NL, InvestEU, Limburg Energy Fund, Lowercarbon Capital, M Ventures, NV Industriebank LIOF, PHW Group, XO Ventures",mosameat.com,https://www.linkedin.com/company/mosameat,"{""seniorLeadership"":[{""name"":""Peter Verstrate"",""title"":""Co-Founder & CEO"",""profileURL"":""https://www.linkedin.com/in/peter-verstrate-538b4914a""},{""name"":""Daan Luining"",""title"":""Co-Founder & CTO"",""profileURL"":""https://www.linkedin.com/in/daanluining""}]}","{""seniorLeadership"":[{""name"":""Peter Verstrate"",""title"":""Co-Founder & CEO"",""profileURL"":""https://www.linkedin.com/in/peter-verstrate-538b4914a""},{""name"":""Daan Luining"",""title"":""Co-Founder & CTO"",""profileURL"":""https://www.linkedin.com/in/daanluining""}]}","{ - ""websiteURL"": ""http://www.mosameat.com"", - ""companyDescription"": ""Mosa Meat's mission is to fundamentally reshape the global food system by creating sustainable cultured beef burgers to reduce environmental damage caused by traditional meat production. They aim to develop high-quality, animal-component-free beef burgers that are available worldwide, making a planet-sized positive impact. Founded in 2016 by scientists Mark Post and Peter Verstrate, Mosa Meat has achieved key milestones including creating the first cultured beef burger in 2013, developing serum-free growth mediums, and scaling production to reduce costs. Located at Watermolen 28, 6229 PM Maastricht, The Netherlands, their website is https://mosameat.com. Mosa Meat is a food technology company pioneering a cleaner, kinder way of making beef. They produce real beef burgers grown from animal cells using a natural muscle growth process, creating sustainable beef without harming animals."", - ""productDescription"": ""Mosa Meat's core product is a cultured beef burger, created by growing real beef directly from animal cells through a natural muscle growth process. This innovative product provides sustainable beef without the need for traditional animal farming. Their offerings focus on producing high-quality cultured meat that is kind to animals and better for the planet."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the food technology and cultivated meat sector, pioneering sustainable cultured beef production to transform traditional meat consumption with environmentally friendly alternatives."", - ""geographicFocus"": ""HQ: Watermolen 28, 6229 PM Maastricht, The Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Mark Post"", ""title"": ""Chief Scientific Officer and Co-Founder"", ""sourceUrl"": ""https://mosameat.com/meet-mosa""}, - {""name"": ""Maarten Bosch"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://mosameat.com/meet-mosa""}, - {""name"": ""Peter Verstrate"", ""title"": ""Chief Operating Officer and Co-Founder"", ""sourceUrl"": ""https://mosameat.com/meet-mosa""} - ], - ""linkedDocuments"": [ - ""https://mosameat.com/s/APR-16-2024-PRESS-RELEASE-Mosa-Meat-Raises-40M-in-New-Financing-EN.pdf"", - ""https://mosameat.com/s/NUTRECOANDLOWERCARBONCAPITALJOINMOSAMEATTOACCELERATEMARKETINTRODUCTION.pdf"", - ""https://mosameat.com/s/Mosa-Meat-Press-Release-B-Corp-07-09-2023-EN.pdf"", - ""https://mosameat.com/s/Press-release-First-NL-Tasting-Mosa-Meat-Conducts-First-Pre-Approval-Tasting-of-Cultivated-Beef-in-t.pdf"", - ""https://mosameat.com/s/US-Mosa-Meat-Scaling-Beef-Cultivation-to-Industrial-Production-Levels.pdf"", - ""https://mosameat.com/s/FAQs_MosaMeat_Dec19.pdf"", - ""https://mosameat.com/s/PRESSRELEASE_MosaMeat_17July2018.pdf"", - ""https://mosameat.com/s/Mosa-Meat-signs-an-LOI-with-Nutreco-to-reduce-cost-of-cell-feed-and-scale-up-production.pdf"", - ""https://mosameat.com/s/Mosa-Meat-Calls-on-Governments-and-Food-Industry-to-Help-Advance-Cultivated-Beef-Development-p62y.pdf"", - ""https://mosameat.com/s/Mosa-Meat-Press-release-Opening-Scale-up-Facility-May-08.pdf"" - ], - ""researcherNotes"": ""Client categories and exact sales market regions are not explicitly stated on the website."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://mosameat.com/the-mission"", - ""productDescription"": ""https://mosameat.com/our-burger"", - ""clientCategories"": null, - ""geographicFocus"": ""https://mosameat.com/contact"", - ""keyExecutives"": ""https://mosameat.com/meet-mosa"" - } -}","{ - ""websiteURL"": ""http://www.mosameat.com"", - ""companyDescription"": ""Mosa Meat's mission is to fundamentally reshape the global food system by creating sustainable cultured beef burgers to reduce environmental damage caused by traditional meat production. They aim to develop high-quality, animal-component-free beef burgers that are available worldwide, making a planet-sized positive impact. Founded in 2016 by scientists Mark Post and Peter Verstrate, Mosa Meat has achieved key milestones including creating the first cultured beef burger in 2013, developing serum-free growth mediums, and scaling production to reduce costs. Located at Watermolen 28, 6229 PM Maastricht, The Netherlands, their website is https://mosameat.com. Mosa Meat is a food technology company pioneering a cleaner, kinder way of making beef. They produce real beef burgers grown from animal cells using a natural muscle growth process, creating sustainable beef without harming animals."", - ""productDescription"": ""Mosa Meat's core product is a cultured beef burger, created by growing real beef directly from animal cells through a natural muscle growth process. This innovative product provides sustainable beef without the need for traditional animal farming. Their offerings focus on producing high-quality cultured meat that is kind to animals and better for the planet."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the food technology and cultivated meat sector, pioneering sustainable cultured beef production to transform traditional meat consumption with environmentally friendly alternatives."", - ""geographicFocus"": ""HQ: Watermolen 28, 6229 PM Maastricht, The Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Mark Post"", ""title"": ""Chief Scientific Officer and Co-Founder"", ""sourceUrl"": ""https://mosameat.com/meet-mosa""}, - {""name"": ""Maarten Bosch"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://mosameat.com/meet-mosa""}, - {""name"": ""Peter Verstrate"", ""title"": ""Chief Operating Officer and Co-Founder"", ""sourceUrl"": ""https://mosameat.com/meet-mosa""} - ], - ""linkedDocuments"": [ - ""https://mosameat.com/s/APR-16-2024-PRESS-RELEASE-Mosa-Meat-Raises-40M-in-New-Financing-EN.pdf"", - ""https://mosameat.com/s/NUTRECOANDLOWERCARBONCAPITALJOINMOSAMEATTOACCELERATEMARKETINTRODUCTION.pdf"", - ""https://mosameat.com/s/Mosa-Meat-Press-Release-B-Corp-07-09-2023-EN.pdf"", - ""https://mosameat.com/s/Press-release-First-NL-Tasting-Mosa-Meat-Conducts-First-Pre-Approval-Tasting-of-Cultivated-Beef-in-t.pdf"", - ""https://mosameat.com/s/US-Mosa-Meat-Scaling-Beef-Cultivation-to-Industrial-Production-Levels.pdf"", - ""https://mosameat.com/s/FAQs_MosaMeat_Dec19.pdf"", - ""https://mosameat.com/s/PRESSRELEASE_MosaMeat_17July2018.pdf"", - ""https://mosameat.com/s/Mosa-Meat-signs-an-LOI-with-Nutreco-to-reduce-cost-of-cell-feed-and-scale-up-production.pdf"", - ""https://mosameat.com/s/Mosa-Meat-Calls-on-Governments-and-Food-Industry-to-Help-Advance-Cultivated-Beef-Development-p62y.pdf"", - ""https://mosameat.com/s/Mosa-Meat-Press-release-Opening-Scale-up-Facility-May-08.pdf"" - ], - ""researcherNotes"": ""Client categories and exact sales market regions are not explicitly stated on the website."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://mosameat.com/the-mission"", - ""productDescription"": ""https://mosameat.com/our-burger"", - ""clientCategories"": null, - ""geographicFocus"": ""https://mosameat.com/contact"", - ""keyExecutives"": ""https://mosameat.com/meet-mosa"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://mosameat.com"", - ""companyDescription"": ""Mosa Meat is a Dutch food technology company founded in 2016, headquartered in Maastricht, Netherlands. It pioneers cultured meat production by growing real beef burgers directly from animal cells through a natural muscle growth process. Their mission is to fundamentally reshape the global food system by creating sustainable, high-quality beef products without harming animals, reducing environmental impact compared to traditional meat production. The company was co-founded by scientists Mark Post and Peter Verstrate and is advancing scalable production technologies to make cultured beef widely available worldwide."", - ""productDescription"": ""Mosa Meat produces cultured beef burgers created by isolating animal cells from cows and growing these into muscle and fat tissues using nutrient-rich growth mediums. This process yields real beef that genetically matches conventional meat but is produced without raising or slaughtering animals. Their product focuses on delivering sustainable, high-quality cultured meat that is environmentally friendly and animal-component-free, offering an alternative to traditional beef with a lower environmental footprint."", - ""clientCategories"": [ - ""Food Manufacturers"", - ""Retailers"", - ""Foodservice Operators"", - ""Sustainability-Focused Investors"", - ""Research Institutions"" - ], - ""sectorDescription"": ""Operates in the food technology industry specializing in cultured meat production to create sustainable, animal-free beef alternatives that reduce environmental impact."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Mark Post"", - ""title"": ""Chief Scientific Officer and Co-Founder"", - ""sourceUrl"": ""https://mosameat.com/meet-mosa"" - }, - { - ""name"": ""Maarten Bosch"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://mosameat.com/meet-mosa"" - }, - { - ""name"": ""Peter Verstrate"", - ""title"": ""Chief Operating Officer and Co-Founder"", - ""sourceUrl"": ""https://mosameat.com/meet-mosa"" - }, - { - ""name"": ""Daan Luining"", - ""title"": ""Co-Founder & CTO"", - ""sourceUrl"": ""https://www.linkedin.com/in/daanluining"" - } - ], - ""researcherNotes"": ""Company identity confirmed by matching HQ (Maastricht, Netherlands), founding year (2016), and product focus on cultured beef. Key executive titles corroborated from company and LinkedIn sources; noted slight title difference for Peter Verstrate (COO on company site, CEO on LinkedIn), so company site title retained as more authoritative. Geographic sales focus not publicly available; left null. Client categories inferred from sector typical customers and ecosystem roles due to lack of explicit listing on website or documents."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://mosameat.com/the-mission"", - ""productDescription"": ""https://mosameat.com/our-burger"", - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": ""https://mosameat.com/meet-mosa"" - } -}","{""clientCategories"":[""Food Manufacturers"",""Retailers"",""Foodservice Operators"",""Sustainability-Focused Investors"",""Research Institutions""],""companyDescription"":""Mosa Meat is a Dutch food technology company founded in 2016, headquartered in Maastricht, Netherlands. It pioneers cultured meat production by growing real beef burgers directly from animal cells through a natural muscle growth process. Their mission is to fundamentally reshape the global food system by creating sustainable, high-quality beef products without harming animals, reducing environmental impact compared to traditional meat production. The company was co-founded by scientists Mark Post and Peter Verstrate and is advancing scalable production technologies to make cultured beef widely available worldwide."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Mark Post"",""sourceUrl"":""https://mosameat.com/meet-mosa"",""title"":""Chief Scientific Officer and Co-Founder""},{""name"":""Maarten Bosch"",""sourceUrl"":""https://mosameat.com/meet-mosa"",""title"":""Chief Executive Officer""},{""name"":""Peter Verstrate"",""sourceUrl"":""https://mosameat.com/meet-mosa"",""title"":""Chief Operating Officer and Co-Founder""},{""name"":""Daan Luining"",""sourceUrl"":""https://www.linkedin.com/in/daanluining"",""title"":""Co-Founder & CTO""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Mosa Meat produces cultured beef burgers created by isolating animal cells from cows and growing these into muscle and fat tissues using nutrient-rich growth mediums. This process yields real beef that genetically matches conventional meat but is produced without raising or slaughtering animals. Their product focuses on delivering sustainable, high-quality cultured meat that is environmentally friendly and animal-component-free, offering an alternative to traditional beef with a lower environmental footprint."",""researcherNotes"":""Company identity confirmed by matching HQ (Maastricht, Netherlands), founding year (2016), and product focus on cultured beef. Key executive titles corroborated from company and LinkedIn sources; noted slight title difference for Peter Verstrate (COO on company site, CEO on LinkedIn), so company site title retained as more authoritative. Geographic sales focus not publicly available; left null. Client categories inferred from sector typical customers and ecosystem roles due to lack of explicit listing on website or documents."",""sectorDescription"":""Operates in the food technology industry specializing in cultured meat production to create sustainable, animal-free beef alternatives that reduce environmental impact."",""sources"":{""clientCategories"":null,""companyDescription"":""https://mosameat.com/the-mission"",""geographicFocus"":null,""keyExecutives"":""https://mosameat.com/meet-mosa"",""productDescription"":""https://mosameat.com/our-burger""},""websiteURL"":""https://mosameat.com""}","Correctness: 98% Completeness: 90% The description of Mosa Meat as a Dutch food technology company founded in 2016 in Maastricht, pioneering cultured beef burgers grown directly from animal cells, is accurate per multiple authoritative sources including the company’s official website and Wikipedia as of 2025-09-10[1][4][5]. Key executives Mark Post (Chief Scientific Officer and Co-Founder), Maarten Bosch (CEO), Peter Verstrate (Chief Operating Officer and Co-Founder), and Daan Luining (Co-Founder & CTO) align with titles found on the official Mosa Meat site and corroborated by LinkedIn and Wikipedia; the slight title discrepancy for Peter Verstrate is resolved by relying on company site titles[1][4][5]. The product description matches: cultured beef produced by isolating cow cells and growing muscle and fat tissues without raising or slaughtering animals, genetically identical to conventional beef, aiming for sustainability and reduced environmental impact[1][4][5]. The omission of geographic sales focus is explained by lack of public information, so that does not reduce correctness but lowers completeness. Client categories are inferred, and no explicit public listing exists, which is a minor completeness gap. Overall, the verification is based on official company sources plus Wikipedia, both current and well-aligned: https://mosameat.com/the-mission https://mosameat.com/meet-mosa https://mosameat.com/faq https://en.wikipedia.org/wiki/Mosa_Meat","{""clientCategories"":[],""companyDescription"":""Mosa Meat's mission is to fundamentally reshape the global food system by creating sustainable cultured beef burgers to reduce environmental damage caused by traditional meat production. They aim to develop high-quality, animal-component-free beef burgers that are available worldwide, making a planet-sized positive impact. Founded in 2016 by scientists Mark Post and Peter Verstrate, Mosa Meat has achieved key milestones including creating the first cultured beef burger in 2013, developing serum-free growth mediums, and scaling production to reduce costs. Located at Watermolen 28, 6229 PM Maastricht, The Netherlands, their website is https://mosameat.com. Mosa Meat is a food technology company pioneering a cleaner, kinder way of making beef. They produce real beef burgers grown from animal cells using a natural muscle growth process, creating sustainable beef without harming animals."",""geographicFocus"":""HQ: Watermolen 28, 6229 PM Maastricht, The Netherlands; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Mark Post"",""sourceUrl"":""https://mosameat.com/meet-mosa"",""title"":""Chief Scientific Officer and Co-Founder""},{""name"":""Maarten Bosch"",""sourceUrl"":""https://mosameat.com/meet-mosa"",""title"":""Chief Executive Officer""},{""name"":""Peter Verstrate"",""sourceUrl"":""https://mosameat.com/meet-mosa"",""title"":""Chief Operating Officer and Co-Founder""}],""linkedDocuments"":[""https://mosameat.com/s/APR-16-2024-PRESS-RELEASE-Mosa-Meat-Raises-40M-in-New-Financing-EN.pdf"",""https://mosameat.com/s/NUTRECOANDLOWERCARBONCAPITALJOINMOSAMEATTOACCELERATEMARKETINTRODUCTION.pdf"",""https://mosameat.com/s/Mosa-Meat-Press-Release-B-Corp-07-09-2023-EN.pdf"",""https://mosameat.com/s/Press-release-First-NL-Tasting-Mosa-Meat-Conducts-First-Pre-Approval-Tasting-of-Cultivated-Beef-in-t.pdf"",""https://mosameat.com/s/US-Mosa-Meat-Scaling-Beef-Cultivation-to-Industrial-Production-Levels.pdf"",""https://mosameat.com/s/FAQs_MosaMeat_Dec19.pdf"",""https://mosameat.com/s/PRESSRELEASE_MosaMeat_17July2018.pdf"",""https://mosameat.com/s/Mosa-Meat-signs-an-LOI-with-Nutreco-to-reduce-cost-of-cell-feed-and-scale-up-production.pdf"",""https://mosameat.com/s/Mosa-Meat-Calls-on-Governments-and-Food-Industry-to-Help-Advance-Cultivated-Beef-Development-p62y.pdf"",""https://mosameat.com/s/Mosa-Meat-Press-release-Opening-Scale-up-Facility-May-08.pdf""],""missingImportantFields"":[""clientCategories""],""productDescription"":""Mosa Meat's core product is a cultured beef burger, created by growing real beef directly from animal cells through a natural muscle growth process. This innovative product provides sustainable beef without the need for traditional animal farming. Their offerings focus on producing high-quality cultured meat that is kind to animals and better for the planet."",""researcherNotes"":""Client categories and exact sales market regions are not explicitly stated on the website."",""sectorDescription"":""Operates in the food technology and cultivated meat sector, pioneering sustainable cultured beef production to transform traditional meat consumption with environmentally friendly alternatives."",""sources"":{""clientCategories"":null,""companyDescription"":""https://mosameat.com/the-mission"",""geographicFocus"":""https://mosameat.com/contact"",""keyExecutives"":""https://mosameat.com/meet-mosa"",""productDescription"":""https://mosameat.com/our-burger""},""websiteURL"":""http://www.mosameat.com""}" -Gorsentam,https://www.gorsentam.com,"Mehmet Buldurgan, Sirket Ortağım Angel Investors Network",gorsentam.com,https://www.linkedin.com/company/görsentam-tarım-teknolojleri,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.gorsentam.com"", - ""companyDescription"": ""GÖRSENTAM Tarım Teknolojileri was founded in 2020 with TÜBİTAK support, developing remote sensing and AI-based solutions for agricultural enterprises and farmers, including a patented pheromone camera early warning system. Its mission is to integrate advanced agricultural technology with agronomic knowledge to produce innovative products accessible to all, maintaining quality and maximizing user satisfaction."", - ""productDescription"": ""The company offers a variety of sensors and solutions for smart agriculture, including:\n- Atmospheric Temperature and Humidity Sensor\n- Wind Direction Sensor (RK110-02)\n- Wind Speed Sensor (RK100-02)\n- Rain Sensor (RK400-04)\n- Leaf Wetness Sensor (RK300-04)\n- CO2 Carbon Dioxide Sensor (RK300-03)\n- Soil Temperature and Humidity Sensor (RK520-01)\nAdditionally, GÖRSENTAM provides AI-based agricultural disease and pest prediction and early warning systems, remote sensing technologies, and an intelligent agricultural control system integrating meteorological and pheromone camera data."", - ""clientCategories"": [""Individual Farmers"", ""Agricultural Businesses""], - ""sectorDescription"": ""Operates in the smart agriculture technology sector, providing AI and remote sensing-based solutions for agricultural disease and pest management, environmental monitoring, and agronomic decision support."", - ""geographicFocus"": ""HQ: Görükle Mah. Üniversite-1 Cad. ULUTEK Teknopark No:933/B15 Nilüfer, BURSA, Turkey; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Mert Demirel"", ""title"": ""Ziraat Yüksek Mühendisi (Agricultural Engineer)"", ""sourceUrl"": ""https://www.gorsentam.com/kurumsal""}, - {""name"": ""Baki Doğan Akar"", ""title"": ""Elektrik-Elektronik Mühendisi (Electrical-Electronic Engineer)"", ""sourceUrl"": ""https://www.gorsentam.com/kurumsal""}, - {""name"": ""Alper Cem Nedirli"", ""title"": ""Mobil Developer"", ""sourceUrl"": ""https://www.gorsentam.com/kurumsal""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories are inferred from product use and company mission as no explicit customer or industry list is provided."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.gorsentam.com/kurumsal"", - ""productDescription"": ""https://www.gorsentam.com/sensors"", - ""clientCategories"": ""https://www.gorsentam.com/corporate"", - ""geographicFocus"": ""https://www.gorsentam.com/iletisim"", - ""keyExecutives"": ""https://www.gorsentam.com/kurumsal"" - } -}","{ - ""websiteURL"": ""https://www.gorsentam.com"", - ""companyDescription"": ""GÖRSENTAM Tarım Teknolojileri was founded in 2020 with TÜBİTAK support, developing remote sensing and AI-based solutions for agricultural enterprises and farmers, including a patented pheromone camera early warning system. Its mission is to integrate advanced agricultural technology with agronomic knowledge to produce innovative products accessible to all, maintaining quality and maximizing user satisfaction."", - ""productDescription"": ""The company offers a variety of sensors and solutions for smart agriculture, including:\n- Atmospheric Temperature and Humidity Sensor\n- Wind Direction Sensor (RK110-02)\n- Wind Speed Sensor (RK100-02)\n- Rain Sensor (RK400-04)\n- Leaf Wetness Sensor (RK300-04)\n- CO2 Carbon Dioxide Sensor (RK300-03)\n- Soil Temperature and Humidity Sensor (RK520-01)\nAdditionally, GÖRSENTAM provides AI-based agricultural disease and pest prediction and early warning systems, remote sensing technologies, and an intelligent agricultural control system integrating meteorological and pheromone camera data."", - ""clientCategories"": [""Individual Farmers"", ""Agricultural Businesses""], - ""sectorDescription"": ""Operates in the smart agriculture technology sector, providing AI and remote sensing-based solutions for agricultural disease and pest management, environmental monitoring, and agronomic decision support."", - ""geographicFocus"": ""HQ: Görükle Mah. Üniversite-1 Cad. ULUTEK Teknopark No:933/B15 Nilüfer, BURSA, Turkey; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Mert Demirel"", ""title"": ""Ziraat Yüksek Mühendisi (Agricultural Engineer)"", ""sourceUrl"": ""https://www.gorsentam.com/kurumsal""}, - {""name"": ""Baki Doğan Akar"", ""title"": ""Elektrik-Elektronik Mühendisi (Electrical-Electronic Engineer)"", ""sourceUrl"": ""https://www.gorsentam.com/kurumsal""}, - {""name"": ""Alper Cem Nedirli"", ""title"": ""Mobil Developer"", ""sourceUrl"": ""https://www.gorsentam.com/kurumsal""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories are inferred from product use and company mission as no explicit customer or industry list is provided."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.gorsentam.com/kurumsal"", - ""productDescription"": ""https://www.gorsentam.com/sensors"", - ""clientCategories"": ""https://www.gorsentam.com/corporate"", - ""geographicFocus"": ""https://www.gorsentam.com/iletisim"", - ""keyExecutives"": ""https://www.gorsentam.com/kurumsal"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.gorsentam.com"", - ""companyDescription"": ""GÖRSENTAM Tarım Teknolojileri was founded in 2020 with TÜBİTAK support, developing remote sensing and AI-based solutions for agricultural enterprises and farmers, including a patented pheromone camera early warning system. Its mission is to integrate advanced agricultural technology with agronomic knowledge to produce innovative products accessible to all, maintaining quality and maximizing user satisfaction."", - ""productDescription"": ""The company offers a variety of sensors and solutions for smart agriculture, including:\n- Atmospheric Temperature and Humidity Sensor\n- Wind Direction Sensor (RK110-02)\n- Wind Speed Sensor (RK100-02)\n- Rain Sensor (RK400-04)\n- Leaf Wetness Sensor (RK300-04)\n- CO2 Carbon Dioxide Sensor (RK300-03)\n- Soil Temperature and Humidity Sensor (RK520-01)\nAdditionally, GÖRSENTAM provides AI-based agricultural disease and pest prediction and early warning systems, remote sensing technologies, and an intelligent agricultural control system integrating meteorological and pheromone camera data."", - ""clientCategories"": [ - ""Individual Farmers"", - ""Agricultural Businesses"" - ], - ""sectorDescription"": ""Operates in the smart agriculture technology sector, providing AI and remote sensing-based solutions for agricultural disease and pest management, environmental monitoring, and agronomic decision support."", - ""geographicFocus"": ""Headquartered in Bursa, Turkey. Specific sales or operational footprint is not publicly available."", - ""keyExecutives"": [ - { - ""name"": ""Mert Demirel"", - ""title"": ""Ziraat Yüksek Mühendisi (Agricultural Engineer)"", - ""sourceUrl"": ""https://www.gorsentam.com/kurumsal"" - }, - { - ""name"": ""Baki Doğan Akar"", - ""title"": ""Elektrik-Elektronik Mühendisi (Electrical-Electronic Engineer)"", - ""sourceUrl"": ""https://www.gorsentam.com/kurumsal"" - }, - { - ""name"": ""Alper Cem Nedirli"", - ""title"": ""Mobil Developer"", - ""sourceUrl"": ""https://www.gorsentam.com/kurumsal"" - } - ], - ""researcherNotes"": ""The geographic focus beyond the Bursa, Turkey headquarters is not explicitly stated on the official website or in other accessible sources. No senior leadership details were found on LinkedIn to update keyExecutives, so company website info is retained. The company is clearly identified by its domain, founding year, and unique patented pheromone camera technology."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.gorsentam.com/kurumsal"", - ""productDescription"": ""https://www.gorsentam.com/sensors"", - ""clientCategories"": ""https://www.gorsentam.com/corporate"", - ""geographicFocus"": ""https://www.gorsentam.com/iletisim"", - ""keyExecutives"": ""https://www.gorsentam.com/kurumsal"" - } -}","{""clientCategories"":[""Individual Farmers"",""Agricultural Businesses""],""companyDescription"":""GÖRSENTAM Tarım Teknolojileri was founded in 2020 with TÜBİTAK support, developing remote sensing and AI-based solutions for agricultural enterprises and farmers, including a patented pheromone camera early warning system. Its mission is to integrate advanced agricultural technology with agronomic knowledge to produce innovative products accessible to all, maintaining quality and maximizing user satisfaction."",""geographicFocus"":""Headquartered in Bursa, Turkey. Specific sales or operational footprint is not publicly available."",""keyExecutives"":[{""name"":""Mert Demirel"",""sourceUrl"":""https://www.gorsentam.com/kurumsal"",""title"":""Ziraat Yüksek Mühendisi (Agricultural Engineer)""},{""name"":""Baki Doğan Akar"",""sourceUrl"":""https://www.gorsentam.com/kurumsal"",""title"":""Elektrik-Elektronik Mühendisi (Electrical-Electronic Engineer)""},{""name"":""Alper Cem Nedirli"",""sourceUrl"":""https://www.gorsentam.com/kurumsal"",""title"":""Mobil Developer""}],""missingImportantFields"":[],""productDescription"":""The company offers a variety of sensors and solutions for smart agriculture, including:\n- Atmospheric Temperature and Humidity Sensor\n- Wind Direction Sensor (RK110-02)\n- Wind Speed Sensor (RK100-02)\n- Rain Sensor (RK400-04)\n- Leaf Wetness Sensor (RK300-04)\n- CO2 Carbon Dioxide Sensor (RK300-03)\n- Soil Temperature and Humidity Sensor (RK520-01)\nAdditionally, GÖRSENTAM provides AI-based agricultural disease and pest prediction and early warning systems, remote sensing technologies, and an intelligent agricultural control system integrating meteorological and pheromone camera data."",""researcherNotes"":""The geographic focus beyond the Bursa, Turkey headquarters is not explicitly stated on the official website or in other accessible sources. No senior leadership details were found on LinkedIn to update keyExecutives, so company website info is retained. The company is clearly identified by its domain, founding year, and unique patented pheromone camera technology."",""sectorDescription"":""Operates in the smart agriculture technology sector, providing AI and remote sensing-based solutions for agricultural disease and pest management, environmental monitoring, and agronomic decision support."",""sources"":{""clientCategories"":""https://www.gorsentam.com/corporate"",""companyDescription"":""https://www.gorsentam.com/kurumsal"",""geographicFocus"":""https://www.gorsentam.com/iletisim"",""keyExecutives"":""https://www.gorsentam.com/kurumsal"",""productDescription"":""https://www.gorsentam.com/sensors""},""websiteURL"":""https://www.gorsentam.com""}","Correctness: 98% Completeness: 90% The information about GÖRSENTAM Tarım Teknolojileri is factually accurate and well-supported by the official company website, which confirms the founding year (2020) with TÜBİTAK 1512 Teknogirişim Sermayesi Desteği, the patented pheromone camera early warning system, and a variety of AI and remote sensing agricultural technology products and sensors offered by the company[1][3]. The headquarters is correctly stated as Bursa, Turkey, consistent with multiple sources, and key executives’ names and titles are confirmed only on the company site, with no newer or contradictory information available on LinkedIn or elsewhere[1]. The product descriptions match those detailed on the official sensors and technology pages of GÖRSENTAM[3]. Some minor completeness reduction stems from the lack of publicly available detailed geographic footprint beyond Bursa and absence of additional third-party verification beyond company-controlled sources, although the sector description and mission are well covered. Leadership and funding details have no recent independent filings or press beyond company claims, slightly limiting completeness but not correctness. Sources: https://www.gorsentam.com/kurumsal, https://www.gorsentam.com, https://startupcentrum.com/tr/girisim/gorsentam-tarim-teknolojileri, https://egirisim.com/2023/10/16/ciftcilere-tahmin-ve-erken-uyari-sistemi-sunan-gorsentam-50-milyon-tl-degerleme-uzerinden-yatirim-aldi/","{""clientCategories"":[""Individual Farmers"",""Agricultural Businesses""],""companyDescription"":""GÖRSENTAM Tarım Teknolojileri was founded in 2020 with TÜBİTAK support, developing remote sensing and AI-based solutions for agricultural enterprises and farmers, including a patented pheromone camera early warning system. Its mission is to integrate advanced agricultural technology with agronomic knowledge to produce innovative products accessible to all, maintaining quality and maximizing user satisfaction."",""geographicFocus"":""HQ: Görükle Mah. Üniversite-1 Cad. ULUTEK Teknopark No:933/B15 Nilüfer, BURSA, Turkey; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Mert Demirel"",""sourceUrl"":""https://www.gorsentam.com/kurumsal"",""title"":""Ziraat Yüksek Mühendisi (Agricultural Engineer)""},{""name"":""Baki Doğan Akar"",""sourceUrl"":""https://www.gorsentam.com/kurumsal"",""title"":""Elektrik-Elektronik Mühendisi (Electrical-Electronic Engineer)""},{""name"":""Alper Cem Nedirli"",""sourceUrl"":""https://www.gorsentam.com/kurumsal"",""title"":""Mobil Developer""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""The company offers a variety of sensors and solutions for smart agriculture, including:\n- Atmospheric Temperature and Humidity Sensor\n- Wind Direction Sensor (RK110-02)\n- Wind Speed Sensor (RK100-02)\n- Rain Sensor (RK400-04)\n- Leaf Wetness Sensor (RK300-04)\n- CO2 Carbon Dioxide Sensor (RK300-03)\n- Soil Temperature and Humidity Sensor (RK520-01)\nAdditionally, GÖRSENTAM provides AI-based agricultural disease and pest prediction and early warning systems, remote sensing technologies, and an intelligent agricultural control system integrating meteorological and pheromone camera data."",""researcherNotes"":""Client categories are inferred from product use and company mission as no explicit customer or industry list is provided."",""sectorDescription"":""Operates in the smart agriculture technology sector, providing AI and remote sensing-based solutions for agricultural disease and pest management, environmental monitoring, and agronomic decision support."",""sources"":{""clientCategories"":""https://www.gorsentam.com/corporate"",""companyDescription"":""https://www.gorsentam.com/kurumsal"",""geographicFocus"":""https://www.gorsentam.com/iletisim"",""keyExecutives"":""https://www.gorsentam.com/kurumsal"",""productDescription"":""https://www.gorsentam.com/sensors""},""websiteURL"":""https://www.gorsentam.com""}" -Nasekomo,http://www.nasekomo.life,Invenio partners,nasekomo.life,https://www.linkedin.com/company/nasekomo,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.nasekomo.life"", - ""companyDescription"": ""Nasekomo is a collective of entrepreneurs, scientists, and engineers focused on sustainability by rearing Black Soldier Fly to produce protein, oil, and fertilizer for feed and agriculture industries. They have developed fully automated, scalable, and cost-efficient technology completely in-house. The company operates as the first insect rearing company in South-East Europe, with long-term partnerships along their value chain. Their strategy is to become a premium player in the insect industry through expertise in insect breeding and proprietary technology development. Mission: To explore new pathways to sustainability by reinventing themselves and their business, limiting harm, and improving economy, planet, and society."", - ""productDescription"": ""Whole Dried Larvae: Used for wild bird feed and poultry, providing protein (~42%), fat (~26%), and micronutrients. Stimulates natural behavior and reduces stress. Allowed in EU wild bird feed and poultry/pig feed since 2021 (Regulation 2021/1372). Defatted Protein Meal: Used in hypoallergenic pet food and aquafeed as a high-protein (50-65%), highly digestible alternative to fish meal, with chitin and micronutrients. Allowed in EU pet food and aquaculture feed since 2017. Insect Oil: Used in pet food, poultry, and pig starter feeds; contains ~50% lauric acid, natural antioxidant, promotes immune health, palatability, and energy. Allowed in EU aquaculture feed and pet food since 2017; authorized for poultry and pig feed since 2021. Organic Certified Insect Fertilizer: Made from BSF larvae castings and food fibers, rich in organic matter, minerals, and chitin; NPK ratio 3-3-3; complies with EU organic fertilizer regulations (2021/1925, 834/2007). Black Soldier Fly Neonates: Live larvae for BSF farming and organic waste bioconversion, enhanced genetics for high performance and reliability."", - ""clientCategories"": [""Petfood"", ""Aquafarming"", ""Poultry"", ""Pigs"", ""Land""], - ""sectorDescription"": ""Insect rearing for production of protein, oil, and organic certified insect fertilizer aimed at feed and agriculture industries, supported by ongoing R&D focused on genetics and automation with several innovations in patent paths."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Xavier Marcenac"", - ""title"": ""Co-Founder, Business Development"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Marc Bolard"", - ""title"": ""Co-Founder, R&D and Operations"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Olga Marcenac"", - ""title"": ""Co-Founder, Business Enablement"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Svetlin Aleksandrov"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Stefka Mavrodieva"", - ""title"": ""Chief Digital Officer"", - ""sourceUrl"": ""https://nasekomo.life/about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic focus is not explicitly stated on the website or in contact information, making it unavailable."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://nasekomo.life/about"", - ""productDescription"": ""https://nasekomo.life/products"", - ""clientCategories"": ""https://nasekomo.life/markets"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://nasekomo.life/about"" - } -}","{ - ""websiteURL"": ""http://www.nasekomo.life"", - ""companyDescription"": ""Nasekomo is a collective of entrepreneurs, scientists, and engineers focused on sustainability by rearing Black Soldier Fly to produce protein, oil, and fertilizer for feed and agriculture industries. They have developed fully automated, scalable, and cost-efficient technology completely in-house. The company operates as the first insect rearing company in South-East Europe, with long-term partnerships along their value chain. Their strategy is to become a premium player in the insect industry through expertise in insect breeding and proprietary technology development. Mission: To explore new pathways to sustainability by reinventing themselves and their business, limiting harm, and improving economy, planet, and society."", - ""productDescription"": ""Whole Dried Larvae: Used for wild bird feed and poultry, providing protein (~42%), fat (~26%), and micronutrients. Stimulates natural behavior and reduces stress. Allowed in EU wild bird feed and poultry/pig feed since 2021 (Regulation 2021/1372). Defatted Protein Meal: Used in hypoallergenic pet food and aquafeed as a high-protein (50-65%), highly digestible alternative to fish meal, with chitin and micronutrients. Allowed in EU pet food and aquaculture feed since 2017. Insect Oil: Used in pet food, poultry, and pig starter feeds; contains ~50% lauric acid, natural antioxidant, promotes immune health, palatability, and energy. Allowed in EU aquaculture feed and pet food since 2017; authorized for poultry and pig feed since 2021. Organic Certified Insect Fertilizer: Made from BSF larvae castings and food fibers, rich in organic matter, minerals, and chitin; NPK ratio 3-3-3; complies with EU organic fertilizer regulations (2021/1925, 834/2007). Black Soldier Fly Neonates: Live larvae for BSF farming and organic waste bioconversion, enhanced genetics for high performance and reliability."", - ""clientCategories"": [""Petfood"", ""Aquafarming"", ""Poultry"", ""Pigs"", ""Land""], - ""sectorDescription"": ""Insect rearing for production of protein, oil, and organic certified insect fertilizer aimed at feed and agriculture industries, supported by ongoing R&D focused on genetics and automation with several innovations in patent paths."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Xavier Marcenac"", - ""title"": ""Co-Founder, Business Development"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Marc Bolard"", - ""title"": ""Co-Founder, R&D and Operations"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Olga Marcenac"", - ""title"": ""Co-Founder, Business Enablement"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Svetlin Aleksandrov"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Stefka Mavrodieva"", - ""title"": ""Chief Digital Officer"", - ""sourceUrl"": ""https://nasekomo.life/about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic focus is not explicitly stated on the website or in contact information, making it unavailable."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://nasekomo.life/about"", - ""productDescription"": ""https://nasekomo.life/products"", - ""clientCategories"": ""https://nasekomo.life/markets"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://nasekomo.life/about"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://nasekomo.life"", - ""companyDescription"": ""Nasekomo is a collective of entrepreneurs, scientists, and engineers focused on sustainability by rearing Black Soldier Fly to produce protein, oil, and fertilizer for feed and agriculture industries. They have developed fully automated, scalable, and cost-efficient technology in-house. Operating as the first insect rearing company in South-East Europe, they leverage proprietary genetics and automation innovations to pioneer high-value insect breeding and lifecycle management. Their mission is to advance sustainability by reinventing biological production with minimal environmental harm while improving economic and social outcomes."", - ""productDescription"": ""Nasekomo offers Whole Dried Larvae providing high protein (~42%), fat (~26%), and micronutrients for wild bird feed and poultry; Defatted Protein Meal, a highly digestible, hypoallergenic protein (50-65%) alternative for pet food and aquafeed; Insect Oil rich in lauric acid (~50%) promoting immune health and energy for pet, poultry, and pig starter feeds; Organic Certified Insect Fertilizer made from larvae castings, rich in organic matter, minerals, and chitin compliant with EU organic standards; and Black Soldier Fly Neonates for farming and organic waste bioconversion with enhanced genetics for reliability."", - ""clientCategories"": [ - ""Petfood"", - ""Aquafarming"", - ""Poultry"", - ""Pigs"", - ""Land"" - ], - ""sectorDescription"": ""Insect rearing specializing in production of protein, oil, and organic certified insect fertilizer for feed and agriculture industries, supported by proprietary genetics and fully automated technology with multiple innovations under patent development."", - ""geographicFocus"": ""Nasekomo operates primarily in South-East Europe, headquartered in Bulgaria, leveraging abundant regional production materials and serving feed and agriculture sectors within this geographic area."", - ""keyExecutives"": [ - { - ""name"": ""Xavier Marcenac"", - ""title"": ""Co-Founder, Business Development"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Marc Bolard"", - ""title"": ""Co-Founder, R&D and Operations"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Olga Marcenac"", - ""title"": ""Co-Founder, Business Enablement"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Svetlin Aleksandrov"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://nasekomo.life/about"" - }, - { - ""name"": ""Stefka Mavrodieva"", - ""title"": ""Chief Digital Officer"", - ""sourceUrl"": ""https://nasekomo.life/about"" - } - ], - ""researcherNotes"": ""Geographic focus was not explicitly stated on the company website but was confirmed through multiple external sources as South-East Europe, specifically Bulgaria, where Nasekomo is headquartered and operates its insect rearing facility. This aligns with multiple sources describing it as the first and only insect rearing factory in South-East Europe. Executive information is sourced from the company About page. No conflicts were found in leadership titles or product descriptions."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nasekomo.life/about"", - ""productDescription"": ""https://nasekomo.life/products"", - ""clientCategories"": ""https://nasekomo.life/markets"", - ""geographicFocus"": ""https://ecoefishent.eu/partners/nasekomo/"", - ""keyExecutives"": ""https://nasekomo.life/about"" - } -}","{""clientCategories"":[""Petfood"",""Aquafarming"",""Poultry"",""Pigs"",""Land""],""companyDescription"":""Nasekomo is a collective of entrepreneurs, scientists, and engineers focused on sustainability by rearing Black Soldier Fly to produce protein, oil, and fertilizer for feed and agriculture industries. They have developed fully automated, scalable, and cost-efficient technology in-house. Operating as the first insect rearing company in South-East Europe, they leverage proprietary genetics and automation innovations to pioneer high-value insect breeding and lifecycle management. Their mission is to advance sustainability by reinventing biological production with minimal environmental harm while improving economic and social outcomes."",""geographicFocus"":""Nasekomo operates primarily in South-East Europe, headquartered in Bulgaria, leveraging abundant regional production materials and serving feed and agriculture sectors within this geographic area."",""keyExecutives"":[{""name"":""Xavier Marcenac"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Co-Founder, Business Development""},{""name"":""Marc Bolard"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Co-Founder, R&D and Operations""},{""name"":""Olga Marcenac"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Co-Founder, Business Enablement""},{""name"":""Svetlin Aleksandrov"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Chief Financial Officer""},{""name"":""Stefka Mavrodieva"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Chief Digital Officer""}],""missingImportantFields"":[],""productDescription"":""Nasekomo offers Whole Dried Larvae providing high protein (~42%), fat (~26%), and micronutrients for wild bird feed and poultry; Defatted Protein Meal, a highly digestible, hypoallergenic protein (50-65%) alternative for pet food and aquafeed; Insect Oil rich in lauric acid (~50%) promoting immune health and energy for pet, poultry, and pig starter feeds; Organic Certified Insect Fertilizer made from larvae castings, rich in organic matter, minerals, and chitin compliant with EU organic standards; and Black Soldier Fly Neonates for farming and organic waste bioconversion with enhanced genetics for reliability."",""researcherNotes"":""Geographic focus was not explicitly stated on the company website but was confirmed through multiple external sources as South-East Europe, specifically Bulgaria, where Nasekomo is headquartered and operates its insect rearing facility. This aligns with multiple sources describing it as the first and only insect rearing factory in South-East Europe. Executive information is sourced from the company About page. No conflicts were found in leadership titles or product descriptions."",""sectorDescription"":""Insect rearing specializing in production of protein, oil, and organic certified insect fertilizer for feed and agriculture industries, supported by proprietary genetics and fully automated technology with multiple innovations under patent development."",""sources"":{""clientCategories"":""https://nasekomo.life/markets"",""companyDescription"":""https://nasekomo.life/about"",""geographicFocus"":""https://ecoefishent.eu/partners/nasekomo/"",""keyExecutives"":""https://nasekomo.life/about"",""productDescription"":""https://nasekomo.life/products""},""websiteURL"":""https://nasekomo.life""}","Correctness: 100% Completeness: 98% The information about Nasekomo is factually accurate and well-supported by multiple authoritative sources. Nasekomo is indeed headquartered in Bulgaria and operates the first insect rearing factory in South-East Europe focused on Black Soldier Fly (BSF) bioconversion for protein, oil, and fertilizer production, serving primarily feed and agriculture sectors[1][2][5]. The leadership team, including co-founders Xavier Marcenac, Marc Bolard, Olga Marcenac, CFO Svetlin Aleksandrov, and Chief Digital Officer Stefka Mavrodieva, matches company disclosures[4]. Their products—Whole Dried Larvae, Defatted Protein Meal, Insect Oil rich in lauric acid, Organic Certified Insect Fertilizer compliant with EU organic standards, and genetically enhanced Black Soldier Fly Neonates—are detailed on the official site and verified in external profiles[4]. The company’s proprietary in-house scalable automation and genetics innovations, including partnerships such as Fly Genetics with Groupe Grimaud, align with public technical descriptions and their efforts to optimize larvae lifecycle management and neonate suspension technology for industrial scalability[3][4]. The geographic focus on South-East Europe, especially Bulgaria, is corroborated by multiple EU-affiliated projects and industry reports[1][2]. The only minor reduction on completeness relates to the lack of explicit mention of the year or “as of” date for leadership and product info in the main sources, though recent 2025 references are implied. Overall, the data is authoritative and comprehensive[1][2][3][4][5]. - -Sources: https://nasekomo.life/about, https://nasekomo.life/products, https://ecoefishent.eu/partners/nasekomo/, https://agfundernews.com/suspended-animation-insect-ag-startup-nasekomo-enhances-neonate-delivery-service-with-advanced-suspension-tech, https://www.siemens.com/global/en/company/stories/industry/2025/nasekomo-digital-twin-insect-protein-simulation.html","{""clientCategories"":[""Petfood"",""Aquafarming"",""Poultry"",""Pigs"",""Land""],""companyDescription"":""Nasekomo is a collective of entrepreneurs, scientists, and engineers focused on sustainability by rearing Black Soldier Fly to produce protein, oil, and fertilizer for feed and agriculture industries. They have developed fully automated, scalable, and cost-efficient technology completely in-house. The company operates as the first insect rearing company in South-East Europe, with long-term partnerships along their value chain. Their strategy is to become a premium player in the insect industry through expertise in insect breeding and proprietary technology development. Mission: To explore new pathways to sustainability by reinventing themselves and their business, limiting harm, and improving economy, planet, and society."",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Xavier Marcenac"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Co-Founder, Business Development""},{""name"":""Marc Bolard"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Co-Founder, R&D and Operations""},{""name"":""Olga Marcenac"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Co-Founder, Business Enablement""},{""name"":""Svetlin Aleksandrov"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Chief Financial Officer""},{""name"":""Stefka Mavrodieva"",""sourceUrl"":""https://nasekomo.life/about"",""title"":""Chief Digital Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Whole Dried Larvae: Used for wild bird feed and poultry, providing protein (~42%), fat (~26%), and micronutrients. Stimulates natural behavior and reduces stress. Allowed in EU wild bird feed and poultry/pig feed since 2021 (Regulation 2021/1372). Defatted Protein Meal: Used in hypoallergenic pet food and aquafeed as a high-protein (50-65%), highly digestible alternative to fish meal, with chitin and micronutrients. Allowed in EU pet food and aquaculture feed since 2017. Insect Oil: Used in pet food, poultry, and pig starter feeds; contains ~50% lauric acid, natural antioxidant, promotes immune health, palatability, and energy. Allowed in EU aquaculture feed and pet food since 2017; authorized for poultry and pig feed since 2021. Organic Certified Insect Fertilizer: Made from BSF larvae castings and food fibers, rich in organic matter, minerals, and chitin; NPK ratio 3-3-3; complies with EU organic fertilizer regulations (2021/1925, 834/2007). Black Soldier Fly Neonates: Live larvae for BSF farming and organic waste bioconversion, enhanced genetics for high performance and reliability."",""researcherNotes"":""Geographic focus is not explicitly stated on the website or in contact information, making it unavailable."",""sectorDescription"":""Insect rearing for production of protein, oil, and organic certified insect fertilizer aimed at feed and agriculture industries, supported by ongoing R&D focused on genetics and automation with several innovations in patent paths."",""sources"":{""clientCategories"":""https://nasekomo.life/markets"",""companyDescription"":""https://nasekomo.life/about"",""geographicFocus"":null,""keyExecutives"":""https://nasekomo.life/about"",""productDescription"":""https://nasekomo.life/products""},""websiteURL"":""http://www.nasekomo.life""}" -Bioomix,https://bioomix.com/,"David Hollidge, HBL Investment Partners, Planetary Impact Ventures, PSV, West Hill Capital",bioomix.com,https://www.linkedin.com/company/nordic-microbes,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://bioomix.com/"", - ""companyDescription"": ""Nordic microbes A/S (formerly Bioomix A/S) is a Danish biotech company focused on sustainable agriculture by replacing pesticides and synthetic fertilizers with natural, beneficial microbial solutions. Their mission is to drive the green transition in agriculture, making farming profitable, productive, and beneficial for climate, environment, and human health."", - ""productDescription"": ""- SeedSpeed®: a cold-tolerant microbial biostimulant used for seed treatment that releases phosphate and potassium from the soil to support plant growth. GMO-free, suitable for organic farming, registered with the Danish Agricultural Agency, improves germination, root growth, and sometimes yields.\n- RootRocket®: a forthcoming product."", - ""clientCategories"": [""Farmers"", ""Distributors"", ""Agricultural supply companies""], - ""sectorDescription"": ""Operates in the biotechnology sector, developing microbial bio-solutions for sustainable agriculture, food, and health applications that reduce reliance on pesticides and synthetic fertilizers."", - ""geographicFocus"": ""HQ: Kochsgade 25 A, 5000 Odense C, Denmark; UK Office: Basepoint Centre, Isidore Rd, Bromsgrove, B60 3ET, United Kingdom; Sales Focus: Denmark, United Kingdom."", - ""keyExecutives"": [ - {""name"": ""Morten Østergaard Andersen"", ""title"": ""Co-founder and CEO"", ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team""}, - {""name"": ""Julia Magdalena Østergaard Andersen"", ""title"": ""Co-founder and COO"", ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team""}, - {""name"": ""Mads Asbild"", ""title"": ""CCO"", ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordicmicrobes.dk/en/about-us"", - ""productDescription"": ""https://nordicmicrobes.dk/en/products"", - ""clientCategories"": ""https://nordicmicrobes.dk/en/about-us"", - ""geographicFocus"": ""https://nordicmicrobes.dk/en/about-us"", - ""keyExecutives"": ""https://nordicmicrobes.dk/en/about-us/#team"" - } -}","{ - ""websiteURL"": ""https://bioomix.com/"", - ""companyDescription"": ""Nordic microbes A/S (formerly Bioomix A/S) is a Danish biotech company focused on sustainable agriculture by replacing pesticides and synthetic fertilizers with natural, beneficial microbial solutions. Their mission is to drive the green transition in agriculture, making farming profitable, productive, and beneficial for climate, environment, and human health."", - ""productDescription"": ""- SeedSpeed®: a cold-tolerant microbial biostimulant used for seed treatment that releases phosphate and potassium from the soil to support plant growth. GMO-free, suitable for organic farming, registered with the Danish Agricultural Agency, improves germination, root growth, and sometimes yields.\n- RootRocket®: a forthcoming product."", - ""clientCategories"": [""Farmers"", ""Distributors"", ""Agricultural supply companies""], - ""sectorDescription"": ""Operates in the biotechnology sector, developing microbial bio-solutions for sustainable agriculture, food, and health applications that reduce reliance on pesticides and synthetic fertilizers."", - ""geographicFocus"": ""HQ: Kochsgade 25 A, 5000 Odense C, Denmark; UK Office: Basepoint Centre, Isidore Rd, Bromsgrove, B60 3ET, United Kingdom; Sales Focus: Denmark, United Kingdom."", - ""keyExecutives"": [ - {""name"": ""Morten Østergaard Andersen"", ""title"": ""Co-founder and CEO"", ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team""}, - {""name"": ""Julia Magdalena Østergaard Andersen"", ""title"": ""Co-founder and COO"", ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team""}, - {""name"": ""Mads Asbild"", ""title"": ""CCO"", ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordicmicrobes.dk/en/about-us"", - ""productDescription"": ""https://nordicmicrobes.dk/en/products"", - ""clientCategories"": ""https://nordicmicrobes.dk/en/about-us"", - ""geographicFocus"": ""https://nordicmicrobes.dk/en/about-us"", - ""keyExecutives"": ""https://nordicmicrobes.dk/en/about-us/#team"" - } -}",[],"{ - ""websiteURL"": ""https://bioomix.com/"", - ""companyDescription"": ""Nordic microbes A/S (formerly Bioomix A/S) is a Danish biotech company focused on sustainable agriculture by replacing pesticides and synthetic fertilizers with natural, beneficial microbial solutions. Their mission is to drive the green transition in agriculture, making farming profitable, productive, and beneficial for climate, environment, and human health."", - ""productDescription"": ""- SeedSpeed®: a cold-tolerant microbial biostimulant used for seed treatment that releases phosphate and potassium from the soil to support plant growth. GMO-free, suitable for organic farming, registered with the Danish Agricultural Agency, improves germination, root growth, and sometimes yields.\n- RootRocket®: a forthcoming product."", - ""clientCategories"": [ - ""Farmers"", - ""Distributors"", - ""Agricultural Supply Companies"" - ], - ""sectorDescription"": ""Operates in the biotechnology sector, developing microbial bio-solutions for sustainable agriculture, food, and health applications that reduce reliance on pesticides and synthetic fertilizers."", - ""geographicFocus"": ""HQ: Kochsgade 25 A, 5000 Odense C, Denmark; UK Office: Basepoint Centre, Isidore Rd, Bromsgrove, B60 3ET, United Kingdom; Sales focus on Denmark and the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Morten Østergaard Andersen"", - ""title"": ""Co-founder and CEO"", - ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team"" - }, - { - ""name"": ""Julia Magdalena Østergaard Andersen"", - ""title"": ""Co-founder and COO"", - ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team"" - }, - { - ""name"": ""Mads Asbild"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://nordicmicrobes.dk/en/about-us/#team"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed via Danish HQ address and company name history (formerly Bioomix A/S). Nordic Microbes A/S is registered as a Danish private limited company since 2023 and operates biotechnologically in sustainable agriculture. Geographic footprint clarified with HQ and UK office; no further geo regions found. Key executives sourced from company official site. No conflicts detected. No senior leadership found on LinkedIn beyond company website details."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordicmicrobes.dk/en/about-us"", - ""productDescription"": ""https://nordicmicrobes.dk/en/products"", - ""clientCategories"": ""https://nordicmicrobes.dk/en/about-us"", - ""geographicFocus"": ""https://nordicmicrobes.dk/en/about-us"", - ""keyExecutives"": ""https://nordicmicrobes.dk/en/about-us/#team"" - } -}","{""clientCategories"":[""Farmers"",""Distributors"",""Agricultural Supply Companies""],""companyDescription"":""Nordic microbes A/S (formerly Bioomix A/S) is a Danish biotech company focused on sustainable agriculture by replacing pesticides and synthetic fertilizers with natural, beneficial microbial solutions. Their mission is to drive the green transition in agriculture, making farming profitable, productive, and beneficial for climate, environment, and human health."",""geographicFocus"":""HQ: Kochsgade 25 A, 5000 Odense C, Denmark; UK Office: Basepoint Centre, Isidore Rd, Bromsgrove, B60 3ET, United Kingdom; Sales focus on Denmark and the United Kingdom."",""keyExecutives"":[{""name"":""Morten Østergaard Andersen"",""sourceUrl"":""https://nordicmicrobes.dk/en/about-us/#team"",""title"":""Co-founder and CEO""},{""name"":""Julia Magdalena Østergaard Andersen"",""sourceUrl"":""https://nordicmicrobes.dk/en/about-us/#team"",""title"":""Co-founder and COO""},{""name"":""Mads Asbild"",""sourceUrl"":""https://nordicmicrobes.dk/en/about-us/#team"",""title"":""CCO""}],""missingImportantFields"":[],""productDescription"":""- SeedSpeed®: a cold-tolerant microbial biostimulant used for seed treatment that releases phosphate and potassium from the soil to support plant growth. GMO-free, suitable for organic farming, registered with the Danish Agricultural Agency, improves germination, root growth, and sometimes yields.\n- RootRocket®: a forthcoming product."",""researcherNotes"":""Entity disambiguation confirmed via Danish HQ address and company name history (formerly Bioomix A/S). Nordic Microbes A/S is registered as a Danish private limited company since 2023 and operates biotechnologically in sustainable agriculture. Geographic footprint clarified with HQ and UK office; no further geo regions found. Key executives sourced from company official site. No conflicts detected. No senior leadership found on LinkedIn beyond company website details."",""sectorDescription"":""Operates in the biotechnology sector, developing microbial bio-solutions for sustainable agriculture, food, and health applications that reduce reliance on pesticides and synthetic fertilizers."",""sources"":{""clientCategories"":""https://nordicmicrobes.dk/en/about-us"",""companyDescription"":""https://nordicmicrobes.dk/en/about-us"",""geographicFocus"":""https://nordicmicrobes.dk/en/about-us"",""keyExecutives"":""https://nordicmicrobes.dk/en/about-us/#team"",""productDescription"":""https://nordicmicrobes.dk/en/products""},""websiteURL"":""https://bioomix.com/""}","Correctness: 98% -Completeness: 95% - -The provided information about Nordic Microbes A/S is highly accurate and well-supported by authoritative sources. The company is registered in Denmark as a private limited company (CVR 42559997) and operates with its HQ at 25 Kochsgade, Odense C, Denmark, with a UK office established since March 2023, confirmed by the UK Companies House filings[1][2]. It was formerly known as Bioomix A/S, reflected in company history and supported by company-controlled sources[4]. The core business—developing sustainable microbial biostimulants replacing pesticides and synthetic fertilizers—is clearly stated on the official Nordic Microbes site, including their flagship product SeedSpeed® recommended for seed treatment and noted as GMO-free and registered with Danish authorities[4]. The description of their focus on sustainable agriculture benefiting climate, environment, and health aligns with their mission statements[4]. Key executives—Morten Østergaard Andersen (CEO), Julia Magdalena Østergaard Andersen (COO), and Mads Asbild (CCO)—are directly listed on the company’s team page[4]. The company’s presence in Denmark and the UK, and a mention of operating also in Germany and Sweden per B Corp certification details, add geographic context[3]. Minor omissions include limited public detail about the forthcoming product RootRocket® and no explicit financials or funding data available, slightly reducing completeness[1][2]. The leadership and office details are up-to-date as of 2025 without conflicts, and the mission and product descriptions are comprehensive and well corroborated across sources[1][3][4]. URLs: https://nordicmicrobes.dk/en/about-us/, https://nordicmicrobes.dk/en/products, https://find-and-update.company-information.service.gov.uk/company/FC040521, https://www.bcorporation.net/find-a-b-corp/company/nordic-microbes/","{""clientCategories"":[""Farmers"",""Distributors"",""Agricultural supply companies""],""companyDescription"":""Nordic microbes A/S (formerly Bioomix A/S) is a Danish biotech company focused on sustainable agriculture by replacing pesticides and synthetic fertilizers with natural, beneficial microbial solutions. Their mission is to drive the green transition in agriculture, making farming profitable, productive, and beneficial for climate, environment, and human health."",""geographicFocus"":""HQ: Kochsgade 25 A, 5000 Odense C, Denmark; UK Office: Basepoint Centre, Isidore Rd, Bromsgrove, B60 3ET, United Kingdom; Sales Focus: Denmark, United Kingdom."",""keyExecutives"":[{""name"":""Morten Østergaard Andersen"",""sourceUrl"":""https://nordicmicrobes.dk/en/about-us/#team"",""title"":""Co-founder and CEO""},{""name"":""Julia Magdalena Østergaard Andersen"",""sourceUrl"":""https://nordicmicrobes.dk/en/about-us/#team"",""title"":""Co-founder and COO""},{""name"":""Mads Asbild"",""sourceUrl"":""https://nordicmicrobes.dk/en/about-us/#team"",""title"":""CCO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""- SeedSpeed®: a cold-tolerant microbial biostimulant used for seed treatment that releases phosphate and potassium from the soil to support plant growth. GMO-free, suitable for organic farming, registered with the Danish Agricultural Agency, improves germination, root growth, and sometimes yields.\n- RootRocket®: a forthcoming product."",""researcherNotes"":null,""sectorDescription"":""Operates in the biotechnology sector, developing microbial bio-solutions for sustainable agriculture, food, and health applications that reduce reliance on pesticides and synthetic fertilizers."",""sources"":{""clientCategories"":""https://nordicmicrobes.dk/en/about-us"",""companyDescription"":""https://nordicmicrobes.dk/en/about-us"",""geographicFocus"":""https://nordicmicrobes.dk/en/about-us"",""keyExecutives"":""https://nordicmicrobes.dk/en/about-us/#team"",""productDescription"":""https://nordicmicrobes.dk/en/products""},""websiteURL"":""https://bioomix.com/""}" -Cocampo,https://www.cocampo.com/,,cocampo.com,https://www.linkedin.com/company/cocampo,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.cocampo.com/"", - ""companyDescription"": ""Cocampo is a specialized web platform with ads for investing in rural properties in Spain. It helps connect people and companies interested in buying, selling, or renting rural land and plots for farming, livestock, forestry, hunting, or recreation. Cocampo provides specialized information related to land and services for rural property transactions."", - ""productDescription"": ""Cocampo offers a platform for posting and searching ads related to rural properties across Spain. Services include connecting buyers, sellers, and renters of rural land for farming, livestock, forestry, hunting, or recreation. The platform provides filters for searching by location, price, surface area, and category. It also offers access to experts like real estate agents, banks, agricultural insurance providers, appraisers, lawyers, notaries, and architects. Paid subscription plans are available to enhance ad visibility and access additional promotional features."", - ""clientCategories"": [""Individuals interested in rural property investment"", ""Companies and businesses in agriculture and forestry"", ""Farmers and livestock owners"", ""Hunters and recreational land users""], - ""sectorDescription"": ""Operates in the real estate and agricultural technology sector, specializing in online rural property listings and investment in Spain."", - ""geographicFocus"": ""HQ: Spain; Sales Focus: Spain"", - ""keyExecutives"": [ - { - ""name"": ""Regino Barrionuevo"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - }, - { - ""name"": ""Tigran Saakyan"", - ""title"": ""CTO, Co-Founder"", - ""sourceUrl"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - } - ], - ""linkedDocuments"": [ - ""https://www.cocampo.com/es/es/noticias/wp-content/uploads/2023/11/Report-2023-Cocampo-Crops-evolution-in-Spain.pdf"", - ""https://www.cocampo.com/es/es/noticias/wp-content/uploads/2024/08/Informe-2024-Cocampo-precio-fincas.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.cocampo.com/us/en/"", - ""productDescription"": ""https://www.cocampo.com/us/en/"", - ""clientCategories"": ""https://www.cocampo.com/us/en/"", - ""geographicFocus"": ""https://www.cocampo.com/us/en/"", - ""keyExecutives"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - } -}","{ - ""websiteURL"": ""https://www.cocampo.com/"", - ""companyDescription"": ""Cocampo is a specialized web platform with ads for investing in rural properties in Spain. It helps connect people and companies interested in buying, selling, or renting rural land and plots for farming, livestock, forestry, hunting, or recreation. Cocampo provides specialized information related to land and services for rural property transactions."", - ""productDescription"": ""Cocampo offers a platform for posting and searching ads related to rural properties across Spain. Services include connecting buyers, sellers, and renters of rural land for farming, livestock, forestry, hunting, or recreation. The platform provides filters for searching by location, price, surface area, and category. It also offers access to experts like real estate agents, banks, agricultural insurance providers, appraisers, lawyers, notaries, and architects. Paid subscription plans are available to enhance ad visibility and access additional promotional features."", - ""clientCategories"": [""Individuals interested in rural property investment"", ""Companies and businesses in agriculture and forestry"", ""Farmers and livestock owners"", ""Hunters and recreational land users""], - ""sectorDescription"": ""Operates in the real estate and agricultural technology sector, specializing in online rural property listings and investment in Spain."", - ""geographicFocus"": ""HQ: Spain; Sales Focus: Spain"", - ""keyExecutives"": [ - { - ""name"": ""Regino Barrionuevo"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - }, - { - ""name"": ""Tigran Saakyan"", - ""title"": ""CTO, Co-Founder"", - ""sourceUrl"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - } - ], - ""linkedDocuments"": [ - ""https://www.cocampo.com/es/es/noticias/wp-content/uploads/2023/11/Report-2023-Cocampo-Crops-evolution-in-Spain.pdf"", - ""https://www.cocampo.com/es/es/noticias/wp-content/uploads/2024/08/Informe-2024-Cocampo-precio-fincas.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.cocampo.com/us/en/"", - ""productDescription"": ""https://www.cocampo.com/us/en/"", - ""clientCategories"": ""https://www.cocampo.com/us/en/"", - ""geographicFocus"": ""https://www.cocampo.com/us/en/"", - ""keyExecutives"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - } -}",[],"{ - ""websiteURL"": ""https://www.cocampo.com"", - ""companyDescription"": ""Cocampo is a specialized digital platform based in Spain that revolutionizes the rural land market by streamlining the buying, selling, and leasing of agricultural and rural properties. It serves individuals and companies interested in rural land investment, providing transparency, accessibility, and specialized information, including services from real estate agents, banks, and legal experts. Cocampo differentiates itself by integrating extensive data on rural properties and sustainability, enabling informed investment decisions in agriculture, forestry, and recreational land use."", - ""productDescription"": ""Cocampo provides an online platform for posting and searching classified ads specifically focused on rural properties across Spain. It connects buyers, sellers, and renters of farms, livestock land, forestry, hunting, and recreational plots. The platform offers advanced filters by location, price, surface area, and property type, and facilitates access to professionals such as real estate agents, banks, insurance companies, appraisers, and lawyers. Cocampo also offers paid subscription plans to enhance ad visibility and promotional features, and is evolving to integrate Cocampo Atlas, a data service providing comprehensive information on rural land and related agricultural, sustainability, and climate factors."", - ""clientCategories"": [ - ""Individuals Interested In Rural Property Investment"", - ""Companies And Businesses In Agriculture And Forestry"", - ""Farmers And Livestock Owners"", - ""Hunters And Recreational Land Users"" - ], - ""sectorDescription"": ""Operates in the real estate and agricultural technology sector, specializing in online rural property listings, data services, and investment facilitation in Spain."", - ""geographicFocus"": ""Headquartered in Spain with a primary sales and operational focus across the Spanish rural property market."", - ""keyExecutives"": [ - { - ""name"": ""Regino Barrionuevo"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - }, - { - ""name"": ""Tigran Saakyan"", - ""title"": ""CTO, Co-Founder"", - ""sourceUrl"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - } - ], - ""researcherNotes"": ""Entity disambiguated confidently by matching domain cocampo.com, HQ in Spain, and unique focus on rural property investing and AgTech. Leadership data confirmed from RocketReach with no LinkedIn leadership info available. Geographic focus restricted to Spain based on company website and market descriptions. No conflicts or major gaps remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.cocampo.com/us/en/"", - ""productDescription"": ""https://www.cocampo.com/us/en/"", - ""clientCategories"": ""https://www.cocampo.com/us/en/"", - ""geographicFocus"": ""https://www.cocampo.com/us/en/"", - ""keyExecutives"": ""https://rocketreach.co/cocampo-management_b784b972c2503293"" - } -}","{""clientCategories"":[""Individuals Interested In Rural Property Investment"",""Companies And Businesses In Agriculture And Forestry"",""Farmers And Livestock Owners"",""Hunters And Recreational Land Users""],""companyDescription"":""Cocampo is a specialized digital platform based in Spain that revolutionizes the rural land market by streamlining the buying, selling, and leasing of agricultural and rural properties. It serves individuals and companies interested in rural land investment, providing transparency, accessibility, and specialized information, including services from real estate agents, banks, and legal experts. Cocampo differentiates itself by integrating extensive data on rural properties and sustainability, enabling informed investment decisions in agriculture, forestry, and recreational land use."",""geographicFocus"":""Headquartered in Spain with a primary sales and operational focus across the Spanish rural property market."",""keyExecutives"":[{""name"":""Regino Barrionuevo"",""sourceUrl"":""https://rocketreach.co/cocampo-management_b784b972c2503293"",""title"":""Founder and CEO""},{""name"":""Tigran Saakyan"",""sourceUrl"":""https://rocketreach.co/cocampo-management_b784b972c2503293"",""title"":""CTO, Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Cocampo provides an online platform for posting and searching classified ads specifically focused on rural properties across Spain. It connects buyers, sellers, and renters of farms, livestock land, forestry, hunting, and recreational plots. The platform offers advanced filters by location, price, surface area, and property type, and facilitates access to professionals such as real estate agents, banks, insurance companies, appraisers, and lawyers. Cocampo also offers paid subscription plans to enhance ad visibility and promotional features, and is evolving to integrate Cocampo Atlas, a data service providing comprehensive information on rural land and related agricultural, sustainability, and climate factors."",""researcherNotes"":""Entity disambiguated confidently by matching domain cocampo.com, HQ in Spain, and unique focus on rural property investing and AgTech. Leadership data confirmed from RocketReach with no LinkedIn leadership info available. Geographic focus restricted to Spain based on company website and market descriptions. No conflicts or major gaps remain."",""sectorDescription"":""Operates in the real estate and agricultural technology sector, specializing in online rural property listings, data services, and investment facilitation in Spain."",""sources"":{""clientCategories"":""https://www.cocampo.com/us/en/"",""companyDescription"":""https://www.cocampo.com/us/en/"",""geographicFocus"":""https://www.cocampo.com/us/en/"",""keyExecutives"":""https://rocketreach.co/cocampo-management_b784b972c2503293"",""productDescription"":""https://www.cocampo.com/us/en/""},""websiteURL"":""https://www.cocampo.com""}","Correctness: 94% Completeness: 90% The description of Cocampo is largely accurate and well-supported. The company is indeed based in Spain, specializing in a digital platform for buying, selling, and leasing rural properties including agricultural, forestry, hunting, and recreational land, as confirmed by Cocampo’s official website and interviews with founder Regino Coca Barrionuevo, who is CEO and co-founder Tigran Saakyan is noted in RocketReach (though only one source provides the CTO name) [1][2]. Cocampo offers classified ads with advanced filters and connects users to real estate, banking, and legal services, and has introduced paid subscription plans to enhance listings, as reported in a 2025 product update [4][5]. The company is evolving with Cocampo Atlas, a data integration service for rural land and sustainability information, which is confirmed through founder interviews [1]. The HQ is in Spain with operational focus on the Spanish market [2][3]. The leadership details come from RocketReach but lack direct LinkedIn confirmation, slightly affecting completeness. Some recent metrics like €3 billion in listed rural properties support scale claims [1]. No major factual inaccuracies appear, though the CTO detail relies solely on RocketReach, and some broader investor profiles related to clients come from related interviews. Overall, the facts match well across official and authoritative industry reporting sources. URLs: https://www.cocampo.com/us/en/, https://rocketreach.co/cocampo-management_b784b972c2503293, https://www.onlinemarketplaces.com/articles/10-questions-with-regino-coca-barrionuevo-founder-and-ceo-at-cocampo/, https://aimgroup.com/2023/01/25/interview-regino-coca-barrionuevo-founder-and-ceo-of-cocampo/, https://aimgroup.com/2025/03/03/spain-based-land-marketplace-cocampo-introduces-subscription-plans/","{""clientCategories"":[""Individuals interested in rural property investment"",""Companies and businesses in agriculture and forestry"",""Farmers and livestock owners"",""Hunters and recreational land users""],""companyDescription"":""Cocampo is a specialized web platform with ads for investing in rural properties in Spain. It helps connect people and companies interested in buying, selling, or renting rural land and plots for farming, livestock, forestry, hunting, or recreation. Cocampo provides specialized information related to land and services for rural property transactions."",""geographicFocus"":""HQ: Spain; Sales Focus: Spain"",""keyExecutives"":[{""name"":""Regino Barrionuevo"",""sourceUrl"":""https://rocketreach.co/cocampo-management_b784b972c2503293"",""title"":""Founder and CEO""},{""name"":""Tigran Saakyan"",""sourceUrl"":""https://rocketreach.co/cocampo-management_b784b972c2503293"",""title"":""CTO, Co-Founder""}],""linkedDocuments"":[""https://www.cocampo.com/es/es/noticias/wp-content/uploads/2023/11/Report-2023-Cocampo-Crops-evolution-in-Spain.pdf"",""https://www.cocampo.com/es/es/noticias/wp-content/uploads/2024/08/Informe-2024-Cocampo-precio-fincas.pdf""],""missingImportantFields"":[],""productDescription"":""Cocampo offers a platform for posting and searching ads related to rural properties across Spain. Services include connecting buyers, sellers, and renters of rural land for farming, livestock, forestry, hunting, or recreation. The platform provides filters for searching by location, price, surface area, and category. It also offers access to experts like real estate agents, banks, agricultural insurance providers, appraisers, lawyers, notaries, and architects. Paid subscription plans are available to enhance ad visibility and access additional promotional features."",""researcherNotes"":null,""sectorDescription"":""Operates in the real estate and agricultural technology sector, specializing in online rural property listings and investment in Spain."",""sources"":{""clientCategories"":""https://www.cocampo.com/us/en/"",""companyDescription"":""https://www.cocampo.com/us/en/"",""geographicFocus"":""https://www.cocampo.com/us/en/"",""keyExecutives"":""https://rocketreach.co/cocampo-management_b784b972c2503293"",""productDescription"":""https://www.cocampo.com/us/en/""},""websiteURL"":""https://www.cocampo.com/""}" -Rift Labs,https://www.riftlabs.com,,riftlabs.com,NOT FOUND,"{""seniorLeadership"":[{""name"":""Øyvind Hasund Dahl"",""title"":""Chief Revenue Officer"",""linkedInURL"":""https://www.linkedin.com/in/oyvind-hasund-dahl""}]}","{""seniorLeadership"":[{""name"":""Øyvind Hasund Dahl"",""title"":""Chief Revenue Officer"",""linkedInURL"":""https://www.linkedin.com/in/oyvind-hasund-dahl""}]}","{ - ""websiteURL"": ""https://www.riftlabs.com"", - ""companyDescription"": ""Rift Labs designs and manufactures lights for photographers and video makers. The company provides cutting-edge light-based solutions, including cinema lighting and vertical farming technology. They develop proprietary and patented LED lighting technology for photo and video industry and agriculture."", - ""productDescription"": ""Rift Labs' primary product includes the KICK photo- & video light - a small, lightweight LED light with manual brightness and color temperature controls, app-enabled full color control, animated lighting effects, and WIFI connectivity for multiple devices. They also offer patented LED technology and software for Controlled Environment Agriculture (CEA), providing precise lighting and sensor-based solutions optimized for plant growth."", - ""clientCategories"": [""Photographers"", ""Videographers"", ""Film-makers"", ""Wedding Photographers"", ""Macro Photographers"", ""Agriculture industry players focused on indoor and controlled environment farming""], - ""sectorDescription"": ""Operates in the consumer electronics and agriculture technology sectors, providing advanced LED lighting solutions for photography, videography, cinema, and controlled environment agriculture."", - ""geographicFocus"": ""Headquarters: Vinterbro, Norway; Sales Focus: Global market, with design in Norway and manufacturing in the EU."", - ""keyExecutives"": [ - {""name"": ""Halvard Aagaard"", ""title"": ""CEO"", ""sourceUrl"": ""https://thehub.io/startups/rift-labs""}, - {""name"": ""Morten Hjerde"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://thehub.io/startups/rift-labs""} - ], - ""linkedDocuments"": [""https://norselab.com/volumes/images/Impact-Overviews-2023/Impact-Overview-2023-Rift-Labs.pdf""], - ""researcherNotes"": ""Key company data was collated from multiple external credible pages due to lack of detailed content on the official company website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://thehub.io/startups/rift-labs"", - ""productDescription"": ""https://thehub.io/startups/rift-labs"", - ""clientCategories"": ""https://thebroadcastbridge.com/companies/entry/1034/rift-labs"", - ""geographicFocus"": ""https://thehub.io/startups/rift-labs"", - ""keyExecutives"": ""https://thehub.io/startups/rift-labs"" - } -}","{ - ""websiteURL"": ""https://www.riftlabs.com"", - ""companyDescription"": ""Rift Labs designs and manufactures lights for photographers and video makers. The company provides cutting-edge light-based solutions, including cinema lighting and vertical farming technology. They develop proprietary and patented LED lighting technology for photo and video industry and agriculture."", - ""productDescription"": ""Rift Labs' primary product includes the KICK photo- & video light - a small, lightweight LED light with manual brightness and color temperature controls, app-enabled full color control, animated lighting effects, and WIFI connectivity for multiple devices. They also offer patented LED technology and software for Controlled Environment Agriculture (CEA), providing precise lighting and sensor-based solutions optimized for plant growth."", - ""clientCategories"": [""Photographers"", ""Videographers"", ""Film-makers"", ""Wedding Photographers"", ""Macro Photographers"", ""Agriculture industry players focused on indoor and controlled environment farming""], - ""sectorDescription"": ""Operates in the consumer electronics and agriculture technology sectors, providing advanced LED lighting solutions for photography, videography, cinema, and controlled environment agriculture."", - ""geographicFocus"": ""Headquarters: Vinterbro, Norway; Sales Focus: Global market, with design in Norway and manufacturing in the EU."", - ""keyExecutives"": [ - {""name"": ""Halvard Aagaard"", ""title"": ""CEO"", ""sourceUrl"": ""https://thehub.io/startups/rift-labs""}, - {""name"": ""Morten Hjerde"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://thehub.io/startups/rift-labs""} - ], - ""linkedDocuments"": [""https://norselab.com/volumes/images/Impact-Overviews-2023/Impact-Overview-2023-Rift-Labs.pdf""], - ""researcherNotes"": ""Key company data was collated from multiple external credible pages due to lack of detailed content on the official company website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://thehub.io/startups/rift-labs"", - ""productDescription"": ""https://thehub.io/startups/rift-labs"", - ""clientCategories"": ""https://thebroadcastbridge.com/companies/entry/1034/rift-labs"", - ""geographicFocus"": ""https://thehub.io/startups/rift-labs"", - ""keyExecutives"": ""https://thehub.io/startups/rift-labs"" - } -}",[],"{ - ""websiteURL"": ""https://www.riftlabs.com"", - ""companyDescription"": ""Rift Labs designs and manufactures advanced LED lighting solutions for photographers, videographers, and controlled environment agriculture. The company develops proprietary and patented LED technology, offering energy-efficient, precise, and dynamic lighting products for the photo and video industry as well as software and sensor-based solutions optimized for vertical farming and indoor growing. Established in 2010 and headquartered in Vinterbro, Norway, Rift Labs serves a global market, differentiating itself with its patented mathematical models for light mixing and AI-driven lighting control applications."", - ""productDescription"": ""Rift Labs’ key product is the KICK photo- and video LED light featuring manual and app-enabled controls for brightness, color temperature, and animated effects with WiFi connectivity for multi-device use. Additionally, through its Photosynthetic brand, Rift Labs offers patented LED lighting technology and smart software tailored to Controlled Environment Agriculture (CEA), providing growers with precise, sensor-based lighting to optimize plant growth, reduce energy consumption, and increase yields by adapting lighting conditions per growth stage. The software includes data-driven analytics and AI for automated lighting adjustments in vertical farms and greenhouses."", - ""clientCategories"": [ - ""Photographers"", - ""Videographers"", - ""Film-makers"", - ""Wedding Photographers"", - ""Macro Photographers"", - ""Agriculture Industry Players Focused on Indoor and Controlled Environment Farming"" - ], - ""sectorDescription"": ""Consumer electronics and agriculture technology company specializing in advanced LED lighting solutions for photography, cinema, and controlled environment agriculture."", - ""geographicFocus"": ""Headquartered in Vinterbro, Norway, with global sales and manufacturing based in the EU, serving customers worldwide including photographers, videographers, and controlled environment farmers."", - ""keyExecutives"": [ - { - ""name"": ""Halvard Aagaard"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://thehub.io/startups/rift-labs"" - }, - { - ""name"": ""Morten Hjerde"", - ""title"": ""Founder and CTO"", - ""sourceUrl"": ""https://thehub.io/startups/rift-labs"" - }, - { - ""name"": ""Øyvind Hasund Dahl"", - ""title"": ""Chief Revenue Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/oyvind-hasund-dahl"" - } - ], - ""researcherNotes"": ""The company is well-identified by the combination of domain, headquarters in Norway, founding year 2010, and product focus in LED technology for photography and agriculture. The addition of Chief Revenue Officer Øyvind Hasund Dahl was confirmed via LinkedIn. Geographic focus and sector description are corroborated by multiple sources including the company website and Norselab investment documentation. No significant missing fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://thehub.io/startups/rift-labs"", - ""productDescription"": ""https://thehub.io/startups/rift-labs"", - ""clientCategories"": ""https://thebroadcastbridge.com/companies/entry/1034/rift-labs"", - ""geographicFocus"": ""https://thehub.io/startups/rift-labs"", - ""keyExecutives"": ""https://thehub.io/startups/rift-labs"" - } -}","{""clientCategories"":[""Photographers"",""Videographers"",""Film-makers"",""Wedding Photographers"",""Macro Photographers"",""Agriculture Industry Players Focused on Indoor and Controlled Environment Farming""],""companyDescription"":""Rift Labs designs and manufactures advanced LED lighting solutions for photographers, videographers, and controlled environment agriculture. The company develops proprietary and patented LED technology, offering energy-efficient, precise, and dynamic lighting products for the photo and video industry as well as software and sensor-based solutions optimized for vertical farming and indoor growing. Established in 2010 and headquartered in Vinterbro, Norway, Rift Labs serves a global market, differentiating itself with its patented mathematical models for light mixing and AI-driven lighting control applications."",""geographicFocus"":""Headquartered in Vinterbro, Norway, with global sales and manufacturing based in the EU, serving customers worldwide including photographers, videographers, and controlled environment farmers."",""keyExecutives"":[{""name"":""Halvard Aagaard"",""sourceUrl"":""https://thehub.io/startups/rift-labs"",""title"":""CEO""},{""name"":""Morten Hjerde"",""sourceUrl"":""https://thehub.io/startups/rift-labs"",""title"":""Founder and CTO""},{""name"":""Øyvind Hasund Dahl"",""sourceUrl"":""https://www.linkedin.com/in/oyvind-hasund-dahl"",""title"":""Chief Revenue Officer""}],""missingImportantFields"":[],""productDescription"":""Rift Labs’ key product is the KICK photo- and video LED light featuring manual and app-enabled controls for brightness, color temperature, and animated effects with WiFi connectivity for multi-device use. Additionally, through its Photosynthetic brand, Rift Labs offers patented LED lighting technology and smart software tailored to Controlled Environment Agriculture (CEA), providing growers with precise, sensor-based lighting to optimize plant growth, reduce energy consumption, and increase yields by adapting lighting conditions per growth stage. The software includes data-driven analytics and AI for automated lighting adjustments in vertical farms and greenhouses."",""researcherNotes"":""The company is well-identified by the combination of domain, headquarters in Norway, founding year 2010, and product focus in LED technology for photography and agriculture. The addition of Chief Revenue Officer Øyvind Hasund Dahl was confirmed via LinkedIn. Geographic focus and sector description are corroborated by multiple sources including the company website and Norselab investment documentation. No significant missing fields remain."",""sectorDescription"":""Consumer electronics and agriculture technology company specializing in advanced LED lighting solutions for photography, cinema, and controlled environment agriculture."",""sources"":{""clientCategories"":""https://thebroadcastbridge.com/companies/entry/1034/rift-labs"",""companyDescription"":""https://thehub.io/startups/rift-labs"",""geographicFocus"":""https://thehub.io/startups/rift-labs"",""keyExecutives"":""https://thehub.io/startups/rift-labs"",""productDescription"":""https://thehub.io/startups/rift-labs""},""websiteURL"":""https://www.riftlabs.com""}","Correctness: 98% Completeness: 95% The facts presented about Rift Labs are largely accurate and well-supported by multiple sources. Rift Labs is confirmed to be a Norwegian LED technology company founded in 2010, headquartered in Vinterbro, Norway, with manufacturing in the EU and global market reach[1][3][5]. Halvard Aagaard is verified as the CEO, Morten Hjerde as Founder and CTO, and Øyvind Hasund Dahl as Chief Revenue Officer, the latter confirmed via LinkedIn and company profiles[5]. The flagship product, the KICK photo- and video LED light with app-enabled controls and WiFi connectivity, is detailed and matches descriptions on the broadcast bridge directory and other sources[3]. Rift Labs also operates in controlled environment agriculture with patented LED technology, AI, and software solutions for optimizing plant growth, supported by sources reporting the company's strategic pivot and innovation since 2020[1][2]. The partnership with Norselab and financing collaborations like Eksfin underline the company's market positioning and support growth in indoor farming lighting[2]. The sector description as consumer electronics and agriculture tech specializing in LED solutions fits well. Minor completeness points are deducted due to some subtle nuances omitted, such as explicit detail on employee count (about 11-50) and the Kelvin brand being part of Rift Labs, which is cinema-focused but related[4][5]. Also, no direct official filings were accessible in the search results, but multiple reliable secondary and company official sources provide a strong basis. Overall, the data is comprehensive and current as of 2025, well aligned with Rift Labs’ online presence and third-party reports. -Sources: https://thehub.io/startups/rift-labs, https://www.thebroadcastbridge.com/companies/entry/1034/rift-labs, https://igrownews.com/rift-labs-latest-news/, https://www.urbanvine.co/blog/rift-labs-norway, https://www.kelvinlight.com/about/","{""clientCategories"":[""Photographers"",""Videographers"",""Film-makers"",""Wedding Photographers"",""Macro Photographers"",""Agriculture industry players focused on indoor and controlled environment farming""],""companyDescription"":""Rift Labs designs and manufactures lights for photographers and video makers. The company provides cutting-edge light-based solutions, including cinema lighting and vertical farming technology. They develop proprietary and patented LED lighting technology for photo and video industry and agriculture."",""geographicFocus"":""Headquarters: Vinterbro, Norway; Sales Focus: Global market, with design in Norway and manufacturing in the EU."",""keyExecutives"":[{""name"":""Halvard Aagaard"",""sourceUrl"":""https://thehub.io/startups/rift-labs"",""title"":""CEO""},{""name"":""Morten Hjerde"",""sourceUrl"":""https://thehub.io/startups/rift-labs"",""title"":""Founder and CTO""}],""linkedDocuments"":[""https://norselab.com/volumes/images/Impact-Overviews-2023/Impact-Overview-2023-Rift-Labs.pdf""],""missingImportantFields"":[],""productDescription"":""Rift Labs' primary product includes the KICK photo- & video light - a small, lightweight LED light with manual brightness and color temperature controls, app-enabled full color control, animated lighting effects, and WIFI connectivity for multiple devices. They also offer patented LED technology and software for Controlled Environment Agriculture (CEA), providing precise lighting and sensor-based solutions optimized for plant growth."",""researcherNotes"":""Key company data was collated from multiple external credible pages due to lack of detailed content on the official company website."",""sectorDescription"":""Operates in the consumer electronics and agriculture technology sectors, providing advanced LED lighting solutions for photography, videography, cinema, and controlled environment agriculture."",""sources"":{""clientCategories"":""https://thebroadcastbridge.com/companies/entry/1034/rift-labs"",""companyDescription"":""https://thehub.io/startups/rift-labs"",""geographicFocus"":""https://thehub.io/startups/rift-labs"",""keyExecutives"":""https://thehub.io/startups/rift-labs"",""productDescription"":""https://thehub.io/startups/rift-labs""},""websiteURL"":""https://www.riftlabs.com""}" -LAXEY,https://www.laxey.is,,laxey.is,https://www.linkedin.com/company/laxey,"{""seniorLeadership"":[{""name"":""Daði Pálsson"",""title"":""CEO of LAXEY"",""linkedinProfile"":""https://www.linkedin.com/in/da%C0%B0i-p%C3%A1lsson-a60b38312""},{""name"":""Lárus Ásgeirsson"",""title"":""Chairman of The Board of Directors"",""linkedinProfile"":""https://www.linkedin.com/in/l%C3%A1rus-%C3%A1sgeirsson-76666212""},{""name"":""Rustan Lindqvist"",""title"":""Director of Aquaculture"",""linkedinProfile"":""https://seafoodsource.com/news/business-finance/rustan-lindqvist-is-the-new-director-of-aquaculture-at-laxey""}]}","{""seniorLeadership"":[{""name"":""Daði Pálsson"",""title"":""CEO of LAXEY"",""linkedinProfile"":""https://www.linkedin.com/in/da%C0%B0i-p%C3%A1lsson-a60b38312""},{""name"":""Lárus Ásgeirsson"",""title"":""Chairman of The Board of Directors"",""linkedinProfile"":""https://www.linkedin.com/in/l%C3%A1rus-%C3%A1sgeirsson-76666212""},{""name"":""Rustan Lindqvist"",""title"":""Director of Aquaculture"",""linkedinProfile"":""https://seafoodsource.com/news/business-finance/rustan-lindqvist-is-the-new-director-of-aquaculture-at-laxey""}]}","{ - ""websiteURL"": ""https://www.laxey.is"", - ""companyDescription"": ""LAXEY is establishing a land-based fish farming station in Vestmannaeyjar with an annual production capacity of 42,000 tons of salmon. The company operates in the aquaculture sector, focusing on high-quality, environmentally friendly salmon production using clean energy and sustainable practices, including waste treatment and vaccine use without antibiotics. LAXEY aims to operate in harmony with community and nature, creating a great workplace with skilled staff. The facility is located on a previously disturbed geothermal site in Heimaey."", - ""productDescription"": ""Laxey is developing a land-based fish farming station capable of producing 36,000 tons of head-on gutted (HOG) Atlantic salmon annually, adhering to ASC standards for responsible aquaculture. The facility uses RAS and flow-through systems with 65% water recycling, powered by carbon-neutral electricity. Waste products are treated to minimize environmental impact, with byproducts utilized for land fertilization and restoration on Heimaey Island. Operations include smolt production in Friðarhöfn and grow-out facilities in Viðlagafjara, Vestmannaeyjar, aiming to create over 100 direct jobs and additional indirect employment."", - ""clientCategories"": [""Seafood consumers"", ""Sustainable aquaculture market""], - ""sectorDescription"": ""Operates in the aquaculture sector, specializing in sustainable land-based Atlantic salmon farming with a focus on environmental responsibility and fish welfare."", - ""geographicFocus"": ""HQ: Strandvegi 104 - 900 Vestmannaeyjar and Hlíðarsmári 2 - 201 Kópavogur, Iceland; Sales Focus: Vestmannaeyjar, Iceland"", - ""keyExecutives"": [ - {""name"": ""Lárus Ásgeirsson"", ""title"": ""Chairman of the Board"", ""sourceUrl"": ""https://www.laxey.is/frettatilkynning/""}, - {""name"": ""Kjartan Ólafsson"", ""title"": ""Board Member"", ""sourceUrl"": ""https://www.laxey.is/frettatilkynning/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable linked documents such as PDFs or DOCs were found on the website. The website is primarily focused on describing the ongoing land-based salmon farming project."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.laxey.is/um-laxey"", - ""productDescription"": ""https://www.laxey.is/verkefnid/"", - ""clientCategories"": ""https://www.laxey.is/samfelagid/"", - ""geographicFocus"": ""https://www.laxey.is/um-laxey"", - ""keyExecutives"": ""https://www.laxey.is/frettatilkynning/"" - } -}","{ - ""websiteURL"": ""https://www.laxey.is"", - ""companyDescription"": ""LAXEY is establishing a land-based fish farming station in Vestmannaeyjar with an annual production capacity of 42,000 tons of salmon. The company operates in the aquaculture sector, focusing on high-quality, environmentally friendly salmon production using clean energy and sustainable practices, including waste treatment and vaccine use without antibiotics. LAXEY aims to operate in harmony with community and nature, creating a great workplace with skilled staff. The facility is located on a previously disturbed geothermal site in Heimaey."", - ""productDescription"": ""Laxey is developing a land-based fish farming station capable of producing 36,000 tons of head-on gutted (HOG) Atlantic salmon annually, adhering to ASC standards for responsible aquaculture. The facility uses RAS and flow-through systems with 65% water recycling, powered by carbon-neutral electricity. Waste products are treated to minimize environmental impact, with byproducts utilized for land fertilization and restoration on Heimaey Island. Operations include smolt production in Friðarhöfn and grow-out facilities in Viðlagafjara, Vestmannaeyjar, aiming to create over 100 direct jobs and additional indirect employment."", - ""clientCategories"": [""Seafood consumers"", ""Sustainable aquaculture market""], - ""sectorDescription"": ""Operates in the aquaculture sector, specializing in sustainable land-based Atlantic salmon farming with a focus on environmental responsibility and fish welfare."", - ""geographicFocus"": ""HQ: Strandvegi 104 - 900 Vestmannaeyjar and Hlíðarsmári 2 - 201 Kópavogur, Iceland; Sales Focus: Vestmannaeyjar, Iceland"", - ""keyExecutives"": [ - {""name"": ""Lárus Ásgeirsson"", ""title"": ""Chairman of the Board"", ""sourceUrl"": ""https://www.laxey.is/frettatilkynning/""}, - {""name"": ""Kjartan Ólafsson"", ""title"": ""Board Member"", ""sourceUrl"": ""https://www.laxey.is/frettatilkynning/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable linked documents such as PDFs or DOCs were found on the website. The website is primarily focused on describing the ongoing land-based salmon farming project."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.laxey.is/um-laxey"", - ""productDescription"": ""https://www.laxey.is/verkefnid/"", - ""clientCategories"": ""https://www.laxey.is/samfelagid/"", - ""geographicFocus"": ""https://www.laxey.is/um-laxey"", - ""keyExecutives"": ""https://www.laxey.is/frettatilkynning/"" - } -}",[],"{ - ""websiteURL"": ""https://www.laxey.is"", - ""companyDescription"": ""LAXEY is establishing a land-based fish farming station in Vestmannaeyjar, Iceland, specializing in sustainable Atlantic salmon production with an annual capacity of around 36,000 to 42,000 tons. The company emphasizes environmentally friendly practices including the use of clean, carbon-neutral electricity, RAS and flow-through systems with significant water recycling, antibiotic-free fish health management, and waste treatment with byproducts used for land fertilization. LAXEY aims to operate in harmony with the local community and ecosystem while creating skilled jobs and maintaining high fish welfare standards."", - ""productDescription"": ""LAXEY develops land-based salmon farming facilities using recirculating aquaculture systems (RAS) and flow-through methods that achieve about 65-70% water reuse. The operation includes a fully operational smolt station delivering post-smolts to grow-out tanks, with a planned annual production volume of approximately 36,000 tons of head-on gutted (HOG) Atlantic salmon compliant with ASC responsible aquaculture standards. Waste handling minimizes environmental impact and supports land restoration on Heimaey Island. The fish farming process is powered by carbon-neutral energy and excludes antibiotic use, aiming for a high-quality, sustainable seafood product."", - ""clientCategories"": [ - ""Seafood Consumers"", - ""Sustainable Aquaculture Market"" - ], - ""sectorDescription"": ""Operates in the aquaculture sector, specializing in sustainable land-based Atlantic salmon farming with a focus on environmental responsibility and fish welfare."", - ""geographicFocus"": ""Operations and sales focus primarily on Vestmannaeyjar, Iceland, with headquarters in Vestmannaeyjar and Kópavogur, Iceland."", - ""keyExecutives"": [ - { - ""name"": ""Daði Pálsson"", - ""title"": ""CEO of LAXEY"", - ""sourceUrl"": ""https://www.linkedin.com/in/da%C0%B0i-p%C3%A1lsson-a60b38312"" - }, - { - ""name"": ""Lárus Ásgeirsson"", - ""title"": ""Chairman of the Board"", - ""sourceUrl"": ""https://www.laxey.is/frettatilkynning/"" - }, - { - ""name"": ""Kjartan Ólafsson"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://www.laxey.is/frettatilkynning/"" - }, - { - ""name"": ""Rustan Lindqvist"", - ""title"": ""Director of Aquaculture"", - ""sourceUrl"": ""https://seafoodsource.com/news/business-finance/rustan-lindqvist-is-the-new-director-of-aquaculture-at-laxey"" - } - ], - ""researcherNotes"": ""The company profile and leadership were confirmed by multiple sources including the official LAXEY website and LinkedIn profiles. The slight discrepancy in production capacity estimates (36,000-42,000 tons) likely reflects ongoing project phase development. Geographic focus is based on the company’s Icelandic operations and sales emphasis on Vestmannaeyjar. No official regulatory filings were found, but company-controlled sources and recent industry news corroborate the information."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.laxey.is/um-laxey"", - ""productDescription"": ""https://www.laxey.is/verkefnid/"", - ""clientCategories"": ""https://www.laxey.is/samfelagid/"", - ""geographicFocus"": ""https://www.laxey.is/um-laxey"", - ""keyExecutives"": ""https://www.laxey.is/frettatilkynning/"" - } -}","{""clientCategories"":[""Seafood Consumers"",""Sustainable Aquaculture Market""],""companyDescription"":""LAXEY is establishing a land-based fish farming station in Vestmannaeyjar, Iceland, specializing in sustainable Atlantic salmon production with an annual capacity of around 36,000 to 42,000 tons. The company emphasizes environmentally friendly practices including the use of clean, carbon-neutral electricity, RAS and flow-through systems with significant water recycling, antibiotic-free fish health management, and waste treatment with byproducts used for land fertilization. LAXEY aims to operate in harmony with the local community and ecosystem while creating skilled jobs and maintaining high fish welfare standards."",""geographicFocus"":""Operations and sales focus primarily on Vestmannaeyjar, Iceland, with headquarters in Vestmannaeyjar and Kópavogur, Iceland."",""keyExecutives"":[{""name"":""Daði Pálsson"",""sourceUrl"":""https://www.linkedin.com/in/da%C0%B0i-p%C3%A1lsson-a60b38312"",""title"":""CEO of LAXEY""},{""name"":""Lárus Ásgeirsson"",""sourceUrl"":""https://www.laxey.is/frettatilkynning/"",""title"":""Chairman of the Board""},{""name"":""Kjartan Ólafsson"",""sourceUrl"":""https://www.laxey.is/frettatilkynning/"",""title"":""Board Member""},{""name"":""Rustan Lindqvist"",""sourceUrl"":""https://seafoodsource.com/news/business-finance/rustan-lindqvist-is-the-new-director-of-aquaculture-at-laxey"",""title"":""Director of Aquaculture""}],""missingImportantFields"":[],""productDescription"":""LAXEY develops land-based salmon farming facilities using recirculating aquaculture systems (RAS) and flow-through methods that achieve about 65-70% water reuse. The operation includes a fully operational smolt station delivering post-smolts to grow-out tanks, with a planned annual production volume of approximately 36,000 tons of head-on gutted (HOG) Atlantic salmon compliant with ASC responsible aquaculture standards. Waste handling minimizes environmental impact and supports land restoration on Heimaey Island. The fish farming process is powered by carbon-neutral energy and excludes antibiotic use, aiming for a high-quality, sustainable seafood product."",""researcherNotes"":""The company profile and leadership were confirmed by multiple sources including the official LAXEY website and LinkedIn profiles. The slight discrepancy in production capacity estimates (36,000-42,000 tons) likely reflects ongoing project phase development. Geographic focus is based on the company’s Icelandic operations and sales emphasis on Vestmannaeyjar. No official regulatory filings were found, but company-controlled sources and recent industry news corroborate the information."",""sectorDescription"":""Operates in the aquaculture sector, specializing in sustainable land-based Atlantic salmon farming with a focus on environmental responsibility and fish welfare."",""sources"":{""clientCategories"":""https://www.laxey.is/samfelagid/"",""companyDescription"":""https://www.laxey.is/um-laxey"",""geographicFocus"":""https://www.laxey.is/um-laxey"",""keyExecutives"":""https://www.laxey.is/frettatilkynning/"",""productDescription"":""https://www.laxey.is/verkefnid/""},""websiteURL"":""https://www.laxey.is""}","Correctness: 98% Completeness: 95% The company description of LAXEY as a sustainable, land-based Atlantic salmon farming operation in Vestmannaeyjar, Iceland, with annual production capacity around 36,000–42,000 tons is well supported by multiple sources from 2023–2025, including LAXEY’s official website and recent news reports confirming operational RAS smolt stations, flow-through systems with about 65–70% water reuse, and antibiotic-free production powered by carbon-neutral energy[1][2][4]. Leadership details, naming Daði Pálsson as CEO, Lárus Ásgeirsson as Chairman, and including other executives, are confirmed via company releases and LinkedIn[1][3]. The capital-raising activities, build-out phases, and waste-to-land-fertilizer practices reinforce the company’s focus on sustainability and community integration[3][4][5]. The only minor discrepancy relates to slightly varying production volume figures (some stating 32,000 tons, others estimating up to 42,000), likely reflecting project stage progression[1][2][5]. While no official regulatory filings were found, the combined official company sources with credible industry news provide robust and recent confirmation. The completeness score is slightly reduced because explicit regulatory filings or third-party certification details (e.g., ASC certification status) were not directly cited in the reviewed sources. URLs include https://www.laxey.is/en/, https://globalaginvesting.com/icelandic-salmon-farmer-laxey-advances-sustainable-land-based-aquaculture-project/, https://www.bairdmaritime.com/fishing/aquaculture/icelandic-salmon-farmer-laxey-raises-28-million-in-latest-share-offering, and https://weareaquaculture.com/species/salmon/icelands-laxey-secures-additional-28m-for-development-of-land-based-facility.","{""clientCategories"":[""Seafood consumers"",""Sustainable aquaculture market""],""companyDescription"":""LAXEY is establishing a land-based fish farming station in Vestmannaeyjar with an annual production capacity of 42,000 tons of salmon. The company operates in the aquaculture sector, focusing on high-quality, environmentally friendly salmon production using clean energy and sustainable practices, including waste treatment and vaccine use without antibiotics. LAXEY aims to operate in harmony with community and nature, creating a great workplace with skilled staff. The facility is located on a previously disturbed geothermal site in Heimaey."",""geographicFocus"":""HQ: Strandvegi 104 - 900 Vestmannaeyjar and Hlíðarsmári 2 - 201 Kópavogur, Iceland; Sales Focus: Vestmannaeyjar, Iceland"",""keyExecutives"":[{""name"":""Lárus Ásgeirsson"",""sourceUrl"":""https://www.laxey.is/frettatilkynning/"",""title"":""Chairman of the Board""},{""name"":""Kjartan Ólafsson"",""sourceUrl"":""https://www.laxey.is/frettatilkynning/"",""title"":""Board Member""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Laxey is developing a land-based fish farming station capable of producing 36,000 tons of head-on gutted (HOG) Atlantic salmon annually, adhering to ASC standards for responsible aquaculture. The facility uses RAS and flow-through systems with 65% water recycling, powered by carbon-neutral electricity. Waste products are treated to minimize environmental impact, with byproducts utilized for land fertilization and restoration on Heimaey Island. Operations include smolt production in Friðarhöfn and grow-out facilities in Viðlagafjara, Vestmannaeyjar, aiming to create over 100 direct jobs and additional indirect employment."",""researcherNotes"":""No downloadable linked documents such as PDFs or DOCs were found on the website. The website is primarily focused on describing the ongoing land-based salmon farming project."",""sectorDescription"":""Operates in the aquaculture sector, specializing in sustainable land-based Atlantic salmon farming with a focus on environmental responsibility and fish welfare."",""sources"":{""clientCategories"":""https://www.laxey.is/samfelagid/"",""companyDescription"":""https://www.laxey.is/um-laxey"",""geographicFocus"":""https://www.laxey.is/um-laxey"",""keyExecutives"":""https://www.laxey.is/frettatilkynning/"",""productDescription"":""https://www.laxey.is/verkefnid/""},""websiteURL"":""https://www.laxey.is""}" -UMAMI,https://www.eat-umami.ch/en,,eat-umami.ch,https://www.linkedin.com/company/umami-ag,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.eat-umami.ch/en"", - ""companyDescription"": ""UMAMI LTD is a team of visionaries and doers determined to prove that nobody grows food better than nature. They focus on learning and understanding the design of nature to replicate its processes and grow food as part of a complex ecosystem. They avoid artificial pesticides, antibiotics, or fertilizers, using natural synergies to produce pure food. Their products include Microgreens, Herbs, Mussels, and Sauces, and the taste of their food is their seal of quality."", - ""productDescription"": ""UMAMI offers a range of products including: \n- Sauces crafted in collaboration with Michelin Star Chef Tobias Buholzer, made with 100% natural recipes incorporating UMAMI microgreens, including Mayonnaise, Pesto, Mustard, Chili Mayo, Ketchup, and Safran Dip.\n- Microgreens like Powermix, Proteinmix, Asiamix, and Vitalmix, nutrient-rich young herbs and vegetables used like spices.\n- Freshly cut microgreens harvested and packaged daily, available in different formats such as Swiss Sakura Mix trays, Kilo Cut for large kitchens, and full trays on organic hemp substrates. These are packed in compostable containers and cardboard boxes."", - ""clientCategories"": [ - ""Gastronomy sector including fish & meat suppliers, gastronomy industry suppliers, urban gardens, vegan cuisine, fast food with fresh ingredients, smoothies and juice producers, creative gastronomy and lifestyle companies, sustainable catering focusing on food waste reduction."" - ], - ""sectorDescription"": ""Operates in the natural food production sector, specializing in sustainable and innovative cultivation of microgreens and sauces using natural processes and collaborations with culinary experts."", - ""geographicFocus"": ""HQ: Am Dorfbach 2, 8308 Illnau & Badenerstrasse 569, 8048 Zürich, Switzerland; Sales Focus: Zürich region and Switzerland local markets."", - ""keyExecutives"": [ - {""name"": ""Denis Weinberg"", ""title"": ""Founder, Managing Director"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Robin Bertschinger"", ""title"": ""Founder, Managing Director"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Oliver Conde"", ""title"": ""Head of Technology"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Viththagan Sellathurai"", ""title"": ""Head of Operations"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Martino Corti"", ""title"": ""Head of Innovation"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.eat-umami.ch/en"", - ""productDescription"": ""https://www.eat-umami.ch/en/food/sauces"", - ""clientCategories"": ""https://www.eat-umami.ch/en/we/partner"", - ""geographicFocus"": ""https://www.eat-umami.ch/en/we/connect"", - ""keyExecutives"": ""https://www.eat-umami.ch/en/we/team"" - } -}","{ - ""websiteURL"": ""https://www.eat-umami.ch/en"", - ""companyDescription"": ""UMAMI LTD is a team of visionaries and doers determined to prove that nobody grows food better than nature. They focus on learning and understanding the design of nature to replicate its processes and grow food as part of a complex ecosystem. They avoid artificial pesticides, antibiotics, or fertilizers, using natural synergies to produce pure food. Their products include Microgreens, Herbs, Mussels, and Sauces, and the taste of their food is their seal of quality."", - ""productDescription"": ""UMAMI offers a range of products including: \n- Sauces crafted in collaboration with Michelin Star Chef Tobias Buholzer, made with 100% natural recipes incorporating UMAMI microgreens, including Mayonnaise, Pesto, Mustard, Chili Mayo, Ketchup, and Safran Dip.\n- Microgreens like Powermix, Proteinmix, Asiamix, and Vitalmix, nutrient-rich young herbs and vegetables used like spices.\n- Freshly cut microgreens harvested and packaged daily, available in different formats such as Swiss Sakura Mix trays, Kilo Cut for large kitchens, and full trays on organic hemp substrates. These are packed in compostable containers and cardboard boxes."", - ""clientCategories"": [ - ""Gastronomy sector including fish & meat suppliers, gastronomy industry suppliers, urban gardens, vegan cuisine, fast food with fresh ingredients, smoothies and juice producers, creative gastronomy and lifestyle companies, sustainable catering focusing on food waste reduction."" - ], - ""sectorDescription"": ""Operates in the natural food production sector, specializing in sustainable and innovative cultivation of microgreens and sauces using natural processes and collaborations with culinary experts."", - ""geographicFocus"": ""HQ: Am Dorfbach 2, 8308 Illnau & Badenerstrasse 569, 8048 Zürich, Switzerland; Sales Focus: Zürich region and Switzerland local markets."", - ""keyExecutives"": [ - {""name"": ""Denis Weinberg"", ""title"": ""Founder, Managing Director"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Robin Bertschinger"", ""title"": ""Founder, Managing Director"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Oliver Conde"", ""title"": ""Head of Technology"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Viththagan Sellathurai"", ""title"": ""Head of Operations"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""}, - {""name"": ""Martino Corti"", ""title"": ""Head of Innovation"", ""sourceUrl"": ""https://eat-umami.ch/en/we/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.eat-umami.ch/en"", - ""productDescription"": ""https://www.eat-umami.ch/en/food/sauces"", - ""clientCategories"": ""https://www.eat-umami.ch/en/we/partner"", - ""geographicFocus"": ""https://www.eat-umami.ch/en/we/connect"", - ""keyExecutives"": ""https://www.eat-umami.ch/en/we/team"" - } -}",[],"{ - ""websiteURL"": ""https://www.eat-umami.ch/en"", - ""companyDescription"": ""UMAMI LTD is a team of visionaries and doers determined to prove that nobody grows food better than nature. They focus on learning and understanding the design of nature to replicate its processes and grow food as part of a complex ecosystem. They avoid artificial pesticides, antibiotics, or fertilizers, using natural synergies to produce pure food. Their products include Microgreens, Herbs, Mussels, and Sauces, and the taste of their food is their seal of quality."", - ""productDescription"": ""UMAMI offers a range of products including: \n- Sauces crafted in collaboration with Michelin Star Chef Tobias Buholzer, made with 100% natural recipes incorporating UMAMI microgreens, including Mayonnaise, Pesto, Mustard, Chili Mayo, Ketchup, and Safran Dip.\n- Microgreens like Powermix, Proteinmix, Asiamix, and Vitalmix, nutrient-rich young herbs and vegetables used like spices.\n- Freshly cut microgreens harvested and packaged daily, available in different formats such as Swiss Sakura Mix trays, Kilo Cut for large kitchens, and full trays on organic hemp substrates. These are packed in compostable containers and cardboard boxes."", - ""clientCategories"": [ - ""Gastronomy Sector"", - ""Fish & Meat Suppliers"", - ""Gastronomy Industry Suppliers"", - ""Urban Gardens"", - ""Vegan Cuisine"", - ""Fast Food with Fresh Ingredients"", - ""Smoothies and Juice Producers"", - ""Creative Gastronomy and Lifestyle Companies"", - ""Sustainable Catering Focusing on Food Waste Reduction"" - ], - ""sectorDescription"": ""Operates in the natural food production sector, specializing in sustainable and innovative cultivation of microgreens and sauces using natural processes and collaborations with culinary experts."", - ""geographicFocus"": ""Headquartered in Illnau and Zürich, with a primary sales focus on the Zürich region and local Swiss markets."", - ""keyExecutives"": [ - { - ""name"": ""Denis Weinberg"", - ""title"": ""Founder, Managing Director"", - ""sourceUrl"": ""https://eat-umami.ch/en/we/team"" - }, - { - ""name"": ""Robin Bertschinger"", - ""title"": ""Founder, Managing Director"", - ""sourceUrl"": ""https://eat-umami.ch/en/we/team"" - }, - { - ""name"": ""Oliver Conde"", - ""title"": ""Head of Technology"", - ""sourceUrl"": ""https://eat-umami.ch/en/we/team"" - }, - { - ""name"": ""Viththagan Sellathurai"", - ""title"": ""Head of Operations"", - ""sourceUrl"": ""https://eat-umami.ch/en/we/team"" - }, - { - ""name"": ""Martino Corti"", - ""title"": ""Head of Innovation"", - ""sourceUrl"": ""https://eat-umami.ch/en/we/team"" - } - ], - ""researcherNotes"": ""The company UMAMI LTD, as presented on eat-umami.ch, aligns with the agritech pioneer UMAMI AG based in Zürich active since around 2015, confirmed by matching product focus on natural food production and Swiss headquarters. No conflicts in leadership have been found. The geographic focus is clearly local Swiss markets centered around Zürich and Illnau. No senior leadership updates or discrepancies appear on LinkedIn or external sources. The field geographicFocus was inferred and expanded based on address details and company descriptions from the official site and supporting Swiss agritech profiles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.eat-umami.ch/en"", - ""productDescription"": ""https://www.eat-umami.ch/en/food/sauces"", - ""clientCategories"": ""https://www.eat-umami.ch/en/we/partner"", - ""geographicFocus"": ""https://www.eat-umami.ch/en/we/connect"", - ""keyExecutives"": ""https://eat-umami.ch/en/we/team"" - } -}","{""clientCategories"":[""Gastronomy Sector"",""Fish & Meat Suppliers"",""Gastronomy Industry Suppliers"",""Urban Gardens"",""Vegan Cuisine"",""Fast Food with Fresh Ingredients"",""Smoothies and Juice Producers"",""Creative Gastronomy and Lifestyle Companies"",""Sustainable Catering Focusing on Food Waste Reduction""],""companyDescription"":""UMAMI LTD is a team of visionaries and doers determined to prove that nobody grows food better than nature. They focus on learning and understanding the design of nature to replicate its processes and grow food as part of a complex ecosystem. They avoid artificial pesticides, antibiotics, or fertilizers, using natural synergies to produce pure food. Their products include Microgreens, Herbs, Mussels, and Sauces, and the taste of their food is their seal of quality."",""geographicFocus"":""Headquartered in Illnau and Zürich, with a primary sales focus on the Zürich region and local Swiss markets."",""keyExecutives"":[{""name"":""Denis Weinberg"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Founder, Managing Director""},{""name"":""Robin Bertschinger"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Founder, Managing Director""},{""name"":""Oliver Conde"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Head of Technology""},{""name"":""Viththagan Sellathurai"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Head of Operations""},{""name"":""Martino Corti"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Head of Innovation""}],""missingImportantFields"":[],""productDescription"":""UMAMI offers a range of products including: \n- Sauces crafted in collaboration with Michelin Star Chef Tobias Buholzer, made with 100% natural recipes incorporating UMAMI microgreens, including Mayonnaise, Pesto, Mustard, Chili Mayo, Ketchup, and Safran Dip.\n- Microgreens like Powermix, Proteinmix, Asiamix, and Vitalmix, nutrient-rich young herbs and vegetables used like spices.\n- Freshly cut microgreens harvested and packaged daily, available in different formats such as Swiss Sakura Mix trays, Kilo Cut for large kitchens, and full trays on organic hemp substrates. These are packed in compostable containers and cardboard boxes."",""researcherNotes"":""The company UMAMI LTD, as presented on eat-umami.ch, aligns with the agritech pioneer UMAMI AG based in Zürich active since around 2015, confirmed by matching product focus on natural food production and Swiss headquarters. No conflicts in leadership have been found. The geographic focus is clearly local Swiss markets centered around Zürich and Illnau. No senior leadership updates or discrepancies appear on LinkedIn or external sources. The field geographicFocus was inferred and expanded based on address details and company descriptions from the official site and supporting Swiss agritech profiles."",""sectorDescription"":""Operates in the natural food production sector, specializing in sustainable and innovative cultivation of microgreens and sauces using natural processes and collaborations with culinary experts."",""sources"":{""clientCategories"":""https://www.eat-umami.ch/en/we/partner"",""companyDescription"":""https://www.eat-umami.ch/en"",""geographicFocus"":""https://www.eat-umami.ch/en/we/connect"",""keyExecutives"":""https://eat-umami.ch/en/we/team"",""productDescription"":""https://www.eat-umami.ch/en/food/sauces""},""websiteURL"":""https://www.eat-umami.ch/en""}","Correctness: 95% Completeness: 90% The description of UMAMI LTD aligns closely with verified information for UMAMI AG and UMAMI Ltd active in Zürich and Illnau. The company is confirmed to be headquartered in Zürich with a focus on natural food production using ecosystem-based microgreen cultivation and sauces, including collaborations with chef Tobias Buholzer[3][4]. Leadership names match those listed on the official UMAMI website team page as of 2025, with no conflicting updates found[https://eat-umami.ch/en/we/team]. The geographic focus on local Swiss markets, particularly Zürich and Illnau, is supported by company contact details and regional sales emphasis[4]. UMAMI AG's founding date and legal details are consistent with official Swiss company records[1]. Some minor discrepancy arises because UMAMI Ltd is also listed in unrelated industries (commercial printing) in less authoritative sources, likely a different entity[2]. The product descriptions of microgreens, sauces, and sustainability commitment match official site claims and recent public information[3][4]. Completeness is reduced slightly due to no detailed recent financials or employee counts, and some external corroboration is limited to company and regional startup profiles without formal filings or press releases beyond the commercial register. Overall, the presented facts reflect a factual, mainly complete portrayal of UMAMI LTD/AG as of mid-2025. Key sources: https://www.moneyhouse.ch/en/company/umami-ag-15963335251, https://www.eat-umami.ch/en/we/team, https://www.eat-umami.ch/en/food/sauces, https://www.myswitzerland.com/en-us/experiences/umami-experience/","{""clientCategories"":[""Gastronomy sector including fish & meat suppliers, gastronomy industry suppliers, urban gardens, vegan cuisine, fast food with fresh ingredients, smoothies and juice producers, creative gastronomy and lifestyle companies, sustainable catering focusing on food waste reduction.""],""companyDescription"":""UMAMI LTD is a team of visionaries and doers determined to prove that nobody grows food better than nature. They focus on learning and understanding the design of nature to replicate its processes and grow food as part of a complex ecosystem. They avoid artificial pesticides, antibiotics, or fertilizers, using natural synergies to produce pure food. Their products include Microgreens, Herbs, Mussels, and Sauces, and the taste of their food is their seal of quality."",""geographicFocus"":""HQ: Am Dorfbach 2, 8308 Illnau & Badenerstrasse 569, 8048 Zürich, Switzerland; Sales Focus: Zürich region and Switzerland local markets."",""keyExecutives"":[{""name"":""Denis Weinberg"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Founder, Managing Director""},{""name"":""Robin Bertschinger"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Founder, Managing Director""},{""name"":""Oliver Conde"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Head of Technology""},{""name"":""Viththagan Sellathurai"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Head of Operations""},{""name"":""Martino Corti"",""sourceUrl"":""https://eat-umami.ch/en/we/team"",""title"":""Head of Innovation""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""UMAMI offers a range of products including: \n- Sauces crafted in collaboration with Michelin Star Chef Tobias Buholzer, made with 100% natural recipes incorporating UMAMI microgreens, including Mayonnaise, Pesto, Mustard, Chili Mayo, Ketchup, and Safran Dip.\n- Microgreens like Powermix, Proteinmix, Asiamix, and Vitalmix, nutrient-rich young herbs and vegetables used like spices.\n- Freshly cut microgreens harvested and packaged daily, available in different formats such as Swiss Sakura Mix trays, Kilo Cut for large kitchens, and full trays on organic hemp substrates. These are packed in compostable containers and cardboard boxes."",""researcherNotes"":null,""sectorDescription"":""Operates in the natural food production sector, specializing in sustainable and innovative cultivation of microgreens and sauces using natural processes and collaborations with culinary experts."",""sources"":{""clientCategories"":""https://www.eat-umami.ch/en/we/partner"",""companyDescription"":""https://www.eat-umami.ch/en"",""geographicFocus"":""https://www.eat-umami.ch/en/we/connect"",""keyExecutives"":""https://www.eat-umami.ch/en/we/team"",""productDescription"":""https://www.eat-umami.ch/en/food/sauces""},""websiteURL"":""https://www.eat-umami.ch/en""}" -TheCircle,https://www.thecircle.global,"Opes Italia, Sparviero",thecircle.global,https://www.linkedin.com/company/the-circle-food,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.thecircle.global"", - ""companyDescription"": ""The Circle is a leading European company in aquaponics innovation focused on sustainability and high-quality cultivation. Their mission is to transform sustainability into excellence by revolutionizing agriculture with eco-friendly, pesticide-free methods that reduce water consumption by 90%. They operate a sustainable and competitive development model producing high-quality food with zero environmental impact using a vertical aquaponic system combining fish farming and cultivation of salads and aromatic herbs. The waste from fish serves as nutrients for plants, creating a continuous, sustainable, circular, and innovative cycle that purifies water and saves over 90% water compared to traditional agriculture."", - ""productDescription"": ""Products and offerings include:\n- Oriental (€6.50)\n- Oriental Vegano (€6.50)\n- Bis di Pesto The Circle (€13.00)\nCategories encompass aquaponics system, salads, aromatic herbs, and pestos, oils, and salts."", - ""clientCategories"": [""Haute gastronomy"", ""Chefs"", ""High-end gastronomy clients""], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in innovative aquaponics farming that combines fish cultivation and plant growth to produce high-quality, eco-friendly food."", - ""geographicFocus"": ""HQ: Via del Casale Ciminelli 20a, 00132, Roma, Italy; Sales Focus: Primarily Rome with plans for Milan expansion."", - ""keyExecutives"": [ - {""name"": ""Valerio Ciotola"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""}, - {""name"": ""Simone Cofini"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""}, - {""name"": ""Thomas Marino"", ""title"": ""CMO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""}, - {""name"": ""Lorenzo Garreffa"", ""title"": ""CPO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""} - ], - ""linkedDocuments"": [ - ""https://thecircle.global/wp/wp-content/uploads/2018/05/ARTICOLI-THE-CIRCLE.pdf"", - ""https://thecircle.global/wp/wp-content/uploads/2020/01/THE-CIRCLE-PDF-UFFICIALE.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.thecircle.global/chi-siamo"", - ""productDescription"": ""https://www.thecircle.global/shopthecircle"", - ""clientCategories"": ""https://thecircle.global/wp/wp-content/uploads/2020/01/THE-CIRCLE-PDF-UFFICIALE.pdf"", - ""geographicFocus"": ""https://www.thecircle.global/contact"", - ""keyExecutives"": ""https://www.thecircle.global/chi-siamo#team"" - } -}","{ - ""websiteURL"": ""https://www.thecircle.global"", - ""companyDescription"": ""The Circle is a leading European company in aquaponics innovation focused on sustainability and high-quality cultivation. Their mission is to transform sustainability into excellence by revolutionizing agriculture with eco-friendly, pesticide-free methods that reduce water consumption by 90%. They operate a sustainable and competitive development model producing high-quality food with zero environmental impact using a vertical aquaponic system combining fish farming and cultivation of salads and aromatic herbs. The waste from fish serves as nutrients for plants, creating a continuous, sustainable, circular, and innovative cycle that purifies water and saves over 90% water compared to traditional agriculture."", - ""productDescription"": ""Products and offerings include:\n- Oriental (€6.50)\n- Oriental Vegano (€6.50)\n- Bis di Pesto The Circle (€13.00)\nCategories encompass aquaponics system, salads, aromatic herbs, and pestos, oils, and salts."", - ""clientCategories"": [""Haute gastronomy"", ""Chefs"", ""High-end gastronomy clients""], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in innovative aquaponics farming that combines fish cultivation and plant growth to produce high-quality, eco-friendly food."", - ""geographicFocus"": ""HQ: Via del Casale Ciminelli 20a, 00132, Roma, Italy; Sales Focus: Primarily Rome with plans for Milan expansion."", - ""keyExecutives"": [ - {""name"": ""Valerio Ciotola"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""}, - {""name"": ""Simone Cofini"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""}, - {""name"": ""Thomas Marino"", ""title"": ""CMO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""}, - {""name"": ""Lorenzo Garreffa"", ""title"": ""CPO"", ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team""} - ], - ""linkedDocuments"": [ - ""https://thecircle.global/wp/wp-content/uploads/2018/05/ARTICOLI-THE-CIRCLE.pdf"", - ""https://thecircle.global/wp/wp-content/uploads/2020/01/THE-CIRCLE-PDF-UFFICIALE.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.thecircle.global/chi-siamo"", - ""productDescription"": ""https://www.thecircle.global/shopthecircle"", - ""clientCategories"": ""https://thecircle.global/wp/wp-content/uploads/2020/01/THE-CIRCLE-PDF-UFFICIALE.pdf"", - ""geographicFocus"": ""https://www.thecircle.global/contact"", - ""keyExecutives"": ""https://www.thecircle.global/chi-siamo#team"" - } -}",[],"{ - ""websiteURL"": ""https://www.thecircle.global"", - ""companyDescription"": ""The Circle is a leading European aquaponics innovator founded in 2017 and headquartered in Rome, Italy. The company specializes in sustainable agriculture by combining fish farming and soilless cultivation in a vertical aquaponic system that reduces water consumption by 90% compared to traditional methods. Its mission is to transform sustainability into excellence by delivering high-quality, eco-friendly food without chemical pesticides, serving high-end gastronomy clients and chefs. The Circle operates the largest aquaponic farm in Europe and pursues a circular, zero-environmental-impact model that reuses fish waste as nutrient for plants, minimizing waste and purifying water."", - ""productDescription"": ""The Circle offers aquaponics systems and sustainably cultivated products such as salads, aromatic herbs, pestos, oils, and flavored salts. Their production model combines fish farming with plant cultivation to deliver pesticide-free, water-efficient food primarily for haute cuisine and high-end gastronomy clients. Notably, they have developed Italy's first biomimetic transformation center for aquaponic-origin pesto, oils, and salts, advancing processed product offerings while maintaining sustainability and quality."", - ""clientCategories"": [ - ""Haute Gastronomy"", - ""Chefs"", - ""High-End Gastronomy Clients"", - ""Hotels"", - ""Mass Market Retailers"" - ], - ""sectorDescription"": ""Sustainable agriculture specializing in innovative aquaponics farming that integrates fish cultivation with plant production to create eco-friendly, high-quality food with minimal environmental impact."", - ""geographicFocus"": ""Headquartered in Rome, Italy, with a primary sales focus on Rome and planned expansion to Milan and broader international markets within the next 18-24 months."", - ""keyExecutives"": [ - { - ""name"": ""Valerio Ciotola"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team"" - }, - { - ""name"": ""Simone Cofini"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team"" - }, - { - ""name"": ""Thomas Marino"", - ""title"": ""CMO"", - ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team"" - }, - { - ""name"": ""Lorenzo Garreffa"", - ""title"": ""CPO"", - ""sourceUrl"": ""https://www.thecircle.global/chi-siamo#team"" - } - ], - ""researcherNotes"": ""The Circle was confirmed as the correct entity based on domain match (thecircle.global), HQ in Rome, Italy, founding year 2017, and distinctive aquaponics innovation keywords. The company is well-documented as Europe’s largest aquaponic farm, founded by the four named executives. Geographic focus is clearly Rome with Milan expansion plans and intended international growth. Information on client categories is broadened with hotels and mass market retailers from an EU CAP Network report, complementing the original high-end gastronomy focus. No conflicting leadership data found across sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.thecircle.global/chi-siamo"", - ""productDescription"": ""https://www.thecircle.global/shopthecircle"", - ""clientCategories"": ""https://eu-cap-network.ec.europa.eu/sites/default/files/2023-06/green-thecircle.pdf"", - ""geographicFocus"": ""https://thecircle.global/contact"", - ""keyExecutives"": ""https://www.thecircle.global/chi-siamo#team"" - } -}","{""clientCategories"":[""Haute Gastronomy"",""Chefs"",""High-End Gastronomy Clients"",""Hotels"",""Mass Market Retailers""],""companyDescription"":""The Circle is a leading European aquaponics innovator founded in 2017 and headquartered in Rome, Italy. The company specializes in sustainable agriculture by combining fish farming and soilless cultivation in a vertical aquaponic system that reduces water consumption by 90% compared to traditional methods. Its mission is to transform sustainability into excellence by delivering high-quality, eco-friendly food without chemical pesticides, serving high-end gastronomy clients and chefs. The Circle operates the largest aquaponic farm in Europe and pursues a circular, zero-environmental-impact model that reuses fish waste as nutrient for plants, minimizing waste and purifying water."",""geographicFocus"":""Headquartered in Rome, Italy, with a primary sales focus on Rome and planned expansion to Milan and broader international markets within the next 18-24 months."",""keyExecutives"":[{""name"":""Valerio Ciotola"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CEO""},{""name"":""Simone Cofini"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CTO""},{""name"":""Thomas Marino"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CMO""},{""name"":""Lorenzo Garreffa"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CPO""}],""missingImportantFields"":[],""productDescription"":""The Circle offers aquaponics systems and sustainably cultivated products such as salads, aromatic herbs, pestos, oils, and flavored salts. Their production model combines fish farming with plant cultivation to deliver pesticide-free, water-efficient food primarily for haute cuisine and high-end gastronomy clients. Notably, they have developed Italy's first biomimetic transformation center for aquaponic-origin pesto, oils, and salts, advancing processed product offerings while maintaining sustainability and quality."",""researcherNotes"":""The Circle was confirmed as the correct entity based on domain match (thecircle.global), HQ in Rome, Italy, founding year 2017, and distinctive aquaponics innovation keywords. The company is well-documented as Europe’s largest aquaponic farm, founded by the four named executives. Geographic focus is clearly Rome with Milan expansion plans and intended international growth. Information on client categories is broadened with hotels and mass market retailers from an EU CAP Network report, complementing the original high-end gastronomy focus. No conflicting leadership data found across sources."",""sectorDescription"":""Sustainable agriculture specializing in innovative aquaponics farming that integrates fish cultivation with plant production to create eco-friendly, high-quality food with minimal environmental impact."",""sources"":{""clientCategories"":""https://eu-cap-network.ec.europa.eu/sites/default/files/2023-06/green-thecircle.pdf"",""companyDescription"":""https://www.thecircle.global/chi-siamo"",""geographicFocus"":""https://thecircle.global/contact"",""keyExecutives"":""https://www.thecircle.global/chi-siamo#team"",""productDescription"":""https://www.thecircle.global/shopthecircle""},""websiteURL"":""https://www.thecircle.global""}","Correctness: 98% Completeness: 95% The information is highly accurate and well-supported by multiple authoritative sources that confirm The Circle is a leading European aquaponics innovator founded in 2017 and headquartered near Rome, Italy. Its mission, business model, and product offerings including salads, aromatic herbs, and processed aquaponic products (pestos, oils, flavored salts) are consistently reported across sources[1][2][3][4][5]. The leadership team of Valerio Ciotola (CEO), Simone Cofini (CTO), Thomas Marino (CMO), and Lorenzo Garreffa (CPO) is confirmed by official company pages and multiple articles[1][2][3][4]. The company operates Europe’s largest aquaponic farm and aims to reduce water use by 90% compared to traditional agriculture; this water-saving claim is documented in the EU CAP Network report[5]. Its clientele includes haute gastronomy, hotels, and mass market retailers, focused currently on Rome with expansion plans to Milan and international markets in 18-24 months [1][2][5]. The recent €2.1 million funding round for expansion, including facilities for salad and herb production in Rome and Milan and Italy’s first biomimetic transformation center in Abruzzo, is repeatedly confirmed[1][2][3]. Minor completeness deduction results from absence in the query text of detailed financial figures or explicit mention of the €3.6 million total raised (adding previous funding) and no direct mention of daily greenhouse size (5,000 m2) though these are available in sources[3][4]. Overall, the profile is factually thorough and consistent with up-to-date official and media documentation. URLs include https://www.thecircle.global/chi-siamo, https://impakter.com/the-circle-raises-2m-to-support-its-expansion/, https://tech.eu/2023/10/09/italian-aquaponic-firm-the-circle-secures-2-1m/, and https://eu-cap-network.ec.europa.eu/sites/default/files/2023-06/green-thecircle.pdf.","{""clientCategories"":[""Haute gastronomy"",""Chefs"",""High-end gastronomy clients""],""companyDescription"":""The Circle is a leading European company in aquaponics innovation focused on sustainability and high-quality cultivation. Their mission is to transform sustainability into excellence by revolutionizing agriculture with eco-friendly, pesticide-free methods that reduce water consumption by 90%. They operate a sustainable and competitive development model producing high-quality food with zero environmental impact using a vertical aquaponic system combining fish farming and cultivation of salads and aromatic herbs. The waste from fish serves as nutrients for plants, creating a continuous, sustainable, circular, and innovative cycle that purifies water and saves over 90% water compared to traditional agriculture."",""geographicFocus"":""HQ: Via del Casale Ciminelli 20a, 00132, Roma, Italy; Sales Focus: Primarily Rome with plans for Milan expansion."",""keyExecutives"":[{""name"":""Valerio Ciotola"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CEO""},{""name"":""Simone Cofini"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CTO""},{""name"":""Thomas Marino"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CMO""},{""name"":""Lorenzo Garreffa"",""sourceUrl"":""https://www.thecircle.global/chi-siamo#team"",""title"":""CPO""}],""linkedDocuments"":[""https://thecircle.global/wp/wp-content/uploads/2018/05/ARTICOLI-THE-CIRCLE.pdf"",""https://thecircle.global/wp/wp-content/uploads/2020/01/THE-CIRCLE-PDF-UFFICIALE.pdf""],""missingImportantFields"":[],""productDescription"":""Products and offerings include:\n- Oriental (€6.50)\n- Oriental Vegano (€6.50)\n- Bis di Pesto The Circle (€13.00)\nCategories encompass aquaponics system, salads, aromatic herbs, and pestos, oils, and salts."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable agriculture sector, specializing in innovative aquaponics farming that combines fish cultivation and plant growth to produce high-quality, eco-friendly food."",""sources"":{""clientCategories"":""https://thecircle.global/wp/wp-content/uploads/2020/01/THE-CIRCLE-PDF-UFFICIALE.pdf"",""companyDescription"":""https://www.thecircle.global/chi-siamo"",""geographicFocus"":""https://www.thecircle.global/contact"",""keyExecutives"":""https://www.thecircle.global/chi-siamo#team"",""productDescription"":""https://www.thecircle.global/shopthecircle""},""websiteURL"":""https://www.thecircle.global""}" -Intelligent Growth Solutions,https://www.intelligentgrowthsolutions.com/,"Cleveland Avenue, COFRA Holding, DC Thomson, Ospraie Ag Sciences, S2G Investments, Scottish Enterprise",intelligentgrowthsolutions.com,https://www.linkedin.com/company/intelligent-growth-solutions-limited,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.intelligentgrowthsolutions.com/"", - ""companyDescription"": ""IGS is focused on modular, scalable, and flexible vertical farming technology designed to grow a variety of crops by creating the perfect environment year-round. Their mission centers on tackling sustainable food production challenges globally. They combine technology, people, and service to deliver best-in-class solutions, integrating controlled environments and scalable systems that support growers from business case to ongoing maintenance. They emphasize modular design, energy efficiency, and adaptability to market demands."", - ""productDescription"": ""IGS offers vertical farming technology including Growth Towers, which are fully automated indoor ecosystems using growth recipes, and a Total Controlled Environment Agriculture (TCEA) platform that integrates system elements and off-the-shelf components. They provide products like Growth Towers and GigaFarm, along with services such as seed-to-harvest solutions."", - ""clientCategories"": [ - ""Nurseries"", - ""Seed-to-harvest crop growers"", - ""Pharmaceuticals"", - ""Entrepreneurs"", - ""Energy producers"", - ""Forestry"" - ], - ""sectorDescription"": ""Operates in the controlled environment agriculture and vertical farming technology sector, providing modular, scalable indoor farming solutions for sustainable crop production."", - ""geographicFocus"": ""HQ: IGS Engineering Innovation Centre, Unit 19 Belleknowes Industrial Estate, Admiralty Rd, Inverkeithing, KY11 1HZ, Scotland, with additional offices in Edinburgh, Dundee, and the United States; Sales Focus: Global, including UK and United States"", - ""keyExecutives"": [ - {""name"": ""Andrew Lloyd"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""}, - {""name"": ""Dave Scott"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""}, - {""name"": ""Carla Roberts"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""}, - {""name"": ""Lawrence Ross"", ""title"": ""Chief Product Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.intelligentgrowthsolutions.com/about/who-we-are"", - ""productDescription"": ""https://www.intelligentgrowthsolutions.com/product"", - ""clientCategories"": ""https://www.intelligentgrowthsolutions.com/solutions"", - ""geographicFocus"": ""https://www.intelligentgrowthsolutions.com/contact"", - ""keyExecutives"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - } -}","{ - ""websiteURL"": ""https://www.intelligentgrowthsolutions.com/"", - ""companyDescription"": ""IGS is focused on modular, scalable, and flexible vertical farming technology designed to grow a variety of crops by creating the perfect environment year-round. Their mission centers on tackling sustainable food production challenges globally. They combine technology, people, and service to deliver best-in-class solutions, integrating controlled environments and scalable systems that support growers from business case to ongoing maintenance. They emphasize modular design, energy efficiency, and adaptability to market demands."", - ""productDescription"": ""IGS offers vertical farming technology including Growth Towers, which are fully automated indoor ecosystems using growth recipes, and a Total Controlled Environment Agriculture (TCEA) platform that integrates system elements and off-the-shelf components. They provide products like Growth Towers and GigaFarm, along with services such as seed-to-harvest solutions."", - ""clientCategories"": [ - ""Nurseries"", - ""Seed-to-harvest crop growers"", - ""Pharmaceuticals"", - ""Entrepreneurs"", - ""Energy producers"", - ""Forestry"" - ], - ""sectorDescription"": ""Operates in the controlled environment agriculture and vertical farming technology sector, providing modular, scalable indoor farming solutions for sustainable crop production."", - ""geographicFocus"": ""HQ: IGS Engineering Innovation Centre, Unit 19 Belleknowes Industrial Estate, Admiralty Rd, Inverkeithing, KY11 1HZ, Scotland, with additional offices in Edinburgh, Dundee, and the United States; Sales Focus: Global, including UK and United States"", - ""keyExecutives"": [ - {""name"": ""Andrew Lloyd"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""}, - {""name"": ""Dave Scott"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""}, - {""name"": ""Carla Roberts"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""}, - {""name"": ""Lawrence Ross"", ""title"": ""Chief Product Officer"", ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.intelligentgrowthsolutions.com/about/who-we-are"", - ""productDescription"": ""https://www.intelligentgrowthsolutions.com/product"", - ""clientCategories"": ""https://www.intelligentgrowthsolutions.com/solutions"", - ""geographicFocus"": ""https://www.intelligentgrowthsolutions.com/contact"", - ""keyExecutives"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - } -}",[],"{ - ""websiteURL"": ""https://www.intelligentgrowthsolutions.com"", - ""companyDescription"": ""IGS specializes in modular, scalable vertical farming technology designed to grow a diverse range of crops by creating optimal growing environments year-round. Their mission addresses global challenges in sustainable food production by combining advanced technology, expert people, and comprehensive service, delivering solutions that integrate controlled environments with scalable systems to support growers from business case development through ongoing maintenance. The company operates as a pure technology vendor, partnering with growers rather than producing crops commercially themselves."", - ""productDescription"": ""IGS delivers vertical farming technology centered on fully automated Growth Towers that provide controlled ecosystems through growth recipes, enabling precise control of lighting, water, energy, and nutrients. Their Total Controlled Environment Agriculture (TCEA) platform integrates proprietary and off-the-shelf components to maximize yield and consistency while reducing labor and energy use. Key products include Growth Towers and the GigaFarm large-scale facility, supported by seed-to-harvest services that optimize production flexibility and quality."", - ""clientCategories"": [ - ""Nurseries"", - ""Seed-to-Harvest Crop Growers"", - ""Pharmaceuticals"", - ""Entrepreneurs"", - ""Energy Producers"", - ""Forestry"" - ], - ""sectorDescription"": ""Controlled environment agriculture sector specializing in modular and scalable vertical farming technology for sustainable indoor crop production."", - ""geographicFocus"": ""Headquartered in Inverkeithing, Scotland, with additional offices in Edinburgh, Dundee, and the United States, IGS serves a global market including the UK and US."", - ""keyExecutives"": [ - { - ""name"": ""Andrew Lloyd"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - }, - { - ""name"": ""Dave Scott"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - }, - { - ""name"": ""Carla Roberts"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - }, - { - ""name"": ""Lawrence Ross"", - ""title"": ""Chief Product Officer"", - ""sourceUrl"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - } - ], - ""researcherNotes"": ""Company identity is confirmed by the exact website domain, Scottish headquarters, and differentiated vertical farming technology terms confirmed by multiple official sources including the company site and credible third-party articles. The geographic footprint is based on official contact and office locations with sales focus details from company communications. No senior leadership data found on LinkedIn outside the company site; website remains the primary source for executive roles. The product and client descriptions are synthesized from multiple official web pages and recent project details."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.intelligentgrowthsolutions.com/about/who-we-are"", - ""productDescription"": ""https://www.intelligentgrowthsolutions.com/product"", - ""clientCategories"": ""https://www.intelligentgrowthsolutions.com/solutions"", - ""geographicFocus"": ""https://www.intelligentgrowthsolutions.com/contact"", - ""keyExecutives"": ""https://www.intelligentgrowthsolutions.com/people/crew"" - } -}","{""clientCategories"":[""Nurseries"",""Seed-to-Harvest Crop Growers"",""Pharmaceuticals"",""Entrepreneurs"",""Energy Producers"",""Forestry""],""companyDescription"":""IGS specializes in modular, scalable vertical farming technology designed to grow a diverse range of crops by creating optimal growing environments year-round. Their mission addresses global challenges in sustainable food production by combining advanced technology, expert people, and comprehensive service, delivering solutions that integrate controlled environments with scalable systems to support growers from business case development through ongoing maintenance. The company operates as a pure technology vendor, partnering with growers rather than producing crops commercially themselves."",""geographicFocus"":""Headquartered in Inverkeithing, Scotland, with additional offices in Edinburgh, Dundee, and the United States, IGS serves a global market including the UK and US."",""keyExecutives"":[{""name"":""Andrew Lloyd"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Executive Officer""},{""name"":""Dave Scott"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Technology Officer""},{""name"":""Carla Roberts"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Financial Officer""},{""name"":""Lawrence Ross"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Product Officer""}],""missingImportantFields"":[],""productDescription"":""IGS delivers vertical farming technology centered on fully automated Growth Towers that provide controlled ecosystems through growth recipes, enabling precise control of lighting, water, energy, and nutrients. Their Total Controlled Environment Agriculture (TCEA) platform integrates proprietary and off-the-shelf components to maximize yield and consistency while reducing labor and energy use. Key products include Growth Towers and the GigaFarm large-scale facility, supported by seed-to-harvest services that optimize production flexibility and quality."",""researcherNotes"":""Company identity is confirmed by the exact website domain, Scottish headquarters, and differentiated vertical farming technology terms confirmed by multiple official sources including the company site and credible third-party articles. The geographic footprint is based on official contact and office locations with sales focus details from company communications. No senior leadership data found on LinkedIn outside the company site; website remains the primary source for executive roles. The product and client descriptions are synthesized from multiple official web pages and recent project details."",""sectorDescription"":""Controlled environment agriculture sector specializing in modular and scalable vertical farming technology for sustainable indoor crop production."",""sources"":{""clientCategories"":""https://www.intelligentgrowthsolutions.com/solutions"",""companyDescription"":""https://www.intelligentgrowthsolutions.com/about/who-we-are"",""geographicFocus"":""https://www.intelligentgrowthsolutions.com/contact"",""keyExecutives"":""https://www.intelligentgrowthsolutions.com/people/crew"",""productDescription"":""https://www.intelligentgrowthsolutions.com/product""},""websiteURL"":""https://www.intelligentgrowthsolutions.com""}","Correctness: 98% Completeness: 95% The information provided about Intelligent Growth Solutions (IGS) is highly accurate and well-supported by multiple authoritative sources. IGS is confirmed as a Scotland-based company specializing in modular, scalable vertical farming technology that creates controlled environments to grow diverse crops year-round, with headquarters in Inverkeithing and additional offices in Edinburgh, Dundee, and Loveland, Colorado, US[1][3]. The leadership names and titles (Andrew Lloyd as CEO, Dave Scott as CTO, Carla Roberts as CFO, Lawrence Ross as Chief Product Officer) align with the company’s official team page as of 2025-09-10[https://www.intelligentgrowthsolutions.com/people/crew]. The product descriptions—Growth Towers offering fully automated control of lighting, water, energy, and nutrients, supported by their Total Controlled Environment Agriculture (TCEA) platform and large-scale GigaFarm solutions—are directly from IGS’s official site[4]. The company acts solely as a technology vendor partnering with growers rather than producing crops commercially themselves, a point clearly stated and consistent across their web content[4]. The company’s mission addressing sustainability and global food security through technology is also confirmed[1][4]. Minor gaps in third-party corroboration of some executive details and recent office expansions slightly reduce completeness, but no critical claims appear unsupported or incorrect. Overall, the data is both precise and comprehensive in scope, verified by primary company sources and corroborated by recent external announcements[2][3]. https://www.intelligentgrowthsolutions.com/about/who-we-are https://www.intelligentgrowthsolutions.com/people/crew https://www.intelligentgrowthsolutions.com/contact https://www.intelligentgrowthsolutions.com/product https://oedit.colorado.gov/press-release/polis-administration-announces-uk-based-indoor-farming-technology-company-chooses-loveland","{""clientCategories"":[""Nurseries"",""Seed-to-harvest crop growers"",""Pharmaceuticals"",""Entrepreneurs"",""Energy producers"",""Forestry""],""companyDescription"":""IGS is focused on modular, scalable, and flexible vertical farming technology designed to grow a variety of crops by creating the perfect environment year-round. Their mission centers on tackling sustainable food production challenges globally. They combine technology, people, and service to deliver best-in-class solutions, integrating controlled environments and scalable systems that support growers from business case to ongoing maintenance. They emphasize modular design, energy efficiency, and adaptability to market demands."",""geographicFocus"":""HQ: IGS Engineering Innovation Centre, Unit 19 Belleknowes Industrial Estate, Admiralty Rd, Inverkeithing, KY11 1HZ, Scotland, with additional offices in Edinburgh, Dundee, and the United States; Sales Focus: Global, including UK and United States"",""keyExecutives"":[{""name"":""Andrew Lloyd"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Executive Officer""},{""name"":""Dave Scott"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Technology Officer""},{""name"":""Carla Roberts"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Financial Officer""},{""name"":""Lawrence Ross"",""sourceUrl"":""https://www.intelligentgrowthsolutions.com/people/crew"",""title"":""Chief Product Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""IGS offers vertical farming technology including Growth Towers, which are fully automated indoor ecosystems using growth recipes, and a Total Controlled Environment Agriculture (TCEA) platform that integrates system elements and off-the-shelf components. They provide products like Growth Towers and GigaFarm, along with services such as seed-to-harvest solutions."",""researcherNotes"":null,""sectorDescription"":""Operates in the controlled environment agriculture and vertical farming technology sector, providing modular, scalable indoor farming solutions for sustainable crop production."",""sources"":{""clientCategories"":""https://www.intelligentgrowthsolutions.com/solutions"",""companyDescription"":""https://www.intelligentgrowthsolutions.com/about/who-we-are"",""geographicFocus"":""https://www.intelligentgrowthsolutions.com/contact"",""keyExecutives"":""https://www.intelligentgrowthsolutions.com/people/crew"",""productDescription"":""https://www.intelligentgrowthsolutions.com/product""},""websiteURL"":""https://www.intelligentgrowthsolutions.com/""}" -Fresh Inset,https://freshinset.com/,Radix Ventures,freshinset.com,https://www.linkedin.com/company/fresh-inset,"{""seniorLeadership"":[{""name"":""Andrzej Wolan"",""title"":""Chief Executive Officer of Fresh Inset S.A."",""linkedinUrl"":""https://www.linkedin.com/in/andrzej-wolan-800b3189""},{""name"":""Tim Malefyt"",""title"":""Chief Technology Officer"",""linkedinUrl"":""https://www.linkedin.com/in/tim-malefyt-22785a17""},{""name"":""Juan Llauro"",""title"":""Chief Commercial & Marketing Officer"",""linkedinUrl"":""https://www.linkedin.com/in/juanllauro""},{""name"":""Anna Strzelczyk-Madej"",""title"":""Head of Finance"",""linkedinUrl"":""https://www.linkedin.com/in/anna-strzelczyk-madej-989907167""},{""name"":""Jochen Kager"",""title"":""Head of Commercial Operations EMEA"",""linkedinUrl"":""https://it.linkedin.com/in/jochen-kager-3472a549""},{""name"":""Kevin Frye"",""title"":""Vice President, North America"",""linkedinUrl"":""https://www.linkedin.com/in/kevinfrye1""},{""name"":""Keith Culver"",""title"":""US Commercial Lead"",""linkedinUrl"":null}]}","{""seniorLeadership"":[{""name"":""Andrzej Wolan"",""title"":""Chief Executive Officer of Fresh Inset S.A."",""linkedinUrl"":""https://www.linkedin.com/in/andrzej-wolan-800b3189""},{""name"":""Tim Malefyt"",""title"":""Chief Technology Officer"",""linkedinUrl"":""https://www.linkedin.com/in/tim-malefyt-22785a17""},{""name"":""Juan Llauro"",""title"":""Chief Commercial & Marketing Officer"",""linkedinUrl"":""https://www.linkedin.com/in/juanllauro""},{""name"":""Anna Strzelczyk-Madej"",""title"":""Head of Finance"",""linkedinUrl"":""https://www.linkedin.com/in/anna-strzelczyk-madej-989907167""},{""name"":""Jochen Kager"",""title"":""Head of Commercial Operations EMEA"",""linkedinUrl"":""https://it.linkedin.com/in/jochen-kager-3472a549""},{""name"":""Kevin Frye"",""title"":""Vice President, North America"",""linkedinUrl"":""https://www.linkedin.com/in/kevinfrye1""},{""name"":""Keith Culver"",""title"":""US Commercial Lead"",""linkedinUrl"":null}]}","{ - ""websiteURL"": ""https://freshinset.com/"", - ""companyDescription"": ""Fresh Inset provides technologies that extend the freshness of fruits and vegetables after harvest to reduce food waste globally. Their mission includes making these technologies simple, affordable, and widely accessible while preserving the nutritional value of produce."", - ""productDescription"": ""Fresh Inset offers Vidre+, a simple sticker technology applied inside produce or floral packaging that slows down maturation, protects freshness, and prolongs shelf life for various crops. Vidre+ stickers are compatible with all packaging types, including traditional and eco-friendly materials, designed to extend quality and value of produce and flowers."", - ""clientCategories"": [""Suppliers and retailers of fruits, vegetables, and flowers across the supply chain""], - ""sectorDescription"": ""Operates in the food preservation and packaging technologies sector, providing solutions to extend the shelf life of perishable fresh produce."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Andrzej Wolan, PhD"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Krzysztof Czaplicki"", ""title"": ""COO and Co-founder"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Tim Malefyt, PhD"", ""title"": ""Global Director for R&D in international markets"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Alfred Malarin"", ""title"": ""Latam Biz Dev & Regulatory"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Juan llauro"", ""title"": ""Consulting Director"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Lula Czajkowska"", ""title"": ""Project Manager"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Jeferson Nunes"", ""title"": ""MD LATAM"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company website does not provide specific headquarters address or detailed geographic sales region information. The About Us and Contact pages provide leadership and contact phone but no clear headquarters location or distinct sales regions."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://freshinset.com/about-us#menu"", - ""productDescription"": ""https://freshinset.com/"", - ""clientCategories"": ""https://freshinset.com/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://freshinset.com/about-us#menu"" - } -}","{ - ""websiteURL"": ""https://freshinset.com/"", - ""companyDescription"": ""Fresh Inset provides technologies that extend the freshness of fruits and vegetables after harvest to reduce food waste globally. Their mission includes making these technologies simple, affordable, and widely accessible while preserving the nutritional value of produce."", - ""productDescription"": ""Fresh Inset offers Vidre+, a simple sticker technology applied inside produce or floral packaging that slows down maturation, protects freshness, and prolongs shelf life for various crops. Vidre+ stickers are compatible with all packaging types, including traditional and eco-friendly materials, designed to extend quality and value of produce and flowers."", - ""clientCategories"": [""Suppliers and retailers of fruits, vegetables, and flowers across the supply chain""], - ""sectorDescription"": ""Operates in the food preservation and packaging technologies sector, providing solutions to extend the shelf life of perishable fresh produce."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Andrzej Wolan, PhD"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Krzysztof Czaplicki"", ""title"": ""COO and Co-founder"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Tim Malefyt, PhD"", ""title"": ""Global Director for R&D in international markets"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Alfred Malarin"", ""title"": ""Latam Biz Dev & Regulatory"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Juan llauro"", ""title"": ""Consulting Director"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Lula Czajkowska"", ""title"": ""Project Manager"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""}, - {""name"": ""Jeferson Nunes"", ""title"": ""MD LATAM"", ""sourceUrl"": ""https://freshinset.com/about-us#menu""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company website does not provide specific headquarters address or detailed geographic sales region information. The About Us and Contact pages provide leadership and contact phone but no clear headquarters location or distinct sales regions."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://freshinset.com/about-us#menu"", - ""productDescription"": ""https://freshinset.com/"", - ""clientCategories"": ""https://freshinset.com/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://freshinset.com/about-us#menu"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://freshinset.com"", - ""companyDescription"": ""Fresh Inset provides technologies that extend the freshness of fruits and vegetables after harvest to reduce food waste globally. Their mission includes making these technologies simple, affordable, and widely accessible while preserving the nutritional value of produce."", - ""productDescription"": ""Fresh Inset offers Vidre+, a simple sticker technology applied inside produce or floral packaging that slows down maturation, protects freshness, and prolongs shelf life for various crops. Vidre+ stickers are compatible with all packaging types, including traditional and eco-friendly materials, designed to extend quality and value of produce and flowers."", - ""clientCategories"": [ - ""Suppliers of Fruits"", - ""Retailers of Fruits"", - ""Suppliers of Vegetables"", - ""Retailers of Vegetables"", - ""Suppliers of Flowers"", - ""Retailers of Flowers"" - ], - ""sectorDescription"": ""Operates in the food preservation and packaging technologies sector, providing solutions to extend the shelf life of perishable fresh produce."", - ""geographicFocus"": ""Global operations including Europe, Latin America, and North America with registered presence and market activities reported especially in Poland, Latin America, Peru, and the U.S."", - ""keyExecutives"": [ - { - ""name"": ""Andrzej Wolan, PhD"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Krzysztof Czaplicki"", - ""title"": ""COO and Co-founder"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Tim Malefyt, PhD"", - ""title"": ""Global Director for R&D in International Markets / Chief Technology Officer"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Juan Llauro"", - ""title"": ""Consulting Director / Chief Commercial & Marketing Officer"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Alfred Malarin"", - ""title"": ""Latam Biz Dev & Regulatory"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Lula Czajkowska"", - ""title"": ""Project Manager"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Jeferson Nunes"", - ""title"": ""MD LATAM"", - ""sourceUrl"": ""https://freshinset.com/about-us#menu"" - }, - { - ""name"": ""Anna Strzelczyk-Madej"", - ""title"": ""Head of Finance"", - ""sourceUrl"": ""https://www.linkedin.com/in/anna-strzelczyk-madej-989907167"" - }, - { - ""name"": ""Jochen Kager"", - ""title"": ""Head of Commercial Operations EMEA"", - ""sourceUrl"": ""https://it.linkedin.com/in/jochen-kager-3472a549"" - }, - { - ""name"": ""Kevin Frye"", - ""title"": ""Vice President, North America"", - ""sourceUrl"": ""https://www.linkedin.com/in/kevinfrye1"" - }, - { - ""name"": ""Keith Culver"", - ""title"": ""US Commercial Lead"", - ""sourceUrl"": """" - } - ], - ""researcherNotes"": ""Fresh Inset S.A. is confirmed as a technology company based in Toruń, Poland, founded in 2017, specializing in 1-MCP technology for extending shelf life of fruits, vegetables, and flowers. The company has a global operational footprint with notable presence in Europe, Latin America (including Peru), and North America (U.S.), supported by leadership roles focused on these regions. Precise headquarters address is Ul. Wileńska 4/A017, Toruń, Kujawsko-Pomorskie, Poland. Some executive titles vary slightly between company website and LinkedIn but reflect the same leadership individuals. Geographic focus was inferred from multiple company sources and regional leadership roles. Vidre+ technology is patented and registered in multiple markets. No direct official filings found within search limits, but multiple company-controlled and regional sources corroborate critical data[2][3][4]."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://freshinset.com/about-us#menu"", - ""productDescription"": ""https://freshinset.com/"", - ""clientCategories"": ""https://freshinset.com/"", - ""geographicFocus"": ""https://expo.gov.pl/en/partner/fresh-inset-s-a/"", - ""keyExecutives"": ""https://freshinset.com/about-us#menu"" - } -}","{""clientCategories"":[""Suppliers of Fruits"",""Retailers of Fruits"",""Suppliers of Vegetables"",""Retailers of Vegetables"",""Suppliers of Flowers"",""Retailers of Flowers""],""companyDescription"":""Fresh Inset provides technologies that extend the freshness of fruits and vegetables after harvest to reduce food waste globally. Their mission includes making these technologies simple, affordable, and widely accessible while preserving the nutritional value of produce."",""geographicFocus"":""Global operations including Europe, Latin America, and North America with registered presence and market activities reported especially in Poland, Latin America, Peru, and the U.S."",""keyExecutives"":[{""name"":""Andrzej Wolan, PhD"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""CEO and Co-founder""},{""name"":""Krzysztof Czaplicki"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""COO and Co-founder""},{""name"":""Tim Malefyt, PhD"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Global Director for R&D in International Markets / Chief Technology Officer""},{""name"":""Juan Llauro"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Consulting Director / Chief Commercial & Marketing Officer""},{""name"":""Alfred Malarin"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Latam Biz Dev & Regulatory""},{""name"":""Lula Czajkowska"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Project Manager""},{""name"":""Jeferson Nunes"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""MD LATAM""},{""name"":""Anna Strzelczyk-Madej"",""sourceUrl"":""https://www.linkedin.com/in/anna-strzelczyk-madej-989907167"",""title"":""Head of Finance""},{""name"":""Jochen Kager"",""sourceUrl"":""https://it.linkedin.com/in/jochen-kager-3472a549"",""title"":""Head of Commercial Operations EMEA""},{""name"":""Kevin Frye"",""sourceUrl"":""https://www.linkedin.com/in/kevinfrye1"",""title"":""Vice President, North America""},{""name"":""Keith Culver"",""sourceUrl"":"""",""title"":""US Commercial Lead""}],""missingImportantFields"":[],""productDescription"":""Fresh Inset offers Vidre+, a simple sticker technology applied inside produce or floral packaging that slows down maturation, protects freshness, and prolongs shelf life for various crops. Vidre+ stickers are compatible with all packaging types, including traditional and eco-friendly materials, designed to extend quality and value of produce and flowers."",""researcherNotes"":""Fresh Inset S.A. is confirmed as a technology company based in Toruń, Poland, founded in 2017, specializing in 1-MCP technology for extending shelf life of fruits, vegetables, and flowers. The company has a global operational footprint with notable presence in Europe, Latin America (including Peru), and North America (U.S.), supported by leadership roles focused on these regions. Precise headquarters address is Ul. Wileńska 4/A017, Toruń, Kujawsko-Pomorskie, Poland. Some executive titles vary slightly between company website and LinkedIn but reflect the same leadership individuals. Geographic focus was inferred from multiple company sources and regional leadership roles. Vidre+ technology is patented and registered in multiple markets. No direct official filings found within search limits, but multiple company-controlled and regional sources corroborate critical data[2][3][4]."",""sectorDescription"":""Operates in the food preservation and packaging technologies sector, providing solutions to extend the shelf life of perishable fresh produce."",""sources"":{""clientCategories"":""https://freshinset.com/"",""companyDescription"":""https://freshinset.com/about-us#menu"",""geographicFocus"":""https://expo.gov.pl/en/partner/fresh-inset-s-a/"",""keyExecutives"":""https://freshinset.com/about-us#menu"",""productDescription"":""https://freshinset.com/""},""websiteURL"":""https://freshinset.com""}","Correctness: 98% Completeness: 95% The factual details about Fresh Inset S.A. are accurate and well-supported. The company is confirmed as a technology firm headquartered at Ul. Wileńska 4/A017, Toruń, Poland, specializing in 1-MCP based technologies to extend the shelf life of fruits, vegetables, and flowers[1][4]. Leadership roles including Andrzej Wolan, PhD as CEO and co-founder, Krzysztof Czaplicki as COO and co-founder, and other key executives match the company’s official website and associated LinkedIn profiles[3][4]. The product Vidre+, a patented sticker technology for prolonging freshness compatible with multiple packaging types, is corroborated by company sources highlighting its global market presence notably in Europe, Latin America, and North America[3][4]. Geographic focus is well documented with active operations in Poland, Peru, and the U.S.[1][3]. Minor variations in executive titles across sources do not materially affect correctness. The completeness score reflects the comprehensive inclusion of headquarters, leadership, technology, and geographic scope; public financial/funding data is limited or not disclosed, slightly restricting completeness but not unusual for this private tech company. Overall, the information is current as of at least late 2024 and drawn primarily from authoritative company-controlled sources and credible registries[1][3][4]. URLs: https://freshinset.com/about-us#menu, https://freshinset.com/blog/recent-news-from-fresh-inset/, https://www.emis.com/php/company-profile/PL/Fresh_Inset_SA_en_6965242.html, https://freshinset.pl/about-us","{""clientCategories"":[""Suppliers and retailers of fruits, vegetables, and flowers across the supply chain""],""companyDescription"":""Fresh Inset provides technologies that extend the freshness of fruits and vegetables after harvest to reduce food waste globally. Their mission includes making these technologies simple, affordable, and widely accessible while preserving the nutritional value of produce."",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Andrzej Wolan, PhD"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""CEO and Co-founder""},{""name"":""Krzysztof Czaplicki"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""COO and Co-founder""},{""name"":""Tim Malefyt, PhD"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Global Director for R&D in international markets""},{""name"":""Alfred Malarin"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Latam Biz Dev & Regulatory""},{""name"":""Juan llauro"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Consulting Director""},{""name"":""Lula Czajkowska"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""Project Manager""},{""name"":""Jeferson Nunes"",""sourceUrl"":""https://freshinset.com/about-us#menu"",""title"":""MD LATAM""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Fresh Inset offers Vidre+, a simple sticker technology applied inside produce or floral packaging that slows down maturation, protects freshness, and prolongs shelf life for various crops. Vidre+ stickers are compatible with all packaging types, including traditional and eco-friendly materials, designed to extend quality and value of produce and flowers."",""researcherNotes"":""The company website does not provide specific headquarters address or detailed geographic sales region information. The About Us and Contact pages provide leadership and contact phone but no clear headquarters location or distinct sales regions."",""sectorDescription"":""Operates in the food preservation and packaging technologies sector, providing solutions to extend the shelf life of perishable fresh produce."",""sources"":{""clientCategories"":""https://freshinset.com/"",""companyDescription"":""https://freshinset.com/about-us#menu"",""geographicFocus"":null,""keyExecutives"":""https://freshinset.com/about-us#menu"",""productDescription"":""https://freshinset.com/""},""websiteURL"":""https://freshinset.com/""}" -It's Fresh!,https://itsfresh.com,"Anterra Capital, Business Growth Fund, Praesidium, Zintinus",itsfresh.com,https://www.linkedin.com/company/it's-fresh-ltd,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://itsfresh.com"", - ""companyDescription"": ""It's Fresh Limited envisions a world with a more sustainable fresh produce supply-chain, dramatically reducing food wastage and providing consumers access to fruits and vegetables in peak condition. The company is committed to offering products and solutions benefiting all stakeholders from growers to end consumers. Their mission emphasizes creating packaging solutions that extend the freshness of produce, reduce wastage, and improve industry and environmental outcomes. It's Fresh uses its RYPEN Technology to support the UN's Sustainable Development Goals."", - ""productDescription"": ""It's Fresh develops and owns RYPEN Technology, an ethylene moderating technology for the fresh produce industry to extend shelf-life and reduce waste. Core offerings include: \n- Pad: absorbs moisture and controls ethylene inside packs\n- Case liner: polymer liner with embedded RYPEN for ethylene protection in transit and storage\n- Leaf: for loose packed produce providing ethylene moderation.\nThese products integrate with existing packaging, are customizable, and food-contact approved to EU and US FDA standards."", - ""clientCategories"": [""Growers"", ""Packers & Exporters"", ""Retailers"", ""Wholesale & Food Service"", ""Consumers""], - ""sectorDescription"": ""Operates in the agri-food technology sector, providing ethylene management packaging solutions to extend freshness and reduce waste in the fresh produce supply chain."", - ""geographicFocus"": ""HQ: 19D Chasewater Heath Business Park, Zone 1, Cobbett Road, Burntwood, WS7 3GL, United Kingdom; Sales Focus: Global fresh produce industry"", - ""keyExecutives"": [ - {""name"": ""Martin Court"", ""title"": ""Chair & Non-Executive Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Graham Ellis"", ""title"": ""CEO & Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Simon Hollingsworth"", ""title"": ""Company Secretary and Financial Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Adam Anders"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Katrin Brökelmann"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Olaf Koch"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Rowan Bird"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://itsfresh.com/about-us/"", - ""productDescription"": ""https://rypen.io/products/"", - ""clientCategories"": ""https://rypen.io/applications"", - ""geographicFocus"": ""https://itsfresh.com/contact-us/"", - ""keyExecutives"": ""https://itsfresh.com/investors/"" - } -}","{ - ""websiteURL"": ""https://itsfresh.com"", - ""companyDescription"": ""It's Fresh Limited envisions a world with a more sustainable fresh produce supply-chain, dramatically reducing food wastage and providing consumers access to fruits and vegetables in peak condition. The company is committed to offering products and solutions benefiting all stakeholders from growers to end consumers. Their mission emphasizes creating packaging solutions that extend the freshness of produce, reduce wastage, and improve industry and environmental outcomes. It's Fresh uses its RYPEN Technology to support the UN's Sustainable Development Goals."", - ""productDescription"": ""It's Fresh develops and owns RYPEN Technology, an ethylene moderating technology for the fresh produce industry to extend shelf-life and reduce waste. Core offerings include: \n- Pad: absorbs moisture and controls ethylene inside packs\n- Case liner: polymer liner with embedded RYPEN for ethylene protection in transit and storage\n- Leaf: for loose packed produce providing ethylene moderation.\nThese products integrate with existing packaging, are customizable, and food-contact approved to EU and US FDA standards."", - ""clientCategories"": [""Growers"", ""Packers & Exporters"", ""Retailers"", ""Wholesale & Food Service"", ""Consumers""], - ""sectorDescription"": ""Operates in the agri-food technology sector, providing ethylene management packaging solutions to extend freshness and reduce waste in the fresh produce supply chain."", - ""geographicFocus"": ""HQ: 19D Chasewater Heath Business Park, Zone 1, Cobbett Road, Burntwood, WS7 3GL, United Kingdom; Sales Focus: Global fresh produce industry"", - ""keyExecutives"": [ - {""name"": ""Martin Court"", ""title"": ""Chair & Non-Executive Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Graham Ellis"", ""title"": ""CEO & Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Simon Hollingsworth"", ""title"": ""Company Secretary and Financial Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Adam Anders"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Katrin Brökelmann"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Olaf Koch"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""}, - {""name"": ""Rowan Bird"", ""title"": ""Investor Director"", ""sourceUrl"": ""https://itsfresh.com/investors/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://itsfresh.com/about-us/"", - ""productDescription"": ""https://rypen.io/products/"", - ""clientCategories"": ""https://rypen.io/applications"", - ""geographicFocus"": ""https://itsfresh.com/contact-us/"", - ""keyExecutives"": ""https://itsfresh.com/investors/"" - } -}",[],"{ - ""websiteURL"": ""https://itsfresh.com"", - ""companyDescription"": ""It's Fresh Limited envisions a world with a more sustainable fresh produce supply-chain, dramatically reducing food wastage and providing consumers access to fruits and vegetables in peak condition. The company is committed to offering products and solutions benefiting all stakeholders from growers to end consumers. Their mission emphasizes creating packaging solutions that extend the freshness of produce, reduce wastage, and improve industry and environmental outcomes. It's Fresh uses its RYPEN Technology to support the UN's Sustainable Development Goals."", - ""productDescription"": ""It's Fresh develops and owns RYPEN Technology, an ethylene moderating technology for the fresh produce industry to extend shelf-life and reduce waste. Core offerings include:\n- Pad: absorbs moisture and controls ethylene inside packs\n- Case liner: polymer liner with embedded RYPEN for ethylene protection in transit and storage\n- Leaf: for loose packed produce providing ethylene moderation.\nThese products integrate with existing packaging, are customizable, and food-contact approved to EU and US FDA standards."", - ""clientCategories"": [ - ""Growers"", - ""Packers & Exporters"", - ""Retailers"", - ""Wholesale & Food Service"", - ""Consumers"" - ], - ""sectorDescription"": ""Operates in the agri-food technology sector, providing ethylene management packaging solutions to extend freshness and reduce waste in the fresh produce supply chain."", - ""geographicFocus"": ""Headquartered in the United Kingdom with a global sales focus serving the international fresh produce industry."", - ""keyExecutives"": [ - { - ""name"": ""Martin Court"", - ""title"": ""Chair & Non-Executive Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - }, - { - ""name"": ""Graham Ellis"", - ""title"": ""CEO & Investor Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - }, - { - ""name"": ""Simon Hollingsworth"", - ""title"": ""Company Secretary and Financial Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - }, - { - ""name"": ""Adam Anders"", - ""title"": ""Investor Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - }, - { - ""name"": ""Katrin Brökelmann"", - ""title"": ""Investor Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - }, - { - ""name"": ""Olaf Koch"", - ""title"": ""Investor Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - }, - { - ""name"": ""Rowan Bird"", - ""title"": ""Investor Director"", - ""sourceUrl"": ""https://itsfresh.com/investors/"" - } - ], - ""researcherNotes"": ""The company IT'S FRESH LIMITED based in Burntwood, UK, was incorporated in 2008 with company number 06660765, matching the domain itsfresh.com and the agri-food technology focus. Key executives listed on the official company investor page confirm leadership details. Geographic focus is broadly global for the fresh produce industry, as the company states global sales focus on their website. No critical fields remain missing based on available public and company-controlled sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://itsfresh.com/about-us/"", - ""productDescription"": ""https://rypen.io/products/"", - ""clientCategories"": ""https://rypen.io/applications"", - ""geographicFocus"": ""https://itsfresh.com/contact-us/"", - ""keyExecutives"": ""https://itsfresh.com/investors/"" - } -}","{""clientCategories"":[""Growers"",""Packers & Exporters"",""Retailers"",""Wholesale & Food Service"",""Consumers""],""companyDescription"":""It's Fresh Limited envisions a world with a more sustainable fresh produce supply-chain, dramatically reducing food wastage and providing consumers access to fruits and vegetables in peak condition. The company is committed to offering products and solutions benefiting all stakeholders from growers to end consumers. Their mission emphasizes creating packaging solutions that extend the freshness of produce, reduce wastage, and improve industry and environmental outcomes. It's Fresh uses its RYPEN Technology to support the UN's Sustainable Development Goals."",""geographicFocus"":""Headquartered in the United Kingdom with a global sales focus serving the international fresh produce industry."",""keyExecutives"":[{""name"":""Martin Court"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Chair & Non-Executive Director""},{""name"":""Graham Ellis"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""CEO & Investor Director""},{""name"":""Simon Hollingsworth"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Company Secretary and Financial Director""},{""name"":""Adam Anders"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""},{""name"":""Katrin Brökelmann"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""},{""name"":""Olaf Koch"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""},{""name"":""Rowan Bird"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""}],""missingImportantFields"":[],""productDescription"":""It's Fresh develops and owns RYPEN Technology, an ethylene moderating technology for the fresh produce industry to extend shelf-life and reduce waste. Core offerings include:\n- Pad: absorbs moisture and controls ethylene inside packs\n- Case liner: polymer liner with embedded RYPEN for ethylene protection in transit and storage\n- Leaf: for loose packed produce providing ethylene moderation.\nThese products integrate with existing packaging, are customizable, and food-contact approved to EU and US FDA standards."",""researcherNotes"":""The company IT'S FRESH LIMITED based in Burntwood, UK, was incorporated in 2008 with company number 06660765, matching the domain itsfresh.com and the agri-food technology focus. Key executives listed on the official company investor page confirm leadership details. Geographic focus is broadly global for the fresh produce industry, as the company states global sales focus on their website. No critical fields remain missing based on available public and company-controlled sources."",""sectorDescription"":""Operates in the agri-food technology sector, providing ethylene management packaging solutions to extend freshness and reduce waste in the fresh produce supply chain."",""sources"":{""clientCategories"":""https://rypen.io/applications"",""companyDescription"":""https://itsfresh.com/about-us/"",""geographicFocus"":""https://itsfresh.com/contact-us/"",""keyExecutives"":""https://itsfresh.com/investors/"",""productDescription"":""https://rypen.io/products/""},""websiteURL"":""https://itsfresh.com""}","Correctness: 95% Completeness: 90% The information about It's Fresh Limited is factually accurate and well-supported by multiple authoritative sources. The company was incorporated on 30 July 2008, with a registered office in Burntwood, Staffordshire, UK, confirmed by UK Companies House records[1][2][4]. Leadership details such as Graham Ellis as CEO, Simon Hollingsworth as Company Secretary and Financial Director, and other investor directors match the official company investor page and filings[3][https://itsfresh.com/investors/]. The core business focus on ethylene-moderating packaging technology (RYPEN Technology) to extend shelf life and reduce food waste aligns with the company’s described mission and product offerings on its official website and RYPEN product pages[https://itsfresh.com/about-us/][https://rypen.io/products/]. The company operates globally in the fresh produce supply chain sector, supported by their global sales focus and presence[https://itsfresh.com/contact-us/]. A recent £6.7 million funding round led by BGF and other investors was confirmed by a 2023 press release, confirming significant growth and investment activity[5]. Minor discrepancies include the exact founding year referenced in a press article stating 2011 vs. 2008 official incorporation; this likely reflects a commercial start date or rebranding rather than legal identity, and does not undermine core facts. Completeness is high but slightly reduced because detailed recent financial figures, product usage data, and explicit recent executive appointment dates for all directors beyond basic confirmations are not fully available here. No critical fields or major contradictions were identified. Overall, the profile is comprehensive and reliable based on the latest filings and company-controlled sources as of September 2025. -Sources: https://find-and-update.company-information.service.gov.uk/company/06660765, https://open.endole.co.uk/insight/company/06660765-it-s-fresh-limited, https://itsfresh.com/investors/, https://rypen.io/products/, https://foodvoices.co.uk/2023/04/its-fresh-ltd-secures-6-7-million-to-grow-its-innovative-food-waste-reduction-technology-business","{""clientCategories"":[""Growers"",""Packers & Exporters"",""Retailers"",""Wholesale & Food Service"",""Consumers""],""companyDescription"":""It's Fresh Limited envisions a world with a more sustainable fresh produce supply-chain, dramatically reducing food wastage and providing consumers access to fruits and vegetables in peak condition. The company is committed to offering products and solutions benefiting all stakeholders from growers to end consumers. Their mission emphasizes creating packaging solutions that extend the freshness of produce, reduce wastage, and improve industry and environmental outcomes. It's Fresh uses its RYPEN Technology to support the UN's Sustainable Development Goals."",""geographicFocus"":""HQ: 19D Chasewater Heath Business Park, Zone 1, Cobbett Road, Burntwood, WS7 3GL, United Kingdom; Sales Focus: Global fresh produce industry"",""keyExecutives"":[{""name"":""Martin Court"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Chair & Non-Executive Director""},{""name"":""Graham Ellis"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""CEO & Investor Director""},{""name"":""Simon Hollingsworth"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Company Secretary and Financial Director""},{""name"":""Adam Anders"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""},{""name"":""Katrin Brökelmann"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""},{""name"":""Olaf Koch"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""},{""name"":""Rowan Bird"",""sourceUrl"":""https://itsfresh.com/investors/"",""title"":""Investor Director""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""It's Fresh develops and owns RYPEN Technology, an ethylene moderating technology for the fresh produce industry to extend shelf-life and reduce waste. Core offerings include: \n- Pad: absorbs moisture and controls ethylene inside packs\n- Case liner: polymer liner with embedded RYPEN for ethylene protection in transit and storage\n- Leaf: for loose packed produce providing ethylene moderation.\nThese products integrate with existing packaging, are customizable, and food-contact approved to EU and US FDA standards."",""researcherNotes"":null,""sectorDescription"":""Operates in the agri-food technology sector, providing ethylene management packaging solutions to extend freshness and reduce waste in the fresh produce supply chain."",""sources"":{""clientCategories"":""https://rypen.io/applications"",""companyDescription"":""https://itsfresh.com/about-us/"",""geographicFocus"":""https://itsfresh.com/contact-us/"",""keyExecutives"":""https://itsfresh.com/investors/"",""productDescription"":""https://rypen.io/products/""},""websiteURL"":""https://itsfresh.com""}" -Airponix.com,https://airponix.com/,Henley Business Angels,airponix.com,https://www.linkedin.com/company/airponix,"{""seniorLeadership"":[{""fullName"":""Michael Ruggier"",""title"":""CEO & Founder"",""profileURL"":""https://www.linkedin.com/in/michael-ruggier-75981010""}]}","{""seniorLeadership"":[{""fullName"":""Michael Ruggier"",""title"":""CEO & Founder"",""profileURL"":""https://www.linkedin.com/in/michael-ruggier-75981010""}]}","{ - ""websiteURL"": ""https://airponix.com/"", - ""companyDescription"": ""Airponix is a company focused on reinventing agriculture through AI-driven technology that enables clean, scalable, and resource-efficient food production globally. Their mission is to provide sustainable farming solutions using a unique fog system within versatile A-frames that mimics nature to deliver optimal water and nutrition directly to the root hairs of plants. This system allows crops to absorb exactly what they need, promoting healthier growth and higher yields. Airponix operates within the agricultural technology sector, emphasizing low-carbon, low-water, and low-land use farming methods to address global food security challenges caused by water scarcity, land limitations, and climate change. Their technology supports vertical farming with high density, low energy consumption, and reduced labor input, aiming to offer better returns and environmental benefits."", - ""productDescription"": ""Airponix provides a patented fog-based AgriTech system that produces nutritious produce using 95% less water and no soil. Their core product is a unique nutrient-rich fog generation system that creates fine droplets smaller than a human hair, which nourish roots more effectively than traditional hydroponics or aeroponics. The system uses a low-carbon, zero-waste approach and requires much less land. The product supports scalable agriculture using a simple, low-cost A-frame structure that allows walk-in access for easy harvesting and monitoring. The growing process is soilless, reducing pest contamination and pesticide use, leading to cleaner, healthier crops. The system incorporates IoT technology for real-time sensor data, automated alerts, and remote adjustment of nutrients, cooling, and irrigation."", - ""clientCategories"": [ - ""International growers"", - ""Agricultural producers requiring customized farming solutions"", - ""Agriculture and horticulture industries, focusing on seed potato production and other crops"" - ], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative, sustainable, and scalable AI-driven farming solutions that use fog nutrient delivery for water and land-efficient crop production."", - ""geographicFocus"": ""HQ: Barn4 NIAB Cambridge Park Farm, Villa Rd, Impington, Histon, Cambridge, CB24 9NZ; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Michael Ruggier"", - ""title"": ""CEO & Founder"", - ""sourceUrl"": ""https://airponix.com/team"" - }, - { - ""name"": ""Charlotte Morton OBE"", - ""title"": ""Non-executive Director"", - ""sourceUrl"": ""https://airponix.com/team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://airponix.com/"", - ""productDescription"": ""https://airponix.com/technology/"", - ""clientCategories"": ""https://airponix.com/applications/"", - ""geographicFocus"": ""https://airponix.com/contact/"", - ""keyExecutives"": ""https://airponix.com/team/"" - } -}","{ - ""websiteURL"": ""https://airponix.com/"", - ""companyDescription"": ""Airponix is a company focused on reinventing agriculture through AI-driven technology that enables clean, scalable, and resource-efficient food production globally. Their mission is to provide sustainable farming solutions using a unique fog system within versatile A-frames that mimics nature to deliver optimal water and nutrition directly to the root hairs of plants. This system allows crops to absorb exactly what they need, promoting healthier growth and higher yields. Airponix operates within the agricultural technology sector, emphasizing low-carbon, low-water, and low-land use farming methods to address global food security challenges caused by water scarcity, land limitations, and climate change. Their technology supports vertical farming with high density, low energy consumption, and reduced labor input, aiming to offer better returns and environmental benefits."", - ""productDescription"": ""Airponix provides a patented fog-based AgriTech system that produces nutritious produce using 95% less water and no soil. Their core product is a unique nutrient-rich fog generation system that creates fine droplets smaller than a human hair, which nourish roots more effectively than traditional hydroponics or aeroponics. The system uses a low-carbon, zero-waste approach and requires much less land. The product supports scalable agriculture using a simple, low-cost A-frame structure that allows walk-in access for easy harvesting and monitoring. The growing process is soilless, reducing pest contamination and pesticide use, leading to cleaner, healthier crops. The system incorporates IoT technology for real-time sensor data, automated alerts, and remote adjustment of nutrients, cooling, and irrigation."", - ""clientCategories"": [ - ""International growers"", - ""Agricultural producers requiring customized farming solutions"", - ""Agriculture and horticulture industries, focusing on seed potato production and other crops"" - ], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative, sustainable, and scalable AI-driven farming solutions that use fog nutrient delivery for water and land-efficient crop production."", - ""geographicFocus"": ""HQ: Barn4 NIAB Cambridge Park Farm, Villa Rd, Impington, Histon, Cambridge, CB24 9NZ; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Michael Ruggier"", - ""title"": ""CEO & Founder"", - ""sourceUrl"": ""https://airponix.com/team"" - }, - { - ""name"": ""Charlotte Morton OBE"", - ""title"": ""Non-executive Director"", - ""sourceUrl"": ""https://airponix.com/team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://airponix.com/"", - ""productDescription"": ""https://airponix.com/technology/"", - ""clientCategories"": ""https://airponix.com/applications/"", - ""geographicFocus"": ""https://airponix.com/contact/"", - ""keyExecutives"": ""https://airponix.com/team/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://airponix.com"", - ""companyDescription"": ""Airponix is a company focused on reinventing agriculture through AI-driven technology that enables clean, scalable, and resource-efficient food production globally. Their mission is to provide sustainable farming solutions using a unique fog system within versatile A-frames that mimics nature to deliver optimal water and nutrition directly to the root hairs of plants. This system allows crops to absorb exactly what they need, promoting healthier growth and higher yields. Airponix operates within the agricultural technology sector, emphasizing low-carbon, low-water, and low-land use farming methods to address global food security challenges caused by water scarcity, land limitations, and climate change. Their technology supports vertical farming with high density, low energy consumption, and reduced labor input, aiming to offer better returns and environmental benefits."", - ""productDescription"": ""Airponix provides a patented fog-based AgriTech system that produces nutritious produce using 95% less water and no soil. Their core product is a unique nutrient-rich fog generation system that creates fine droplets smaller than a human hair, which nourish roots more effectively than traditional hydroponics or aeroponics. The system uses a low-carbon, zero-waste approach and requires much less land. The product supports scalable agriculture using a simple, low-cost A-frame structure that allows walk-in access for easy harvesting and monitoring. The growing process is soilless, reducing pest contamination and pesticide use, leading to cleaner, healthier crops. The system incorporates IoT technology for real-time sensor data, automated alerts, and remote adjustment of nutrients, cooling, and irrigation."", - ""clientCategories"": [ - ""International Growers"", - ""Agricultural Producers Requiring Customized Farming Solutions"", - ""Agriculture And Horticulture Industries, Focusing On Seed Potato Production And Other Crops"" - ], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative, sustainable, and scalable AI-driven farming solutions that use fog nutrient delivery for water and land-efficient crop production."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Michael Ruggier"", - ""title"": ""CEO & Founder"", - ""sourceUrl"": ""https://airponix.com/team"" - }, - { - ""name"": ""Charlotte Morton OBE"", - ""title"": ""Non-executive Director"", - ""sourceUrl"": ""https://airponix.com/team"" - } - ], - ""researcherNotes"": ""Geographic focus is unspecified on official sources and public company information, despite HQ registered in Cambridge, UK. No clear operational or sales footprint found in public disclosures or on company website. Company confirmed as AIRPONIX LTD based in Cambridge with incorporation in 2014, matching domain and executive names. Key executives confirmed via company website and LinkedIn profile of Michael Ruggier. The summary is based mainly on authoritative company site and UK Companies House data."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://airponix.com/"", - ""productDescription"": ""https://airponix.com/technology/"", - ""clientCategories"": ""https://airponix.com/applications/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://airponix.com/team/"" - } -}","{""clientCategories"":[""International Growers"",""Agricultural Producers Requiring Customized Farming Solutions"",""Agriculture And Horticulture Industries, Focusing On Seed Potato Production And Other Crops""],""companyDescription"":""Airponix is a company focused on reinventing agriculture through AI-driven technology that enables clean, scalable, and resource-efficient food production globally. Their mission is to provide sustainable farming solutions using a unique fog system within versatile A-frames that mimics nature to deliver optimal water and nutrition directly to the root hairs of plants. This system allows crops to absorb exactly what they need, promoting healthier growth and higher yields. Airponix operates within the agricultural technology sector, emphasizing low-carbon, low-water, and low-land use farming methods to address global food security challenges caused by water scarcity, land limitations, and climate change. Their technology supports vertical farming with high density, low energy consumption, and reduced labor input, aiming to offer better returns and environmental benefits."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Michael Ruggier"",""sourceUrl"":""https://airponix.com/team"",""title"":""CEO & Founder""},{""name"":""Charlotte Morton OBE"",""sourceUrl"":""https://airponix.com/team"",""title"":""Non-executive Director""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Airponix provides a patented fog-based AgriTech system that produces nutritious produce using 95% less water and no soil. Their core product is a unique nutrient-rich fog generation system that creates fine droplets smaller than a human hair, which nourish roots more effectively than traditional hydroponics or aeroponics. The system uses a low-carbon, zero-waste approach and requires much less land. The product supports scalable agriculture using a simple, low-cost A-frame structure that allows walk-in access for easy harvesting and monitoring. The growing process is soilless, reducing pest contamination and pesticide use, leading to cleaner, healthier crops. The system incorporates IoT technology for real-time sensor data, automated alerts, and remote adjustment of nutrients, cooling, and irrigation."",""researcherNotes"":""Geographic focus is unspecified on official sources and public company information, despite HQ registered in Cambridge, UK. No clear operational or sales footprint found in public disclosures or on company website. Company confirmed as AIRPONIX LTD based in Cambridge with incorporation in 2014, matching domain and executive names. Key executives confirmed via company website and LinkedIn profile of Michael Ruggier. The summary is based mainly on authoritative company site and UK Companies House data."",""sectorDescription"":""Operates in the agricultural technology sector, providing innovative, sustainable, and scalable AI-driven farming solutions that use fog nutrient delivery for water and land-efficient crop production."",""sources"":{""clientCategories"":""https://airponix.com/applications/"",""companyDescription"":""https://airponix.com/"",""geographicFocus"":null,""keyExecutives"":""https://airponix.com/team/"",""productDescription"":""https://airponix.com/technology/""},""websiteURL"":""https://airponix.com""}","Correctness: 95% Completeness: 85% The core factual claims about Airponix are accurate: it is a UK-based agricultural technology company incorporated in 2014 with company number 09256154, headquartered in Cambridge, focusing on a patented fog-based aeroponic system for soil-less, water-efficient crop production using a proprietary nutrient-rich fog that delivers nutrients directly to roots inside an A-frame structure. The CEO & Founder is Michael Ruggier and Charlotte Morton OBE is a company director (though not explicitly titled Non-executive Director in Companies House filings, she is recognized as a director both in filings and on the company site). The company emphasizes sustainability by using 95% less water than traditional methods and targets markets like the seed potato sector, with sales in regions including the Middle East and trials in the UK and Kenya. The technology incorporates IoT sensor data for real-time control, consistent with company descriptions. However, the geographic focus is not clearly defined in public materials beyond a UK base and international trial/sales mentions, which reduces completeness. Additionally, some minor differences appear in founding year (2014 per filings versus 2019 in one source) and employee count varies among sources (around 7 to <25). The company’s broader funding history (notably £1.5m or £2.28m raised including crowd funding and angel investors) is documented but not part of the original summary, slightly affecting completeness. Overall, the summary closely matches authoritative sources including UK Companies House filings [2][3], official company website [1], Seedrs investment page [1], and sector profiles [5]. -https://airponix.com/ -https://find-and-update.company-information.service.gov.uk/company/09256154 -https://europe.republic.com/airponix -https://www.worldagritechinnovation.com/sponsors/airponix","{""clientCategories"":[""International growers"",""Agricultural producers requiring customized farming solutions"",""Agriculture and horticulture industries, focusing on seed potato production and other crops""],""companyDescription"":""Airponix is a company focused on reinventing agriculture through AI-driven technology that enables clean, scalable, and resource-efficient food production globally. Their mission is to provide sustainable farming solutions using a unique fog system within versatile A-frames that mimics nature to deliver optimal water and nutrition directly to the root hairs of plants. This system allows crops to absorb exactly what they need, promoting healthier growth and higher yields. Airponix operates within the agricultural technology sector, emphasizing low-carbon, low-water, and low-land use farming methods to address global food security challenges caused by water scarcity, land limitations, and climate change. Their technology supports vertical farming with high density, low energy consumption, and reduced labor input, aiming to offer better returns and environmental benefits."",""geographicFocus"":""HQ: Barn4 NIAB Cambridge Park Farm, Villa Rd, Impington, Histon, Cambridge, CB24 9NZ; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Michael Ruggier"",""sourceUrl"":""https://airponix.com/team"",""title"":""CEO & Founder""},{""name"":""Charlotte Morton OBE"",""sourceUrl"":""https://airponix.com/team"",""title"":""Non-executive Director""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Airponix provides a patented fog-based AgriTech system that produces nutritious produce using 95% less water and no soil. Their core product is a unique nutrient-rich fog generation system that creates fine droplets smaller than a human hair, which nourish roots more effectively than traditional hydroponics or aeroponics. The system uses a low-carbon, zero-waste approach and requires much less land. The product supports scalable agriculture using a simple, low-cost A-frame structure that allows walk-in access for easy harvesting and monitoring. The growing process is soilless, reducing pest contamination and pesticide use, leading to cleaner, healthier crops. The system incorporates IoT technology for real-time sensor data, automated alerts, and remote adjustment of nutrients, cooling, and irrigation."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural technology sector, providing innovative, sustainable, and scalable AI-driven farming solutions that use fog nutrient delivery for water and land-efficient crop production."",""sources"":{""clientCategories"":""https://airponix.com/applications/"",""companyDescription"":""https://airponix.com/"",""geographicFocus"":""https://airponix.com/contact/"",""keyExecutives"":""https://airponix.com/team/"",""productDescription"":""https://airponix.com/technology/""},""websiteURL"":""https://airponix.com/""}" -TRYON Environnement,https://www.tryon-environnement.com,"EREN Groupe, Ovive, Starquest Capital",tryon-environnement.com,https://www.linkedin.com/company/tryon-environnement,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.tryon-environnement.com"", - ""companyDescription"": ""Notre équipe de spécialistes est passionnée et poussée au quotidien par la résolution des problématiques environnementales, à travers des innovations robustes et efficaces. Grâce aux obligations réglementaires, l’écologie est un formidable sujet de développement. Nous pouvons agir significativement pour l’environnement, tout en apportant du dynamisme économique, et souvent même de l’insertion et du lien social. Les trois composantes du développement durable prennent ici tout leurs sens. Nous sommes une bande de camarades passionnés, adaptatifs et exigeants, travaillant dans un esprit d’équipe, de transparence et d’intelligence collective. Rejoindre TRYON c’est avoir un job qui ait du sens et de l’impact, évoluer dans un environnement de travail pluridisciplinaire stimulant, et enrichir ses compétences."", - ""productDescription"": ""TRYON deploys modular units for local methanisation to valorize food biodéchets. They produce organic fertilizer, clean fuel (green gas purified and injected into natural gas networks), and promote an eco-circular economy. Services include biodéchets management (waste studies, sorting support, collection partnerships), project deployment (agreements, permits, financing, installation), unit operation (on-site operations, remote supervision, maintenance). The core product Modul'O is a small-scale, modular micro-methanization unit designed to locally valorize food biodéchets from economic activities and households. It produces biogas and organic fertilizer through a natural digestion process. The system is clean, flexible, automated, and remotely supervisable."", - ""clientCategories"": [""Local authorities"", ""Catering & large-scale retail"", ""Waste operators"", ""Farmers""], - ""sectorDescription"": ""Operates in the environmental technology sector, specializing in modular local methanization and biodéchets valorization to promote sustainable energy and circular economy."", - ""geographicFocus"": ""HQ: Grande voie des vignes 92290 Châtenay-Malabry, France; Additional address: 46 rue René Clair, 75018 Paris; Sales Focus: France"", - ""keyExecutives"": [ - { - ""name"": ""Jimmy Colomies"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide full details on other senior executives beyond the co-founder Jimmy Colomies."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.tryon-environnement.com/a-propos"", - ""productDescription"": ""https://www.tryon-environnement.com/le-service"", - ""clientCategories"": ""https://www.tryon-environnement.com/le-service"", - ""geographicFocus"": ""https://www.tryon-environnement.com/mentions-legales"", - ""keyExecutives"": ""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9lerer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"" - } -}","{ - ""websiteURL"": ""https://www.tryon-environnement.com"", - ""companyDescription"": ""Notre équipe de spécialistes est passionnée et poussée au quotidien par la résolution des problématiques environnementales, à travers des innovations robustes et efficaces. Grâce aux obligations réglementaires, l’écologie est un formidable sujet de développement. Nous pouvons agir significativement pour l’environnement, tout en apportant du dynamisme économique, et souvent même de l’insertion et du lien social. Les trois composantes du développement durable prennent ici tout leurs sens. Nous sommes une bande de camarades passionnés, adaptatifs et exigeants, travaillant dans un esprit d’équipe, de transparence et d’intelligence collective. Rejoindre TRYON c’est avoir un job qui ait du sens et de l’impact, évoluer dans un environnement de travail pluridisciplinaire stimulant, et enrichir ses compétences."", - ""productDescription"": ""TRYON deploys modular units for local methanisation to valorize food biodéchets. They produce organic fertilizer, clean fuel (green gas purified and injected into natural gas networks), and promote an eco-circular economy. Services include biodéchets management (waste studies, sorting support, collection partnerships), project deployment (agreements, permits, financing, installation), unit operation (on-site operations, remote supervision, maintenance). The core product Modul'O is a small-scale, modular micro-methanization unit designed to locally valorize food biodéchets from economic activities and households. It produces biogas and organic fertilizer through a natural digestion process. The system is clean, flexible, automated, and remotely supervisable."", - ""clientCategories"": [""Local authorities"", ""Catering & large-scale retail"", ""Waste operators"", ""Farmers""], - ""sectorDescription"": ""Operates in the environmental technology sector, specializing in modular local methanization and biodéchets valorization to promote sustainable energy and circular economy."", - ""geographicFocus"": ""HQ: Grande voie des vignes 92290 Châtenay-Malabry, France; Additional address: 46 rue René Clair, 75018 Paris; Sales Focus: France"", - ""keyExecutives"": [ - { - ""name"": ""Jimmy Colomies"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide full details on other senior executives beyond the co-founder Jimmy Colomies."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.tryon-environnement.com/a-propos"", - ""productDescription"": ""https://www.tryon-environnement.com/le-service"", - ""clientCategories"": ""https://www.tryon-environnement.com/le-service"", - ""geographicFocus"": ""https://www.tryon-environnement.com/mentions-legales"", - ""keyExecutives"": ""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9lerer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"" - } -}",[],"{ - ""websiteURL"": ""https://www.tryon-environnement.com"", - ""companyDescription"": ""TRYON is a specialist environmental technology company focused on deploying modular micro-methanization units that valorize local food biodéchets. Their mission is to address environmental challenges by turning organic waste into clean energy and organic fertilizer, supporting sustainable development and eco-circular economy models. TRYON serves a variety of clients including local authorities, catering and large-scale retail, waste operators, and farmers, emphasizing regulatory compliance, economic dynamism, and social inclusion within their multidisciplinary team culture."", - ""productDescription"": ""TRYON offers Modul'O, a modular and automated micro-methanization unit designed to locally process food biodéchets from businesses and households. This natural digestion process produces biogas, which is purified into green gas and injected into natural gas networks, and organic fertilizer used to enrich agricultural soils. TRYON provides end-to-end solutions including waste study, sorting support, partnership setup, project deployment, installation, on-site operations, remote supervision, and maintenance services, facilitating rapid and sustainable biodéchets valorization."", - ""clientCategories"": [ - ""Local Authorities"", - ""Catering & Large-Scale Retail"", - ""Waste Operators"", - ""Farmers"" - ], - ""sectorDescription"": ""Environmental technology company specializing in modular micro-methanization units for local biodéchets valorization to produce renewable energy and organic fertilizers within circular economy frameworks."", - ""geographicFocus"": ""Primary focus on France, operating mainly from headquarters in Châtenay-Malabry and Paris, serving French local authorities and commercial clients."", - ""keyExecutives"": [ - { - ""name"": ""Jimmy Colomies"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"" - } - ], - ""researcherNotes"": ""Key executive information is limited to the co-founder Jimmy Colomies; no other senior leadership details were found on the company website or LinkedIn. Geographic focus is confirmed as France through multiple company pages and mentions. The company’s primary product, Modul'O micro-methanization unit, is well documented. No regulatory filings or broader executive disclosures were found. Sources include the official company website and Banque des Territoires profile."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.tryon-environnement.com/a-propos"", - ""productDescription"": ""https://www.tryon-environnement.com/le-service"", - ""clientCategories"": ""https://www.tryon-environnement.com/le-service"", - ""geographicFocus"": ""https://www.tryon-environnement.com/mentions-legales"", - ""keyExecutives"": ""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"" - } -}","{""clientCategories"":[""Local Authorities"",""Catering & Large-Scale Retail"",""Waste Operators"",""Farmers""],""companyDescription"":""TRYON is a specialist environmental technology company focused on deploying modular micro-methanization units that valorize local food biodéchets. Their mission is to address environmental challenges by turning organic waste into clean energy and organic fertilizer, supporting sustainable development and eco-circular economy models. TRYON serves a variety of clients including local authorities, catering and large-scale retail, waste operators, and farmers, emphasizing regulatory compliance, economic dynamism, and social inclusion within their multidisciplinary team culture."",""geographicFocus"":""Primary focus on France, operating mainly from headquarters in Châtenay-Malabry and Paris, serving French local authorities and commercial clients."",""keyExecutives"":[{""name"":""Jimmy Colomies"",""sourceUrl"":""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""TRYON offers Modul'O, a modular and automated micro-methanization unit designed to locally process food biodéchets from businesses and households. This natural digestion process produces biogas, which is purified into green gas and injected into natural gas networks, and organic fertilizer used to enrich agricultural soils. TRYON provides end-to-end solutions including waste study, sorting support, partnership setup, project deployment, installation, on-site operations, remote supervision, and maintenance services, facilitating rapid and sustainable biodéchets valorization."",""researcherNotes"":""Key executive information is limited to the co-founder Jimmy Colomies; no other senior leadership details were found on the company website or LinkedIn. Geographic focus is confirmed as France through multiple company pages and mentions. The company’s primary product, Modul'O micro-methanization unit, is well documented. No regulatory filings or broader executive disclosures were found. Sources include the official company website and Banque des Territoires profile."",""sectorDescription"":""Environmental technology company specializing in modular micro-methanization units for local biodéchets valorization to produce renewable energy and organic fertilizers within circular economy frameworks."",""sources"":{""clientCategories"":""https://www.tryon-environnement.com/le-service"",""companyDescription"":""https://www.tryon-environnement.com/a-propos"",""geographicFocus"":""https://www.tryon-environnement.com/mentions-legales"",""keyExecutives"":""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"",""productDescription"":""https://www.tryon-environnement.com/le-service""},""websiteURL"":""https://www.tryon-environnement.com""}","Correctness: 98% Completeness: 90% TRYON is accurately described as a French environmental technology company specializing in modular micro-methanization units that locally process food biodéchets into green gas and organic fertilizer, confirming its operational focus and products as per the company website and multiple credible sources[1][2][3][5]. The geographic focus on France, particularly the Paris region and Île-de-France, matches information from corporate disclosures and regional project reports[1][3]. Co-founder Jimmy Colomies is cited as a key executive, consistent with the latest 2021 press release[1][3]. The detailed product offering, including Modul'O units for local valorization, waste study, sorting support, installation, and maintenance aligns with official company descriptions[3]. The mention of TRYON raising €6 million to scale development, and their unit inauguration in Carrières-sous-Poissy with capacity to process 4000-8000 tons per year, is supported by official communications[1][3]. Some minor completeness reductions stem from few details on broader senior leadership beyond the co-founder and lack of recent regulatory filings or extensive external investor disclosures. However, coverage of client segments (local authorities, catering, waste operators, farmers) and sustainability/economic goals is well documented[3][4]. Overall, the information is factually accurate and fairly complete for a private scale-up, supported by company and regional development sources dated through 2021–2023. -https://www.tryon-environnement.com -https://www.arec-idf.fr/fileadmin/DataStorageKit/AREC/Methanisation/20211103_TRYON_Communique___mise_en_service_M78.pdf -https://directory.startupluxembourg.com/companies/tryon -https://www.polytechnique-insights.com/en/columns/planet/micro-methanisation-turning-urban-food-waste-into-energy/","{""clientCategories"":[""Local authorities"",""Catering & large-scale retail"",""Waste operators"",""Farmers""],""companyDescription"":""Notre équipe de spécialistes est passionnée et poussée au quotidien par la résolution des problématiques environnementales, à travers des innovations robustes et efficaces. Grâce aux obligations réglementaires, l’écologie est un formidable sujet de développement. Nous pouvons agir significativement pour l’environnement, tout en apportant du dynamisme économique, et souvent même de l’insertion et du lien social. Les trois composantes du développement durable prennent ici tout leurs sens. Nous sommes une bande de camarades passionnés, adaptatifs et exigeants, travaillant dans un esprit d’équipe, de transparence et d’intelligence collective. Rejoindre TRYON c’est avoir un job qui ait du sens et de l’impact, évoluer dans un environnement de travail pluridisciplinaire stimulant, et enrichir ses compétences."",""geographicFocus"":""HQ: Grande voie des vignes 92290 Châtenay-Malabry, France; Additional address: 46 rue René Clair, 75018 Paris; Sales Focus: France"",""keyExecutives"":[{""name"":""Jimmy Colomies"",""sourceUrl"":""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9l%C3%A9rer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""TRYON deploys modular units for local methanisation to valorize food biodéchets. They produce organic fertilizer, clean fuel (green gas purified and injected into natural gas networks), and promote an eco-circular economy. Services include biodéchets management (waste studies, sorting support, collection partnerships), project deployment (agreements, permits, financing, installation), unit operation (on-site operations, remote supervision, maintenance). The core product Modul'O is a small-scale, modular micro-methanization unit designed to locally valorize food biodéchets from economic activities and households. It produces biogas and organic fertilizer through a natural digestion process. The system is clean, flexible, automated, and remotely supervisable."",""researcherNotes"":""The website does not provide full details on other senior executives beyond the co-founder Jimmy Colomies."",""sectorDescription"":""Operates in the environmental technology sector, specializing in modular local methanization and biodéchets valorization to promote sustainable energy and circular economy."",""sources"":{""clientCategories"":""https://www.tryon-environnement.com/le-service"",""companyDescription"":""https://www.tryon-environnement.com/a-propos"",""geographicFocus"":""https://www.tryon-environnement.com/mentions-legales"",""keyExecutives"":""https://www.tryon-environnement.com/post/tryon-l%C3%A8ve-6-m-pour-acc%C3%A9lerer-le-d%C3%A9veloppement-de-la-micro-m%C3%A9thanisation-des-biod%C3%A9chets-alimentaire"",""productDescription"":""https://www.tryon-environnement.com/le-service""},""websiteURL"":""https://www.tryon-environnement.com""}" -Saga Robotics,https://sagarobotics.com/,"Aker, Blystad Group, Dagens Næringsliv, Hatteland, ICP Ventures, Melesio Capital, MP Pensjon, Nysnø, Rabobank Food & Agri Innovation Fund, Sanden",sagarobotics.com,https://www.linkedin.com/company/saga-robotics/,"{""seniorLeadership"":[{""name"":""Pål Johan From"",""title"":""Founder"",""profileURL"":""https://www.linkedin.com/company/saga-robotics/""},{""name"":""Lars Grimstad"",""title"":""Founder"",""profileURL"":""https://www.linkedin.com/company/saga-robotics/""}]}","{""seniorLeadership"":[{""name"":""Pål Johan From"",""title"":""Founder"",""profileURL"":""https://www.linkedin.com/company/saga-robotics/""},{""name"":""Lars Grimstad"",""title"":""Founder"",""profileURL"":""https://www.linkedin.com/company/saga-robotics/""}]}","{ - ""websiteURL"": ""https://sagarobotics.com/"", - ""companyDescription"": ""Saga Robotics is a company specializing in agricultural robotics, developing the Thorvald platform, a multi-functional autonomous robot designed to support sustainable farming. Thorvald operates mainly in sectors like strawberry cultivation, grapevine growth, and other crops, providing solutions such as powdery mildew control through UV-C treatment and performing labor-intensive tasks autonomously. The company aims to enhance crop protection, increase quality and yield, and promote sustainability with low CO2 emissions and reduced fungicide use. Saga Robotics collaborates with growers to apply innovative technology to modern farming practices."", - ""productDescription"": ""Thorvald is a multi-functional, autonomous farming robot platform that can be customized for various environments like greenhouses, tunnels, open fields, and vineyards. Its modular design allows it to perform a wide range of agricultural tasks including UV-C light treatment for powdery mildew, fruit and vegetable picking, phenotyping, in-field transportation, grass cutting, spraying, and data collection/crop prediction. Thorvald operates autonomously, navigating using proprietary software, and has been tested extensively in real-world farming conditions. The platform emphasizes sustainability by aiming to reduce carbon footprint through solar-charged robotic operations."", - ""clientCategories"": [""Agricultural growers"", ""Research institutions""], - ""sectorDescription"": ""Operates in the agricultural robotics sector, providing autonomous, multi-functional robot platforms for crop protection and sustainable farming."", - ""geographicFocus"": ""HQ: Waldemar Thranes gate 84B, 0175 Oslo, Norway; Regional offices in the UK (Lincoln, Kent) and US (Paso Robles, CA); Sales focus includes these regions."", - ""keyExecutives"": [ - { - ""name"": ""Pål Johan From"", - ""title"": ""Co-Founder & General Manager US"", - ""sourceUrl"": ""https://sagarobotics.com/about/"" - } - ], - ""linkedDocuments"": [ - ""https://sagarobotics.com/secures-usd-11-million-as-thorvald-enters-commercial-breakout-phase"", - ""https://sagarobotics.com/saga-robotics-bitwise-agronomy-and-chambers-farm-forge-strategic-data-partnership-to-power-smarter-strawberry-production"", - ""https://sagarobotics.com/saga-robotics-appoints-sacha-de-la-noe-as-ceo-to-lead-next-phase-of-growth"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://sagarobotics.com/"", - ""productDescription"": ""https://sagarobotics.com/thorvald-platform/"", - ""clientCategories"": ""https://sagarobotics.com/crops/"", - ""geographicFocus"": ""https://sagarobotics.com/contact/"", - ""keyExecutives"": ""https://sagarobotics.com/about/"" - } -}","{ - ""websiteURL"": ""https://sagarobotics.com/"", - ""companyDescription"": ""Saga Robotics is a company specializing in agricultural robotics, developing the Thorvald platform, a multi-functional autonomous robot designed to support sustainable farming. Thorvald operates mainly in sectors like strawberry cultivation, grapevine growth, and other crops, providing solutions such as powdery mildew control through UV-C treatment and performing labor-intensive tasks autonomously. The company aims to enhance crop protection, increase quality and yield, and promote sustainability with low CO2 emissions and reduced fungicide use. Saga Robotics collaborates with growers to apply innovative technology to modern farming practices."", - ""productDescription"": ""Thorvald is a multi-functional, autonomous farming robot platform that can be customized for various environments like greenhouses, tunnels, open fields, and vineyards. Its modular design allows it to perform a wide range of agricultural tasks including UV-C light treatment for powdery mildew, fruit and vegetable picking, phenotyping, in-field transportation, grass cutting, spraying, and data collection/crop prediction. Thorvald operates autonomously, navigating using proprietary software, and has been tested extensively in real-world farming conditions. The platform emphasizes sustainability by aiming to reduce carbon footprint through solar-charged robotic operations."", - ""clientCategories"": [""Agricultural growers"", ""Research institutions""], - ""sectorDescription"": ""Operates in the agricultural robotics sector, providing autonomous, multi-functional robot platforms for crop protection and sustainable farming."", - ""geographicFocus"": ""HQ: Waldemar Thranes gate 84B, 0175 Oslo, Norway; Regional offices in the UK (Lincoln, Kent) and US (Paso Robles, CA); Sales focus includes these regions."", - ""keyExecutives"": [ - { - ""name"": ""Pål Johan From"", - ""title"": ""Co-Founder & General Manager US"", - ""sourceUrl"": ""https://sagarobotics.com/about/"" - } - ], - ""linkedDocuments"": [ - ""https://sagarobotics.com/secures-usd-11-million-as-thorvald-enters-commercial-breakout-phase"", - ""https://sagarobotics.com/saga-robotics-bitwise-agronomy-and-chambers-farm-forge-strategic-data-partnership-to-power-smarter-strawberry-production"", - ""https://sagarobotics.com/saga-robotics-appoints-sacha-de-la-noe-as-ceo-to-lead-next-phase-of-growth"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://sagarobotics.com/"", - ""productDescription"": ""https://sagarobotics.com/thorvald-platform/"", - ""clientCategories"": ""https://sagarobotics.com/crops/"", - ""geographicFocus"": ""https://sagarobotics.com/contact/"", - ""keyExecutives"": ""https://sagarobotics.com/about/"" - } -}",[],"{ - ""websiteURL"": ""https://sagarobotics.com/"", - ""companyDescription"": ""Saga Robotics specializes in agricultural robotics, developing the Thorvald platform, a multi-functional autonomous robot designed to enhance sustainable farming. The company serves agricultural growers and research institutions by providing robotic solutions that improve crop protection, quality, and yield while reducing fungicide use and CO2 emissions. Their technology supports sectors like strawberry cultivation and grapevine growth with an emphasis on modern, sustainable farming practices."", - ""productDescription"": ""Thorvald is a modular, autonomous farming robot platform customizable for various environments including greenhouses, tunnels, open fields, and vineyards. It performs tasks such as UV-C light treatment to control powdery mildew, fruit and vegetable picking, phenotyping, in-field transportation, grass cutting, spraying, and crop data collection and prediction. Operating with proprietary autonomous navigation software, Thorvald promotes sustainability through solar charging and reduced chemical use."", - ""clientCategories"": [""Agricultural Growers"", ""Research Institutions""], - ""sectorDescription"": ""Operates in the agricultural robotics sector, providing autonomous, multi-functional robot platforms for crop protection and sustainable farming."", - ""geographicFocus"": ""Primary sales and operations focus on Norway, United Kingdom, and United States, with regional offices in Oslo (Norway), Lincoln and Kent (UK), and Paso Robles, California (US)."", - ""keyExecutives"": [ - { - ""name"": ""Pål Johan From"", - ""title"": ""Co-Founder & General Manager US"", - ""sourceUrl"": ""https://sagarobotics.com/about/"" - }, - { - ""name"": ""Lars Grimstad"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.linkedin.com/company/saga-robotics/"" - } - ], - ""researcherNotes"": ""The company was verified through domain matching, HQ location in Oslo, and known flagship product Thorvald. The founding year is 2016 according to business media. Key executives include co-founders Pål Johan From and Lars Grimstad, confirmed via company About page and LinkedIn. Geographic focus is explicitly Norway, UK, and US with offices and commercial activity. The UK subsidiary incorporated since 2004 with another company name prior to Saga Robotics is unrelated to origin and does not conflict with Norway HQ or product details."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://sagarobotics.com/"", - ""productDescription"": ""https://sagarobotics.com/thorvald-platform/"", - ""clientCategories"": ""https://sagarobotics.com/crops/"", - ""geographicFocus"": ""https://sagarobotics.com/contact/"", - ""keyExecutives"": ""https://sagarobotics.com/about/"" - } -}","{""clientCategories"":[""Agricultural Growers"",""Research Institutions""],""companyDescription"":""Saga Robotics specializes in agricultural robotics, developing the Thorvald platform, a multi-functional autonomous robot designed to enhance sustainable farming. The company serves agricultural growers and research institutions by providing robotic solutions that improve crop protection, quality, and yield while reducing fungicide use and CO2 emissions. Their technology supports sectors like strawberry cultivation and grapevine growth with an emphasis on modern, sustainable farming practices."",""geographicFocus"":""Primary sales and operations focus on Norway, United Kingdom, and United States, with regional offices in Oslo (Norway), Lincoln and Kent (UK), and Paso Robles, California (US)."",""keyExecutives"":[{""name"":""Pål Johan From"",""sourceUrl"":""https://sagarobotics.com/about/"",""title"":""Co-Founder & General Manager US""},{""name"":""Lars Grimstad"",""sourceUrl"":""https://www.linkedin.com/company/saga-robotics/"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Thorvald is a modular, autonomous farming robot platform customizable for various environments including greenhouses, tunnels, open fields, and vineyards. It performs tasks such as UV-C light treatment to control powdery mildew, fruit and vegetable picking, phenotyping, in-field transportation, grass cutting, spraying, and crop data collection and prediction. Operating with proprietary autonomous navigation software, Thorvald promotes sustainability through solar charging and reduced chemical use."",""researcherNotes"":""The company was verified through domain matching, HQ location in Oslo, and known flagship product Thorvald. The founding year is 2016 according to business media. Key executives include co-founders Pål Johan From and Lars Grimstad, confirmed via company About page and LinkedIn. Geographic focus is explicitly Norway, UK, and US with offices and commercial activity. The UK subsidiary incorporated since 2004 with another company name prior to Saga Robotics is unrelated to origin and does not conflict with Norway HQ or product details."",""sectorDescription"":""Operates in the agricultural robotics sector, providing autonomous, multi-functional robot platforms for crop protection and sustainable farming."",""sources"":{""clientCategories"":""https://sagarobotics.com/crops/"",""companyDescription"":""https://sagarobotics.com/"",""geographicFocus"":""https://sagarobotics.com/contact/"",""keyExecutives"":""https://sagarobotics.com/about/"",""productDescription"":""https://sagarobotics.com/thorvald-platform/""},""websiteURL"":""https://sagarobotics.com/""}","Correctness: 98% Completeness: 95% The provided description of Saga Robotics is highly accurate and comprehensive based on multiple recent and authoritative sources. Saga Robotics was founded in 2016 by Pål Johan From and Lars Grimstad, confirmed on the company About page and several recent articles[1][4][5]. The Thorvald platform is accurately depicted as a modular, autonomous robot performing diverse tasks including UV-C treatment for powdery mildew, fruit picking, phenotyping, and crop data collection, with sustainability goals such as reducing fungicide use and CO2 emissions clearly stated[1][3][5]. The geographic focus on Norway, UK, and US with offices in Oslo, Lincoln, Kent, and Paso Robles aligns with sources from the company website and AgFunderNews[1][5]. Leadership roles, including From as General Manager US and Grimstad as Co-Founder, are supported by official company pages[1][5]. Funding and commercial expansion details, including the recent $11.2M raise and scaling plans in UK strawberry and US vineyard markets, match public press reports, confirming ongoing activities and market penetration goals[1][2][5]. Minor details like exact headcount (about 50) and the UK subsidiary's unrelated prior name are less prominently covered but consistent with no conflicting data. Overall, the description is factually correct and inclusive of all material elements, with no significant omissions evident from the available sources. -Sources: https://sagarobotics.com/about/, https://sagarobotics.com/thorvald-platform/, https://agfundernews.com/saga-robotics-raises-11-2m-to-expand-fleet-of-bots-blasting-powdery-mildew-with-uv-c-light, https://igrownews.com/saga-robotics-latest-news/, https://www.agtechnavigator.com/Article/2025/08/14/saga-robotics-on-why-its-the-chasing-the-american-dream/","{""clientCategories"":[""Agricultural growers"",""Research institutions""],""companyDescription"":""Saga Robotics is a company specializing in agricultural robotics, developing the Thorvald platform, a multi-functional autonomous robot designed to support sustainable farming. Thorvald operates mainly in sectors like strawberry cultivation, grapevine growth, and other crops, providing solutions such as powdery mildew control through UV-C treatment and performing labor-intensive tasks autonomously. The company aims to enhance crop protection, increase quality and yield, and promote sustainability with low CO2 emissions and reduced fungicide use. Saga Robotics collaborates with growers to apply innovative technology to modern farming practices."",""geographicFocus"":""HQ: Waldemar Thranes gate 84B, 0175 Oslo, Norway; Regional offices in the UK (Lincoln, Kent) and US (Paso Robles, CA); Sales focus includes these regions."",""keyExecutives"":[{""name"":""Pål Johan From"",""sourceUrl"":""https://sagarobotics.com/about/"",""title"":""Co-Founder & General Manager US""}],""linkedDocuments"":[""https://sagarobotics.com/secures-usd-11-million-as-thorvald-enters-commercial-breakout-phase"",""https://sagarobotics.com/saga-robotics-bitwise-agronomy-and-chambers-farm-forge-strategic-data-partnership-to-power-smarter-strawberry-production"",""https://sagarobotics.com/saga-robotics-appoints-sacha-de-la-noe-as-ceo-to-lead-next-phase-of-growth""],""missingImportantFields"":[],""productDescription"":""Thorvald is a multi-functional, autonomous farming robot platform that can be customized for various environments like greenhouses, tunnels, open fields, and vineyards. Its modular design allows it to perform a wide range of agricultural tasks including UV-C light treatment for powdery mildew, fruit and vegetable picking, phenotyping, in-field transportation, grass cutting, spraying, and data collection/crop prediction. Thorvald operates autonomously, navigating using proprietary software, and has been tested extensively in real-world farming conditions. The platform emphasizes sustainability by aiming to reduce carbon footprint through solar-charged robotic operations."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural robotics sector, providing autonomous, multi-functional robot platforms for crop protection and sustainable farming."",""sources"":{""clientCategories"":""https://sagarobotics.com/crops/"",""companyDescription"":""https://sagarobotics.com/"",""geographicFocus"":""https://sagarobotics.com/contact/"",""keyExecutives"":""https://sagarobotics.com/about/"",""productDescription"":""https://sagarobotics.com/thorvald-platform/""},""websiteURL"":""https://sagarobotics.com/""}" -Agrilife Studio,https://agrilifestudio.com/en,"Bpifrance, Credit Mutuel Alliance Federale, Crédit Mutuel Arkéa",agrilifestudio.com,https://www.linkedin.com/company/agrilife-studio,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://agrilifestudio.com/en"", - ""companyDescription"": ""AgriLife Studio is the first impact startup studio fully dedicated to Agritech. Their mission is to source the best innovations to create, together with partners, impact startups that meet major market demands in Agriculture and Food. Their vision is to reposition land and agriculture at the center of today's and tomorrow's environmental and societal challenges. The studio is staffed by a professional team of experienced entrepreneurs and international experts in agricultural and food ecosystems with privileged access to technological platforms, research teams, and test clients. They offer legal and communication pre-negotiated packages and financing up to €2.5 million. AgriLife Studio co-creates sustainable industries in agriculture, food, and cleantech with passionate entrepreneurs, identifying major future stakes through thorough market analysis with partners."", - ""productDescription"": ""AgrilLife Studio is a mission-led startup studio dedicated to AgriTech, focusing on creating startups in sustainable, efficient, and profitable agriculture, healthy and tasty food production, and biosourced ingredients for sustainable industries (building, luxury). The studio integrates impact (environmental, societal) into its project selection, roadmap, and performance KPIs, and supports entrepreneurs through an Impact steering committee. It aims to accelerate innovation and co-create AgriTech companies with an international dimension."", - ""clientCategories"": [""Entrepreneurs with an entrepreneurial spirit interested in agritech solutions"", ""Laboratories"", ""Cooperatives"", ""Manufacturers"", ""Innovators from institutions like INRAE, AgroParisTech, and other technical or academic centers""], - ""sectorDescription"": ""Operates in the Agritech and Foodtech startup studio sector, focusing on creating impact-driven startups for sustainable agriculture, healthy food production, and biosourced ingredients."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Antoine Coutant"", ""title"": ""Co-Founder General Manager"", ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/""}, - {""name"": ""Priscilla"", ""title"": ""Co-Founder President"", ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/""}, - {""name"": ""Anne-Laure"", ""title"": ""Administrative and Financial Director"", ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No headquarters address or explicit geographic sales regions were found on the website or the contact page."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://agrilifestudio.com/en/home-en/"", - ""productDescription"": ""https://agrilifestudio.com/en/the-studio/"", - ""clientCategories"": ""https://agrilifestudio.com/en/nous-rejoindre/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://agrilifestudio.com/en/le-studio/"" - } -}","{ - ""websiteURL"": ""https://agrilifestudio.com/en"", - ""companyDescription"": ""AgriLife Studio is the first impact startup studio fully dedicated to Agritech. Their mission is to source the best innovations to create, together with partners, impact startups that meet major market demands in Agriculture and Food. Their vision is to reposition land and agriculture at the center of today's and tomorrow's environmental and societal challenges. The studio is staffed by a professional team of experienced entrepreneurs and international experts in agricultural and food ecosystems with privileged access to technological platforms, research teams, and test clients. They offer legal and communication pre-negotiated packages and financing up to €2.5 million. AgriLife Studio co-creates sustainable industries in agriculture, food, and cleantech with passionate entrepreneurs, identifying major future stakes through thorough market analysis with partners."", - ""productDescription"": ""AgrilLife Studio is a mission-led startup studio dedicated to AgriTech, focusing on creating startups in sustainable, efficient, and profitable agriculture, healthy and tasty food production, and biosourced ingredients for sustainable industries (building, luxury). The studio integrates impact (environmental, societal) into its project selection, roadmap, and performance KPIs, and supports entrepreneurs through an Impact steering committee. It aims to accelerate innovation and co-create AgriTech companies with an international dimension."", - ""clientCategories"": [""Entrepreneurs with an entrepreneurial spirit interested in agritech solutions"", ""Laboratories"", ""Cooperatives"", ""Manufacturers"", ""Innovators from institutions like INRAE, AgroParisTech, and other technical or academic centers""], - ""sectorDescription"": ""Operates in the Agritech and Foodtech startup studio sector, focusing on creating impact-driven startups for sustainable agriculture, healthy food production, and biosourced ingredients."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Antoine Coutant"", ""title"": ""Co-Founder General Manager"", ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/""}, - {""name"": ""Priscilla"", ""title"": ""Co-Founder President"", ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/""}, - {""name"": ""Anne-Laure"", ""title"": ""Administrative and Financial Director"", ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No headquarters address or explicit geographic sales regions were found on the website or the contact page."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://agrilifestudio.com/en/home-en/"", - ""productDescription"": ""https://agrilifestudio.com/en/the-studio/"", - ""clientCategories"": ""https://agrilifestudio.com/en/nous-rejoindre/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://agrilifestudio.com/en/le-studio/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://agrilifestudio.com/en"", - ""companyDescription"": ""AgriLife Studio is the first impact startup studio fully dedicated to Agritech, focused on creating startups that address major challenges in agriculture, food, and the bio-economy sectors. Founded in 2023, it aims to co-create impact-driven, profitable startups by partnering with entrepreneurs, laboratories, cooperatives, and industrial players. The studio emphasizes environmental and societal impact, leveraging a professional team with privileged access to technological platforms and financing up to €2.5 million."", - ""productDescription"": ""AgriLife Studio develops startups in sustainable agriculture, healthy food production, and biosourced ingredients for sustainable industries such as building and luxury sectors. It integrates environmental and societal impact metrics throughout its projects, supports entrepreneurs via an Impact steering committee, and accelerates innovation to build companies with international reach focused on agro-ecological transition and clean, local products."", - ""clientCategories"": [ - ""Entrepreneurs With An Entrepreneurial Spirit Interested In Agritech Solutions"", - ""Laboratories"", - ""Cooperatives"", - ""Manufacturers"", - ""Innovators From Institutions Like INRAE, AgroParisTech, And Other Technical Or Academic Centers"" - ], - ""sectorDescription"": ""Agritech and Foodtech startup studio specializing in creating impact-driven startups focused on sustainable agriculture, healthy food production, and biosourced materials."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Antoine Coutant"", - ""title"": ""Co-Founder General Manager"", - ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/"" - }, - { - ""name"": ""Priscilla Rozé-Pagès"", - ""title"": ""Co-Founder President"", - ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/"" - }, - { - ""name"": ""Anne-Laure"", - ""title"": ""Administrative and Financial Director"", - ""sourceUrl"": ""https://agrilifestudio.com/en/le-studio/"" - } - ], - ""researcherNotes"": ""Geographic focus remains unavailable despite review of company website and related sources. Key executives include co-founders Antoine Coutant and Priscilla Rozé-Pagès, confirmed by company site and a FrenchTech media article. Priscilla Rozé-Pagès has a significant background in strategic entrepreneurship and impact innovation. The studio was established in 2023 and has raised €25 million funding from recognized French investors such as Bpifrance and Crédit Mutuel Arkéa."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://agrilifestudio.com/en/home-en/"", - ""productDescription"": ""https://agrilifestudio.com/en/the-studio/"", - ""clientCategories"": ""https://agrilifestudio.com/en/nous-rejoindre/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://agrilifestudio.com/en/le-studio/"" - } -}","{""clientCategories"":[""Entrepreneurs With An Entrepreneurial Spirit Interested In Agritech Solutions"",""Laboratories"",""Cooperatives"",""Manufacturers"",""Innovators From Institutions Like INRAE, AgroParisTech, And Other Technical Or Academic Centers""],""companyDescription"":""AgriLife Studio is the first impact startup studio fully dedicated to Agritech, focused on creating startups that address major challenges in agriculture, food, and the bio-economy sectors. Founded in 2023, it aims to co-create impact-driven, profitable startups by partnering with entrepreneurs, laboratories, cooperatives, and industrial players. The studio emphasizes environmental and societal impact, leveraging a professional team with privileged access to technological platforms and financing up to €2.5 million."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Antoine Coutant"",""sourceUrl"":""https://agrilifestudio.com/en/le-studio/"",""title"":""Co-Founder General Manager""},{""name"":""Priscilla Rozé-Pagès"",""sourceUrl"":""https://agrilifestudio.com/en/le-studio/"",""title"":""Co-Founder President""},{""name"":""Anne-Laure"",""sourceUrl"":""https://agrilifestudio.com/en/le-studio/"",""title"":""Administrative and Financial Director""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""AgriLife Studio develops startups in sustainable agriculture, healthy food production, and biosourced ingredients for sustainable industries such as building and luxury sectors. It integrates environmental and societal impact metrics throughout its projects, supports entrepreneurs via an Impact steering committee, and accelerates innovation to build companies with international reach focused on agro-ecological transition and clean, local products."",""researcherNotes"":""Geographic focus remains unavailable despite review of company website and related sources. Key executives include co-founders Antoine Coutant and Priscilla Rozé-Pagès, confirmed by company site and a FrenchTech media article. Priscilla Rozé-Pagès has a significant background in strategic entrepreneurship and impact innovation. The studio was established in 2023 and has raised €25 million funding from recognized French investors such as Bpifrance and Crédit Mutuel Arkéa."",""sectorDescription"":""Agritech and Foodtech startup studio specializing in creating impact-driven startups focused on sustainable agriculture, healthy food production, and biosourced materials."",""sources"":{""clientCategories"":""https://agrilifestudio.com/en/nous-rejoindre/"",""companyDescription"":""https://agrilifestudio.com/en/home-en/"",""geographicFocus"":null,""keyExecutives"":""https://agrilifestudio.com/en/le-studio/"",""productDescription"":""https://agrilifestudio.com/en/the-studio/""},""websiteURL"":""https://agrilifestudio.com/en""}","Correctness: 98% Completeness: 90% The description of AgriLife Studio as a mission-led startup studio founded in 2023 fully dedicated to Agritech with a focus on sustainable agriculture, healthy food, and biosourced materials aligns closely with the company’s official website and a FrenchTech investor spotlight confirming the co-founders Antoine Coutant and Priscilla Rozé-Pagès and the studio’s mission to co-create impact-driven startups with strong environmental and societal engagement[1][2][3]. The funding amount of €25 million from investors like Bpifrance and Crédit Mutuel Arkéa is corroborated by the FrenchTech article dated 2023[1]. The product description emphasizing the agro-ecological transition and integration of an Impact steering committee matches official statements but geographic focus remains unspecified on the website and external sources[2][3]. Minor inconsistencies appear in reported total funding (~€25M vs. $26.9M from secondary sources), likely currency translation or rounding. No official filings were found to add further precision on geographic footprint or corporate registration. Overall, the profile is factually robust though missing explicit geographic focus reduces completeness slightly. The best sources are the company’s official site and validated media coverage from 2023: https://agrilifestudio.com/en, https://frenchtechjournal.com/investor-spotlight-agrilife-studio/, and https://www.welcometothejungle.com/en/companies/agrilifestudio.","{""clientCategories"":[""Entrepreneurs with an entrepreneurial spirit interested in agritech solutions"",""Laboratories"",""Cooperatives"",""Manufacturers"",""Innovators from institutions like INRAE, AgroParisTech, and other technical or academic centers""],""companyDescription"":""AgriLife Studio is the first impact startup studio fully dedicated to Agritech. Their mission is to source the best innovations to create, together with partners, impact startups that meet major market demands in Agriculture and Food. Their vision is to reposition land and agriculture at the center of today's and tomorrow's environmental and societal challenges. The studio is staffed by a professional team of experienced entrepreneurs and international experts in agricultural and food ecosystems with privileged access to technological platforms, research teams, and test clients. They offer legal and communication pre-negotiated packages and financing up to €2.5 million. AgriLife Studio co-creates sustainable industries in agriculture, food, and cleantech with passionate entrepreneurs, identifying major future stakes through thorough market analysis with partners."",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Antoine Coutant"",""sourceUrl"":""https://agrilifestudio.com/en/le-studio/"",""title"":""Co-Founder General Manager""},{""name"":""Priscilla"",""sourceUrl"":""https://agrilifestudio.com/en/le-studio/"",""title"":""Co-Founder President""},{""name"":""Anne-Laure"",""sourceUrl"":""https://agrilifestudio.com/en/le-studio/"",""title"":""Administrative and Financial Director""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""AgrilLife Studio is a mission-led startup studio dedicated to AgriTech, focusing on creating startups in sustainable, efficient, and profitable agriculture, healthy and tasty food production, and biosourced ingredients for sustainable industries (building, luxury). The studio integrates impact (environmental, societal) into its project selection, roadmap, and performance KPIs, and supports entrepreneurs through an Impact steering committee. It aims to accelerate innovation and co-create AgriTech companies with an international dimension."",""researcherNotes"":""No headquarters address or explicit geographic sales regions were found on the website or the contact page."",""sectorDescription"":""Operates in the Agritech and Foodtech startup studio sector, focusing on creating impact-driven startups for sustainable agriculture, healthy food production, and biosourced ingredients."",""sources"":{""clientCategories"":""https://agrilifestudio.com/en/nous-rejoindre/"",""companyDescription"":""https://agrilifestudio.com/en/home-en/"",""geographicFocus"":null,""keyExecutives"":""https://agrilifestudio.com/en/le-studio/"",""productDescription"":""https://agrilifestudio.com/en/the-studio/""},""websiteURL"":""https://agrilifestudio.com/en""}" -Planet Farms,https://www.planetfarms.ag/en,,planetfarms.ag,https://www.linkedin.com/company/planet-farms,"{""seniorLeadership"": [{""name"": ""Daniele Benatoff"",""title"": ""Co-Founder & Co-CEO"",""profileURL"": ""https://www.linkedin.com/in/daniele-benatoff""},{""name"": ""Corrado Barlocco"",""title"": ""Head of Finance"",""profileURL"": ""https://www.linkedin.com/in/corradobarlocco""}]}","{""seniorLeadership"": [{""name"": ""Daniele Benatoff"",""title"": ""Co-Founder & Co-CEO"",""profileURL"": ""https://www.linkedin.com/in/daniele-benatoff""},{""name"": ""Corrado Barlocco"",""title"": ""Head of Finance"",""profileURL"": ""https://www.linkedin.com/in/corradobarlocco""}]}","{ - ""websiteURL"": ""https://www.planetfarms.ag/en"", - ""companyDescription"": ""OUR VISION: Bring flavor to the world without starving its resources. Mission is to transform agriculture by building the ultimate sustainable farming business, feeding communities fresh, nutritious, flavorful food good for people and planet. VALUES include: GO VERTICAL (innovative vertical farming approach), FRESH THINKING (raising standards of produce and production), INNOV-ACTION (making innovation happen with technology and respect for nature), EVERGREEN RESPONSIBILITY (no artificial anything, pesticide-free, minimal environmental impact), GROWING UP (continuous development of innovative vertical farms and sustainable, tasty produce). STORY: Founded by Luca and Daniele, combining expertise in food technology and finance, aimed at breaking through traditional agriculture, grounded in Italian roots focused on food quality and flavor. Planet Farms is a purpose-driven, sustainable, innovative vertical farming company ensuring fresh, high-quality products with environmental responsibility."", - ""productDescription"": ""Planet Farms offers fresh, healthy, and nutritious pesticide-free products grown sustainably in one of the largest and most advanced vertical farms in Europe. Their farming production process includes vertical growing rooms with controlled environments balancing water, light, air, and soil; substrate tailored for each seed variety; advanced air filtering and temperature controls; mineral-enriched water delivery with recirculation; high-efficiency LED lighting replicating natural daylight; and AI-based monitoring and management systems. Key product offerings include:\n- Frescaah salad range\n- Various pesticide-free leafy greens and herbs grown in a pesticide-free environment"", - ""clientCategories"": [ - ""Food Industry"", - ""Fashion Industry"", - ""Telecommunications"", - ""Digital Solutions for Companies"", - ""Energy"", - ""Transportation"" - ], - ""sectorDescription"": ""Operates in the agri-tech vertical farming sector, innovating sustainable indoor agriculture technology to produce fresh, pesticide-free food close to urban centers with low environmental impact."", - ""geographicFocus"": ""HQ: Via Giuseppe Mazzini, Cirimido - 22070 - CO, Italy; Office: Piazzale Clotilde 6 - 20121 Milano (MI), Italy; Sales Focus: Primarily Europe, including Italy and expanding into the UK market."", - ""keyExecutives"": [ - { - ""name"": ""Luca Travaglini"", - ""title"": ""Co-Founder, expert in food production processes and visionary for vertical farming technology"", - ""sourceUrl"": ""https://www.planetfarms.ag/en"" - }, - { - ""name"": ""Daniele Benatoff"", - ""title"": ""Co-Founder, oversees strategic insight and sustainable growth, CEO"", - ""sourceUrl"": ""https://www.planetfarms.ag/en"" - } - ], - ""linkedDocuments"": [ - ""https://planetfarms.ag/files/PLANET%20FARMS_REPORT_FULL_11032024.pdf"" - ], - ""researcherNotes"": ""The website does not provide a comprehensive list of all C-level executives and exact corporate titles beyond the two co-founders. Client categories were inferred from partners and collaborations mentioned on the partner page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.planetfarms.ag/en"", - ""productDescription"": ""https://planetfarms.ag/en/products"", - ""clientCategories"": ""https://life.planetfarms.ag/en/partners"", - ""geographicFocus"": ""https://www.planetfarms.ag/en/keep-in-touch"", - ""keyExecutives"": ""https://www.planetfarms.ag/en"" - } -} -","{ - ""websiteURL"": ""https://www.planetfarms.ag/en"", - ""companyDescription"": ""OUR VISION: Bring flavor to the world without starving its resources. Mission is to transform agriculture by building the ultimate sustainable farming business, feeding communities fresh, nutritious, flavorful food good for people and planet. VALUES include: GO VERTICAL (innovative vertical farming approach), FRESH THINKING (raising standards of produce and production), INNOV-ACTION (making innovation happen with technology and respect for nature), EVERGREEN RESPONSIBILITY (no artificial anything, pesticide-free, minimal environmental impact), GROWING UP (continuous development of innovative vertical farms and sustainable, tasty produce). STORY: Founded by Luca and Daniele, combining expertise in food technology and finance, aimed at breaking through traditional agriculture, grounded in Italian roots focused on food quality and flavor. Planet Farms is a purpose-driven, sustainable, innovative vertical farming company ensuring fresh, high-quality products with environmental responsibility."", - ""productDescription"": ""Planet Farms offers fresh, healthy, and nutritious pesticide-free products grown sustainably in one of the largest and most advanced vertical farms in Europe. Their farming production process includes vertical growing rooms with controlled environments balancing water, light, air, and soil; substrate tailored for each seed variety; advanced air filtering and temperature controls; mineral-enriched water delivery with recirculation; high-efficiency LED lighting replicating natural daylight; and AI-based monitoring and management systems. Key product offerings include:\n- Frescaah salad range\n- Various pesticide-free leafy greens and herbs grown in a pesticide-free environment"", - ""clientCategories"": [ - ""Food Industry"", - ""Fashion Industry"", - ""Telecommunications"", - ""Digital Solutions for Companies"", - ""Energy"", - ""Transportation"" - ], - ""sectorDescription"": ""Operates in the agri-tech vertical farming sector, innovating sustainable indoor agriculture technology to produce fresh, pesticide-free food close to urban centers with low environmental impact."", - ""geographicFocus"": ""HQ: Via Giuseppe Mazzini, Cirimido - 22070 - CO, Italy; Office: Piazzale Clotilde 6 - 20121 Milano (MI), Italy; Sales Focus: Primarily Europe, including Italy and expanding into the UK market."", - ""keyExecutives"": [ - { - ""name"": ""Luca Travaglini"", - ""title"": ""Co-Founder, expert in food production processes and visionary for vertical farming technology"", - ""sourceUrl"": ""https://www.planetfarms.ag/en"" - }, - { - ""name"": ""Daniele Benatoff"", - ""title"": ""Co-Founder, oversees strategic insight and sustainable growth, CEO"", - ""sourceUrl"": ""https://www.planetfarms.ag/en"" - } - ], - ""linkedDocuments"": [ - ""https://planetfarms.ag/files/PLANET%20FARMS_REPORT_FULL_11032024.pdf"" - ], - ""researcherNotes"": ""The website does not provide a comprehensive list of all C-level executives and exact corporate titles beyond the two co-founders. Client categories were inferred from partners and collaborations mentioned on the partner page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.planetfarms.ag/en"", - ""productDescription"": ""https://planetfarms.ag/en/products"", - ""clientCategories"": ""https://life.planetfarms.ag/en/partners"", - ""geographicFocus"": ""https://www.planetfarms.ag/en/keep-in-touch"", - ""keyExecutives"": ""https://www.planetfarms.ag/en"" - } -} -",[],"{ - ""websiteURL"": ""https://www.planetfarms.ag/en"", - ""companyDescription"": ""Planet Farms is a purpose-driven, sustainable vertical farming company founded in 2018 in Milan by Luca Travaglini and Daniele Benatoff. The company is revolutionizing agriculture through innovative vertical farming technology to produce fresh, high-quality, pesticide-free food with low environmental impact. Rooted in Italian expertise and culinary tradition, Planet Farms aims to nourish communities with nutritious, flavorful produce while preserving planetary resources."", - ""productDescription"": ""Planet Farms delivers fresh, healthy, and nutritious pesticide-free leafy greens and herbs, grown sustainably in one of Europe's largest and most advanced vertical farms. Their controlled-environment vertical farming approach uses tailored substrates, mineral-enriched recirculating water, advanced air filtering, precise temperature and light controls with high-efficiency LED lighting, and AI-based monitoring to optimize crop quality and yield."", - ""clientCategories"": [ - ""Food Industry"", - ""Fashion Industry"", - ""Telecommunications"", - ""Digital Solutions for Companies"", - ""Energy"", - ""Transportation"" - ], - ""sectorDescription"": ""Operates in the agri-tech vertical farming sector, innovating sustainable indoor agriculture technology to produce fresh, pesticide-free food close to urban centers with low environmental impact."", - ""geographicFocus"": ""Primarily focused on European markets, including Italy, with expansion into the United Kingdom, Netherlands, Portugal, Switzerland, and other select European countries."", - ""keyExecutives"": [ - { - ""name"": ""Luca Travaglini"", - ""title"": ""Co-Founder, expert in food production processes and visionary for vertical farming technology"", - ""sourceUrl"": ""https://www.planetfarms.ag/en"" - }, - { - ""name"": ""Daniele Benatoff"", - ""title"": ""Co-Founder & Co-CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/daniele-benatoff"" - }, - { - ""name"": ""Corrado Barlocco"", - ""title"": ""Head of Finance"", - ""sourceUrl"": ""https://www.linkedin.com/in/corradobarlocco"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain match 'planetfarms.ag', founding details, and leadership names aligned with multiple sources including the official website and LinkedIn. Geographic focus extended beyond Italy to include UK, Netherlands, Portugal, and Switzerland as per B Corp Registry. CEO title on LinkedIn states Co-CEO for Daniele Benatoff vs. CEO on website, updated to LinkedIn for accuracy. No additional senior executives publicly verified beyond those listed. Geographic focus summarized combining company site and B Corp data. Missing fields are none."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.planetfarms.ag/en"", - ""productDescription"": ""https://planetfarms.ag/en/products"", - ""clientCategories"": ""https://life.planetfarms.ag/en/partners"", - ""geographicFocus"": ""https://www.bcorporation.net/find-a-b-corp/company/planet-farms-holding-spa/"", - ""keyExecutives"": ""https://www.linkedin.com/in/daniele-benatoff"" - } -}","{""clientCategories"":[""Food Industry"",""Fashion Industry"",""Telecommunications"",""Digital Solutions for Companies"",""Energy"",""Transportation""],""companyDescription"":""Planet Farms is a purpose-driven, sustainable vertical farming company founded in 2018 in Milan by Luca Travaglini and Daniele Benatoff. The company is revolutionizing agriculture through innovative vertical farming technology to produce fresh, high-quality, pesticide-free food with low environmental impact. Rooted in Italian expertise and culinary tradition, Planet Farms aims to nourish communities with nutritious, flavorful produce while preserving planetary resources."",""geographicFocus"":""Primarily focused on European markets, including Italy, with expansion into the United Kingdom, Netherlands, Portugal, Switzerland, and other select European countries."",""keyExecutives"":[{""name"":""Luca Travaglini"",""sourceUrl"":""https://www.planetfarms.ag/en"",""title"":""Co-Founder, expert in food production processes and visionary for vertical farming technology""},{""name"":""Daniele Benatoff"",""sourceUrl"":""https://www.linkedin.com/in/daniele-benatoff"",""title"":""Co-Founder & Co-CEO""},{""name"":""Corrado Barlocco"",""sourceUrl"":""https://www.linkedin.com/in/corradobarlocco"",""title"":""Head of Finance""}],""missingImportantFields"":[],""productDescription"":""Planet Farms delivers fresh, healthy, and nutritious pesticide-free leafy greens and herbs, grown sustainably in one of Europe's largest and most advanced vertical farms. Their controlled-environment vertical farming approach uses tailored substrates, mineral-enriched recirculating water, advanced air filtering, precise temperature and light controls with high-efficiency LED lighting, and AI-based monitoring to optimize crop quality and yield."",""researcherNotes"":""Company identity confirmed by domain match 'planetfarms.ag', founding details, and leadership names aligned with multiple sources including the official website and LinkedIn. Geographic focus extended beyond Italy to include UK, Netherlands, Portugal, and Switzerland as per B Corp Registry. CEO title on LinkedIn states Co-CEO for Daniele Benatoff vs. CEO on website, updated to LinkedIn for accuracy. No additional senior executives publicly verified beyond those listed. Geographic focus summarized combining company site and B Corp data. Missing fields are none."",""sectorDescription"":""Operates in the agri-tech vertical farming sector, innovating sustainable indoor agriculture technology to produce fresh, pesticide-free food close to urban centers with low environmental impact."",""sources"":{""clientCategories"":""https://life.planetfarms.ag/en/partners"",""companyDescription"":""https://www.planetfarms.ag/en"",""geographicFocus"":""https://www.bcorporation.net/find-a-b-corp/company/planet-farms-holding-spa/"",""keyExecutives"":""https://www.linkedin.com/in/daniele-benatoff"",""productDescription"":""https://planetfarms.ag/en/products""},""websiteURL"":""https://www.planetfarms.ag/en""}","Correctness: 98% Completeness: 95% The information about Planet Farms is factually accurate as confirmed by multiple recent authoritative sources. The company was founded in 2018 in Milan by Luca Travaglini and Daniele Benatoff, who serve as Co-Founders and Co-CEOs, with Corrado Barlocco as Head of Finance, matching leadership information from both the official website and LinkedIn profiles as of 2025-09-10[3][4]. Planet Farms produces pesticide-free leafy greens and herbs using advanced vertical farming with precise environmental controls and AI monitoring, consistent with the product description on their site and press materials[4]. Their geographic focus is primarily Europe, including Italy, UK, Netherlands, Portugal, Switzerland, with new investments confirmed in the UK and expansion plans in Scandinavia, per industry news and company press releases[2][4]. The company is described as sustainable, technology-driven, and purpose-driven, aligning with self-descriptions and recent interviews with leadership[1][3]. The minor correction concerns the CEO title: the company website sometimes states CEO but LinkedIn and latest sources confirm the Co-CEO title shared by Travaglini and Benatoff[3][4]. No significant omissions or inaccuracies were identified; however, additional detail on recent funding rounds beyond the Swiss Life joint venture could slightly enhance completeness but is not critical here[2]. Overall, the claim set is well supported by company-controlled officials and reputable trade sources. https://www.planetfarms.ag/en https://www.linkedin.com/in/daniele-benatoff https://www.just-food.com/interviews/we-are-profitable-planet-farms-ceo-daniele-benatoff-digs-into-vertical-farming-pitfalls-and-evolution-of-the-industry/ https://www.just-food.com/news/italys-planet-farms-uk-vertical-farm/","{""clientCategories"":[""Food Industry"",""Fashion Industry"",""Telecommunications"",""Digital Solutions for Companies"",""Energy"",""Transportation""],""companyDescription"":""OUR VISION: Bring flavor to the world without starving its resources. Mission is to transform agriculture by building the ultimate sustainable farming business, feeding communities fresh, nutritious, flavorful food good for people and planet. VALUES include: GO VERTICAL (innovative vertical farming approach), FRESH THINKING (raising standards of produce and production), INNOV-ACTION (making innovation happen with technology and respect for nature), EVERGREEN RESPONSIBILITY (no artificial anything, pesticide-free, minimal environmental impact), GROWING UP (continuous development of innovative vertical farms and sustainable, tasty produce). STORY: Founded by Luca and Daniele, combining expertise in food technology and finance, aimed at breaking through traditional agriculture, grounded in Italian roots focused on food quality and flavor. Planet Farms is a purpose-driven, sustainable, innovative vertical farming company ensuring fresh, high-quality products with environmental responsibility."",""geographicFocus"":""HQ: Via Giuseppe Mazzini, Cirimido - 22070 - CO, Italy; Office: Piazzale Clotilde 6 - 20121 Milano (MI), Italy; Sales Focus: Primarily Europe, including Italy and expanding into the UK market."",""keyExecutives"":[{""name"":""Luca Travaglini"",""sourceUrl"":""https://www.planetfarms.ag/en"",""title"":""Co-Founder, expert in food production processes and visionary for vertical farming technology""},{""name"":""Daniele Benatoff"",""sourceUrl"":""https://www.planetfarms.ag/en"",""title"":""Co-Founder, oversees strategic insight and sustainable growth, CEO""}],""linkedDocuments"":[""https://planetfarms.ag/files/PLANET%20FARMS_REPORT_FULL_11032024.pdf""],""missingImportantFields"":[],""productDescription"":""Planet Farms offers fresh, healthy, and nutritious pesticide-free products grown sustainably in one of the largest and most advanced vertical farms in Europe. Their farming production process includes vertical growing rooms with controlled environments balancing water, light, air, and soil; substrate tailored for each seed variety; advanced air filtering and temperature controls; mineral-enriched water delivery with recirculation; high-efficiency LED lighting replicating natural daylight; and AI-based monitoring and management systems. Key product offerings include:\n- Frescaah salad range\n- Various pesticide-free leafy greens and herbs grown in a pesticide-free environment"",""researcherNotes"":""The website does not provide a comprehensive list of all C-level executives and exact corporate titles beyond the two co-founders. Client categories were inferred from partners and collaborations mentioned on the partner page."",""sectorDescription"":""Operates in the agri-tech vertical farming sector, innovating sustainable indoor agriculture technology to produce fresh, pesticide-free food close to urban centers with low environmental impact."",""sources"":{""clientCategories"":""https://life.planetfarms.ag/en/partners"",""companyDescription"":""https://www.planetfarms.ag/en"",""geographicFocus"":""https://www.planetfarms.ag/en/keep-in-touch"",""keyExecutives"":""https://www.planetfarms.ag/en"",""productDescription"":""https://planetfarms.ag/en/products""},""websiteURL"":""https://www.planetfarms.ag/en""}" -AgriData Innovations,https://adinnovations.nl/,,adinnovations.nl,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://adinnovations.nl/"", - ""companyDescription"": ""ADI (AgriData Innovations) is a company that develops \""smart-eyes\"" technology, integrating smart hardware and software to provide data-driven crop monitoring solutions for growers. Their mission is to solve challenges faced by growers through AI-powered cameras and computer vision software that captures crop data, detects pests and diseases early, and provides reliable germination analyses. Founded in 2014 by friends William Simmonds and Lucien Fesselet, ADI aims to enable data-driven greenhouse management by delivering actionable insights to growers and cultivation managers."", - ""productDescription"": ""AgriData Innovations offers the following core products: - Seedling Scan Pro: a static data collection system using industrial cameras and AI for seedling assessment, which enables reliable and consistent counting and crop data management via a web app linked to ERP systems. - Smart-Eyes: modular camera systems that monitor crops in greenhouses or vertical farms using an integrated monorail or retrofitted sprayer booms, providing insights on plant growth, health, pest and disease detection to improve crop management, predict harvests, and reduce chemical use."", - ""clientCategories"": [""Growers"", ""Breeders"", ""Seed Companies"", ""Greenhouse Operators"", ""Vertical Farm Operators""], - ""sectorDescription"": ""Operates in the agriculture technology sector, specializing in AI-powered digital farming solutions and precision agriculture for data-driven greenhouse and crop management."", - ""geographicFocus"": ""HQ: Molengraaffsingel 12, 2629 JD Delft, The Netherlands; Sales Focus: Primarily serving growers in greenhouse environments and vertical farms internationally."", - ""keyExecutives"": [ - {""name"": ""William Simmonds"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://adinnovations.nl/team-career""}, - {""name"": ""Lucien Fesselet"", ""title"": ""Founder & CTO"", ""sourceUrl"": ""https://adinnovations.nl/team-career""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.adinnovations.nl/"", - ""productDescription"": ""https://adinnovations.nl/products/"", - ""clientCategories"": ""https://adinnovations.nl/"", - ""geographicFocus"": ""https://adinnovations.nl/contact"", - ""keyExecutives"": ""https://adinnovations.nl/team-career"" - } -}","{ - ""websiteURL"": ""https://adinnovations.nl/"", - ""companyDescription"": ""ADI (AgriData Innovations) is a company that develops \""smart-eyes\"" technology, integrating smart hardware and software to provide data-driven crop monitoring solutions for growers. Their mission is to solve challenges faced by growers through AI-powered cameras and computer vision software that captures crop data, detects pests and diseases early, and provides reliable germination analyses. Founded in 2014 by friends William Simmonds and Lucien Fesselet, ADI aims to enable data-driven greenhouse management by delivering actionable insights to growers and cultivation managers."", - ""productDescription"": ""AgriData Innovations offers the following core products: - Seedling Scan Pro: a static data collection system using industrial cameras and AI for seedling assessment, which enables reliable and consistent counting and crop data management via a web app linked to ERP systems. - Smart-Eyes: modular camera systems that monitor crops in greenhouses or vertical farms using an integrated monorail or retrofitted sprayer booms, providing insights on plant growth, health, pest and disease detection to improve crop management, predict harvests, and reduce chemical use."", - ""clientCategories"": [""Growers"", ""Breeders"", ""Seed Companies"", ""Greenhouse Operators"", ""Vertical Farm Operators""], - ""sectorDescription"": ""Operates in the agriculture technology sector, specializing in AI-powered digital farming solutions and precision agriculture for data-driven greenhouse and crop management."", - ""geographicFocus"": ""HQ: Molengraaffsingel 12, 2629 JD Delft, The Netherlands; Sales Focus: Primarily serving growers in greenhouse environments and vertical farms internationally."", - ""keyExecutives"": [ - {""name"": ""William Simmonds"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://adinnovations.nl/team-career""}, - {""name"": ""Lucien Fesselet"", ""title"": ""Founder & CTO"", ""sourceUrl"": ""https://adinnovations.nl/team-career""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.adinnovations.nl/"", - ""productDescription"": ""https://adinnovations.nl/products/"", - ""clientCategories"": ""https://adinnovations.nl/"", - ""geographicFocus"": ""https://adinnovations.nl/contact"", - ""keyExecutives"": ""https://adinnovations.nl/team-career"" - } -}",[],"{ - ""websiteURL"": ""https://adinnovations.nl"", - ""companyDescription"": ""ADI (AgriData Innovations) is a company that develops \""smart-eyes\"" technology, integrating smart hardware and software to provide data-driven crop monitoring solutions for growers. Their mission is to solve challenges faced by growers through AI-powered cameras and computer vision software that captures crop data, detects pests and diseases early, and provides reliable germination analyses. Founded in 2014 by friends William Simmonds and Lucien Fesselet, ADI aims to enable data-driven greenhouse management by delivering actionable insights to growers and cultivation managers."", - ""productDescription"": ""AgriData Innovations offers the following core products: - Seedling Scan Pro: a static data collection system using industrial cameras and AI for seedling assessment, which enables reliable and consistent counting and crop data management via a web app linked to ERP systems. - Smart-Eyes: modular camera systems that monitor crops in greenhouses or vertical farms using an integrated monorail or retrofitted sprayer booms, providing insights on plant growth, health, pest and disease detection to improve crop management, predict harvests, and reduce chemical use."", - ""clientCategories"": [""Growers"", ""Breeders"", ""Seed Companies"", ""Greenhouse Operators"", ""Vertical Farm Operators""], - ""sectorDescription"": ""Operates in the agriculture technology sector, specializing in AI-powered digital farming solutions and precision agriculture for data-driven greenhouse and crop management."", - ""geographicFocus"": ""HQ: Molengraaffsingel 12, 2629 JD Delft, The Netherlands; Sales Focus: Primarily serving growers in greenhouse environments and vertical farms internationally."", - ""keyExecutives"": [ - {""name"": ""William Simmonds"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://adinnovations.nl/team-career""}, - {""name"": ""Lucien Fesselet"", ""title"": ""Founder & CTO"", ""sourceUrl"": ""https://adinnovations.nl/team-career""} - ], - ""researcherNotes"": ""Entity disambiguation confirmed by company website domain, founding year (2014), and key founders' names matched across company site and external interview. Geographic focus is primarily greenhouses and vertical farms internationally with HQ in Delft, Netherlands. No conflicting information found. LinkedIn senior leadership data unavailable or empty."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.adinnovations.nl/"", - ""productDescription"": ""https://adinnovations.nl/products/"", - ""clientCategories"": ""https://adinnovations.nl/"", - ""geographicFocus"": ""https://adinnovations.nl/contact"", - ""keyExecutives"": ""https://adinnovations.nl/team-career"" - } -}","{""clientCategories"":[""Growers"",""Breeders"",""Seed Companies"",""Greenhouse Operators"",""Vertical Farm Operators""],""companyDescription"":""ADI (AgriData Innovations) is a company that develops \""smart-eyes\"" technology, integrating smart hardware and software to provide data-driven crop monitoring solutions for growers. Their mission is to solve challenges faced by growers through AI-powered cameras and computer vision software that captures crop data, detects pests and diseases early, and provides reliable germination analyses. Founded in 2014 by friends William Simmonds and Lucien Fesselet, ADI aims to enable data-driven greenhouse management by delivering actionable insights to growers and cultivation managers."",""geographicFocus"":""HQ: Molengraaffsingel 12, 2629 JD Delft, The Netherlands; Sales Focus: Primarily serving growers in greenhouse environments and vertical farms internationally."",""keyExecutives"":[{""name"":""William Simmonds"",""sourceUrl"":""https://adinnovations.nl/team-career"",""title"":""Founder & CEO""},{""name"":""Lucien Fesselet"",""sourceUrl"":""https://adinnovations.nl/team-career"",""title"":""Founder & CTO""}],""missingImportantFields"":[],""productDescription"":""AgriData Innovations offers the following core products: - Seedling Scan Pro: a static data collection system using industrial cameras and AI for seedling assessment, which enables reliable and consistent counting and crop data management via a web app linked to ERP systems. - Smart-Eyes: modular camera systems that monitor crops in greenhouses or vertical farms using an integrated monorail or retrofitted sprayer booms, providing insights on plant growth, health, pest and disease detection to improve crop management, predict harvests, and reduce chemical use."",""researcherNotes"":""Entity disambiguation confirmed by company website domain, founding year (2014), and key founders' names matched across company site and external interview. Geographic focus is primarily greenhouses and vertical farms internationally with HQ in Delft, Netherlands. No conflicting information found. LinkedIn senior leadership data unavailable or empty."",""sectorDescription"":""Operates in the agriculture technology sector, specializing in AI-powered digital farming solutions and precision agriculture for data-driven greenhouse and crop management."",""sources"":{""clientCategories"":""https://adinnovations.nl/"",""companyDescription"":""https://www.adinnovations.nl/"",""geographicFocus"":""https://adinnovations.nl/contact"",""keyExecutives"":""https://adinnovations.nl/team-career"",""productDescription"":""https://adinnovations.nl/products/""},""websiteURL"":""https://adinnovations.nl""}","Correctness: 98% Completeness: 95% The provided description of AgriData Innovations (ADI) is factually accurate and largely complete. Founders William Simmonds (CEO) and Lucien Fesselet (CTO) did found ADI in 2014 following their engineering entrepreneurship minor, initially developing drone-based data collection before shifting focus to AI-powered ""smart-eyes"" technology for greenhouses and vertical farms, as confirmed by company sources and interviews[2][4]. The HQ location in Delft, Netherlands, and focus on greenhouse and vertical farm crop monitoring is confirmed on the official site[4][5]. The product descriptions, including Seedling Scan Pro and Smart-Eyes modular camera systems with AI for crop health and germination analysis, align with official ADI product pages and press releases[3][5]. The company is an active innovator in agriculture technology providing actionable data insights for growers and breeders[1][3]. Minor incompleteness arises from the lack of explicit mention of recent funding rounds detailed in press but does not affect overall accuracy. There are no conflicting or outdated leadership or geographic details found. Sources: https://adinnovations.nl/team-career, https://adinnovations.nl/products/, https://vb-greenhouses.com/news/atrium-agri-presses-ahead-and-invests-in-agridata-innovations, https://www.floraldaily.com/article/9601551/delft-based-agridata-innovations-closes-investment-round-to-help-growers-and-breeders-with-crop-management/, https://www.urbanvine.co/blog/agridata-innovations-netherlands","{""clientCategories"":[""Growers"",""Breeders"",""Seed Companies"",""Greenhouse Operators"",""Vertical Farm Operators""],""companyDescription"":""ADI (AgriData Innovations) is a company that develops \""smart-eyes\"" technology, integrating smart hardware and software to provide data-driven crop monitoring solutions for growers. Their mission is to solve challenges faced by growers through AI-powered cameras and computer vision software that captures crop data, detects pests and diseases early, and provides reliable germination analyses. Founded in 2014 by friends William Simmonds and Lucien Fesselet, ADI aims to enable data-driven greenhouse management by delivering actionable insights to growers and cultivation managers."",""geographicFocus"":""HQ: Molengraaffsingel 12, 2629 JD Delft, The Netherlands; Sales Focus: Primarily serving growers in greenhouse environments and vertical farms internationally."",""keyExecutives"":[{""name"":""William Simmonds"",""sourceUrl"":""https://adinnovations.nl/team-career"",""title"":""Founder & CEO""},{""name"":""Lucien Fesselet"",""sourceUrl"":""https://adinnovations.nl/team-career"",""title"":""Founder & CTO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""AgriData Innovations offers the following core products: - Seedling Scan Pro: a static data collection system using industrial cameras and AI for seedling assessment, which enables reliable and consistent counting and crop data management via a web app linked to ERP systems. - Smart-Eyes: modular camera systems that monitor crops in greenhouses or vertical farms using an integrated monorail or retrofitted sprayer booms, providing insights on plant growth, health, pest and disease detection to improve crop management, predict harvests, and reduce chemical use."",""researcherNotes"":null,""sectorDescription"":""Operates in the agriculture technology sector, specializing in AI-powered digital farming solutions and precision agriculture for data-driven greenhouse and crop management."",""sources"":{""clientCategories"":""https://adinnovations.nl/"",""companyDescription"":""https://www.adinnovations.nl/"",""geographicFocus"":""https://adinnovations.nl/contact"",""keyExecutives"":""https://adinnovations.nl/team-career"",""productDescription"":""https://adinnovations.nl/products/""},""websiteURL"":""https://adinnovations.nl/""}" -Skytree,http://www.skytree.eu/,Division Q,skytree.eu,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.skytree.eu/"", - ""companyDescription"": ""Skytree is a specialized technology provider focused on developing and manufacturing cutting-edge Direct Air Capture (DAC) technology. Their mission centers on engineering the CO₂ transition by delivering modular DAC solutions adaptable to various local energy sources and climates, aiming to reduce carbon emissions by capturing CO₂ from the air for reuse or permanent storage. They serve multiple industry applications including carbon sequestration, greenhouses, power-to-X, drink carbonation, and water treatment, supporting the shift towards circular carbon use and scalable carbon capture. The company emphasizes scalable innovation, low levelized cost of CO₂ capture, and real-world deployment, targeting industries needing onsite CO₂ supply or carbon removal projects."", - ""productDescription"": ""Skytree offers scalable Direct Air Capture (DAC) technology with core products like Skytree Stratus and Skytree Stratus Park machines. Their technology features a unique moving bed system separating adsorption and desorption in dedicated chambers for efficient CO₂ capture. Key features include an amine-based solid sorbent optimized for CO₂ capture and energy efficiency, adsorption chambers designed to maximize CO₂ uptake, desorption chambers with controlled heating for CO₂ release, and dynamic software control using edge computing for real-time adjustment and maintenance. Services include feasibility assessment and deployment of DAC machines tailored for applications such as carbon sequestration, greenhouses, Power-to-X, drink carbonation, and water treatment. Emphasizes fast deployment, smart energy integration, and low-cost operation with strategic partnerships."", - ""clientCategories"": [ - ""Carbon Sequestration"", - ""Greenhouses"", - ""Power-to-X"", - ""Drink Carbonation"", - ""Water Treatment"" - ], - ""sectorDescription"": ""Operates in the environmental technology sector, specializing in scalable Direct Air Capture (DAC) solutions for industrial CO₂ capture and reuse."", - ""geographicFocus"": ""HQ: Amsterdam, Netherlands; Almere, Netherlands; Toronto, Canada; Nashville, USA; Sales Focus: Global, with projects in North America, Europe, and beyond."", - ""keyExecutives"": [ - {""name"": ""Rob van Straten"", ""title"": ""CEO"", ""sourceUrl"": ""https://skytree.eu/en-en/about-us""}, - {""name"": ""Floris De Bruijn"", ""title"": ""CFO/COO"", ""sourceUrl"": ""https://skytree.eu/en-en/about-us""}, - {""name"": ""Wojciech Glazek"", ""title"": ""CTO"", ""sourceUrl"": ""https://skytree.eu/en-en/about-us""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable linked documents (e.g., PDFs) were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://skytree.eu/en-en/about-us"", - ""productDescription"": ""https://skytree.eu/en-en/products"", - ""clientCategories"": ""https://skytree.eu/en-en/about-us"", - ""geographicFocus"": ""https://skytree.eu/en-en/contact-us"", - ""keyExecutives"": ""https://skytree.eu/en-en/about-us"" - } -}","{ - ""websiteURL"": ""http://www.skytree.eu/"", - ""companyDescription"": ""Skytree is a specialized technology provider focused on developing and manufacturing cutting-edge Direct Air Capture (DAC) technology. Their mission centers on engineering the CO₂ transition by delivering modular DAC solutions adaptable to various local energy sources and climates, aiming to reduce carbon emissions by capturing CO₂ from the air for reuse or permanent storage. They serve multiple industry applications including carbon sequestration, greenhouses, power-to-X, drink carbonation, and water treatment, supporting the shift towards circular carbon use and scalable carbon capture. The company emphasizes scalable innovation, low levelized cost of CO₂ capture, and real-world deployment, targeting industries needing onsite CO₂ supply or carbon removal projects."", - ""productDescription"": ""Skytree offers scalable Direct Air Capture (DAC) technology with core products like Skytree Stratus and Skytree Stratus Park machines. Their technology features a unique moving bed system separating adsorption and desorption in dedicated chambers for efficient CO₂ capture. Key features include an amine-based solid sorbent optimized for CO₂ capture and energy efficiency, adsorption chambers designed to maximize CO₂ uptake, desorption chambers with controlled heating for CO₂ release, and dynamic software control using edge computing for real-time adjustment and maintenance. Services include feasibility assessment and deployment of DAC machines tailored for applications such as carbon sequestration, greenhouses, Power-to-X, drink carbonation, and water treatment. Emphasizes fast deployment, smart energy integration, and low-cost operation with strategic partnerships."", - ""clientCategories"": [ - ""Carbon Sequestration"", - ""Greenhouses"", - ""Power-to-X"", - ""Drink Carbonation"", - ""Water Treatment"" - ], - ""sectorDescription"": ""Operates in the environmental technology sector, specializing in scalable Direct Air Capture (DAC) solutions for industrial CO₂ capture and reuse."", - ""geographicFocus"": ""HQ: Amsterdam, Netherlands; Almere, Netherlands; Toronto, Canada; Nashville, USA; Sales Focus: Global, with projects in North America, Europe, and beyond."", - ""keyExecutives"": [ - {""name"": ""Rob van Straten"", ""title"": ""CEO"", ""sourceUrl"": ""https://skytree.eu/en-en/about-us""}, - {""name"": ""Floris De Bruijn"", ""title"": ""CFO/COO"", ""sourceUrl"": ""https://skytree.eu/en-en/about-us""}, - {""name"": ""Wojciech Glazek"", ""title"": ""CTO"", ""sourceUrl"": ""https://skytree.eu/en-en/about-us""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable linked documents (e.g., PDFs) were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://skytree.eu/en-en/about-us"", - ""productDescription"": ""https://skytree.eu/en-en/products"", - ""clientCategories"": ""https://skytree.eu/en-en/about-us"", - ""geographicFocus"": ""https://skytree.eu/en-en/contact-us"", - ""keyExecutives"": ""https://skytree.eu/en-en/about-us"" - } -}",[],"{ - ""websiteURL"": ""https://www.skytree.eu"", - ""companyDescription"": ""Skytree is a specialized technology provider focused on developing and manufacturing cutting-edge Direct Air Capture (DAC) technology to support the CO₂ transition. The company delivers modular and scalable DAC solutions adaptable to various local energy sources and climates, enabling continuous onsite capture of atmospheric CO₂ for either reuse or permanent storage. Skytree’s technology addresses diverse applications including carbon sequestration, greenhouses, Power-to-X synthetic fuels, drink carbonation, and water treatment. It aims to reduce carbon emissions through innovative, efficient, and low-cost DAC systems tailored for industries and carbon removal projects worldwide."", - ""productDescription"": ""Skytree offers scalable Direct Air Capture technology with products such as the Skytree Stratus and Cumulus units. Their technology features a unique moving bed system with separate adsorption and desorption chambers, utilizing an amine-based solid sorbent optimized for CO₂ capture and energy efficiency. The systems include dynamic software for real-time control and edge computing to optimize performance. Key applications include carbon sequestration, controlled environment agriculture, Power-to-X fuel production, drink carbonation, and water treatment. Skytree emphasizes fast deployment, modular design, smart energy integration, and low-cost operation enhanced by strategic manufacturing partnerships."", - ""clientCategories"": [ - ""Carbon Sequestration"", - ""Greenhouses"", - ""Power-to-X"", - ""Drink Carbonation"", - ""Water Treatment"" - ], - ""sectorDescription"": ""Environmental technology sector specializing in scalable Direct Air Capture (DAC) solutions for industrial CO₂ capture, reuse, and removal."", - ""geographicFocus"": ""Headquartered in Amsterdam and Almere, Netherlands, with offices in Toronto, Canada, and Nashville, USA. Skytree serves a global market with active projects across North America, Europe, and other regions."", - ""keyExecutives"": [ - { - ""name"": ""Rob van Straten"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://skytree.eu/en-en/about-us"" - }, - { - ""name"": ""Floris De Bruijn"", - ""title"": ""CFO/COO"", - ""sourceUrl"": ""https://skytree.eu/en-en/about-us"" - }, - { - ""name"": ""Wojciech Glazek"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://skytree.eu/en-en/about-us"" - } - ], - ""researcherNotes"": ""Entity disambiguated confidently via domain match (skytree.eu), headquarters in Amsterdam, and corroborated direct air capture technology focus. Geographic footprint and leadership data sourced from official company website. No discrepancies found. Geographic focus includes global reach with projects across multiple continents, as supported by press releases and company info. No missing fields identified beyond the given data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://skytree.eu/en-en/about-us"", - ""productDescription"": ""https://skytree.eu/en-en/products"", - ""clientCategories"": ""https://skytree.eu/en-en/about-us"", - ""geographicFocus"": ""https://skytree.eu/en-en/contact-us"", - ""keyExecutives"": ""https://skytree.eu/en-en/about-us"" - } -}","{""clientCategories"":[""Carbon Sequestration"",""Greenhouses"",""Power-to-X"",""Drink Carbonation"",""Water Treatment""],""companyDescription"":""Skytree is a specialized technology provider focused on developing and manufacturing cutting-edge Direct Air Capture (DAC) technology to support the CO₂ transition. The company delivers modular and scalable DAC solutions adaptable to various local energy sources and climates, enabling continuous onsite capture of atmospheric CO₂ for either reuse or permanent storage. Skytree’s technology addresses diverse applications including carbon sequestration, greenhouses, Power-to-X synthetic fuels, drink carbonation, and water treatment. It aims to reduce carbon emissions through innovative, efficient, and low-cost DAC systems tailored for industries and carbon removal projects worldwide."",""geographicFocus"":""Headquartered in Amsterdam and Almere, Netherlands, with offices in Toronto, Canada, and Nashville, USA. Skytree serves a global market with active projects across North America, Europe, and other regions."",""keyExecutives"":[{""name"":""Rob van Straten"",""sourceUrl"":""https://skytree.eu/en-en/about-us"",""title"":""CEO""},{""name"":""Floris De Bruijn"",""sourceUrl"":""https://skytree.eu/en-en/about-us"",""title"":""CFO/COO""},{""name"":""Wojciech Glazek"",""sourceUrl"":""https://skytree.eu/en-en/about-us"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Skytree offers scalable Direct Air Capture technology with products such as the Skytree Stratus and Cumulus units. Their technology features a unique moving bed system with separate adsorption and desorption chambers, utilizing an amine-based solid sorbent optimized for CO₂ capture and energy efficiency. The systems include dynamic software for real-time control and edge computing to optimize performance. Key applications include carbon sequestration, controlled environment agriculture, Power-to-X fuel production, drink carbonation, and water treatment. Skytree emphasizes fast deployment, modular design, smart energy integration, and low-cost operation enhanced by strategic manufacturing partnerships."",""researcherNotes"":""Entity disambiguated confidently via domain match (skytree.eu), headquarters in Amsterdam, and corroborated direct air capture technology focus. Geographic footprint and leadership data sourced from official company website. No discrepancies found. Geographic focus includes global reach with projects across multiple continents, as supported by press releases and company info. No missing fields identified beyond the given data."",""sectorDescription"":""Environmental technology sector specializing in scalable Direct Air Capture (DAC) solutions for industrial CO₂ capture, reuse, and removal."",""sources"":{""clientCategories"":""https://skytree.eu/en-en/about-us"",""companyDescription"":""https://skytree.eu/en-en/about-us"",""geographicFocus"":""https://skytree.eu/en-en/contact-us"",""keyExecutives"":""https://skytree.eu/en-en/about-us"",""productDescription"":""https://skytree.eu/en-en/products""},""websiteURL"":""https://www.skytree.eu""}","Correctness: 98% Completeness: 95% The description of Skytree as a specialized technology provider focused on Direct Air Capture (DAC) technology is accurate and well-supported by multiple sources, including Skytree’s official website and related company information. The company’s headquarters in Amsterdam and Almere, the modular and scalable nature of their DAC solutions, their use of a unique moving bed system with amine-based solid sorbents, and their application areas such as carbon sequestration, greenhouses, Power-to-X, drink carbonation, and water treatment are consistent with statements from Skytree’s product and about pages[4][5]. Leadership details—Rob van Straten (CEO), Floris De Bruijn (CFO/COO), and Wojciech Glazek (CTO)—are confirmed on the company site as of 2025[4]. The information about the acquisition of ReCarbn, which complements Skytree’s technology with a circulating solid sorbent approach, further validates the technological footprint and innovation described[2]. The only minor gap is the lack of explicit recent press filings for leadership changes or funding that might update or confirm financial scale; however, available official corporate communications show no contradictions. Overall, the facts are detailed, with no material inaccuracies or missing critical fields, underscoring completeness. The corporate and product narrative aligns fully with official sources as of mid-2025. https://skytree.eu/en-en/about-us https://skytree.eu/en-en/products https://skytree.eu/en-en/who-we-are https://recarbn.eu https://www.youtube.com/watch?v=_s1_ruelkgY","{""clientCategories"":[""Carbon Sequestration"",""Greenhouses"",""Power-to-X"",""Drink Carbonation"",""Water Treatment""],""companyDescription"":""Skytree is a specialized technology provider focused on developing and manufacturing cutting-edge Direct Air Capture (DAC) technology. Their mission centers on engineering the CO₂ transition by delivering modular DAC solutions adaptable to various local energy sources and climates, aiming to reduce carbon emissions by capturing CO₂ from the air for reuse or permanent storage. They serve multiple industry applications including carbon sequestration, greenhouses, power-to-X, drink carbonation, and water treatment, supporting the shift towards circular carbon use and scalable carbon capture. The company emphasizes scalable innovation, low levelized cost of CO₂ capture, and real-world deployment, targeting industries needing onsite CO₂ supply or carbon removal projects."",""geographicFocus"":""HQ: Amsterdam, Netherlands; Almere, Netherlands; Toronto, Canada; Nashville, USA; Sales Focus: Global, with projects in North America, Europe, and beyond."",""keyExecutives"":[{""name"":""Rob van Straten"",""sourceUrl"":""https://skytree.eu/en-en/about-us"",""title"":""CEO""},{""name"":""Floris De Bruijn"",""sourceUrl"":""https://skytree.eu/en-en/about-us"",""title"":""CFO/COO""},{""name"":""Wojciech Glazek"",""sourceUrl"":""https://skytree.eu/en-en/about-us"",""title"":""CTO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Skytree offers scalable Direct Air Capture (DAC) technology with core products like Skytree Stratus and Skytree Stratus Park machines. Their technology features a unique moving bed system separating adsorption and desorption in dedicated chambers for efficient CO₂ capture. Key features include an amine-based solid sorbent optimized for CO₂ capture and energy efficiency, adsorption chambers designed to maximize CO₂ uptake, desorption chambers with controlled heating for CO₂ release, and dynamic software control using edge computing for real-time adjustment and maintenance. Services include feasibility assessment and deployment of DAC machines tailored for applications such as carbon sequestration, greenhouses, Power-to-X, drink carbonation, and water treatment. Emphasizes fast deployment, smart energy integration, and low-cost operation with strategic partnerships."",""researcherNotes"":""No downloadable linked documents (e.g., PDFs) were found on the website."",""sectorDescription"":""Operates in the environmental technology sector, specializing in scalable Direct Air Capture (DAC) solutions for industrial CO₂ capture and reuse."",""sources"":{""clientCategories"":""https://skytree.eu/en-en/about-us"",""companyDescription"":""https://skytree.eu/en-en/about-us"",""geographicFocus"":""https://skytree.eu/en-en/contact-us"",""keyExecutives"":""https://skytree.eu/en-en/about-us"",""productDescription"":""https://skytree.eu/en-en/products""},""websiteURL"":""http://www.skytree.eu/""}" -Koa Switzerland,https://www.koa-impact.com/,"Haltra Group, Mirabaud Asset Management, Mirova",koa-impact.com,https://www.linkedin.com/company/koaswitzerland,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.koa-impact.com/"", - ""companyDescription"": ""Koa is a company that extracts juice from the colorful cocoa fruit harvested in the Ghanaian rainforest, offering the world's first cocoa fruit shots. Their mission includes creating social and environmental impact by providing more income for cocoa farmers, boosting economic growth, reducing food waste, and practicing partnership at eye level. They emphasize working in harmony with nature and farming communities."", - ""productDescription"": ""Koa offers products including Koa Pure (cocoa fruit juice), Koa Concentrate (concentrated cocoa fruit juice), Koa Powder (dried cocoa fruit pulp), and Koa Choco Powder (dried cocoa fruit pulp with cocoa powder). Their core production process involves a Community Mobile Processing Unit (CMPU) powered by solar energy for mobile, on-site fruit processing with farmers, ensuring high food safety with real-time digital monitoring. After initial processing near the farms, products are further processed in their factory in Assin Akrofuom, Ghana, within three hours."", - ""clientCategories"": [""Gastronomy"", ""Media"", ""Student"", ""Other segments""], - ""sectorDescription"": ""Operates in the Food & Beverage sector, specifically focusing on sustainable cocoa fruit products."", - ""geographicFocus"": ""HQ: Koa Switzerland AG, Giesshübelstrasse 40, 8045 Zurich, Switzerland; Also offices in Accra, Ghana and Köln, Germany; Sales Focus: Switzerland, Ghana, Germany, Netherlands, France, Austria"", - ""keyExecutives"": [ - {""name"": ""Anian Schreiber"", ""title"": ""Managing Director & Co-Founder"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Benjamin Kuschnik"", ""title"": ""Group Finance Director & Co-Founder"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Danny"", ""title"": ""Production & Operations Director"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Jacob"", ""title"": ""Sales Director"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Francis"", ""title"": ""Finance & Administration Director"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Fabien"", ""title"": ""Head of Corporate Finance & Investor Relations"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Ståle"", ""title"": ""Business Development Director"", ""sourceUrl"": ""https://koa-impact.com/team/""} - ], - ""linkedDocuments"": [ - ""https://koa-impact.com/wp-content/uploads/2021/04/191212_NZZ.pdf"", - ""https://koa-impact.com/wp-content/uploads/2021/04/201013_SalzPfeffer.pdf"", - ""https://koa-impact.com/wp-content/uploads/2024/08/HR_KGG_Job_Ad_RD-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2024/05/Web-Developer.pdf"", - ""https://koa-impact.com/wp-content/uploads/2022/09/MAINTENANCE-MANAGER.pdf"", - ""https://koa-impact.com/wp-content/uploads/2023/02/HR-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2021/06/Koa-Pressemappe.pdf"", - ""https://koa-impact.com/wp-content/uploads/2023/08/Operations-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2024/07/HR_KGG_Job_Ad_RD-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2021/03/Koa_Cold_Brew_E.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://koa-impact.com/"", - ""productDescription"": ""https://koa-impact.com/production/"", - ""clientCategories"": ""https://koa-impact.com/story/"", - ""geographicFocus"": ""https://koa-impact.com/contact/"", - ""keyExecutives"": ""https://koa-impact.com/team/"" - } -}","{ - ""websiteURL"": ""https://www.koa-impact.com/"", - ""companyDescription"": ""Koa is a company that extracts juice from the colorful cocoa fruit harvested in the Ghanaian rainforest, offering the world's first cocoa fruit shots. Their mission includes creating social and environmental impact by providing more income for cocoa farmers, boosting economic growth, reducing food waste, and practicing partnership at eye level. They emphasize working in harmony with nature and farming communities."", - ""productDescription"": ""Koa offers products including Koa Pure (cocoa fruit juice), Koa Concentrate (concentrated cocoa fruit juice), Koa Powder (dried cocoa fruit pulp), and Koa Choco Powder (dried cocoa fruit pulp with cocoa powder). Their core production process involves a Community Mobile Processing Unit (CMPU) powered by solar energy for mobile, on-site fruit processing with farmers, ensuring high food safety with real-time digital monitoring. After initial processing near the farms, products are further processed in their factory in Assin Akrofuom, Ghana, within three hours."", - ""clientCategories"": [""Gastronomy"", ""Media"", ""Student"", ""Other segments""], - ""sectorDescription"": ""Operates in the Food & Beverage sector, specifically focusing on sustainable cocoa fruit products."", - ""geographicFocus"": ""HQ: Koa Switzerland AG, Giesshübelstrasse 40, 8045 Zurich, Switzerland; Also offices in Accra, Ghana and Köln, Germany; Sales Focus: Switzerland, Ghana, Germany, Netherlands, France, Austria"", - ""keyExecutives"": [ - {""name"": ""Anian Schreiber"", ""title"": ""Managing Director & Co-Founder"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Benjamin Kuschnik"", ""title"": ""Group Finance Director & Co-Founder"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Danny"", ""title"": ""Production & Operations Director"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Jacob"", ""title"": ""Sales Director"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Francis"", ""title"": ""Finance & Administration Director"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Fabien"", ""title"": ""Head of Corporate Finance & Investor Relations"", ""sourceUrl"": ""https://koa-impact.com/team/""}, - {""name"": ""Ståle"", ""title"": ""Business Development Director"", ""sourceUrl"": ""https://koa-impact.com/team/""} - ], - ""linkedDocuments"": [ - ""https://koa-impact.com/wp-content/uploads/2021/04/191212_NZZ.pdf"", - ""https://koa-impact.com/wp-content/uploads/2021/04/201013_SalzPfeffer.pdf"", - ""https://koa-impact.com/wp-content/uploads/2024/08/HR_KGG_Job_Ad_RD-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2024/05/Web-Developer.pdf"", - ""https://koa-impact.com/wp-content/uploads/2022/09/MAINTENANCE-MANAGER.pdf"", - ""https://koa-impact.com/wp-content/uploads/2023/02/HR-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2021/06/Koa-Pressemappe.pdf"", - ""https://koa-impact.com/wp-content/uploads/2023/08/Operations-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2024/07/HR_KGG_Job_Ad_RD-Manager.pdf"", - ""https://koa-impact.com/wp-content/uploads/2021/03/Koa_Cold_Brew_E.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://koa-impact.com/"", - ""productDescription"": ""https://koa-impact.com/production/"", - ""clientCategories"": ""https://koa-impact.com/story/"", - ""geographicFocus"": ""https://koa-impact.com/contact/"", - ""keyExecutives"": ""https://koa-impact.com/team/"" - } -}",[],"{ - ""websiteURL"": ""https://www.koa-impact.com/"", - ""companyDescription"": ""Koa is a Ghanaian-Swiss company founded in 2017 that innovatively extracts juice from the cocoa fruit harvested in the Ghanaian rainforest, offering the world’s first cocoa fruit shots. Their mission is to create social and environmental impact by providing more income for cocoa farmers, boosting economic growth, reducing food waste, and working in partnership with farming communities on an equal level. Koa operates through a pioneering, solar-powered process to benefit even remote farmers by upcycling cocoa pulp and introducing new, sustainable cocoa fruit ingredients to gastronomy and the food & beverage industry."", - ""productDescription"": ""Koa offers a range of cocoa fruit products, including Koa Pure (cocoa fruit juice), Koa Concentrate (concentrated cocoa fruit juice), Koa Powder (dried cocoa fruit pulp), and Koa Choco Powder (dried cocoa fruit pulp blended with cocoa powder). Production involves a solar-powered Community Mobile Processing Unit that processes fruit on-site with farmers in real time, ensuring high food safety standards through digital monitoring. Initial processing occurs near farms, with further processing completed in their Ghanaian factory within three hours of harvest. These products support better farmer incomes and sustainable industry practices."", - ""clientCategories"": [ - ""Gastronomy"", - ""Media"", - ""Students"", - ""Other Segments"" - ], - ""sectorDescription"": ""Food & Beverage sector focused on sustainable cocoa fruit product innovation and upcycling to create environmental and social impact."", - ""geographicFocus"": ""Headquartered in Zurich, Switzerland, with offices in Accra, Ghana and Köln, Germany. Sales and operations focus on Switzerland, Ghana, Germany, Netherlands, France, and Austria."", - ""keyExecutives"": [ - { - ""name"": ""Anian Schreiber"", - ""title"": ""Managing Director & Co-Founder"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - }, - { - ""name"": ""Benjamin Kuschnik"", - ""title"": ""Group Finance Director & Co-Founder"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - }, - { - ""name"": ""Danny"", - ""title"": ""Production & Operations Director"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - }, - { - ""name"": ""Jacob"", - ""title"": ""Sales Director"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - }, - { - ""name"": ""Francis"", - ""title"": ""Finance & Administration Director"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - }, - { - ""name"": ""Fabien"", - ""title"": ""Head of Corporate Finance & Investor Relations"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - }, - { - ""name"": ""Ståle"", - ""title"": ""Business Development Director"", - ""sourceUrl"": ""https://koa-impact.com/team/"" - } - ], - ""researcherNotes"": ""The company was disambiguated conclusively by primary domain match, Ghana/Switzerland headquarters, and unique cocoa fruit upcycling focus. The geographic focus is derived from the company website contact page and recent media sources. Executive titles and names are taken directly from the official team page. No conflicting information was found. The 'Students' client category is retained as presented despite being unusual; it may refer to educational or outreach programs as indicated on the website. No major fields remain missing."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://koa-impact.com/"", - ""productDescription"": ""https://koa-impact.com/production/"", - ""clientCategories"": ""https://koa-impact.com/story/"", - ""geographicFocus"": ""https://koa-impact.com/contact/"", - ""keyExecutives"": ""https://koa-impact.com/team/"" - } -}","{""clientCategories"":[""Gastronomy"",""Media"",""Students"",""Other Segments""],""companyDescription"":""Koa is a Ghanaian-Swiss company founded in 2017 that innovatively extracts juice from the cocoa fruit harvested in the Ghanaian rainforest, offering the world’s first cocoa fruit shots. Their mission is to create social and environmental impact by providing more income for cocoa farmers, boosting economic growth, reducing food waste, and working in partnership with farming communities on an equal level. Koa operates through a pioneering, solar-powered process to benefit even remote farmers by upcycling cocoa pulp and introducing new, sustainable cocoa fruit ingredients to gastronomy and the food & beverage industry."",""geographicFocus"":""Headquartered in Zurich, Switzerland, with offices in Accra, Ghana and Köln, Germany. Sales and operations focus on Switzerland, Ghana, Germany, Netherlands, France, and Austria."",""keyExecutives"":[{""name"":""Anian Schreiber"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Managing Director & Co-Founder""},{""name"":""Benjamin Kuschnik"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Group Finance Director & Co-Founder""},{""name"":""Danny"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Production & Operations Director""},{""name"":""Jacob"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Sales Director""},{""name"":""Francis"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Finance & Administration Director""},{""name"":""Fabien"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Head of Corporate Finance & Investor Relations""},{""name"":""Ståle"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Business Development Director""}],""missingImportantFields"":[],""productDescription"":""Koa offers a range of cocoa fruit products, including Koa Pure (cocoa fruit juice), Koa Concentrate (concentrated cocoa fruit juice), Koa Powder (dried cocoa fruit pulp), and Koa Choco Powder (dried cocoa fruit pulp blended with cocoa powder). Production involves a solar-powered Community Mobile Processing Unit that processes fruit on-site with farmers in real time, ensuring high food safety standards through digital monitoring. Initial processing occurs near farms, with further processing completed in their Ghanaian factory within three hours of harvest. These products support better farmer incomes and sustainable industry practices."",""researcherNotes"":""The company was disambiguated conclusively by primary domain match, Ghana/Switzerland headquarters, and unique cocoa fruit upcycling focus. The geographic focus is derived from the company website contact page and recent media sources. Executive titles and names are taken directly from the official team page. No conflicting information was found. The 'Students' client category is retained as presented despite being unusual; it may refer to educational or outreach programs as indicated on the website. No major fields remain missing."",""sectorDescription"":""Food & Beverage sector focused on sustainable cocoa fruit product innovation and upcycling to create environmental and social impact."",""sources"":{""clientCategories"":""https://koa-impact.com/story/"",""companyDescription"":""https://koa-impact.com/"",""geographicFocus"":""https://koa-impact.com/contact/"",""keyExecutives"":""https://koa-impact.com/team/"",""productDescription"":""https://koa-impact.com/production/""},""websiteURL"":""https://www.koa-impact.com/""}","Correctness: 98% Completeness: 95% The provided company profile of Koa is highly accurate and comprehensive based on multiple authoritative sources. Koa is indeed a Ghanaian-Swiss company founded in 2017 that innovatively extracts juice from cocoa fruit harvested in Ghana, employing a pioneering solar-powered mobile processing system to upcycle cocoa pulp and reduce food waste while generating additional income for cocoa farmers[2][5]. The leadership names and titles such as Anian Schreiber as Managing Director and Benjamin Kuschnik as Co-Founder and Group Finance Director match the official company website details[2][3]. The company’s headquarters are correctly noted as Zurich, Switzerland, with significant operations also in Ghana, Germany, Netherlands, France, and Austria[2][3][4]. Its flagship products—Koa Pure, Koa Concentrate, Koa Powder, and Koa Choco Powder—are derived from cocoa fruit pulp processed near farms with digital monitoring assuring food safety, with a $10 million factory in Ghana inaugurated in 2023 to scale operations and create 250 jobs[1][4]. The company’s mission, social impact focus, and partnership with farmers on an equal level are well supported by evidence of B Corp certification and community engagement[3]. Minor gaps include no explicit mention of corporate finance and investor relations specifics beyond executive titles, but these are minor given the overall detail. The inclusion of the client segment ""Students"" was retained as it may relate to outreach or educational programs despite being unusual[2][3]. Overall, the information is factually correct and substantively complete with the most recent details from 2023–2024. Sources: https://koa-impact.com/, https://www.ghanaweb.com/GhanaHomePage/business/Ghanaian-Swiss-start-up-KOA-inaugurates-10m-factory-to-process-cocoa-pulp-into-fruit-juice-1833095, https://www.ubs.com/global/en/sustainability-impact/social-impact-and-philanthropy/globalvisionaries/gv/2023/koa.html, https://b-labafrica.net/koa-becomes-the-first-cocoa-fruit-brand-to-join-the-b-corp-community/, https://idh.org/resources/unlocking-hidden-value-how-koa-is-boosting-farmer-incomes-in-ghana, https://www.venturekick.ch/koa-switzerland","{""clientCategories"":[""Gastronomy"",""Media"",""Student"",""Other segments""],""companyDescription"":""Koa is a company that extracts juice from the colorful cocoa fruit harvested in the Ghanaian rainforest, offering the world's first cocoa fruit shots. Their mission includes creating social and environmental impact by providing more income for cocoa farmers, boosting economic growth, reducing food waste, and practicing partnership at eye level. They emphasize working in harmony with nature and farming communities."",""geographicFocus"":""HQ: Koa Switzerland AG, Giesshübelstrasse 40, 8045 Zurich, Switzerland; Also offices in Accra, Ghana and Köln, Germany; Sales Focus: Switzerland, Ghana, Germany, Netherlands, France, Austria"",""keyExecutives"":[{""name"":""Anian Schreiber"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Managing Director & Co-Founder""},{""name"":""Benjamin Kuschnik"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Group Finance Director & Co-Founder""},{""name"":""Danny"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Production & Operations Director""},{""name"":""Jacob"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Sales Director""},{""name"":""Francis"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Finance & Administration Director""},{""name"":""Fabien"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Head of Corporate Finance & Investor Relations""},{""name"":""Ståle"",""sourceUrl"":""https://koa-impact.com/team/"",""title"":""Business Development Director""}],""linkedDocuments"":[""https://koa-impact.com/wp-content/uploads/2021/04/191212_NZZ.pdf"",""https://koa-impact.com/wp-content/uploads/2021/04/201013_SalzPfeffer.pdf"",""https://koa-impact.com/wp-content/uploads/2024/08/HR_KGG_Job_Ad_RD-Manager.pdf"",""https://koa-impact.com/wp-content/uploads/2024/05/Web-Developer.pdf"",""https://koa-impact.com/wp-content/uploads/2022/09/MAINTENANCE-MANAGER.pdf"",""https://koa-impact.com/wp-content/uploads/2023/02/HR-Manager.pdf"",""https://koa-impact.com/wp-content/uploads/2021/06/Koa-Pressemappe.pdf"",""https://koa-impact.com/wp-content/uploads/2023/08/Operations-Manager.pdf"",""https://koa-impact.com/wp-content/uploads/2024/07/HR_KGG_Job_Ad_RD-Manager.pdf"",""https://koa-impact.com/wp-content/uploads/2021/03/Koa_Cold_Brew_E.pdf""],""missingImportantFields"":[],""productDescription"":""Koa offers products including Koa Pure (cocoa fruit juice), Koa Concentrate (concentrated cocoa fruit juice), Koa Powder (dried cocoa fruit pulp), and Koa Choco Powder (dried cocoa fruit pulp with cocoa powder). Their core production process involves a Community Mobile Processing Unit (CMPU) powered by solar energy for mobile, on-site fruit processing with farmers, ensuring high food safety with real-time digital monitoring. After initial processing near the farms, products are further processed in their factory in Assin Akrofuom, Ghana, within three hours."",""researcherNotes"":null,""sectorDescription"":""Operates in the Food & Beverage sector, specifically focusing on sustainable cocoa fruit products."",""sources"":{""clientCategories"":""https://koa-impact.com/story/"",""companyDescription"":""https://koa-impact.com/"",""geographicFocus"":""https://koa-impact.com/contact/"",""keyExecutives"":""https://koa-impact.com/team/"",""productDescription"":""https://koa-impact.com/production/""},""websiteURL"":""https://www.koa-impact.com/""}" -Paintec,https://www.paintec.tech/,sherry ventures,paintec.tech,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.paintec.tech/"", - ""companyDescription"": ""Grupo Paintec is a global drone technology company providing innovative solutions that integrate drone technology, offering tools and specialized knowledge to empower companies and professionals to optimize their potential in a global market. Their mission includes continuous innovation, personalized training, and comprehensive solutions across various sectors, with expertise in over 12 countries, processing over 50,000 hectares, and inspecting more than 2,000 infrastructures. They have multiple specialized brands: GRIDFLIGHT focuses on integrating drones into various professional sectors with official pilot training certified by AESA and EASA; FAS designs and manufactures high-performance drones locally; Fixon develops advanced drone pilot software for optimized aerial operations. The company emphasizes precision, efficiency, and versatility."", - ""productDescription"": ""Grupo Paintec ofrece soluciones innovadoras en tecnología dron para diferentes sectores, con formación personalizada, inspección de infraestructuras y agricultura de precisión. Sus marcas incluyen GRIDFLIGHT (formación oficial de pilotos y proyectos innovadores), FAS (diseño y fabricación de drones de alta velocidad, autonomía y seguridad, producidos localmente) y Fixon (software avanzado para planificación, gestión y monitorización de vuelos)."", - ""clientCategories"": [""Construction"", ""Industry"", ""Agriculture"", ""Audiovisuals""], - ""sectorDescription"": ""Operates in the drone technology sector, providing innovative drone solutions, training, and software across multiple professional industries globally."", - ""geographicFocus"": ""HQ: Zaragoza and Sevilla, Spain; Sales Focus: Europe, Africa, and America with international collaborations including global organizations like the UN."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No key executives data (Founder, CEO, CTO, COO, CFO) was found on the website or affiliated pages. No linked documents such as PDFs were available for download."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.paintec.tech/#PAINTEC"", - ""productDescription"": ""https://www.paintec.tech/#SERVICIOS"", - ""clientCategories"": ""https://www.paintec.tech/#CLIENTES"", - ""geographicFocus"": ""https://www.paintec.tech/#CONTACTO"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.paintec.tech/"", - ""companyDescription"": ""Grupo Paintec is a global drone technology company providing innovative solutions that integrate drone technology, offering tools and specialized knowledge to empower companies and professionals to optimize their potential in a global market. Their mission includes continuous innovation, personalized training, and comprehensive solutions across various sectors, with expertise in over 12 countries, processing over 50,000 hectares, and inspecting more than 2,000 infrastructures. They have multiple specialized brands: GRIDFLIGHT focuses on integrating drones into various professional sectors with official pilot training certified by AESA and EASA; FAS designs and manufactures high-performance drones locally; Fixon develops advanced drone pilot software for optimized aerial operations. The company emphasizes precision, efficiency, and versatility."", - ""productDescription"": ""Grupo Paintec ofrece soluciones innovadoras en tecnología dron para diferentes sectores, con formación personalizada, inspección de infraestructuras y agricultura de precisión. Sus marcas incluyen GRIDFLIGHT (formación oficial de pilotos y proyectos innovadores), FAS (diseño y fabricación de drones de alta velocidad, autonomía y seguridad, producidos localmente) y Fixon (software avanzado para planificación, gestión y monitorización de vuelos)."", - ""clientCategories"": [""Construction"", ""Industry"", ""Agriculture"", ""Audiovisuals""], - ""sectorDescription"": ""Operates in the drone technology sector, providing innovative drone solutions, training, and software across multiple professional industries globally."", - ""geographicFocus"": ""HQ: Zaragoza and Sevilla, Spain; Sales Focus: Europe, Africa, and America with international collaborations including global organizations like the UN."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No key executives data (Founder, CEO, CTO, COO, CFO) was found on the website or affiliated pages. No linked documents such as PDFs were available for download."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.paintec.tech/#PAINTEC"", - ""productDescription"": ""https://www.paintec.tech/#SERVICIOS"", - ""clientCategories"": ""https://www.paintec.tech/#CLIENTES"", - ""geographicFocus"": ""https://www.paintec.tech/#CONTACTO"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.paintec.tech"", - ""companyDescription"": ""Grupo Paintec is a global drone technology company providing innovative solutions that integrate drone technology, offering tools and specialized knowledge to empower companies and professionals to optimize their potential in a global market. Their mission includes continuous innovation, personalized training, and comprehensive solutions across various sectors, with expertise in over 12 countries, processing over 50,000 hectares, and inspecting more than 2,000 infrastructures. They have multiple specialized brands: GRIDFLIGHT focuses on integrating drones into various professional sectors with official pilot training certified by AESA and EASA; FAS designs and manufactures high-performance drones locally; Fixon develops advanced drone pilot software for optimized aerial operations. The company emphasizes precision, efficiency, and versatility."", - ""productDescription"": ""Grupo Paintec ofrece soluciones innovadoras en tecnología dron para diferentes sectores, con formación personalizada, inspección de infraestructuras y agricultura de precisión. Sus marcas incluyen GRIDFLIGHT (formación oficial de pilotos y proyectos innovadores), FAS (diseño y fabricación de drones de alta velocidad, autonomía y seguridad, producidos localmente) y Fixon (software avanzado para planificación, gestión y monitorización de vuelos)."", - ""clientCategories"": [""Construction"", ""Industry"", ""Agriculture"", ""Audiovisuals""], - ""sectorDescription"": ""Operates in the drone technology sector, providing innovative drone solutions, training, and software across multiple professional industries globally."", - ""geographicFocus"": ""HQ: Zaragoza and Sevilla, Spain; Sales Focus: Europe, Africa, and America with international collaborations including global organizations like the UN."", - ""keyExecutives"": [], - ""researcherNotes"": ""No key executives data (Founder, CEO, CTO, COO, CFO) found on company website or LinkedIn. No linked documents or PDFs available. External sources and LinkedIn searches yielded no verifiable leadership data for Grupo Paintec or its subsidiaries. The geographic focus and company identity are confirmed by domain, HQ cities, and company descriptions across official websites. No ambiguity detected regarding entity identity."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.paintec.tech/#PAINTEC"", - ""productDescription"": ""https://www.paintec.tech/#SERVICIOS"", - ""clientCategories"": ""https://www.paintec.tech/#CLIENTES"", - ""geographicFocus"": ""https://www.paintec.tech/#CONTACTO"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Construction"",""Industry"",""Agriculture"",""Audiovisuals""],""companyDescription"":""Grupo Paintec is a global drone technology company providing innovative solutions that integrate drone technology, offering tools and specialized knowledge to empower companies and professionals to optimize their potential in a global market. Their mission includes continuous innovation, personalized training, and comprehensive solutions across various sectors, with expertise in over 12 countries, processing over 50,000 hectares, and inspecting more than 2,000 infrastructures. They have multiple specialized brands: GRIDFLIGHT focuses on integrating drones into various professional sectors with official pilot training certified by AESA and EASA; FAS designs and manufactures high-performance drones locally; Fixon develops advanced drone pilot software for optimized aerial operations. The company emphasizes precision, efficiency, and versatility."",""geographicFocus"":""HQ: Zaragoza and Sevilla, Spain; Sales Focus: Europe, Africa, and America with international collaborations including global organizations like the UN."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Grupo Paintec ofrece soluciones innovadoras en tecnología dron para diferentes sectores, con formación personalizada, inspección de infraestructuras y agricultura de precisión. Sus marcas incluyen GRIDFLIGHT (formación oficial de pilotos y proyectos innovadores), FAS (diseño y fabricación de drones de alta velocidad, autonomía y seguridad, producidos localmente) y Fixon (software avanzado para planificación, gestión y monitorización de vuelos)."",""researcherNotes"":""No key executives data (Founder, CEO, CTO, COO, CFO) found on company website or LinkedIn. No linked documents or PDFs available. External sources and LinkedIn searches yielded no verifiable leadership data for Grupo Paintec or its subsidiaries. The geographic focus and company identity are confirmed by domain, HQ cities, and company descriptions across official websites. No ambiguity detected regarding entity identity."",""sectorDescription"":""Operates in the drone technology sector, providing innovative drone solutions, training, and software across multiple professional industries globally."",""sources"":{""clientCategories"":""https://www.paintec.tech/#CLIENTES"",""companyDescription"":""https://www.paintec.tech/#PAINTEC"",""geographicFocus"":""https://www.paintec.tech/#CONTACTO"",""keyExecutives"":null,""productDescription"":""https://www.paintec.tech/#SERVICIOS""},""websiteURL"":""https://www.paintec.tech""}","Correctness: 98% Completeness: 90% The description of Grupo Paintec as a global drone technology company offering integrated solutions with personalized training, infrastructure inspection, and precision agriculture is well supported by the company's official website and legal notice confirming its registered offices in Sevilla and Zaragoza, Spain, and its international sales focus across Europe, Africa, and America[2][3]. The mention of specialized brands GRIDFLIGHT, FAS, and Fixon aligns with the product offering details found on the official site[3]. However, the lack of publicly available information on key executives (Founder, CEO, CTO, COO, CFO) represents a significant completeness gap and is explicitly noted by external researcher notes and the absence of such data on LinkedIn or official documents[2][3]. This omission reduces the completeness score since leadership is a critical dimension for company profiling. No conflicting information was found regarding company identity, footprint, or product descriptions. The absence of verifiable leadership data lowers completeness but not correctness, as the available facts about the company are accurate and verifiable from primary sources. No evidence contradicts the provided metrics about geographic scope or specialization. The client categories and sector descriptions are consistent with site content. Key verified sources include the Grupo Paintec official webpages with legal and service sections[2][3].","{""clientCategories"":[""Construction"",""Industry"",""Agriculture"",""Audiovisuals""],""companyDescription"":""Grupo Paintec is a global drone technology company providing innovative solutions that integrate drone technology, offering tools and specialized knowledge to empower companies and professionals to optimize their potential in a global market. Their mission includes continuous innovation, personalized training, and comprehensive solutions across various sectors, with expertise in over 12 countries, processing over 50,000 hectares, and inspecting more than 2,000 infrastructures. They have multiple specialized brands: GRIDFLIGHT focuses on integrating drones into various professional sectors with official pilot training certified by AESA and EASA; FAS designs and manufactures high-performance drones locally; Fixon develops advanced drone pilot software for optimized aerial operations. The company emphasizes precision, efficiency, and versatility."",""geographicFocus"":""HQ: Zaragoza and Sevilla, Spain; Sales Focus: Europe, Africa, and America with international collaborations including global organizations like the UN."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Grupo Paintec ofrece soluciones innovadoras en tecnología dron para diferentes sectores, con formación personalizada, inspección de infraestructuras y agricultura de precisión. Sus marcas incluyen GRIDFLIGHT (formación oficial de pilotos y proyectos innovadores), FAS (diseño y fabricación de drones de alta velocidad, autonomía y seguridad, producidos localmente) y Fixon (software avanzado para planificación, gestión y monitorización de vuelos)."",""researcherNotes"":""No key executives data (Founder, CEO, CTO, COO, CFO) was found on the website or affiliated pages. No linked documents such as PDFs were available for download."",""sectorDescription"":""Operates in the drone technology sector, providing innovative drone solutions, training, and software across multiple professional industries globally."",""sources"":{""clientCategories"":""https://www.paintec.tech/#CLIENTES"",""companyDescription"":""https://www.paintec.tech/#PAINTEC"",""geographicFocus"":""https://www.paintec.tech/#CONTACTO"",""keyExecutives"":null,""productDescription"":""https://www.paintec.tech/#SERVICIOS""},""websiteURL"":""https://www.paintec.tech/""}" -Brite Solar,http://www.britesolar.com/,"Brace Agri Solar Holdings, Deep Investments Limited, European Innovation Council, New energy partners",britesolar.com,https://www.linkedin.com/company/brite-solar,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.britesolar.com/"", - ""companyDescription"": ""Brite Solar develops advanced photovoltaic (PV) panels designed for greenhouse horticulture to enhance energy efficiency and crop protection. They focus on nanomaterials and deposition techniques for glass substrates, producing solar glass products for agriculture and energy-saving solutions for buildings. Their mission includes developing innovative, high-quality products with advanced nanomaterial engineering to improve worldwide energy production and consumption. Brite Solar aims to create sustainable glass products optimized for agriculture to increase crop yield and support a growing global population."", - ""productDescription"": ""Brite Solar develops innovative PV solar panels designed to enhance greenhouse efficiency and sustainable agriculture. Their core products include: - Solar Glass, which supports agrivoltaics - the simultaneous use of land for food production and renewable energy, - Electrochromic – Dynamic Glass for cost-effective lighting control and building cooling."", - ""clientCategories"": [""Agricultural Businesses"",""Greenhouse Operators"",""Sustainable Energy Projects""], - ""sectorDescription"": ""Operates in the renewable energy sector, specializing in solar glass technology and photovoltaic solutions for sustainable agriculture and energy-efficient buildings."", - ""geographicFocus"": ""HQ: Thessaloniki, Greece; also presence in Patra, Greece; Los Gatos, California, USA; Venlo, The Netherlands"", - ""keyExecutives"": [ - {""name"": ""Dr. Nick Kanopoulos"", ""title"": ""President & CEO"", ""sourceUrl"": ""https://www.britesolar.com/about""}, - {""name"": ""Rick Orlando"", ""title"": ""VP Business Development"", ""sourceUrl"": ""https://www.britesolar.com/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.britesolar.com/about"", - ""productDescription"": ""https://www.britesolar.com/products"", - ""clientCategories"": ""https://www.britesolar.com/about"", - ""geographicFocus"": ""https://www.britesolar.com/contact"", - ""keyExecutives"": ""https://www.britesolar.com/about"" - } -}","{ - ""websiteURL"": ""http://www.britesolar.com/"", - ""companyDescription"": ""Brite Solar develops advanced photovoltaic (PV) panels designed for greenhouse horticulture to enhance energy efficiency and crop protection. They focus on nanomaterials and deposition techniques for glass substrates, producing solar glass products for agriculture and energy-saving solutions for buildings. Their mission includes developing innovative, high-quality products with advanced nanomaterial engineering to improve worldwide energy production and consumption. Brite Solar aims to create sustainable glass products optimized for agriculture to increase crop yield and support a growing global population."", - ""productDescription"": ""Brite Solar develops innovative PV solar panels designed to enhance greenhouse efficiency and sustainable agriculture. Their core products include: - Solar Glass, which supports agrivoltaics - the simultaneous use of land for food production and renewable energy, - Electrochromic – Dynamic Glass for cost-effective lighting control and building cooling."", - ""clientCategories"": [""Agricultural Businesses"",""Greenhouse Operators"",""Sustainable Energy Projects""], - ""sectorDescription"": ""Operates in the renewable energy sector, specializing in solar glass technology and photovoltaic solutions for sustainable agriculture and energy-efficient buildings."", - ""geographicFocus"": ""HQ: Thessaloniki, Greece; also presence in Patra, Greece; Los Gatos, California, USA; Venlo, The Netherlands"", - ""keyExecutives"": [ - {""name"": ""Dr. Nick Kanopoulos"", ""title"": ""President & CEO"", ""sourceUrl"": ""https://www.britesolar.com/about""}, - {""name"": ""Rick Orlando"", ""title"": ""VP Business Development"", ""sourceUrl"": ""https://www.britesolar.com/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.britesolar.com/about"", - ""productDescription"": ""https://www.britesolar.com/products"", - ""clientCategories"": ""https://www.britesolar.com/about"", - ""geographicFocus"": ""https://www.britesolar.com/contact"", - ""keyExecutives"": ""https://www.britesolar.com/about"" - } -}",[],"{ - ""websiteURL"": ""https://www.britesolar.com"", - ""companyDescription"": ""Brite Solar develops advanced photovoltaic (PV) panels designed for greenhouse horticulture to enhance energy efficiency and crop protection. They focus on nanomaterials and deposition techniques for glass substrates, producing solar glass products for agriculture and energy-saving solutions for buildings. Their mission includes developing innovative, high-quality products with advanced nanomaterial engineering to improve worldwide energy production and consumption. Brite Solar aims to create sustainable glass products optimized for agriculture to increase crop yield and support a growing global population."", - ""productDescription"": ""Brite Solar develops innovative PV solar panels designed to enhance greenhouse efficiency and sustainable agriculture. Their core products include solar glass supporting agrivoltaics—the simultaneous use of land for food production and renewable energy—and electrochromic dynamic glass for cost-effective lighting control and building cooling. Their technology enables energy autonomous operation, water saving, and sustainable farming practices."", - ""clientCategories"": [ - ""Agricultural Businesses"", - ""Greenhouse Operators"", - ""Sustainable Energy Projects"" - ], - ""sectorDescription"": ""Operates in the renewable energy sector, specializing in solar glass technology and photovoltaic solutions for sustainable agriculture and energy-efficient buildings."", - ""geographicFocus"": ""Headquartered in Thessaloniki, Greece, with additional presence in Patra, Greece; Los Gatos, California, USA; and Venlo, The Netherlands."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Nick Kanopoulos"", - ""title"": ""President & CEO"", - ""sourceUrl"": ""https://www.britesolar.com/about"" - }, - { - ""name"": ""Rick Orlando"", - ""title"": ""VP Business Development"", - ""sourceUrl"": ""https://www.britesolar.com/about"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by domain match (britesolar.com), HQ in Thessaloniki and Patra, Greece, and relevant nanomaterials and solar glass technology focus. Geographic footprint expanded with confirmed locations in the USA and the Netherlands per company contact info and official website. No conflicts found in executive titles per company website. No senior leadership info found on LinkedIn. All required fields are filled."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.britesolar.com/about"", - ""productDescription"": ""https://www.britesolar.com/products"", - ""clientCategories"": ""https://www.britesolar.com/about"", - ""geographicFocus"": ""https://www.britesolar.com/contact"", - ""keyExecutives"": ""https://www.britesolar.com/about"" - } -}","{""clientCategories"":[""Agricultural Businesses"",""Greenhouse Operators"",""Sustainable Energy Projects""],""companyDescription"":""Brite Solar develops advanced photovoltaic (PV) panels designed for greenhouse horticulture to enhance energy efficiency and crop protection. They focus on nanomaterials and deposition techniques for glass substrates, producing solar glass products for agriculture and energy-saving solutions for buildings. Their mission includes developing innovative, high-quality products with advanced nanomaterial engineering to improve worldwide energy production and consumption. Brite Solar aims to create sustainable glass products optimized for agriculture to increase crop yield and support a growing global population."",""geographicFocus"":""Headquartered in Thessaloniki, Greece, with additional presence in Patra, Greece; Los Gatos, California, USA; and Venlo, The Netherlands."",""keyExecutives"":[{""name"":""Dr. Nick Kanopoulos"",""sourceUrl"":""https://www.britesolar.com/about"",""title"":""President & CEO""},{""name"":""Rick Orlando"",""sourceUrl"":""https://www.britesolar.com/about"",""title"":""VP Business Development""}],""missingImportantFields"":[],""productDescription"":""Brite Solar develops innovative PV solar panels designed to enhance greenhouse efficiency and sustainable agriculture. Their core products include solar glass supporting agrivoltaics—the simultaneous use of land for food production and renewable energy—and electrochromic dynamic glass for cost-effective lighting control and building cooling. Their technology enables energy autonomous operation, water saving, and sustainable farming practices."",""researcherNotes"":""Entity disambiguation confirmed by domain match (britesolar.com), HQ in Thessaloniki and Patra, Greece, and relevant nanomaterials and solar glass technology focus. Geographic footprint expanded with confirmed locations in the USA and the Netherlands per company contact info and official website. No conflicts found in executive titles per company website. No senior leadership info found on LinkedIn. All required fields are filled."",""sectorDescription"":""Operates in the renewable energy sector, specializing in solar glass technology and photovoltaic solutions for sustainable agriculture and energy-efficient buildings."",""sources"":{""clientCategories"":""https://www.britesolar.com/about"",""companyDescription"":""https://www.britesolar.com/about"",""geographicFocus"":""https://www.britesolar.com/contact"",""keyExecutives"":""https://www.britesolar.com/about"",""productDescription"":""https://www.britesolar.com/products""},""websiteURL"":""https://www.britesolar.com""}","Correctness: 95% Completeness: 90% The provided details about Brite Solar are largely accurate and well-supported by multiple sources. The company was founded in 2010 by Dr. Nikolaos (Nick) Kanopoulos, who is currently President & CEO, confirmed by the company website and EquityNet (https://www.britesolar.com/about, https://www.equitynet.com/c/brite-solar-inc). Their headquarters in Thessaloniki, Greece, with presence also in Patra, Greece, Los Gatos, California, and Venlo, The Netherlands is consistent with official contact information (https://www.britesolar.com/contact). The description of their core technologies—advanced photovoltaic solar glass for greenhouse horticulture, nanomaterials, electrochromic dynamic glass, and agrivoltaic solutions—is corroborated by their product pages and industry profiles (https://www.britesolar.com/products, https://mindmaps.ai-ecosystem.org/map/firms/80246). The leadership titles also align with official listings (https://www.britesolar.com/about). Minor gaps include funding details which appear incomplete or dated since the last noted grant funding was in 2017 with limited current rounds disclosed publicly (https://mindmaps.ai-ecosystem.org/map/firms/80246, https://app.dealroom.co/companies/brite_solar). No contradictory or outdated information was found in recent sources as of 2025-09-11. Overall, the information is factually correct and fairly comprehensive for company description, products, geography, and leadership, but funding details could be updated for completeness.","{""clientCategories"":[""Agricultural Businesses"",""Greenhouse Operators"",""Sustainable Energy Projects""],""companyDescription"":""Brite Solar develops advanced photovoltaic (PV) panels designed for greenhouse horticulture to enhance energy efficiency and crop protection. They focus on nanomaterials and deposition techniques for glass substrates, producing solar glass products for agriculture and energy-saving solutions for buildings. Their mission includes developing innovative, high-quality products with advanced nanomaterial engineering to improve worldwide energy production and consumption. Brite Solar aims to create sustainable glass products optimized for agriculture to increase crop yield and support a growing global population."",""geographicFocus"":""HQ: Thessaloniki, Greece; also presence in Patra, Greece; Los Gatos, California, USA; Venlo, The Netherlands"",""keyExecutives"":[{""name"":""Dr. Nick Kanopoulos"",""sourceUrl"":""https://www.britesolar.com/about"",""title"":""President & CEO""},{""name"":""Rick Orlando"",""sourceUrl"":""https://www.britesolar.com/about"",""title"":""VP Business Development""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Brite Solar develops innovative PV solar panels designed to enhance greenhouse efficiency and sustainable agriculture. Their core products include: - Solar Glass, which supports agrivoltaics - the simultaneous use of land for food production and renewable energy, - Electrochromic – Dynamic Glass for cost-effective lighting control and building cooling."",""researcherNotes"":null,""sectorDescription"":""Operates in the renewable energy sector, specializing in solar glass technology and photovoltaic solutions for sustainable agriculture and energy-efficient buildings."",""sources"":{""clientCategories"":""https://www.britesolar.com/about"",""companyDescription"":""https://www.britesolar.com/about"",""geographicFocus"":""https://www.britesolar.com/contact"",""keyExecutives"":""https://www.britesolar.com/about"",""productDescription"":""https://www.britesolar.com/products""},""websiteURL"":""http://www.britesolar.com/""}" -ÄIO,https://aio.bio/,"2C Ventures, Nordic Foodtech VC, SmartCap, Voima Ventures",aio.bio,https://www.linkedin.com/company/aio-bio,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://aio.bio/"", - ""companyDescription"": ""ÄIO is a biotechnology company founded in 2022 specializing in producing sustainable and healthier alternatives to palm oil, coconut oil, and animal fats through natural and precision fermentation processes. Their mission focuses on reducing the use of unsustainable ingredients by upcycling low-value by-products into lipid-rich biomass, applying circular design models to maximize positive impact. They develop next-generation fats and oils for food, cosmetics, and oleochemical industries, emphasizing sustainability, health, and reducing biodiversity loss."", - ""productDescription"": ""ÄIO offers next-generation fats and oils produced via natural and precision fermentation, aimed at replacing unsustainable ingredients like palm oil, coconut oil, and animal fats in food, cosmetics, and oleochemical industries. Their products include: \n- RedOil\n- Encapsulated Oil\n- ZymaLipid Complex\nThese serve as substitutes for various vegetable and animal-based oils."", - ""clientCategories"": [""Food Industry"", ""Cosmetics Industry"", ""Oleochemical Industry"", ""Household Products""], - ""sectorDescription"": ""Operates in the biotechnology sector, providing sustainable and healthier alternative fats and oils for food, cosmetics, and oleochemical industries."", - ""geographicFocus"": ""HQ: Akadeemia tee 15, 12618 Tallinn, Estonia; Sales Focus: Not explicitly stated on the website."", - ""keyExecutives"": [ - {""name"": ""Nemailla Bonturi"", ""title"": ""Co-Founder, CEO"", ""sourceUrl"": ""https://aio.bio/investor/""}, - {""name"": ""Petri-Jaan Lahtvee"", ""title"": ""Co-Founder, COO"", ""sourceUrl"": ""https://aio.bio/investor/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aio.bio/about-us/"", - ""productDescription"": ""https://aio.bio/#ourproducts"", - ""clientCategories"": ""https://aio.bio/"", - ""geographicFocus"": ""https://aio.bio/contact/"", - ""keyExecutives"": ""https://aio.bio/investor/"" - } -}","{ - ""websiteURL"": ""https://aio.bio/"", - ""companyDescription"": ""ÄIO is a biotechnology company founded in 2022 specializing in producing sustainable and healthier alternatives to palm oil, coconut oil, and animal fats through natural and precision fermentation processes. Their mission focuses on reducing the use of unsustainable ingredients by upcycling low-value by-products into lipid-rich biomass, applying circular design models to maximize positive impact. They develop next-generation fats and oils for food, cosmetics, and oleochemical industries, emphasizing sustainability, health, and reducing biodiversity loss."", - ""productDescription"": ""ÄIO offers next-generation fats and oils produced via natural and precision fermentation, aimed at replacing unsustainable ingredients like palm oil, coconut oil, and animal fats in food, cosmetics, and oleochemical industries. Their products include: \n- RedOil\n- Encapsulated Oil\n- ZymaLipid Complex\nThese serve as substitutes for various vegetable and animal-based oils."", - ""clientCategories"": [""Food Industry"", ""Cosmetics Industry"", ""Oleochemical Industry"", ""Household Products""], - ""sectorDescription"": ""Operates in the biotechnology sector, providing sustainable and healthier alternative fats and oils for food, cosmetics, and oleochemical industries."", - ""geographicFocus"": ""HQ: Akadeemia tee 15, 12618 Tallinn, Estonia; Sales Focus: Not explicitly stated on the website."", - ""keyExecutives"": [ - {""name"": ""Nemailla Bonturi"", ""title"": ""Co-Founder, CEO"", ""sourceUrl"": ""https://aio.bio/investor/""}, - {""name"": ""Petri-Jaan Lahtvee"", ""title"": ""Co-Founder, COO"", ""sourceUrl"": ""https://aio.bio/investor/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aio.bio/about-us/"", - ""productDescription"": ""https://aio.bio/#ourproducts"", - ""clientCategories"": ""https://aio.bio/"", - ""geographicFocus"": ""https://aio.bio/contact/"", - ""keyExecutives"": ""https://aio.bio/investor/"" - } -}",[],"{ - ""websiteURL"": ""https://aio.bio"", - ""companyDescription"": ""ÄIO is a biotechnology company founded in 2022 specializing in producing sustainable and healthier alternatives to palm oil, coconut oil, and animal fats through natural and precision fermentation processes. Their mission focuses on reducing the use of unsustainable ingredients by upcycling low-value by-products into lipid-rich biomass, applying circular design models to maximize positive impact. They develop next-generation fats and oils for food, cosmetics, and oleochemical industries, emphasizing sustainability, health, and reducing biodiversity loss."", - ""productDescription"": ""ÄIO offers next-generation fats and oils produced via natural and precision fermentation, aimed at replacing unsustainable ingredients like palm oil, coconut oil, and animal fats in food, cosmetics, and oleochemical industries. Their products include RedOil, Encapsulated Oil, and ZymaLipid Complex, which serve as substitutes for various vegetable and animal-based oils. Their technology transforms agricultural and wood industry by-products into nutrient-rich, sustainable oils using specialized yeast fermentation, significantly reducing land and water usage compared to conventional oil production."", - ""clientCategories"": [ - ""Food Industry"", - ""Cosmetics Industry"", - ""Oleochemical Industry"", - ""Household Products"" - ], - ""sectorDescription"": ""Operates in the biotechnology sector, providing sustainable and healthier alternative fats and oils for food, cosmetics, and oleochemical industries."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Nemailla Bonturi"", - ""title"": ""Co-Founder, CEO"", - ""sourceUrl"": ""https://aio.bio/investor/"" - }, - { - ""name"": ""Petri-Jaan Lahtvee"", - ""title"": ""Co-Founder, COO"", - ""sourceUrl"": ""https://aio.bio/investor/"" - } - ], - ""researcherNotes"": ""The geographic focus of ÄIO is not explicitly stated beyond its headquarters in Tallinn, Estonia. Information from multiple company-controlled sources confirms the founding year (2022), location, and executive leadership. ÄIO specializes in sustainable biotechnology fats and oils produced via fermentation, transforming industrial side-streams. No conflicting data found. Corporate website and credible media sources corroborate all principal company details."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aio.bio/about-us/"", - ""productDescription"": ""https://aio.bio/#ourproducts"", - ""clientCategories"": ""https://aio.bio/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://aio.bio/investor/"" - } -}","{""clientCategories"":[""Food Industry"",""Cosmetics Industry"",""Oleochemical Industry"",""Household Products""],""companyDescription"":""ÄIO is a biotechnology company founded in 2022 specializing in producing sustainable and healthier alternatives to palm oil, coconut oil, and animal fats through natural and precision fermentation processes. Their mission focuses on reducing the use of unsustainable ingredients by upcycling low-value by-products into lipid-rich biomass, applying circular design models to maximize positive impact. They develop next-generation fats and oils for food, cosmetics, and oleochemical industries, emphasizing sustainability, health, and reducing biodiversity loss."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Nemailla Bonturi"",""sourceUrl"":""https://aio.bio/investor/"",""title"":""Co-Founder, CEO""},{""name"":""Petri-Jaan Lahtvee"",""sourceUrl"":""https://aio.bio/investor/"",""title"":""Co-Founder, COO""}],""missingImportantFields"":[],""productDescription"":""ÄIO offers next-generation fats and oils produced via natural and precision fermentation, aimed at replacing unsustainable ingredients like palm oil, coconut oil, and animal fats in food, cosmetics, and oleochemical industries. Their products include RedOil, Encapsulated Oil, and ZymaLipid Complex, which serve as substitutes for various vegetable and animal-based oils. Their technology transforms agricultural and wood industry by-products into nutrient-rich, sustainable oils using specialized yeast fermentation, significantly reducing land and water usage compared to conventional oil production."",""researcherNotes"":""The geographic focus of ÄIO is not explicitly stated beyond its headquarters in Tallinn, Estonia. Information from multiple company-controlled sources confirms the founding year (2022), location, and executive leadership. ÄIO specializes in sustainable biotechnology fats and oils produced via fermentation, transforming industrial side-streams. No conflicting data found. Corporate website and credible media sources corroborate all principal company details."",""sectorDescription"":""Operates in the biotechnology sector, providing sustainable and healthier alternative fats and oils for food, cosmetics, and oleochemical industries."",""sources"":{""clientCategories"":""https://aio.bio/"",""companyDescription"":""https://aio.bio/about-us/"",""geographicFocus"":null,""keyExecutives"":""https://aio.bio/investor/"",""productDescription"":""https://aio.bio/#ourproducts""},""websiteURL"":""https://aio.bio""}","Correctness: 100% Completeness: 95% The statement about ÄIO is fully supported by multiple credible and up-to-date sources. ÄIO was founded in January 2022, headquartered in Tallinn, Estonia, and co-founded by Nemailla Bonturi (CEO) and Petri-Jaan Lahtvee (COO), as confirmed by the company’s official investor page and independent articles from e27.co and EstonianWorld.com[1][2][4][5]. The company specializes in producing sustainable and healthier alternatives to palm oil, coconut oil, and animal fats via natural and precision fermentation using specialized yeast, converting wood and agricultural by-products into lipid-rich biomass to create fats and oils for food, cosmetics, and oleochemical industries[2][4][5]. Key product lines such as RedOil, Encapsulated Oil, and ZymaLipid Complex are noted as substitutes for conventional oils, validated by company sources[5]. The mission emphasizing sustainability, circular design, and reducing biodiversity loss is explicitly stated on the company website[5]. The only slight completeness deduction arises from the geographic focus, which remains unspecified beyond being headquartered in Estonia, although the presence of international partners and European project participation is mentioned[4]. Overall, the information is accurate and comprehensive for an overview based on the latest public sources as of 2025-09-11. -https://aio.bio/about-us/ -https://aio.bio/investor/ -https://e27.co/startups/io-tech/ -https://estonianworld.com/business/estonian-food-tech-startup-aio-secures-e6-million-for-demo-plant/","{""clientCategories"":[""Food Industry"",""Cosmetics Industry"",""Oleochemical Industry"",""Household Products""],""companyDescription"":""ÄIO is a biotechnology company founded in 2022 specializing in producing sustainable and healthier alternatives to palm oil, coconut oil, and animal fats through natural and precision fermentation processes. Their mission focuses on reducing the use of unsustainable ingredients by upcycling low-value by-products into lipid-rich biomass, applying circular design models to maximize positive impact. They develop next-generation fats and oils for food, cosmetics, and oleochemical industries, emphasizing sustainability, health, and reducing biodiversity loss."",""geographicFocus"":""HQ: Akadeemia tee 15, 12618 Tallinn, Estonia; Sales Focus: Not explicitly stated on the website."",""keyExecutives"":[{""name"":""Nemailla Bonturi"",""sourceUrl"":""https://aio.bio/investor/"",""title"":""Co-Founder, CEO""},{""name"":""Petri-Jaan Lahtvee"",""sourceUrl"":""https://aio.bio/investor/"",""title"":""Co-Founder, COO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""ÄIO offers next-generation fats and oils produced via natural and precision fermentation, aimed at replacing unsustainable ingredients like palm oil, coconut oil, and animal fats in food, cosmetics, and oleochemical industries. Their products include: \n- RedOil\n- Encapsulated Oil\n- ZymaLipid Complex\nThese serve as substitutes for various vegetable and animal-based oils."",""researcherNotes"":null,""sectorDescription"":""Operates in the biotechnology sector, providing sustainable and healthier alternative fats and oils for food, cosmetics, and oleochemical industries."",""sources"":{""clientCategories"":""https://aio.bio/"",""companyDescription"":""https://aio.bio/about-us/"",""geographicFocus"":""https://aio.bio/contact/"",""keyExecutives"":""https://aio.bio/investor/"",""productDescription"":""https://aio.bio/#ourproducts""},""websiteURL"":""https://aio.bio/""}" -Husk Ventures,http://www.huskventures.com/,Mekong Capital,huskventures.com,https://www.linkedin.com/company/huskventures,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.huskventures.com/"", - ""companyDescription"": ""HUSK is an impact-driven business co-founded by Heloise Buckland and Carol Rius, based in Barcelona (Spain) and Phnom Penh (Cambodia), focused on combating social inequality and climate change through sustainable agriculture. They use 20 years of sustainability and business experience to create solutions addressing soil degradation, poverty, and climate change, aimed at supporting smallholder farmers. Their mission includes promoting living soils, healthy crops, fair wages for farmers, and climate justice. The company applies ancient knowledge of biochar to modern depleted soils by converting rice husks into biochar, fertilizers, and crop protection products using pyrolysis. This process sequesters carbon in the soil for hundreds of years. Their team includes agronomists, biologists, engineers, and biochar and regenerative agriculture experts committed to making a difference."", - ""productDescription"": ""HUSK's core products consist of biochar-based agricultural solutions that enhance soil fertility, increase crop yields, and support sustainable farming. Their products include:\n- BIOCHAR: Organic rice husk biochar that improves water holding capacity, nutrient release, and soil structure, certified by the European Biochar Certificate (EBC-Agro Organic standard).\n- ONIX P9: An organic, granulated biochar-based fertilizer embedding nutrients and biostimulants that improve soil pH, moisture availability, and crop resilience.\n- NIR: A natural crop protection product containing over 300 organic compounds that repel insects and prevent diseases without chemicals.\n- CBF: A multi-purpose substrate blending biochar, vermicompost, and nutrients to enhance germination, root growth, and soil quality."", - ""clientCategories"": [""smallholder farmers"", ""rural communities"", ""vegetable growers"", ""fruit and nut tree growers"", ""arable crop farmers""], - ""sectorDescription"": ""Operates in the agricultural sector, specializing in biochar-based fertilizers, soil enhancers, and sustainable crop protection products."", - ""geographicFocus"": ""HQ: Singapore (HUSK CBE PTE. LTD, 36 Robinson Road, #20-01, City House); Offices in Cambodia (Phnom Penh), Vietnam (Ho Chi Minh City), and Spain (Barcelona); Sales focus on Southeast Asia and Europe."", - ""keyExecutives"": [ - {""name"": ""Heloise Buckland"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://www.huskventures.com/about-us/""}, - {""name"": ""Carol Rius"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://www.huskventures.com/about-us/""} - ], - ""linkedDocuments"": [ - ""https://www.huskventures.com/?jet_download=5a9d398e073001b8fb6977be70d343743835d14f"", - ""https://huskventures.com/?jet_download=5e29b07089da9718d473f4de7b9f1fc76b9c3ddf"", - ""https://huskventures.com/?jet_download=b944489a60acd6d8ef83357a4ce9864686c9fbbd"", - ""https://huskventures.com/?jet_download=ef19a350e5d5b25783e82b255a966adf8abd417b"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.huskventures.com/about-us/"", - ""productDescription"": ""https://www.huskventures.com/product/biochar/"", - ""clientCategories"": ""https://www.huskventures.com/"", - ""geographicFocus"": ""https://www.huskventures.com/contact/"", - ""keyExecutives"": ""https://www.huskventures.com/about-us/"" - } -}","{ - ""websiteURL"": ""http://www.huskventures.com/"", - ""companyDescription"": ""HUSK is an impact-driven business co-founded by Heloise Buckland and Carol Rius, based in Barcelona (Spain) and Phnom Penh (Cambodia), focused on combating social inequality and climate change through sustainable agriculture. They use 20 years of sustainability and business experience to create solutions addressing soil degradation, poverty, and climate change, aimed at supporting smallholder farmers. Their mission includes promoting living soils, healthy crops, fair wages for farmers, and climate justice. The company applies ancient knowledge of biochar to modern depleted soils by converting rice husks into biochar, fertilizers, and crop protection products using pyrolysis. This process sequesters carbon in the soil for hundreds of years. Their team includes agronomists, biologists, engineers, and biochar and regenerative agriculture experts committed to making a difference."", - ""productDescription"": ""HUSK's core products consist of biochar-based agricultural solutions that enhance soil fertility, increase crop yields, and support sustainable farming. Their products include:\n- BIOCHAR: Organic rice husk biochar that improves water holding capacity, nutrient release, and soil structure, certified by the European Biochar Certificate (EBC-Agro Organic standard).\n- ONIX P9: An organic, granulated biochar-based fertilizer embedding nutrients and biostimulants that improve soil pH, moisture availability, and crop resilience.\n- NIR: A natural crop protection product containing over 300 organic compounds that repel insects and prevent diseases without chemicals.\n- CBF: A multi-purpose substrate blending biochar, vermicompost, and nutrients to enhance germination, root growth, and soil quality."", - ""clientCategories"": [""smallholder farmers"", ""rural communities"", ""vegetable growers"", ""fruit and nut tree growers"", ""arable crop farmers""], - ""sectorDescription"": ""Operates in the agricultural sector, specializing in biochar-based fertilizers, soil enhancers, and sustainable crop protection products."", - ""geographicFocus"": ""HQ: Singapore (HUSK CBE PTE. LTD, 36 Robinson Road, #20-01, City House); Offices in Cambodia (Phnom Penh), Vietnam (Ho Chi Minh City), and Spain (Barcelona); Sales focus on Southeast Asia and Europe."", - ""keyExecutives"": [ - {""name"": ""Heloise Buckland"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://www.huskventures.com/about-us/""}, - {""name"": ""Carol Rius"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://www.huskventures.com/about-us/""} - ], - ""linkedDocuments"": [ - ""https://www.huskventures.com/?jet_download=5a9d398e073001b8fb6977be70d343743835d14f"", - ""https://huskventures.com/?jet_download=5e29b07089da9718d473f4de7b9f1fc76b9c3ddf"", - ""https://huskventures.com/?jet_download=b944489a60acd6d8ef83357a4ce9864686c9fbbd"", - ""https://huskventures.com/?jet_download=ef19a350e5d5b25783e82b255a966adf8abd417b"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.huskventures.com/about-us/"", - ""productDescription"": ""https://www.huskventures.com/product/biochar/"", - ""clientCategories"": ""https://www.huskventures.com/"", - ""geographicFocus"": ""https://www.huskventures.com/contact/"", - ""keyExecutives"": ""https://www.huskventures.com/about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://www.huskventures.com"", - ""companyDescription"": ""HUSK is an impact-driven business co-founded by Heloise Buckland and Carol Rius, based in Barcelona (Spain) and Phnom Penh (Cambodia), focused on combating social inequality and climate change through sustainable agriculture. They leverage 20 years of sustainability and business experience to create long-term solutions to soil degradation, poverty, and climate change, supporting smallholder farmers with sustainable biochar-based agricultural products. The company uses ancient biochar knowledge combined with modern pyrolysis technology to convert rice husks into biochar, fertilizers, and crop protection products that sequester carbon in soils for hundreds of years. Their multidisciplinary team includes agronomists, biologists, engineers, and regenerative agriculture experts committed to impact and innovation."", - ""productDescription"": ""HUSK offers biochar-based agricultural solutions designed to enhance soil fertility, improve crop yields, and promote sustainable farming practices. Their key products include: BIOCHAR, an organic rice husk biochar certified by the European Biochar Certificate that improves soil water retention and nutrient availability; ONIX P9, an organic granulated biochar fertilizer with embedded nutrients and biostimulants that improve soil pH and crop resilience; NIR, a natural crop protection product with over 300 organic compounds that repel pests and prevent diseases chemically-free; and CBF, a multi-purpose substrate blending biochar, vermicompost, and nutrients to boost seed germination and root growth."", - ""clientCategories"": [ - ""Smallholder Farmers"", - ""Rural Communities"", - ""Vegetable Growers"", - ""Fruit And Nut Tree Growers"", - ""Arable Crop Farmers"" - ], - ""sectorDescription"": ""Agricultural sector specializing in biochar-based fertilizers, soil enhancers, and sustainable crop protection products."", - ""geographicFocus"": ""Headquartered in Singapore with offices in Cambodia (Phnom Penh), Vietnam (Ho Chi Minh City), and Spain (Barcelona); commercial focus on Southeast Asia and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Heloise Buckland"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.huskventures.com/about-us/"" - }, - { - ""name"": ""Carol Rius"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.huskventures.com/about-us/"" - } - ], - ""researcherNotes"": ""The entity was confirmed as HUSK Ventures using multiple signals, including the official domain huskventures.com, key executives Heloise Buckland and Carol Rius, and their distinctive focus on biochar-based fertilizers and sustainable agriculture. Geographic focus information was inferred from the company contact page, indicating headquarters in Singapore with offices in Cambodia, Vietnam, and Spain. No conflicting information was found. Key executives listed only include co-founders as no additional recent senior leadership data was found on LinkedIn or company sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.huskventures.com/about-us/"", - ""productDescription"": ""https://www.huskventures.com/product/biochar/"", - ""clientCategories"": ""https://www.huskventures.com/"", - ""geographicFocus"": ""https://www.huskventures.com/contact/"", - ""keyExecutives"": ""https://www.huskventures.com/about-us/"" - } -}","{""clientCategories"":[""Smallholder Farmers"",""Rural Communities"",""Vegetable Growers"",""Fruit And Nut Tree Growers"",""Arable Crop Farmers""],""companyDescription"":""HUSK is an impact-driven business co-founded by Heloise Buckland and Carol Rius, based in Barcelona (Spain) and Phnom Penh (Cambodia), focused on combating social inequality and climate change through sustainable agriculture. They leverage 20 years of sustainability and business experience to create long-term solutions to soil degradation, poverty, and climate change, supporting smallholder farmers with sustainable biochar-based agricultural products. The company uses ancient biochar knowledge combined with modern pyrolysis technology to convert rice husks into biochar, fertilizers, and crop protection products that sequester carbon in soils for hundreds of years. Their multidisciplinary team includes agronomists, biologists, engineers, and regenerative agriculture experts committed to impact and innovation."",""geographicFocus"":""Headquartered in Singapore with offices in Cambodia (Phnom Penh), Vietnam (Ho Chi Minh City), and Spain (Barcelona); commercial focus on Southeast Asia and Europe."",""keyExecutives"":[{""name"":""Heloise Buckland"",""sourceUrl"":""https://www.huskventures.com/about-us/"",""title"":""Co-founder""},{""name"":""Carol Rius"",""sourceUrl"":""https://www.huskventures.com/about-us/"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""HUSK offers biochar-based agricultural solutions designed to enhance soil fertility, improve crop yields, and promote sustainable farming practices. Their key products include: BIOCHAR, an organic rice husk biochar certified by the European Biochar Certificate that improves soil water retention and nutrient availability; ONIX P9, an organic granulated biochar fertilizer with embedded nutrients and biostimulants that improve soil pH and crop resilience; NIR, a natural crop protection product with over 300 organic compounds that repel pests and prevent diseases chemically-free; and CBF, a multi-purpose substrate blending biochar, vermicompost, and nutrients to boost seed germination and root growth."",""researcherNotes"":""The entity was confirmed as HUSK Ventures using multiple signals, including the official domain huskventures.com, key executives Heloise Buckland and Carol Rius, and their distinctive focus on biochar-based fertilizers and sustainable agriculture. Geographic focus information was inferred from the company contact page, indicating headquarters in Singapore with offices in Cambodia, Vietnam, and Spain. No conflicting information was found. Key executives listed only include co-founders as no additional recent senior leadership data was found on LinkedIn or company sources."",""sectorDescription"":""Agricultural sector specializing in biochar-based fertilizers, soil enhancers, and sustainable crop protection products."",""sources"":{""clientCategories"":""https://www.huskventures.com/"",""companyDescription"":""https://www.huskventures.com/about-us/"",""geographicFocus"":""https://www.huskventures.com/contact/"",""keyExecutives"":""https://www.huskventures.com/about-us/"",""productDescription"":""https://www.huskventures.com/product/biochar/""},""websiteURL"":""https://www.huskventures.com""}","Correctness: 98% Completeness: 95% The company description of HUSK Ventures is highly accurate and well-supported by multiple authoritative sources. The co-founders are confirmed as Heloise Buckland and Carol Rius, with the business focused on sustainable agriculture using biochar products derived from rice husks, operating primarily in Cambodia and Spain, with additional offices in Vietnam and Singapore as the HQ, according to company contact and about pages[1][2][3][4]. Their flagship innovation is a pyrolysis process converting rice husks into biochar-based fertilizers and crop protectants, which sequester carbon for centuries while improving soil fertility and crop yields—a core claim backed by detailed product descriptions and impact reports[1][5]. The geographic footprint and team composition (agronomists, biologists, engineers) also match the data provided[1][2]. The product portfolio, including BIOCHAR certified under the European Biochar Certificate, ONIX P9, NIR crop protection product, and a biochar/vermicompost substrate (CBF), corresponds precisely with their official product page[5]. Minor discrepancies arise regarding the exact current headquarters location: the client data states Singapore as HQ, but main company text emphasizes Barcelona and Phnom Penh with offices in Vietnam, which reflects the evolving footprint but is consistent with multiple official company sources mentioning these locations, meriting a small completeness deduction for lack of explicit dated confirmation for Singapore HQ[1][3][4]. Leadership listing only includes co-founders, which aligns with public sources, though no further senior leader info was found, supporting completeness. No material claims about funding or additional staff appear in the client data, so no gaps there. Overall, the information is authoritative, recent (2023–2025), and corroborated by the official HUSK website and recognized third-party profiles like Mekong Capital and Switch Asia[1][2][3][4][5]. URLs: https://www.huskventures.com/about-us/ https://www.huskventures.com/contact/ https://www.huskventures.com/product/biochar/ https://www.switch-asia.eu/site/assets/files/4098/husk_cambodia.pdf https://www.mekongcapital.com/blog/post/the-story-of-husk/","{""clientCategories"":[""smallholder farmers"",""rural communities"",""vegetable growers"",""fruit and nut tree growers"",""arable crop farmers""],""companyDescription"":""HUSK is an impact-driven business co-founded by Heloise Buckland and Carol Rius, based in Barcelona (Spain) and Phnom Penh (Cambodia), focused on combating social inequality and climate change through sustainable agriculture. They use 20 years of sustainability and business experience to create solutions addressing soil degradation, poverty, and climate change, aimed at supporting smallholder farmers. Their mission includes promoting living soils, healthy crops, fair wages for farmers, and climate justice. The company applies ancient knowledge of biochar to modern depleted soils by converting rice husks into biochar, fertilizers, and crop protection products using pyrolysis. This process sequesters carbon in the soil for hundreds of years. Their team includes agronomists, biologists, engineers, and biochar and regenerative agriculture experts committed to making a difference."",""geographicFocus"":""HQ: Singapore (HUSK CBE PTE. LTD, 36 Robinson Road, #20-01, City House); Offices in Cambodia (Phnom Penh), Vietnam (Ho Chi Minh City), and Spain (Barcelona); Sales focus on Southeast Asia and Europe."",""keyExecutives"":[{""name"":""Heloise Buckland"",""sourceUrl"":""https://www.huskventures.com/about-us/"",""title"":""Co-founder""},{""name"":""Carol Rius"",""sourceUrl"":""https://www.huskventures.com/about-us/"",""title"":""Co-founder""}],""linkedDocuments"":[""https://www.huskventures.com/?jet_download=5a9d398e073001b8fb6977be70d343743835d14f"",""https://huskventures.com/?jet_download=5e29b07089da9718d473f4de7b9f1fc76b9c3ddf"",""https://huskventures.com/?jet_download=b944489a60acd6d8ef83357a4ce9864686c9fbbd"",""https://huskventures.com/?jet_download=ef19a350e5d5b25783e82b255a966adf8abd417b""],""missingImportantFields"":[],""productDescription"":""HUSK's core products consist of biochar-based agricultural solutions that enhance soil fertility, increase crop yields, and support sustainable farming. Their products include:\n- BIOCHAR: Organic rice husk biochar that improves water holding capacity, nutrient release, and soil structure, certified by the European Biochar Certificate (EBC-Agro Organic standard).\n- ONIX P9: An organic, granulated biochar-based fertilizer embedding nutrients and biostimulants that improve soil pH, moisture availability, and crop resilience.\n- NIR: A natural crop protection product containing over 300 organic compounds that repel insects and prevent diseases without chemicals.\n- CBF: A multi-purpose substrate blending biochar, vermicompost, and nutrients to enhance germination, root growth, and soil quality."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural sector, specializing in biochar-based fertilizers, soil enhancers, and sustainable crop protection products."",""sources"":{""clientCategories"":""https://www.huskventures.com/"",""companyDescription"":""https://www.huskventures.com/about-us/"",""geographicFocus"":""https://www.huskventures.com/contact/"",""keyExecutives"":""https://www.huskventures.com/about-us/"",""productDescription"":""https://www.huskventures.com/product/biochar/""},""websiteURL"":""http://www.huskventures.com/""}" -HEMAV,https://hemav.com,"Future Food Fund, Inclimo Climate Tech Fund, PureTerra Ventures",hemav.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://hemav.com"", - ""companyDescription"": ""Hemav was founded in 2012 by Alex Gomar Manresa in Castelldefels, Spain. The company operates in the aerial photography and remote sensing sector using proprietary unmanned aerial vehicles (drones)."", - ""productDescription"": ""Hemav's products and services include aerial photography, remote sensing primarily for precision agriculture, surveying and mapping, industrial inspections, water management, media production filming, and drone pilot training courses."", - ""clientCategories"": [""Agriculture"",""Industrial Inspection"",""Media Production""], - ""sectorDescription"": ""Operates in the aerial photography and remote sensing sector using proprietary UAV technology, mainly serving precision agriculture, industrial, and media industries."", - ""geographicFocus"": ""HQ: Castelldefels, Spain; Sales Focus: Spain and potential international markets."", - ""keyExecutives"": [ - { - ""name"": ""Alex Gomar Manresa"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company's own website had no content available; data was sourced from a business intelligence platform Tracxn for accuracy."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""productDescription"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""clientCategories"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""geographicFocus"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""keyExecutives"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"" - } -}","{ - ""websiteURL"": ""https://hemav.com"", - ""companyDescription"": ""Hemav was founded in 2012 by Alex Gomar Manresa in Castelldefels, Spain. The company operates in the aerial photography and remote sensing sector using proprietary unmanned aerial vehicles (drones)."", - ""productDescription"": ""Hemav's products and services include aerial photography, remote sensing primarily for precision agriculture, surveying and mapping, industrial inspections, water management, media production filming, and drone pilot training courses."", - ""clientCategories"": [""Agriculture"",""Industrial Inspection"",""Media Production""], - ""sectorDescription"": ""Operates in the aerial photography and remote sensing sector using proprietary UAV technology, mainly serving precision agriculture, industrial, and media industries."", - ""geographicFocus"": ""HQ: Castelldefels, Spain; Sales Focus: Spain and potential international markets."", - ""keyExecutives"": [ - { - ""name"": ""Alex Gomar Manresa"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company's own website had no content available; data was sourced from a business intelligence platform Tracxn for accuracy."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""productDescription"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""clientCategories"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""geographicFocus"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""keyExecutives"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"" - } -}",[],"{ - ""websiteURL"": ""https://hemav.com"", - ""companyDescription"": ""Hemav, founded in 2012 by Alex Gomar Manresa in Castelldefels, Spain, is an agritech company specializing in aerial photography and remote sensing using proprietary unmanned aerial vehicles (drones). The company focuses on delivering AI-driven solutions to empower agriculturalists and other industries by optimizing resource use, improving yield predictions, and promoting sustainability through advanced technologies such as its LAYERS platform. Hemav mainly serves precision agriculture, industrial inspection, and media production sectors."", - ""productDescription"": ""Hemav's flagship product, LAYERS, is an AI-powered SaaS platform that integrates satellite imagery, drone data, soil sensors, and geospatial analytics to provide high-precision crop predictive models. This platform helps users optimize water usage, reduce input costs by up to 30%, enhance logistics, and increase yields while supporting sustainability with blockchain-secured traceability and zero-deforestation certification. Hemav also offers consultancy and training services tailored to local agricultural challenges through its CROP MASTERS initiative."", - ""clientCategories"": [ - ""Agriculture"", - ""Industrial Inspection"", - ""Media Production"" - ], - ""sectorDescription"": ""Operates in the agritech sector, specializing in AI-driven aerial photography and remote sensing technologies for sustainable precision agriculture and industrial applications."", - ""geographicFocus"": ""Headquartered in Castelldefels, Spain, Hemav expanded its operations to 24 countries by 2024, with a sales focus both domestically and internationally."", - ""keyExecutives"": [ - { - ""name"": ""Alex Gomar Manresa"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"" - }, - { - ""name"": ""Xavier Silva García"", - ""title"": ""Co-Founder & CEO"", - ""sourceUrl"": ""https://www.vestbee.com/blog/articles/hemav-secures-8-m"" - } - ], - ""researcherNotes"": ""The company identity is confirmed by matching domain hemav.com, founding year 2012, HQ in Castelldefels, Spain, and focus on aerial drones and AI for agriculture. There is a dual CEO mention: Alex Gomar Manresa (founder/CEO per Tracxn) and Xavier Silva García (co-founder/CEO per multiple 2024 news sources). It is likely the founders share leadership roles or that Silva recently took CEO role, but definitive current title split is unclear. Geographic footprint expanded to 24 countries by 2024, indicating substantial international growth. Lack of detailed official filings limits further verification."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""productDescription"": ""https://layerscrop.com/en/blog/hemav-secures-e8-million-funding-agriculture/"", - ""clientCategories"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"", - ""geographicFocus"": ""https://www.eu-startups.com/2024/12/barcelona-based-hemav-raises-e8-million-to-advance-ai-driven-sustainable-agriculture/"", - ""keyExecutives"": ""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"" - } -}","{""clientCategories"":[""Agriculture"",""Industrial Inspection"",""Media Production""],""companyDescription"":""Hemav, founded in 2012 by Alex Gomar Manresa in Castelldefels, Spain, is an agritech company specializing in aerial photography and remote sensing using proprietary unmanned aerial vehicles (drones). The company focuses on delivering AI-driven solutions to empower agriculturalists and other industries by optimizing resource use, improving yield predictions, and promoting sustainability through advanced technologies such as its LAYERS platform. Hemav mainly serves precision agriculture, industrial inspection, and media production sectors."",""geographicFocus"":""Headquartered in Castelldefels, Spain, Hemav expanded its operations to 24 countries by 2024, with a sales focus both domestically and internationally."",""keyExecutives"":[{""name"":""Alex Gomar Manresa"",""sourceUrl"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""title"":""Founder & CEO""},{""name"":""Xavier Silva García"",""sourceUrl"":""https://www.vestbee.com/blog/articles/hemav-secures-8-m"",""title"":""Co-Founder & CEO""}],""missingImportantFields"":[],""productDescription"":""Hemav's flagship product, LAYERS, is an AI-powered SaaS platform that integrates satellite imagery, drone data, soil sensors, and geospatial analytics to provide high-precision crop predictive models. This platform helps users optimize water usage, reduce input costs by up to 30%, enhance logistics, and increase yields while supporting sustainability with blockchain-secured traceability and zero-deforestation certification. Hemav also offers consultancy and training services tailored to local agricultural challenges through its CROP MASTERS initiative."",""researcherNotes"":""The company identity is confirmed by matching domain hemav.com, founding year 2012, HQ in Castelldefels, Spain, and focus on aerial drones and AI for agriculture. There is a dual CEO mention: Alex Gomar Manresa (founder/CEO per Tracxn) and Xavier Silva García (co-founder/CEO per multiple 2024 news sources). It is likely the founders share leadership roles or that Silva recently took CEO role, but definitive current title split is unclear. Geographic footprint expanded to 24 countries by 2024, indicating substantial international growth. Lack of detailed official filings limits further verification."",""sectorDescription"":""Operates in the agritech sector, specializing in AI-driven aerial photography and remote sensing technologies for sustainable precision agriculture and industrial applications."",""sources"":{""clientCategories"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""companyDescription"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""geographicFocus"":""https://www.eu-startups.com/2024/12/barcelona-based-hemav-raises-e8-million-to-advance-ai-driven-sustainable-agriculture/"",""keyExecutives"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""productDescription"":""https://layerscrop.com/en/blog/hemav-secures-e8-million-funding-agriculture/""},""websiteURL"":""https://hemav.com""}","Correctness: 98% Completeness: 95% The provided description of Hemav is highly accurate and well-supported by multiple authoritative sources from 2024, including official company blogs and investor write-ups. Hemav was indeed founded in 2012 by Alex Gomar Manresa and Xavier Silva García in Castelldefels, Spain, and has expanded operations to 24 countries by 2024 with a focus on agritech sectors like precision agriculture, industrial inspection, and media production[1][2][3]. The flagship AI-powered SaaS platform, LAYERS, integrates satellite, drone, soil sensor data, and geospatial analytics to deliver predictive crop models, optimize resource use, reduce input costs (up to 30%), improve water efficiency (up to 15%), and supports sustainability features such as blockchain traceability and certifications[1][2][4][5]. Leadership titles show some ambiguity with co-founder and CEO roles shared or transitioning between Alex Gomar Manresa and Xavier Silva García in recent reports; this slight uncertainty minimally affects correctness[1][2]. The €8 million funding round led by Future Food Fund and others in 2024 is confirmed, supporting global scaling of LAYERS[1][2]. The description lacks only minor granularity on exact CEO title splits and detailed official filings of the company but otherwise reflects all major verifiable facts consistently. Key URLs supporting this are https://www.vestbee.com/blog/articles/hemav-secures-8-m, https://startupsreal.com/hemav-paves-the-way-for-agricultural-innovation-with-e8m-funding-boost/, https://www.pureterra.com/stories/hemav-new-addition-to-the-pureterra-ventures-portfolio, and Hemav’s own documentation https://docs.layers.hemav.com/en/getting-started/intro.html.","{""clientCategories"":[""Agriculture"",""Industrial Inspection"",""Media Production""],""companyDescription"":""Hemav was founded in 2012 by Alex Gomar Manresa in Castelldefels, Spain. The company operates in the aerial photography and remote sensing sector using proprietary unmanned aerial vehicles (drones)."",""geographicFocus"":""HQ: Castelldefels, Spain; Sales Focus: Spain and potential international markets."",""keyExecutives"":[{""name"":""Alex Gomar Manresa"",""sourceUrl"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""title"":""Founder & CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Hemav's products and services include aerial photography, remote sensing primarily for precision agriculture, surveying and mapping, industrial inspections, water management, media production filming, and drone pilot training courses."",""researcherNotes"":""The company's own website had no content available; data was sourced from a business intelligence platform Tracxn for accuracy."",""sectorDescription"":""Operates in the aerial photography and remote sensing sector using proprietary UAV technology, mainly serving precision agriculture, industrial, and media industries."",""sources"":{""clientCategories"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""companyDescription"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""geographicFocus"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""keyExecutives"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg"",""productDescription"":""https://tracxn.com/d/companies/hemav/__0ZpvGDnItgLiM46adANJfosm9Ux_mBRhERU6ATI4VNg""},""websiteURL"":""https://hemav.com""}" -Kibus Petcare,https://www.kibuspetcare.com/,EASO Ventures,kibuspetcare.com,https://www.linkedin.com/company/kibuspetcare,"{""seniorLeadership"":[{""name"":""Albert Homs Basas"",""title"":""Co-Founder & CFO"",""profileURL"":""https://www.linkedin.com/in/albert-homs-basas""}]}","{""seniorLeadership"":[{""name"":""Albert Homs Basas"",""title"":""Co-Founder & CFO"",""profileURL"":""https://www.linkedin.com/in/albert-homs-basas""}]}","{ - ""websiteURL"": ""https://www.kibuspetcare.com/"", - ""companyDescription"": ""Kibus is a company that offers a self-contained robot device that prepares fresh, healthy, and balanced meals for dogs automatically. Their mission is to provide real food for dogs with natural ingredients, ensuring pets are fed nutritious, freshly cooked meals effortlessly. The device is designed for busy pet owners who want quality home-cooked food for their dogs without the time or effort to prepare it themselves. Their approach promises no additives, by-products, or flavors, only real ingredients that they would consume themselves. Kibus provides complete nutritional plans formulated by vets and controlled via a mobile app."", - ""productDescription"": ""Our recipes are formulated by veterinarians with easily recognizable natural ingredients, without by-products or additives of any kind. They are gently dehydrated at low temperature to preserve nutrients and flavor. Three specific recipes are offered: Chicken and apple (ingredients include chicken breasts, chicken thighs, whole eggs, rice, potato flakes, fruits and vegetables, ground chia seeds, ground parsley leaf), Cod and pumpkin (ingredients include cod, potato flakes, rice, ground chia seeds, chopped carrot, pumpkin, turmeric powder), and Salmon and rice (ingredients include potato flakes, rice, chia seeds, diced apple, chopped carrot, salmon, whole eggs, red pepper, banana). Nutritional information for each recipe includes crude protein, crude fat, crude fiber, humidity, inorganic matter, calcium, phosphorus, and energy value. Additional product features: fresh ingredients gently dehydrated, 100% real food without by-products, suitable for human consumption, no additives, freshly cooked, recipes prepared by veterinary nutritionists."", - ""clientCategories"": [""Dog owners"", ""Pet parents looking for fresh, natural dog food"", ""Busy pet owners seeking automated feeding solutions""], - ""sectorDescription"": ""Operates in the pet food industry, specializing in automated, fresh, and natural dog meal preparation solutions."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information on company founders or executives, headquarters address, or geographic sales focus. No downloadable document files were found."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.kibuspetcare.com/en/about-us"", - ""productDescription"": ""https://www.kibuspetcare.com/en/nuestras-recetas/"", - ""clientCategories"": ""https://www.kibuspetcare.com/en/faqs/"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.kibuspetcare.com/"", - ""companyDescription"": ""Kibus is a company that offers a self-contained robot device that prepares fresh, healthy, and balanced meals for dogs automatically. Their mission is to provide real food for dogs with natural ingredients, ensuring pets are fed nutritious, freshly cooked meals effortlessly. The device is designed for busy pet owners who want quality home-cooked food for their dogs without the time or effort to prepare it themselves. Their approach promises no additives, by-products, or flavors, only real ingredients that they would consume themselves. Kibus provides complete nutritional plans formulated by vets and controlled via a mobile app."", - ""productDescription"": ""Our recipes are formulated by veterinarians with easily recognizable natural ingredients, without by-products or additives of any kind. They are gently dehydrated at low temperature to preserve nutrients and flavor. Three specific recipes are offered: Chicken and apple (ingredients include chicken breasts, chicken thighs, whole eggs, rice, potato flakes, fruits and vegetables, ground chia seeds, ground parsley leaf), Cod and pumpkin (ingredients include cod, potato flakes, rice, ground chia seeds, chopped carrot, pumpkin, turmeric powder), and Salmon and rice (ingredients include potato flakes, rice, chia seeds, diced apple, chopped carrot, salmon, whole eggs, red pepper, banana). Nutritional information for each recipe includes crude protein, crude fat, crude fiber, humidity, inorganic matter, calcium, phosphorus, and energy value. Additional product features: fresh ingredients gently dehydrated, 100% real food without by-products, suitable for human consumption, no additives, freshly cooked, recipes prepared by veterinary nutritionists."", - ""clientCategories"": [""Dog owners"", ""Pet parents looking for fresh, natural dog food"", ""Busy pet owners seeking automated feeding solutions""], - ""sectorDescription"": ""Operates in the pet food industry, specializing in automated, fresh, and natural dog meal preparation solutions."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information on company founders or executives, headquarters address, or geographic sales focus. No downloadable document files were found."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.kibuspetcare.com/en/about-us"", - ""productDescription"": ""https://www.kibuspetcare.com/en/nuestras-recetas/"", - ""clientCategories"": ""https://www.kibuspetcare.com/en/faqs/"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.kibuspetcare.com"", - ""companyDescription"": ""Kibus is a company that offers a self-contained robot device that prepares fresh, healthy, and balanced meals for dogs automatically. Their mission is to provide real food for dogs with natural ingredients, ensuring pets are fed nutritious, freshly cooked meals effortlessly. The device is designed for busy pet owners who want quality home-cooked food for their dogs without the time or effort to prepare it themselves. Their approach promises no additives, by-products, or flavors, only real ingredients that they would consume themselves. Kibus provides complete nutritional plans formulated by vets and controlled via a mobile app."", - ""productDescription"": ""Kibus offers an automated kitchen appliance that cooks fresh, healthy pet food from multidose capsules of dehydrated, human-grade meats, fruits, and vegetables. The device rehydrates and prepares meals timed to pets’ feeding schedules, delivering minimally processed food that preserves nutrients and flavor. Recipes are veterinarian-formulated with natural ingredients and exclude additives or by-products. The product targets busy pet owners seeking fresh, nutritious, and convenient feeding solutions for their dogs."", - ""clientCategories"": [ - ""Dog Owners"", - ""Pet Parents Looking For Fresh, Natural Dog Food"", - ""Busy Pet Owners Seeking Automated Feeding Solutions"" - ], - ""sectorDescription"": ""Operates in the pet food industry, specializing in automated, fresh, and natural dog meal preparation solutions."", - ""geographicFocus"": ""Headquartered in Igualada, Spain, with a primary sales focus currently unverified."", - ""keyExecutives"": [ - { - ""name"": ""Albert Homs Basas"", - ""title"": ""Co-Founder & CFO"", - ""sourceUrl"": ""https://www.linkedin.com/in/albert-homs-basas"" - } - ], - ""researcherNotes"": ""The company is confirmed as Kibus Petcare S.L., headquartered in Igualada, Spain, founded in 2016. The LinkedIn profile confirms Albert Homs Basas as Co-Founder and CFO. While detailed geographic sales focus is not publicly disclosed, the HQ location is verified from multiple sources. Other key executives are mentioned in media but lack authoritative direct URL for validation. No official leadership page or regulatory filings were found with more comprehensive executive info. The product cooks dehydrated, human-grade pet food capsules automatically. Publicly available sources corroborate the product and business model thoroughly."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kibuspetcare.com/en/about-us"", - ""productDescription"": ""https://www.kibuspetcare.com/en/nuestras-recetas/"", - ""clientCategories"": ""https://www.kibuspetcare.com/en/faqs/"", - ""geographicFocus"": ""https://craft.co/kibus-petcare"", - ""keyExecutives"": ""https://www.linkedin.com/in/albert-homs-basas"" - } -}","{""clientCategories"":[""Dog Owners"",""Pet Parents Looking For Fresh, Natural Dog Food"",""Busy Pet Owners Seeking Automated Feeding Solutions""],""companyDescription"":""Kibus is a company that offers a self-contained robot device that prepares fresh, healthy, and balanced meals for dogs automatically. Their mission is to provide real food for dogs with natural ingredients, ensuring pets are fed nutritious, freshly cooked meals effortlessly. The device is designed for busy pet owners who want quality home-cooked food for their dogs without the time or effort to prepare it themselves. Their approach promises no additives, by-products, or flavors, only real ingredients that they would consume themselves. Kibus provides complete nutritional plans formulated by vets and controlled via a mobile app."",""geographicFocus"":""Headquartered in Igualada, Spain, with a primary sales focus currently unverified."",""keyExecutives"":[{""name"":""Albert Homs Basas"",""sourceUrl"":""https://www.linkedin.com/in/albert-homs-basas"",""title"":""Co-Founder & CFO""}],""missingImportantFields"":[],""productDescription"":""Kibus offers an automated kitchen appliance that cooks fresh, healthy pet food from multidose capsules of dehydrated, human-grade meats, fruits, and vegetables. The device rehydrates and prepares meals timed to pets’ feeding schedules, delivering minimally processed food that preserves nutrients and flavor. Recipes are veterinarian-formulated with natural ingredients and exclude additives or by-products. The product targets busy pet owners seeking fresh, nutritious, and convenient feeding solutions for their dogs."",""researcherNotes"":""The company is confirmed as Kibus Petcare S.L., headquartered in Igualada, Spain, founded in 2016. The LinkedIn profile confirms Albert Homs Basas as Co-Founder and CFO. While detailed geographic sales focus is not publicly disclosed, the HQ location is verified from multiple sources. Other key executives are mentioned in media but lack authoritative direct URL for validation. No official leadership page or regulatory filings were found with more comprehensive executive info. The product cooks dehydrated, human-grade pet food capsules automatically. Publicly available sources corroborate the product and business model thoroughly."",""sectorDescription"":""Operates in the pet food industry, specializing in automated, fresh, and natural dog meal preparation solutions."",""sources"":{""clientCategories"":""https://www.kibuspetcare.com/en/faqs/"",""companyDescription"":""https://www.kibuspetcare.com/en/about-us"",""geographicFocus"":""https://craft.co/kibus-petcare"",""keyExecutives"":""https://www.linkedin.com/in/albert-homs-basas"",""productDescription"":""https://www.kibuspetcare.com/en/nuestras-recetas/""},""websiteURL"":""https://www.kibuspetcare.com""}","Correctness: 97% Completeness: 90% The description of Kibus Petcare as a company headquartered in Igualada, Spain, that offers an automated device for cooking fresh, natural, and veterinarian-formulated meals for dogs is well supported by multiple sources, including the official website and external profiles[1][2][4]. The product’s unique feature of preparing meals from multidose capsules of human-grade dehydrated ingredients aligns precisely with the publicly stated product description[3][4]. Albert Homs Basas is confirmed as Co-Founder and CFO via LinkedIn, consistent with provided details[1]. The company’s focus on busy pet owners, the veterinary nutritional planning, and exclusion of additives or by-products is verified in the company’s official content and press releases[2][4]. The geographic focus is primarily Spain with plans or early moves toward international expansion, supported by the 2024 Series A financing aimed at growth and internationalization[2][3]. The main omission reducing completeness slightly is the lack of a comprehensive leadership team listing beyond Albert Homs Basas due to limited public disclosure, and absence of specifics on current sales footprint beyond Spain despite international distributor interest. Overall, the facts are accurate and largely complete for publicly available information as of September 2025. [https://www.kibuspetcare.com/en/about-us][https://www.linkedin.com/in/albert-homs-basas][https://websummit.com/wp-media/2024/11/Kibus-Petcare-Press-Release.pdf][https://www.zoominfo.com/c/kibus-petcare/467111990][https://solve.mit.edu/challenges/sustainable-food-systems/solutions/28935]","{""clientCategories"":[""Dog owners"",""Pet parents looking for fresh, natural dog food"",""Busy pet owners seeking automated feeding solutions""],""companyDescription"":""Kibus is a company that offers a self-contained robot device that prepares fresh, healthy, and balanced meals for dogs automatically. Their mission is to provide real food for dogs with natural ingredients, ensuring pets are fed nutritious, freshly cooked meals effortlessly. The device is designed for busy pet owners who want quality home-cooked food for their dogs without the time or effort to prepare it themselves. Their approach promises no additives, by-products, or flavors, only real ingredients that they would consume themselves. Kibus provides complete nutritional plans formulated by vets and controlled via a mobile app."",""geographicFocus"":""HQ: Not Available; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Our recipes are formulated by veterinarians with easily recognizable natural ingredients, without by-products or additives of any kind. They are gently dehydrated at low temperature to preserve nutrients and flavor. Three specific recipes are offered: Chicken and apple (ingredients include chicken breasts, chicken thighs, whole eggs, rice, potato flakes, fruits and vegetables, ground chia seeds, ground parsley leaf), Cod and pumpkin (ingredients include cod, potato flakes, rice, ground chia seeds, chopped carrot, pumpkin, turmeric powder), and Salmon and rice (ingredients include potato flakes, rice, chia seeds, diced apple, chopped carrot, salmon, whole eggs, red pepper, banana). Nutritional information for each recipe includes crude protein, crude fat, crude fiber, humidity, inorganic matter, calcium, phosphorus, and energy value. Additional product features: fresh ingredients gently dehydrated, 100% real food without by-products, suitable for human consumption, no additives, freshly cooked, recipes prepared by veterinary nutritionists."",""researcherNotes"":""The website does not provide explicit information on company founders or executives, headquarters address, or geographic sales focus. No downloadable document files were found."",""sectorDescription"":""Operates in the pet food industry, specializing in automated, fresh, and natural dog meal preparation solutions."",""sources"":{""clientCategories"":""https://www.kibuspetcare.com/en/faqs/"",""companyDescription"":""https://www.kibuspetcare.com/en/about-us"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.kibuspetcare.com/en/nuestras-recetas/""},""websiteURL"":""https://www.kibuspetcare.com/""}" -RED Horticulture,https://www.horticulture.red/fr/,"Demeter, European Circular Bioeconomy Fund, Unigrains",horticulture.red,https://www.linkedin.com/company/redhorticulture,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.horticulture.red/fr/"", - ""companyDescription"": ""RED Horticulture is a leader in dynamic lighting solutions aimed at amplifying crop yields, reducing costs, and controlling plant growth cycles year-round through innovative full dynamic luminaires RED T and the MyRED intelligent software. Their mission focuses on optimizing plant growth stages with energy-efficient photobiological technology and offering agronomic partnership and technical support to growers. They innovate in full-LED solutions tailored for various crops including young plants, high-wire crops, seeds, red fruits, cut flowers, and cannabis. RED Horticulture emphasizes sustainable innovation in greenhouse production, leveraging photobiology to enhance agronomic performance and energy efficiency."", - ""productDescription"": ""Our products: Luminaires dynamiques RED T, Capteurs RED Sense sans fil. Our services: Pilotage intelligent MyRED, Support RED. Solutions FULL LED tailored for cannabis cultivation. The photobiology-based solution offers dynamic lighting adjustable at each growth stage to enhance cannabis yield and quality (+56% cannabinoids yield per m², +25% total yield per m² compared to conventional LED). Focus on controlling development stages: mother plant, clone rooting speed, vegetative phase architecture, flowering architecture and cycle time, and maturation to increase inflorescence density and cannabinoid synthesis."", - ""clientCategories"": [""Agricultural producers"", ""Horticulture businesses""], - ""sectorDescription"": ""RED Horticulture operates in the horticulture lighting and photobiology sector, offering dynamic lighting solutions for optimizing plant growth, reducing energy consumption, and controlling crop cycles year-round."", - ""geographicFocus"": ""HQ: 60 Quai Perrache 69002 Lyon - France; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Romain Le Gléau"", - ""title"": ""Expert en Photobiologie"", - ""sourceUrl"": ""https://horticulture.red/fr/a-propos"" - } - ], - ""linkedDocuments"": [ - ""https://horticulture.red/wp-content/uploads/2023/11/DS_gamme_redT_FR.pdf"", - ""https://horticulture.red/wp-content/uploads/2023/11/Notice-installation-MyRED-24082023.pdf"", - ""https://horticulture.red/wp-content/uploads/2023/11/Notice-installation-RED-T-20230925-1.pdf"" - ], - ""researcherNotes"": ""No explicit founders or full senior executive team found on the website. Geographic sales regions are not specified."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://horticulture.red/fr/a-propos"", - ""productDescription"": ""https://horticulture.red/fr/solution-cannabis/"", - ""clientCategories"": ""https://horticulture.red/fr/cas-producteur"", - ""geographicFocus"": ""https://horticulture.red/fr/contact/"", - ""keyExecutives"": ""https://horticulture.red/fr/a-propos"" - } -}","{ - ""websiteURL"": ""https://www.horticulture.red/fr/"", - ""companyDescription"": ""RED Horticulture is a leader in dynamic lighting solutions aimed at amplifying crop yields, reducing costs, and controlling plant growth cycles year-round through innovative full dynamic luminaires RED T and the MyRED intelligent software. Their mission focuses on optimizing plant growth stages with energy-efficient photobiological technology and offering agronomic partnership and technical support to growers. They innovate in full-LED solutions tailored for various crops including young plants, high-wire crops, seeds, red fruits, cut flowers, and cannabis. RED Horticulture emphasizes sustainable innovation in greenhouse production, leveraging photobiology to enhance agronomic performance and energy efficiency."", - ""productDescription"": ""Our products: Luminaires dynamiques RED T, Capteurs RED Sense sans fil. Our services: Pilotage intelligent MyRED, Support RED. Solutions FULL LED tailored for cannabis cultivation. The photobiology-based solution offers dynamic lighting adjustable at each growth stage to enhance cannabis yield and quality (+56% cannabinoids yield per m², +25% total yield per m² compared to conventional LED). Focus on controlling development stages: mother plant, clone rooting speed, vegetative phase architecture, flowering architecture and cycle time, and maturation to increase inflorescence density and cannabinoid synthesis."", - ""clientCategories"": [""Agricultural producers"", ""Horticulture businesses""], - ""sectorDescription"": ""RED Horticulture operates in the horticulture lighting and photobiology sector, offering dynamic lighting solutions for optimizing plant growth, reducing energy consumption, and controlling crop cycles year-round."", - ""geographicFocus"": ""HQ: 60 Quai Perrache 69002 Lyon - France; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Romain Le Gléau"", - ""title"": ""Expert en Photobiologie"", - ""sourceUrl"": ""https://horticulture.red/fr/a-propos"" - } - ], - ""linkedDocuments"": [ - ""https://horticulture.red/wp-content/uploads/2023/11/DS_gamme_redT_FR.pdf"", - ""https://horticulture.red/wp-content/uploads/2023/11/Notice-installation-MyRED-24082023.pdf"", - ""https://horticulture.red/wp-content/uploads/2023/11/Notice-installation-RED-T-20230925-1.pdf"" - ], - ""researcherNotes"": ""No explicit founders or full senior executive team found on the website. Geographic sales regions are not specified."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://horticulture.red/fr/a-propos"", - ""productDescription"": ""https://horticulture.red/fr/solution-cannabis/"", - ""clientCategories"": ""https://horticulture.red/fr/cas-producteur"", - ""geographicFocus"": ""https://horticulture.red/fr/contact/"", - ""keyExecutives"": ""https://horticulture.red/fr/a-propos"" - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.horticulture.red/fr/"", - ""companyDescription"": ""RED Horticulture is a leader in dynamic lighting solutions designed to enhance crop yields, reduce energy consumption, and control plant growth cycles year-round. Founded in 2018 and based in Lyon, France, the company specializes in full-spectrum LED horticultural lights coupled with intelligent software to tailor lighting to each growth stage. Their innovative photobiological technology supports growers in optimizing production quality and energy efficiency across diverse crops including cannabis, young plants, and high-wire crops, with a strong commitment to sustainable agricultural innovation."", - ""productDescription"": ""RED Horticulture offers dynamic luminaires called RED T, wireless sensors (RED Sense), and the MyRED intelligent software for real-time lighting control. Their full-LED solutions are tailored to specific crops such as cannabis, enabling measurable improvements including a +56% increase in cannabinoids yield per square meter and +25% total yield compared to conventional LEDs. These products and services optimize plant growth stages from cloning, vegetative growth, flowering, to maturation by adjusting light spectra dynamically to improve inflorescence density, cannabinoid synthesis, and shorten production cycles."", - ""clientCategories"": [ - ""Agricultural Producers"", - ""Horticulture Businesses"" - ], - ""sectorDescription"": ""Horticulture lighting and photobiology sector focused on dynamic LED solutions for optimizing plant growth, reducing energy consumption, and controlling crop cycles year-round."", - ""geographicFocus"": ""Headquartered in Lyon, France, with a primary sales focus not publicly specified; operations and team span across Europe."", - ""keyExecutives"": [ - { - ""name"": ""Romain Le Gléau"", - ""title"": ""Expert en Photobiologie"", - ""sourceUrl"": ""https://horticulture.red/fr/a-propos"" - } - ], - ""researcherNotes"": ""The company was confirmed as RED Horticulture headquartered at 60 Quai Perrache, Lyon, France, with founding year 2018 per official website and third-party sources. Leadership information is limited to one key executive found on the company site; LinkedIn and external sources do not list additional senior leaders. The geographic sales footprint is unclear beyond European presence and HQ location. No regulatory filings or public senior exec rosters were found. The source website is fluent in French and English but lacks comprehensive leadership disclosure."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.horticulture.red/fr/a-propos"", - ""productDescription"": ""https://www.horticulture.red/fr/solution-cannabis/"", - ""clientCategories"": ""https://www.horticulture.red/fr/cas-producteur"", - ""geographicFocus"": ""https://www.horticulture.red/fr/contact/"", - ""keyExecutives"": ""https://www.horticulture.red/fr/a-propos"" - } -}","{""clientCategories"":[""Agricultural Producers"",""Horticulture Businesses""],""companyDescription"":""RED Horticulture is a leader in dynamic lighting solutions designed to enhance crop yields, reduce energy consumption, and control plant growth cycles year-round. Founded in 2018 and based in Lyon, France, the company specializes in full-spectrum LED horticultural lights coupled with intelligent software to tailor lighting to each growth stage. Their innovative photobiological technology supports growers in optimizing production quality and energy efficiency across diverse crops including cannabis, young plants, and high-wire crops, with a strong commitment to sustainable agricultural innovation."",""geographicFocus"":""Headquartered in Lyon, France, with a primary sales focus not publicly specified; operations and team span across Europe."",""keyExecutives"":[{""name"":""Romain Le Gléau"",""sourceUrl"":""https://horticulture.red/fr/a-propos"",""title"":""Expert en Photobiologie""}],""missingImportantFields"":[],""productDescription"":""RED Horticulture offers dynamic luminaires called RED T, wireless sensors (RED Sense), and the MyRED intelligent software for real-time lighting control. Their full-LED solutions are tailored to specific crops such as cannabis, enabling measurable improvements including a +56% increase in cannabinoids yield per square meter and +25% total yield compared to conventional LEDs. These products and services optimize plant growth stages from cloning, vegetative growth, flowering, to maturation by adjusting light spectra dynamically to improve inflorescence density, cannabinoid synthesis, and shorten production cycles."",""researcherNotes"":""The company was confirmed as RED Horticulture headquartered at 60 Quai Perrache, Lyon, France, with founding year 2018 per official website and third-party sources. Leadership information is limited to one key executive found on the company site; LinkedIn and external sources do not list additional senior leaders. The geographic sales footprint is unclear beyond European presence and HQ location. No regulatory filings or public senior exec rosters were found. The source website is fluent in French and English but lacks comprehensive leadership disclosure."",""sectorDescription"":""Horticulture lighting and photobiology sector focused on dynamic LED solutions for optimizing plant growth, reducing energy consumption, and controlling crop cycles year-round."",""sources"":{""clientCategories"":""https://www.horticulture.red/fr/cas-producteur"",""companyDescription"":""https://www.horticulture.red/fr/a-propos"",""geographicFocus"":""https://www.horticulture.red/fr/contact/"",""keyExecutives"":""https://www.horticulture.red/fr/a-propos"",""productDescription"":""https://www.horticulture.red/fr/solution-cannabis/""},""websiteURL"":""https://www.horticulture.red/fr/""}","Correctness: 95% Completeness: 90% The description provided is largely accurate and aligns well with authoritative sources. RED Horticulture is headquartered at 60 Quai Perrache, Lyon, France, and was founded in 2018, corroborated by the company’s official site and funding news[2][3]. The company specializes in dynamic full-spectrum LED horticultural lighting solutions designed to optimize crop yields, reduce energy consumption, and control plant growth cycles, particularly for crops such as cannabis and high-wire crops, as confirmed on their official website[2][5]. Their products include the RED T luminaires, wireless sensors (RED Sense), and the MyRED software platform for real-time lighting adjustments, which match the product descriptions on the company's site[2][5]. The claim of +56% increase in cannabinoid yield per square meter and +25% total yield compared to conventional LEDs is consistent with marketing information on their cannabis solutions page but lacks independent third-party validation within these sources[2]. Leadership information is limited mostly to Romain Le Gléau as an expert in photobiology on the company about page, with founders and CEO named elsewhere (Louis Golaz and Yassine El Qomri)[2][3][4]. Geographic footprint is primarily European, with offices beyond France in the Netherlands and Switzerland noted[2]. Some funding details like €17 million Series A round led by ECBF, Demeter, and Unigrains in 2023 are confirmed, but no detailed public filings were found[3][4]. Minor discrepancy includes the founding year reported as 2018 on official and third-party sources but 2019 in one business info site[1][2]. Overall, key claims are well supported, though a few financial and leadership details are incompletely documented in public sources. https://www.horticulture.red/en/about/ https://siliconcanals.com/red-horticulture-raises-17m/ https://www.horticulture.red/fr/a-propos https://www.hortidaily.com/article/9301921/red-horticulture-raises-eur2-5-million-and-welcomes-the-participation-of-demeter/ https://www.eu-startups.com/directory/red-horticulture/","{""clientCategories"":[""Agricultural producers"",""Horticulture businesses""],""companyDescription"":""RED Horticulture is a leader in dynamic lighting solutions aimed at amplifying crop yields, reducing costs, and controlling plant growth cycles year-round through innovative full dynamic luminaires RED T and the MyRED intelligent software. Their mission focuses on optimizing plant growth stages with energy-efficient photobiological technology and offering agronomic partnership and technical support to growers. They innovate in full-LED solutions tailored for various crops including young plants, high-wire crops, seeds, red fruits, cut flowers, and cannabis. RED Horticulture emphasizes sustainable innovation in greenhouse production, leveraging photobiology to enhance agronomic performance and energy efficiency."",""geographicFocus"":""HQ: 60 Quai Perrache 69002 Lyon - France; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Romain Le Gléau"",""sourceUrl"":""https://horticulture.red/fr/a-propos"",""title"":""Expert en Photobiologie""}],""linkedDocuments"":[""https://horticulture.red/wp-content/uploads/2023/11/DS_gamme_redT_FR.pdf"",""https://horticulture.red/wp-content/uploads/2023/11/Notice-installation-MyRED-24082023.pdf"",""https://horticulture.red/wp-content/uploads/2023/11/Notice-installation-RED-T-20230925-1.pdf""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Our products: Luminaires dynamiques RED T, Capteurs RED Sense sans fil. Our services: Pilotage intelligent MyRED, Support RED. Solutions FULL LED tailored for cannabis cultivation. The photobiology-based solution offers dynamic lighting adjustable at each growth stage to enhance cannabis yield and quality (+56% cannabinoids yield per m², +25% total yield per m² compared to conventional LED). Focus on controlling development stages: mother plant, clone rooting speed, vegetative phase architecture, flowering architecture and cycle time, and maturation to increase inflorescence density and cannabinoid synthesis."",""researcherNotes"":""No explicit founders or full senior executive team found on the website. Geographic sales regions are not specified."",""sectorDescription"":""RED Horticulture operates in the horticulture lighting and photobiology sector, offering dynamic lighting solutions for optimizing plant growth, reducing energy consumption, and controlling crop cycles year-round."",""sources"":{""clientCategories"":""https://horticulture.red/fr/cas-producteur"",""companyDescription"":""https://horticulture.red/fr/a-propos"",""geographicFocus"":""https://horticulture.red/fr/contact/"",""keyExecutives"":""https://horticulture.red/fr/a-propos"",""productDescription"":""https://horticulture.red/fr/solution-cannabis/""},""websiteURL"":""https://www.horticulture.red/fr/""}" -Weenat,https://weenat.com/contactez-nous/,"European Circular Bioeconomy Fund, IDIA Capital Investissement, Liberset, Pymwymic",weenat.com,https://www.linkedin.com/company/weenat-solutions,"{""seniorLeadership"":[{""name"":""Laurent Leleu"",""title"":""CEO"",""profileUrl"":""https://www.linkedin.com/in/laurent-leleu-a125172b""}]}","{""seniorLeadership"":[{""name"":""Laurent Leleu"",""title"":""CEO"",""profileUrl"":""https://www.linkedin.com/in/laurent-leleu-a125172b""}]}","{ - ""websiteURL"": ""https://weenat.com/contactez-nous/"", - ""companyDescription"": ""Since 2014, Weenat helps farmers face climate change by providing reliable and precise agro-meteorological data to optimize resource management and anticipate climate risks. Leader in agro-meteorological data in Europe, with 70 experts and over 40,000 sensors deployed."", - ""productDescription"": ""Weenat offers 11 connected sensors for agriculture covering irrigation, frost risk, and weather conditions; an agricultural weather mobile application; an API providing over 40 weather parameters and 150 agronomic indicators; cartography and customized studies; predictive tools; and agro-climatic projections."", - ""clientCategories"": [""Farmers"", ""Agricultural cooperatives"", ""Negociants"", ""Seed producers"", ""Agro-industrial companies""], - ""sectorDescription"": ""Operates in the agtech sector, specializing in precision agro-meteorological data and climate risk management solutions for the European agricultural industry."", - ""geographicFocus"": ""HQ: Technocampus Alimentation, 2 impasse Thérèse Bertrand-Fontaine, 44300 Nantes, France; Sales Focus: France and broader Europe."", - ""keyExecutives"": [ - { - ""name"": ""Jerome LE ROY"", - ""title"": ""Président fondateur (Founder and President)"", - ""sourceUrl"": ""https://www.linkedin.com/company/weenat-solutions"" - }, - { - ""name"": ""Marie-Françoise Ratron"", - ""title"": ""Leadership in Anticipation du gel (Frost risk management)"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Anthony Oboussier"", - ""title"": ""Leadership in Pilotage de l’irrigation (Irrigation management)"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Benoit Latour"", - ""title"": ""Leadership in Pilotage de l’irrigation (Irrigation management)"", - ""sourceUrl"": ""https://weenat.com/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Leadership includes key founder and leaders mentioned on the website and LinkedIn, however, C-level titles beyond Founder/President were not explicitly detailed on the official site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://weenat.com/"", - ""productDescription"": ""https://weenat.com/"", - ""clientCategories"": ""https://weenat.com/temoignages-clients"", - ""geographicFocus"": ""https://weenat.com/contactez-nous/"", - ""keyExecutives"": ""https://www.linkedin.com/company/weenat-solutions"" - } -}","{ - ""websiteURL"": ""https://weenat.com/contactez-nous/"", - ""companyDescription"": ""Since 2014, Weenat helps farmers face climate change by providing reliable and precise agro-meteorological data to optimize resource management and anticipate climate risks. Leader in agro-meteorological data in Europe, with 70 experts and over 40,000 sensors deployed."", - ""productDescription"": ""Weenat offers 11 connected sensors for agriculture covering irrigation, frost risk, and weather conditions; an agricultural weather mobile application; an API providing over 40 weather parameters and 150 agronomic indicators; cartography and customized studies; predictive tools; and agro-climatic projections."", - ""clientCategories"": [""Farmers"", ""Agricultural cooperatives"", ""Negociants"", ""Seed producers"", ""Agro-industrial companies""], - ""sectorDescription"": ""Operates in the agtech sector, specializing in precision agro-meteorological data and climate risk management solutions for the European agricultural industry."", - ""geographicFocus"": ""HQ: Technocampus Alimentation, 2 impasse Thérèse Bertrand-Fontaine, 44300 Nantes, France; Sales Focus: France and broader Europe."", - ""keyExecutives"": [ - { - ""name"": ""Jerome LE ROY"", - ""title"": ""Président fondateur (Founder and President)"", - ""sourceUrl"": ""https://www.linkedin.com/company/weenat-solutions"" - }, - { - ""name"": ""Marie-Françoise Ratron"", - ""title"": ""Leadership in Anticipation du gel (Frost risk management)"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Anthony Oboussier"", - ""title"": ""Leadership in Pilotage de l’irrigation (Irrigation management)"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Benoit Latour"", - ""title"": ""Leadership in Pilotage de l’irrigation (Irrigation management)"", - ""sourceUrl"": ""https://weenat.com/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Leadership includes key founder and leaders mentioned on the website and LinkedIn, however, C-level titles beyond Founder/President were not explicitly detailed on the official site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://weenat.com/"", - ""productDescription"": ""https://weenat.com/"", - ""clientCategories"": ""https://weenat.com/temoignages-clients"", - ""geographicFocus"": ""https://weenat.com/contactez-nous/"", - ""keyExecutives"": ""https://www.linkedin.com/company/weenat-solutions"" - } -}",[],"{ - ""websiteURL"": ""https://weenat.com"", - ""companyDescription"": ""Since 2014, Weenat helps farmers face climate change by providing precise and reliable agro-meteorological data across Europe. With a team of experts including agronomists, meteorologists, and engineers, Weenat delivers real-time farm-specific and territorial-scale weather and climate information to optimize resource management and anticipate climate risks. It serves a wide range of agricultural stakeholders, enabling more sustainable and effective farming decisions."", - ""productDescription"": ""Weenat offers 11 connected sensors for agriculture that monitor irrigation needs, frost risks, and weather conditions. Its products include a mobile weather application for farmers, an API offering over 40 weather parameters and 150 agronomic indicators, cartography and customized studies, as well as predictive and agro-climatic projection tools. These solutions support precise decision-making to conserve resources and improve crop outcomes."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Cooperatives"", - ""Negociants"", - ""Seed Producers"", - ""Agro-Industrial Companies"" - ], - ""sectorDescription"": ""AgTech company specializing in precision agro-meteorological data and climate risk management solutions for the European agricultural industry."", - ""geographicFocus"": ""Headquartered in Nantes, France, Weenat primarily serves the French market and broader European countries including Spain, Germany, Italy, Belgium, Netherlands, Luxembourg, and Switzerland."", - ""keyExecutives"": [ - { - ""name"": ""Jérôme Le Roy"", - ""title"": ""Founder and President"", - ""sourceUrl"": ""https://www.linkedin.com/company/weenat-solutions"" - }, - { - ""name"": ""Marie-Françoise Ratron"", - ""title"": ""Leadership in Frost Risk Management"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Anthony Oboussier"", - ""title"": ""Leadership in Irrigation Management"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Benoit Latour"", - ""title"": ""Leadership in Irrigation Management"", - ""sourceUrl"": ""https://weenat.com/"" - }, - { - ""name"": ""Laurent Leleu"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/laurent-leleu-a125172b"" - } - ], - ""researcherNotes"": ""Confirmed company identity by matching domain, HQ location in Nantes, France, founding year 2014, and product focus on agro-meteorological data. Added CEO Laurent Leleu from LinkedIn executive profile to existing founder and leadership team. Geographic focus expanded based on multiple sources indicating presence in 8 European countries. No C-level titles beyond Founder/President explicitly detailed on official site, CEO added per LinkedIn. No conflicting information found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://weenat.com/"", - ""productDescription"": ""https://weenat.com/"", - ""clientCategories"": ""https://weenat.com/temoignages-clients"", - ""geographicFocus"": ""https://weenat.com/contactez-nous/"", - ""keyExecutives"": ""https://www.linkedin.com/company/weenat-solutions"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Cooperatives"",""Negociants"",""Seed Producers"",""Agro-Industrial Companies""],""companyDescription"":""Since 2014, Weenat helps farmers face climate change by providing precise and reliable agro-meteorological data across Europe. With a team of experts including agronomists, meteorologists, and engineers, Weenat delivers real-time farm-specific and territorial-scale weather and climate information to optimize resource management and anticipate climate risks. It serves a wide range of agricultural stakeholders, enabling more sustainable and effective farming decisions."",""geographicFocus"":""Headquartered in Nantes, France, Weenat primarily serves the French market and broader European countries including Spain, Germany, Italy, Belgium, Netherlands, Luxembourg, and Switzerland."",""keyExecutives"":[{""name"":""Jérôme Le Roy"",""sourceUrl"":""https://www.linkedin.com/company/weenat-solutions"",""title"":""Founder and President""},{""name"":""Marie-Françoise Ratron"",""sourceUrl"":""https://weenat.com/"",""title"":""Leadership in Frost Risk Management""},{""name"":""Anthony Oboussier"",""sourceUrl"":""https://weenat.com/"",""title"":""Leadership in Irrigation Management""},{""name"":""Benoit Latour"",""sourceUrl"":""https://weenat.com/"",""title"":""Leadership in Irrigation Management""},{""name"":""Laurent Leleu"",""sourceUrl"":""https://www.linkedin.com/in/laurent-leleu-a125172b"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Weenat offers 11 connected sensors for agriculture that monitor irrigation needs, frost risks, and weather conditions. Its products include a mobile weather application for farmers, an API offering over 40 weather parameters and 150 agronomic indicators, cartography and customized studies, as well as predictive and agro-climatic projection tools. These solutions support precise decision-making to conserve resources and improve crop outcomes."",""researcherNotes"":""Confirmed company identity by matching domain, HQ location in Nantes, France, founding year 2014, and product focus on agro-meteorological data. Added CEO Laurent Leleu from LinkedIn executive profile to existing founder and leadership team. Geographic focus expanded based on multiple sources indicating presence in 8 European countries. No C-level titles beyond Founder/President explicitly detailed on official site, CEO added per LinkedIn. No conflicting information found."",""sectorDescription"":""AgTech company specializing in precision agro-meteorological data and climate risk management solutions for the European agricultural industry."",""sources"":{""clientCategories"":""https://weenat.com/temoignages-clients"",""companyDescription"":""https://weenat.com/"",""geographicFocus"":""https://weenat.com/contactez-nous/"",""keyExecutives"":""https://www.linkedin.com/company/weenat-solutions"",""productDescription"":""https://weenat.com/""},""websiteURL"":""https://weenat.com""}","Correctness: 98% Completeness: 95% The provided company profile of Weenat is highly accurate and comprehensive. Weenat was indeed founded in 2014 by Jérôme Le Roy, headquartered in Nantes, France, with a primary focus on helping farmers across Europe with agro-meteorological data and climate risk management, exactly as described[1][3]. The product suite involving connected sensors for irrigation, frost risk, and weather, plus apps and APIs with over 40 weather parameters, is confirmed on their website and other sources[1][3]. Key executives named, including Founder and President Jérôme Le Roy and CEO Laurent Leleu, align with LinkedIn and official company information[1][3]. The geographic focus covers major Western European countries, consistent across sources, now including presence in 15 countries with ambitions for expansion beyond the initially listed 8 countries[1][3]. The funding details stating a $8M Series C in 2024 and supporting investors also corroborate recent public data[4]. Minor possible omissions include more granular financial metrics and explicit CEO title confirmation beyond LinkedIn, but these are non-critical for profile accuracy. All sources used are official company pages and reputable industry reports with dates as recent as April 2024 and ongoing updates[1][3][4][5]. URLs: https://weenat.com/en/about/, https://weenat.com/en/corhize-acquisition/, https://weenat.com/, https://tech.eu/2024/04/09/weenat-raises-8m-series-c-for-water-monitor/, https://www.linkedin.com/company/weenat-solutions","{""clientCategories"":[""Farmers"",""Agricultural cooperatives"",""Negociants"",""Seed producers"",""Agro-industrial companies""],""companyDescription"":""Since 2014, Weenat helps farmers face climate change by providing reliable and precise agro-meteorological data to optimize resource management and anticipate climate risks. Leader in agro-meteorological data in Europe, with 70 experts and over 40,000 sensors deployed."",""geographicFocus"":""HQ: Technocampus Alimentation, 2 impasse Thérèse Bertrand-Fontaine, 44300 Nantes, France; Sales Focus: France and broader Europe."",""keyExecutives"":[{""name"":""Jerome LE ROY"",""sourceUrl"":""https://www.linkedin.com/company/weenat-solutions"",""title"":""Président fondateur (Founder and President)""},{""name"":""Marie-Françoise Ratron"",""sourceUrl"":""https://weenat.com/"",""title"":""Leadership in Anticipation du gel (Frost risk management)""},{""name"":""Anthony Oboussier"",""sourceUrl"":""https://weenat.com/"",""title"":""Leadership in Pilotage de l’irrigation (Irrigation management)""},{""name"":""Benoit Latour"",""sourceUrl"":""https://weenat.com/"",""title"":""Leadership in Pilotage de l’irrigation (Irrigation management)""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Weenat offers 11 connected sensors for agriculture covering irrigation, frost risk, and weather conditions; an agricultural weather mobile application; an API providing over 40 weather parameters and 150 agronomic indicators; cartography and customized studies; predictive tools; and agro-climatic projections."",""researcherNotes"":""Leadership includes key founder and leaders mentioned on the website and LinkedIn, however, C-level titles beyond Founder/President were not explicitly detailed on the official site."",""sectorDescription"":""Operates in the agtech sector, specializing in precision agro-meteorological data and climate risk management solutions for the European agricultural industry."",""sources"":{""clientCategories"":""https://weenat.com/temoignages-clients"",""companyDescription"":""https://weenat.com/"",""geographicFocus"":""https://weenat.com/contactez-nous/"",""keyExecutives"":""https://www.linkedin.com/company/weenat-solutions"",""productDescription"":""https://weenat.com/""},""websiteURL"":""https://weenat.com/contactez-nous/""}" -Klim,https://klim.eco,"Achmea Innovation Fund, AgFunder, Ananda Impact Ventures, BNP Paribas, Earthshot Ventures, Elevator Ventures, Green Generation Fund, Norinchukin Capital, Rabobank",klim.eco,https://www.linkedin.com/company/klim-eco/,"{""seniorLeadership"":[{""name"":""Adiv Maimon"",""title"":""Chief Technology Officer"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/adiv-maimon""},{""name"":""Felix Jonathan Jakobsen"",""title"":""Chief Commercial Officer (CCO)"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/felix-jonathan-jakobsen""},{""name"":""Heino Meerkatt"",""title"":""Finance"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/heino-meerkatt""},{""name"":""Lutz Wildermann"",""title"":""VP Agriculture"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/lutz-wildermann""},{""name"":""Nina Mannheimer"",""title"":""Co-founder & Chief Product Officer"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/nina-mannheimer""},{""name"":""Robert Gerlach"",""title"":""CEO & Co-Founder"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/robert-gerlach""}]}","{""seniorLeadership"":[{""name"":""Adiv Maimon"",""title"":""Chief Technology Officer"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/adiv-maimon""},{""name"":""Felix Jonathan Jakobsen"",""title"":""Chief Commercial Officer (CCO)"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/felix-jonathan-jakobsen""},{""name"":""Heino Meerkatt"",""title"":""Finance"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/heino-meerkatt""},{""name"":""Lutz Wildermann"",""title"":""VP Agriculture"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/lutz-wildermann""},{""name"":""Nina Mannheimer"",""title"":""Co-founder & Chief Product Officer"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/nina-mannheimer""},{""name"":""Robert Gerlach"",""title"":""CEO & Co-Founder"",""profileURL"":""https://theorg.com/org/klim-eco/org-chart/robert-gerlach""}]}","{ - ""websiteURL"": ""https://klim.eco"", - ""companyDescription"": ""Klim GmbH's mission is to empower every farmer and organization to regenerate soil for a resilient food system, the people, and the planet. Their vision is a thriving earth with a fully regenerative system that protects soil, considered the world's most precious resource. Founded in 2019, Klim focuses on scaling regenerative agriculture to improve soil health, increase crop yields, and create sustainable food systems. They offer tailored solutions for companies to achieve sustainability targets through regenerative projects and support farmers via their Klim Platform with expert support, financial incentives, and tracking tools."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [""Mills"", ""Dairies"", ""Sugar"", ""Agencies"", ""Banks"", ""Cosmetics""], - ""sectorDescription"": ""Operates in the regenerative agriculture sector, providing sustainability solutions and regenerative practices support to food system companies and farmers."", - ""geographicFocus"": ""HQ: Klim GmbH, Schwedter Straße 26, 10119 Berlin; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Robert Gerlach"", - ""title"": ""CEO & Co-Founder"", - ""sourceUrl"": ""https://klim.eco/about-us"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Some core product/service details and precise geographic sales regions were not explicitly provided on the website."", - ""missingImportantFields"": [""productDescription""], - ""sources"": { - ""companyDescription"": ""https://klim.eco/about-us"", - ""productDescription"": ""Not Available"", - ""clientCategories"": ""https://www.klim.eco/companies/blog"", - ""geographicFocus"": ""https://www.klim.eco/en/farmers/contact"", - ""keyExecutives"": ""https://klim.eco/about-us"" - } -}","{ - ""websiteURL"": ""https://klim.eco"", - ""companyDescription"": ""Klim GmbH's mission is to empower every farmer and organization to regenerate soil for a resilient food system, the people, and the planet. Their vision is a thriving earth with a fully regenerative system that protects soil, considered the world's most precious resource. Founded in 2019, Klim focuses on scaling regenerative agriculture to improve soil health, increase crop yields, and create sustainable food systems. They offer tailored solutions for companies to achieve sustainability targets through regenerative projects and support farmers via their Klim Platform with expert support, financial incentives, and tracking tools."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [""Mills"", ""Dairies"", ""Sugar"", ""Agencies"", ""Banks"", ""Cosmetics""], - ""sectorDescription"": ""Operates in the regenerative agriculture sector, providing sustainability solutions and regenerative practices support to food system companies and farmers."", - ""geographicFocus"": ""HQ: Klim GmbH, Schwedter Straße 26, 10119 Berlin; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Robert Gerlach"", - ""title"": ""CEO & Co-Founder"", - ""sourceUrl"": ""https://klim.eco/about-us"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Some core product/service details and precise geographic sales regions were not explicitly provided on the website."", - ""missingImportantFields"": [""productDescription""], - ""sources"": { - ""companyDescription"": ""https://klim.eco/about-us"", - ""productDescription"": ""Not Available"", - ""clientCategories"": ""https://www.klim.eco/companies/blog"", - ""geographicFocus"": ""https://www.klim.eco/en/farmers/contact"", - ""keyExecutives"": ""https://klim.eco/about-us"" - } -}","[""productDescription""]","{ - ""websiteURL"": ""https://klim.eco"", - ""companyDescription"": ""Klim GmbH's mission is to empower every farmer and organization to regenerate soil for a resilient food system, the people, and the planet. Their vision is a thriving earth with a fully regenerative system that protects soil, considered the world's most precious resource. Founded in 2019, Klim focuses on scaling regenerative agriculture to improve soil health, increase crop yields, and create sustainable food systems. They provide tailored sustainability solutions to companies through regenerative projects and support farmers via their Klim Platform with expert guidance, financial incentives, and monitoring tools."", - ""productDescription"": ""Klim delivers end-to-end regenerative agriculture services aimed at reducing CO₂ emissions and improving soil health. Their platform connects companies with farmers, offering expert support, training, and personalized advice on implementing regenerative practices such as extended crop rotations, catch crop cultivation, organic fertilization, and minimal soil disturbance. Klim manages projects that enable clients to meet sustainability targets by tracking impacts, providing financial incentives, and facilitating transparent farm visits. Their methodology is validated by TÜV Rheinland to ensure quality and credibility."", - ""clientCategories"": [""Mills"", ""Dairies"", ""Sugar"", ""Agencies"", ""Banks"", ""Cosmetics""], - ""sectorDescription"": ""Operates in the regenerative agriculture sector, providing sustainability solutions and regenerative practices support to food system companies and farmers."", - ""geographicFocus"": ""Primary focus on Germany with verified projects in multiple German regions; offers Scope 3 sustainability solutions in Germany, Poland, USA, UK, Slovakia, and Czech Republic."", - ""keyExecutives"": [ - { - ""name"": ""Robert Gerlach"", - ""title"": ""CEO & Co-Founder"", - ""sourceUrl"": ""https://klim.eco/about-us"" - }, - { - ""name"": ""Nina Mannheimer"", - ""title"": ""Co-founder & Chief Product Officer"", - ""sourceUrl"": ""https://theorg.com/org/klim-eco/org-chart/nina-mannheimer"" - }, - { - ""name"": ""Adiv Maimon"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://theorg.com/org/klim-eco/org-chart/adiv-maimon"" - }, - { - ""name"": ""Felix Jonathan Jakobsen"", - ""title"": ""Chief Commercial Officer (CCO)"", - ""sourceUrl"": ""https://theorg.com/org/klim-eco/org-chart/felix-jonathan-jakobsen"" - }, - { - ""name"": ""Heino Meerkatt"", - ""title"": ""Finance"", - ""sourceUrl"": ""https://theorg.com/org/klim-eco/org-chart/heino-meerkatt"" - }, - { - ""name"": ""Lutz Wildermann"", - ""title"": ""VP Agriculture"", - ""sourceUrl"": ""https://theorg.com/org/klim-eco/org-chart/lutz-wildermann"" - } - ], - ""researcherNotes"": ""The product description was not provided on the company website but was inferred from detailed project and platform descriptions available on the company site and case studies. The geographic focus primarily covers Germany with verified projects and farmers onboarded, and Klim explicitly offers Scope 3 solutions in additional countries including Poland, USA, UK, Slovakia, and Czech Republic. Comprehensive sales focus details were not explicitly stated. Key executive team members beyond the CEO were sourced from the company LinkedIn-based org chart."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://klim.eco/about-us"", - ""productDescription"": ""https://www.klim.eco/companies/success-story-fritz-kola"", - ""clientCategories"": ""https://www.klim.eco/companies/blog"", - ""geographicFocus"": ""https://www.klim.eco"", - ""keyExecutives"": ""https://theorg.com/org/klim-eco/org-chart"" - } -}","{""clientCategories"":[""Mills"",""Dairies"",""Sugar"",""Agencies"",""Banks"",""Cosmetics""],""companyDescription"":""Klim GmbH's mission is to empower every farmer and organization to regenerate soil for a resilient food system, the people, and the planet. Their vision is a thriving earth with a fully regenerative system that protects soil, considered the world's most precious resource. Founded in 2019, Klim focuses on scaling regenerative agriculture to improve soil health, increase crop yields, and create sustainable food systems. They provide tailored sustainability solutions to companies through regenerative projects and support farmers via their Klim Platform with expert guidance, financial incentives, and monitoring tools."",""geographicFocus"":""Primary focus on Germany with verified projects in multiple German regions; offers Scope 3 sustainability solutions in Germany, Poland, USA, UK, Slovakia, and Czech Republic."",""keyExecutives"":[{""name"":""Robert Gerlach"",""sourceUrl"":""https://klim.eco/about-us"",""title"":""CEO & Co-Founder""},{""name"":""Nina Mannheimer"",""sourceUrl"":""https://theorg.com/org/klim-eco/org-chart/nina-mannheimer"",""title"":""Co-founder & Chief Product Officer""},{""name"":""Adiv Maimon"",""sourceUrl"":""https://theorg.com/org/klim-eco/org-chart/adiv-maimon"",""title"":""Chief Technology Officer""},{""name"":""Felix Jonathan Jakobsen"",""sourceUrl"":""https://theorg.com/org/klim-eco/org-chart/felix-jonathan-jakobsen"",""title"":""Chief Commercial Officer (CCO)""},{""name"":""Heino Meerkatt"",""sourceUrl"":""https://theorg.com/org/klim-eco/org-chart/heino-meerkatt"",""title"":""Finance""},{""name"":""Lutz Wildermann"",""sourceUrl"":""https://theorg.com/org/klim-eco/org-chart/lutz-wildermann"",""title"":""VP Agriculture""}],""missingImportantFields"":[],""productDescription"":""Klim delivers end-to-end regenerative agriculture services aimed at reducing CO₂ emissions and improving soil health. Their platform connects companies with farmers, offering expert support, training, and personalized advice on implementing regenerative practices such as extended crop rotations, catch crop cultivation, organic fertilization, and minimal soil disturbance. Klim manages projects that enable clients to meet sustainability targets by tracking impacts, providing financial incentives, and facilitating transparent farm visits. Their methodology is validated by TÜV Rheinland to ensure quality and credibility."",""researcherNotes"":""The product description was not provided on the company website but was inferred from detailed project and platform descriptions available on the company site and case studies. The geographic focus primarily covers Germany with verified projects and farmers onboarded, and Klim explicitly offers Scope 3 solutions in additional countries including Poland, USA, UK, Slovakia, and Czech Republic. Comprehensive sales focus details were not explicitly stated. Key executive team members beyond the CEO were sourced from the company LinkedIn-based org chart."",""sectorDescription"":""Operates in the regenerative agriculture sector, providing sustainability solutions and regenerative practices support to food system companies and farmers."",""sources"":{""clientCategories"":""https://www.klim.eco/companies/blog"",""companyDescription"":""https://klim.eco/about-us"",""geographicFocus"":""https://www.klim.eco"",""keyExecutives"":""https://theorg.com/org/klim-eco/org-chart"",""productDescription"":""https://www.klim.eco/companies/success-story-fritz-kola""},""websiteURL"":""https://klim.eco""}","Correctness: 95% Completeness: 90% The information about Klim GmbH is largely factually correct and well supported by up-to-date company sources and reputable media. Klim was founded in 2020 (not 2019) in Berlin by Robert Gerlach, Nina Mannheimer, and Adiv Maimon[1][3][4][5]. Their mission to scale regenerative agriculture, improve soil health, and provide sustainability solutions including financial incentives and expert support to farmers is consistent across sources[2][3][4][5]. The company’s leadership titles and team size (100+ people as of 2024) are verified[3][5]. Klim’s geographic focus is mainly Germany with verified projects there, while also offering Scope 3 sustainability solutions in Poland, USA, UK, Slovakia, and Czech Republic as directly stated on their official site[2]. Their product platform enables companies to engage farmers with regenerative practices and track impacts validated by TÜV Rheinland[2]. The founding year discrepancy (2019 vs. 2020) accounts for a minor correctness deduction, as 2020 is confirmed by multiple reliable sources including TechCrunch and the official site[1][3][4]. Completeness is slightly reduced due to lack of explicit funding round details beyond the $22M Series A in 2024, and limited mention of current sales focus details in the sources reviewed[1][4]. Overall, the description is accurate and comprehensive with verification from primary company statements and a recent TechCrunch article dated 2024-11-12[1][2][3][4][5]. - -Sources: -https://www.klim.eco/about-us -https://techcrunch.com/2024/11/12/germanys-klim-raises-22m-to-take-its-regenerative-farming-platform-international/ -https://www.klim.eco -https://theorg.com/org/klim-eco/org-chart -https://www.squake.earth/blog/sustainability-questions-klim","{""clientCategories"":[""Mills"",""Dairies"",""Sugar"",""Agencies"",""Banks"",""Cosmetics""],""companyDescription"":""Klim GmbH's mission is to empower every farmer and organization to regenerate soil for a resilient food system, the people, and the planet. Their vision is a thriving earth with a fully regenerative system that protects soil, considered the world's most precious resource. Founded in 2019, Klim focuses on scaling regenerative agriculture to improve soil health, increase crop yields, and create sustainable food systems. They offer tailored solutions for companies to achieve sustainability targets through regenerative projects and support farmers via their Klim Platform with expert support, financial incentives, and tracking tools."",""geographicFocus"":""HQ: Klim GmbH, Schwedter Straße 26, 10119 Berlin; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Robert Gerlach"",""sourceUrl"":""https://klim.eco/about-us"",""title"":""CEO & Co-Founder""}],""linkedDocuments"":[],""missingImportantFields"":[""productDescription""],""productDescription"":""Not Available"",""researcherNotes"":""Some core product/service details and precise geographic sales regions were not explicitly provided on the website."",""sectorDescription"":""Operates in the regenerative agriculture sector, providing sustainability solutions and regenerative practices support to food system companies and farmers."",""sources"":{""clientCategories"":""https://www.klim.eco/companies/blog"",""companyDescription"":""https://klim.eco/about-us"",""geographicFocus"":""https://www.klim.eco/en/farmers/contact"",""keyExecutives"":""https://klim.eco/about-us"",""productDescription"":""Not Available""},""websiteURL"":""https://klim.eco""}" -AISPRID,https://aisprid.com,"Bpifrance, Breizh Up, Demeter, GO CAPITAL, Innovacom",aisprid.com,https://www.linkedin.com/company/aisprid,"{""seniorLeadership"":[{""name"":""Nicolas Salmon"",""title"":""Co-Founder | CEO"",""profileUrl"":""https://www.linkedin.com/in/nicolassalmon""},{""name"":""Guillaume Macaigne"",""title"":""Chief Sales & Marketing Officer (CSO CMO), AI & Robotics, Agtech"",""profileUrl"":""https://www.linkedin.com/in/guillaumemacaigne""}]}","{""seniorLeadership"":[{""name"":""Nicolas Salmon"",""title"":""Co-Founder | CEO"",""profileUrl"":""https://www.linkedin.com/in/nicolassalmon""},{""name"":""Guillaume Macaigne"",""title"":""Chief Sales & Marketing Officer (CSO CMO), AI & Robotics, Agtech"",""profileUrl"":""https://www.linkedin.com/in/guillaumemacaigne""}]}","{ - ""websiteURL"": ""https://aisprid.com"", - ""companyDescription"": ""Aisprid aims to help growers feed everyone now and in the future by using high-precision robotics combined with AI. Their mission addresses the global population growth pressure on agriculture by providing sustainable solutions to labor shortages in the fruit and vegetable value chain. They design, manufacture, and market autonomous smart robots for delicate plant tasks, primarily for tomato plant deleafing, improving labor conditions and sustaining local production. Aisprid is a French company with over 3 years of R&D, partnerships with growers, and is recognized as a pioneer in high-precision robotics and AI in plant production. They strive to make farming more self-sufficient, sustainable, and resilient, securing a prosperous future."", - ""productDescription"": ""Aisprid designs, manufactures, and markets autonomous, high-precision robotics combined with AI for the plant sector and greenhouses. Their products primarily focus on tomato plant deleafing tasks, helping to address labor shortages in fruit and vegetable production. Their robots analyze data to provide customized solutions, improve working conditions, minimize operational and health risks, and support sustainable local fruit and vegetable production. They operate a fleet of about 30 autonomous robots in tomato greenhouses as of 2024. Their technology is described as easy-to-use and time-efficient agro-equipment for delicate tasks."", - ""clientCategories"": [""Large-scale tomato growers"", ""Tomato cooperatives"", ""Fruit and vegetable producers""], - ""sectorDescription"": ""Operates in the smart farming sector, developing high-precision autonomous robotics combined with AI for greenhouse tomato and plant production."", - ""geographicFocus"": ""HQ: 16 rue du Bois Aurant, 35400 Saint-Malo, FRANCE; Sales Focus: France"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No clear data found on the website about the founders or C-level executives of the company. The website mostly focuses on company mission and product details."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://aisprid.com/en/about#about"", - ""productDescription"": ""https://aisprid.com/en/robot-aisprid-d01-en"", - ""clientCategories"": ""https://aisprid.com/en/about#about"", - ""geographicFocus"": ""https://aisprid.com/en/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://aisprid.com"", - ""companyDescription"": ""Aisprid aims to help growers feed everyone now and in the future by using high-precision robotics combined with AI. Their mission addresses the global population growth pressure on agriculture by providing sustainable solutions to labor shortages in the fruit and vegetable value chain. They design, manufacture, and market autonomous smart robots for delicate plant tasks, primarily for tomato plant deleafing, improving labor conditions and sustaining local production. Aisprid is a French company with over 3 years of R&D, partnerships with growers, and is recognized as a pioneer in high-precision robotics and AI in plant production. They strive to make farming more self-sufficient, sustainable, and resilient, securing a prosperous future."", - ""productDescription"": ""Aisprid designs, manufactures, and markets autonomous, high-precision robotics combined with AI for the plant sector and greenhouses. Their products primarily focus on tomato plant deleafing tasks, helping to address labor shortages in fruit and vegetable production. Their robots analyze data to provide customized solutions, improve working conditions, minimize operational and health risks, and support sustainable local fruit and vegetable production. They operate a fleet of about 30 autonomous robots in tomato greenhouses as of 2024. Their technology is described as easy-to-use and time-efficient agro-equipment for delicate tasks."", - ""clientCategories"": [""Large-scale tomato growers"", ""Tomato cooperatives"", ""Fruit and vegetable producers""], - ""sectorDescription"": ""Operates in the smart farming sector, developing high-precision autonomous robotics combined with AI for greenhouse tomato and plant production."", - ""geographicFocus"": ""HQ: 16 rue du Bois Aurant, 35400 Saint-Malo, FRANCE; Sales Focus: France"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No clear data found on the website about the founders or C-level executives of the company. The website mostly focuses on company mission and product details."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://aisprid.com/en/about#about"", - ""productDescription"": ""https://aisprid.com/en/robot-aisprid-d01-en"", - ""clientCategories"": ""https://aisprid.com/en/about#about"", - ""geographicFocus"": ""https://aisprid.com/en/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://aisprid.com"", - ""companyDescription"": ""Aisprid is a French company founded in 2020 that develops high-precision autonomous robotics combined with artificial intelligence for greenhouse tomato and plant production. It addresses global agricultural challenges by providing sustainable solutions to labor shortages in the fruit and vegetable value chain. Its mission is to help growers feed everyone now and in the future by improving labor conditions, sustaining local production, and making farming more self-sufficient and resilient through advanced agro-robotics."", - ""productDescription"": ""Aisprid designs, manufactures, and markets autonomous smart robots primarily for delicate tasks such as tomato plant deleafing in greenhouses. These robots integrate high-precision robotics with AI to analyze plant structures and perform precise leaf removal autonomously, including nighttime operation and autonomous navigation between rows. The technology improves productivity, reduces physical strain on farmers, minimizes operational and health risks, and supports sustainable local fruit and vegetable production. As of 2024, about 30 robots are deployed in major French tomato cooperatives."", - ""clientCategories"": [ - ""Large-Scale Tomato Growers"", - ""Tomato Cooperatives"", - ""Fruit and Vegetable Producers"" - ], - ""sectorDescription"": ""Operates in the smart farming sector, developing high-precision autonomous robotics combined with artificial intelligence for greenhouse tomato and plant production."", - ""geographicFocus"": ""Headquartered in Saint-Malo, France, with a primary sales focus on the French market."", - ""keyExecutives"": [ - { - ""name"": ""Nicolas Salmon"", - ""title"": ""Co-Founder | CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/nicolassalmon"" - }, - { - ""name"": ""Guillaume Macaigne"", - ""title"": ""Chief Sales & Marketing Officer (CSO CMO), AI & Robotics, Agtech"", - ""sourceUrl"": ""https://www.linkedin.com/in/guillaumemacaigne"" - } - ], - ""researcherNotes"": ""The company is confirmed as the French AgTech startup Aisprid founded in 2020 and headquartered in Saint-Malo. Key executives are identified from LinkedIn profiles. The company website and recent credible sources confirm its product focus and market footprint. No official filings with executive info were found; the website lacks executive details but LinkedIn data fills that gap. Geographic focus is primarily France, corresponding to HQ and sales focus. The company plans international expansion but no confirmed current footprint outside France."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aisprid.com/en/about/"", - ""productDescription"": ""https://aisprid.com/en/robot-aisprid-d01-en"", - ""clientCategories"": ""https://aisprid.com/en/about/#about"", - ""geographicFocus"": ""https://aisprid.com/en/contact/"", - ""keyExecutives"": ""https://www.linkedin.com/in/nicolassalmon"" - } -}","{""clientCategories"":[""Large-Scale Tomato Growers"",""Tomato Cooperatives"",""Fruit and Vegetable Producers""],""companyDescription"":""Aisprid is a French company founded in 2020 that develops high-precision autonomous robotics combined with artificial intelligence for greenhouse tomato and plant production. It addresses global agricultural challenges by providing sustainable solutions to labor shortages in the fruit and vegetable value chain. Its mission is to help growers feed everyone now and in the future by improving labor conditions, sustaining local production, and making farming more self-sufficient and resilient through advanced agro-robotics."",""geographicFocus"":""Headquartered in Saint-Malo, France, with a primary sales focus on the French market."",""keyExecutives"":[{""name"":""Nicolas Salmon"",""sourceUrl"":""https://www.linkedin.com/in/nicolassalmon"",""title"":""Co-Founder | CEO""},{""name"":""Guillaume Macaigne"",""sourceUrl"":""https://www.linkedin.com/in/guillaumemacaigne"",""title"":""Chief Sales & Marketing Officer (CSO CMO), AI & Robotics, Agtech""}],""missingImportantFields"":[],""productDescription"":""Aisprid designs, manufactures, and markets autonomous smart robots primarily for delicate tasks such as tomato plant deleafing in greenhouses. These robots integrate high-precision robotics with AI to analyze plant structures and perform precise leaf removal autonomously, including nighttime operation and autonomous navigation between rows. The technology improves productivity, reduces physical strain on farmers, minimizes operational and health risks, and supports sustainable local fruit and vegetable production. As of 2024, about 30 robots are deployed in major French tomato cooperatives."",""researcherNotes"":""The company is confirmed as the French AgTech startup Aisprid founded in 2020 and headquartered in Saint-Malo. Key executives are identified from LinkedIn profiles. The company website and recent credible sources confirm its product focus and market footprint. No official filings with executive info were found; the website lacks executive details but LinkedIn data fills that gap. Geographic focus is primarily France, corresponding to HQ and sales focus. The company plans international expansion but no confirmed current footprint outside France."",""sectorDescription"":""Operates in the smart farming sector, developing high-precision autonomous robotics combined with artificial intelligence for greenhouse tomato and plant production."",""sources"":{""clientCategories"":""https://aisprid.com/en/about/#about"",""companyDescription"":""https://aisprid.com/en/about/"",""geographicFocus"":""https://aisprid.com/en/contact/"",""keyExecutives"":""https://www.linkedin.com/in/nicolassalmon"",""productDescription"":""https://aisprid.com/en/robot-aisprid-d01-en""},""websiteURL"":""https://aisprid.com""}","Correctness: 100% Completeness: 98% The information in the input is factually accurate and well-supported by multiple recent authoritative sources from 2024 and early 2025. Aisprid is confirmed as a French AgTech startup founded in 2020, headquartered in Saint-Malo, specializing in high-precision autonomous robots that combine AI and robotics for greenhouse tomato plant deleafing, with around 30 deployed robots in major French tomato cooperatives as of 2024[1][2][3][4]. Key executives, including Nicolas Salmon as CEO and co-founder and Guillaume Macaigne as CSO/CMO, are verified via LinkedIn profiles cited by the company and third-party coverage[1]. The product focus on autonomous, nighttime-operating, precise deleafing robots for greenhouse use is consistent across company and independent sources, highlighting benefits like productivity gains and labor relief[1][4]. The geographic footprint is primarily France with plans for international expansion but no current overseas deployments confirmed[1]. The company’s mission, sector, and approach are well-aligned with the provided description[2][4]. Minor completeness deduction is due to absence of some details such as recent funding amounts’ exact terms and official filings, though €10 million Series A funding details appear in multiple sources[1][3]. Overall, the input is a comprehensive and accurate profile of Aisprid as of 2025-09-11. https://aisprid.com/en/about/, https://www.agtechnavigator.com/Article/2025/01/22/french-company-aisprid-gets-10m-to-develop-de-leafing-robots/, https://www.hortidaily.com/article/9697047/eur10-million-funding-for-autonomous-tomato-deleafer/, https://app.dealroom.co/companies/aisprid","{""clientCategories"":[""Large-scale tomato growers"",""Tomato cooperatives"",""Fruit and vegetable producers""],""companyDescription"":""Aisprid aims to help growers feed everyone now and in the future by using high-precision robotics combined with AI. Their mission addresses the global population growth pressure on agriculture by providing sustainable solutions to labor shortages in the fruit and vegetable value chain. They design, manufacture, and market autonomous smart robots for delicate plant tasks, primarily for tomato plant deleafing, improving labor conditions and sustaining local production. Aisprid is a French company with over 3 years of R&D, partnerships with growers, and is recognized as a pioneer in high-precision robotics and AI in plant production. They strive to make farming more self-sufficient, sustainable, and resilient, securing a prosperous future."",""geographicFocus"":""HQ: 16 rue du Bois Aurant, 35400 Saint-Malo, FRANCE; Sales Focus: France"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Aisprid designs, manufactures, and markets autonomous, high-precision robotics combined with AI for the plant sector and greenhouses. Their products primarily focus on tomato plant deleafing tasks, helping to address labor shortages in fruit and vegetable production. Their robots analyze data to provide customized solutions, improve working conditions, minimize operational and health risks, and support sustainable local fruit and vegetable production. They operate a fleet of about 30 autonomous robots in tomato greenhouses as of 2024. Their technology is described as easy-to-use and time-efficient agro-equipment for delicate tasks."",""researcherNotes"":""No clear data found on the website about the founders or C-level executives of the company. The website mostly focuses on company mission and product details."",""sectorDescription"":""Operates in the smart farming sector, developing high-precision autonomous robotics combined with AI for greenhouse tomato and plant production."",""sources"":{""clientCategories"":""https://aisprid.com/en/about#about"",""companyDescription"":""https://aisprid.com/en/about#about"",""geographicFocus"":""https://aisprid.com/en/contact/"",""keyExecutives"":null,""productDescription"":""https://aisprid.com/en/robot-aisprid-d01-en""},""websiteURL"":""https://aisprid.com""}" -Merqato,https://www.merqato.eu/,Smarter Ventures,merqato.eu,https://www.linkedin.com/company/cropinsights,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.merqato.eu/"", - ""companyDescription"": ""Merqato is a company transforming fresh produce forecasting with AI-powered insights. Their mission is to match supply and demand to enable companies in fresh produce to reduce waste and improve profit. They focus on helping wholesalers, distributors, and buyers make smarter decisions, reduce waste, and improve margins across Europe. The company is guided by principles of transparency, innovation, impact, and humility."", - ""productDescription"": ""Merqato provides an AI-powered platform for fresh produce forecasting that incorporates daily weather data, market signals, and user data to deliver reliable 6-week forecasts. It helps wholesalers improve margins and reduce waste through features such as AI forecasting insights, unified data hub, predictive analytics with 25% more accuracy, smart alerts, and integration with various data sources including operational, weather, and market trend data. The platform supports forecasting for multiple produce items (e.g., tomatoes, lettuce, peppers) and offers daily updates along with alerts on volume forecasts and price changes."", - ""clientCategories"": [""wholesalers"", ""distributors"", ""buyers in fresh produce""], - ""sectorDescription"": ""Operates in the AI-powered fresh produce forecasting sector, providing predictive analytics and insights to wholesalers, distributors, and buyers to optimize supply chain decisions."", - ""geographicFocus"": ""HQ: Netherlands; Sales Focus: Europe"", - ""keyExecutives"": [ - { - ""name"": ""Jan-Willem Snoeker"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://www.merqato.eu/about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.merqato.eu/about"", - ""productDescription"": ""https://www.merqato.eu/"", - ""clientCategories"": ""https://www.merqato.eu/"", - ""geographicFocus"": ""https://www.merqato.eu/contact"", - ""keyExecutives"": ""https://www.merqato.eu/about"" - } -}","{ - ""websiteURL"": ""https://www.merqato.eu/"", - ""companyDescription"": ""Merqato is a company transforming fresh produce forecasting with AI-powered insights. Their mission is to match supply and demand to enable companies in fresh produce to reduce waste and improve profit. They focus on helping wholesalers, distributors, and buyers make smarter decisions, reduce waste, and improve margins across Europe. The company is guided by principles of transparency, innovation, impact, and humility."", - ""productDescription"": ""Merqato provides an AI-powered platform for fresh produce forecasting that incorporates daily weather data, market signals, and user data to deliver reliable 6-week forecasts. It helps wholesalers improve margins and reduce waste through features such as AI forecasting insights, unified data hub, predictive analytics with 25% more accuracy, smart alerts, and integration with various data sources including operational, weather, and market trend data. The platform supports forecasting for multiple produce items (e.g., tomatoes, lettuce, peppers) and offers daily updates along with alerts on volume forecasts and price changes."", - ""clientCategories"": [""wholesalers"", ""distributors"", ""buyers in fresh produce""], - ""sectorDescription"": ""Operates in the AI-powered fresh produce forecasting sector, providing predictive analytics and insights to wholesalers, distributors, and buyers to optimize supply chain decisions."", - ""geographicFocus"": ""HQ: Netherlands; Sales Focus: Europe"", - ""keyExecutives"": [ - { - ""name"": ""Jan-Willem Snoeker"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://www.merqato.eu/about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.merqato.eu/about"", - ""productDescription"": ""https://www.merqato.eu/"", - ""clientCategories"": ""https://www.merqato.eu/"", - ""geographicFocus"": ""https://www.merqato.eu/contact"", - ""keyExecutives"": ""https://www.merqato.eu/about"" - } -}",[],"{ - ""websiteURL"": ""https://www.merqato.eu"", - ""companyDescription"": ""Merqato is a company transforming fresh produce forecasting with AI-powered insights. Their mission is to match supply and demand to enable companies in fresh produce to reduce waste and improve profit. They focus on helping wholesalers, distributors, and buyers make smarter decisions, reduce waste, and improve margins across Europe. The company is guided by principles of transparency, innovation, impact, and humility."", - ""productDescription"": ""Merqato provides an AI-powered platform for fresh produce forecasting that incorporates daily weather data, market signals, and user data to deliver reliable 6-week forecasts. It helps wholesalers improve margins and reduce waste through features such as AI forecasting insights, unified data hub, predictive analytics with 25% more accuracy, smart alerts, and integration with various data sources including operational, weather, and market trend data. The platform supports forecasting for multiple produce items (e.g., tomatoes, lettuce, peppers) and offers daily updates along with alerts on volume forecasts and price changes."", - ""clientCategories"": [""Wholesalers"", ""Distributors"", ""Buyers in Fresh Produce""], - ""sectorDescription"": ""Operates in the AI-powered fresh produce forecasting sector, providing predictive analytics and insights to wholesalers, distributors, and buyers to optimize supply chain decisions."", - ""geographicFocus"": ""Headquartered in the Netherlands with a primary sales focus across Europe."", - ""keyExecutives"": [ - { - ""name"": ""Jan-Willem Snoeker"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://www.merqato.eu/about"" - } - ], - ""researcherNotes"": ""The entity was confirmed by domain match (merqato.eu), company location (Netherlands/Amsterdam), and founding year (2023) aligned with multiple authoritative sources. The CEO and founder Jan-Willem Snoeker is consistently mentioned in official company sources. Other co-founders were named in press but not listed in the current keyExecutives field as per instructions to preserve existing non-empty fields. Geographic focus was clarified as Netherlands HQ and European sales focus based on company website and multiple news sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.merqato.eu/about"", - ""productDescription"": ""https://www.merqato.eu/"", - ""clientCategories"": ""https://www.merqato.eu/"", - ""geographicFocus"": ""https://www.merqato.eu/contact"", - ""keyExecutives"": ""https://www.merqato.eu/about"" - } -}","{""clientCategories"":[""Wholesalers"",""Distributors"",""Buyers in Fresh Produce""],""companyDescription"":""Merqato is a company transforming fresh produce forecasting with AI-powered insights. Their mission is to match supply and demand to enable companies in fresh produce to reduce waste and improve profit. They focus on helping wholesalers, distributors, and buyers make smarter decisions, reduce waste, and improve margins across Europe. The company is guided by principles of transparency, innovation, impact, and humility."",""geographicFocus"":""Headquartered in the Netherlands with a primary sales focus across Europe."",""keyExecutives"":[{""name"":""Jan-Willem Snoeker"",""sourceUrl"":""https://www.merqato.eu/about"",""title"":""CEO and Founder""}],""missingImportantFields"":[],""productDescription"":""Merqato provides an AI-powered platform for fresh produce forecasting that incorporates daily weather data, market signals, and user data to deliver reliable 6-week forecasts. It helps wholesalers improve margins and reduce waste through features such as AI forecasting insights, unified data hub, predictive analytics with 25% more accuracy, smart alerts, and integration with various data sources including operational, weather, and market trend data. The platform supports forecasting for multiple produce items (e.g., tomatoes, lettuce, peppers) and offers daily updates along with alerts on volume forecasts and price changes."",""researcherNotes"":""The entity was confirmed by domain match (merqato.eu), company location (Netherlands/Amsterdam), and founding year (2023) aligned with multiple authoritative sources. The CEO and founder Jan-Willem Snoeker is consistently mentioned in official company sources. Other co-founders were named in press but not listed in the current keyExecutives field as per instructions to preserve existing non-empty fields. Geographic focus was clarified as Netherlands HQ and European sales focus based on company website and multiple news sources."",""sectorDescription"":""Operates in the AI-powered fresh produce forecasting sector, providing predictive analytics and insights to wholesalers, distributors, and buyers to optimize supply chain decisions."",""sources"":{""clientCategories"":""https://www.merqato.eu/"",""companyDescription"":""https://www.merqato.eu/about"",""geographicFocus"":""https://www.merqato.eu/contact"",""keyExecutives"":""https://www.merqato.eu/about"",""productDescription"":""https://www.merqato.eu/""},""websiteURL"":""https://www.merqato.eu""}","Correctness: 98% Completeness: 95% The information about Merqato is highly accurate and well-supported by multiple sources. Merqato is an AI-powered fresh produce forecasting platform founded in 2023, headquartered in Amsterdam, Netherlands, with a sales focus across Europe. Jan-Willem Snoeker is confirmed as CEO and founder, co-founded alongside Claire Bénard and Thomas Beelaerts, as stated by Silicon Canals and The SaaS News (https://siliconcanals.com/amsterdams-merqato-raises-funds/, https://www.thesaasnews.com/news/merqato-raises-funding-round). The company offers an AI-driven platform designed specifically for fresh fruits and vegetables, delivering reliable 6-week volume and price forecasts with improved accuracy (25% better), integrating weather, market signals, and operational data to reduce waste and improve margins, aligning with claims on Merqato’s official site and Fruitnet (https://merqato.eu, https://www.fruitnet.com/eurofruit/new-tool-takes-strain-out-of-fandv-forecasting/262413.article). The platform supports wholesalers, distributors, and buyers, helping with forecasting for multiple produce types such as tomatoes and lettuce. The mention of funding rounds led by Smarter Ventures in 2024 is also consistent across sources. Minor completeness deductions arise because some co-founders beyond the CEO are not explicitly included in the keyExecutives field and full funding details remain undisclosed, but most critical facts are present. Overall, the description is comprehensive and correct as of 2025-09-11.","{""clientCategories"":[""wholesalers"",""distributors"",""buyers in fresh produce""],""companyDescription"":""Merqato is a company transforming fresh produce forecasting with AI-powered insights. Their mission is to match supply and demand to enable companies in fresh produce to reduce waste and improve profit. They focus on helping wholesalers, distributors, and buyers make smarter decisions, reduce waste, and improve margins across Europe. The company is guided by principles of transparency, innovation, impact, and humility."",""geographicFocus"":""HQ: Netherlands; Sales Focus: Europe"",""keyExecutives"":[{""name"":""Jan-Willem Snoeker"",""sourceUrl"":""https://www.merqato.eu/about"",""title"":""CEO and Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Merqato provides an AI-powered platform for fresh produce forecasting that incorporates daily weather data, market signals, and user data to deliver reliable 6-week forecasts. It helps wholesalers improve margins and reduce waste through features such as AI forecasting insights, unified data hub, predictive analytics with 25% more accuracy, smart alerts, and integration with various data sources including operational, weather, and market trend data. The platform supports forecasting for multiple produce items (e.g., tomatoes, lettuce, peppers) and offers daily updates along with alerts on volume forecasts and price changes."",""researcherNotes"":null,""sectorDescription"":""Operates in the AI-powered fresh produce forecasting sector, providing predictive analytics and insights to wholesalers, distributors, and buyers to optimize supply chain decisions."",""sources"":{""clientCategories"":""https://www.merqato.eu/"",""companyDescription"":""https://www.merqato.eu/about"",""geographicFocus"":""https://www.merqato.eu/contact"",""keyExecutives"":""https://www.merqato.eu/about"",""productDescription"":""https://www.merqato.eu/""},""websiteURL"":""https://www.merqato.eu/""}" -Robovision,https://robovision.ai/,"Astanor Ventures, Red River West, Target Global",robovision.ai,https://www.linkedin.com/company/robovisionai,"{""seniorLeadership"":[{""name"":""Jonathan Berte"",""title"":""Chief Visionary Officer & Founder"",""linkedin"":""https://www.linkedin.com/in/jonathanberte""},{""name"":""Michael Black"",""title"":""Chief Financial Officer"",""linkedin"":""https://www.linkedin.com/in/michaelblack""},{""name"":""Christophe Rosseel"",""title"":""Chief Operating Officer"",""linkedin"":""https://www.linkedin.com/company/robovisionai""},{""name"":""David De Paula"",""title"":""Chief Commercial Officer"",""linkedin"":""https://www.linkedin.com/company/robovisionai""},{""name"":""James Nolan"",""title"":""Sr. Director AI Vision Solutions / Customer Success"",""linkedin"":""https://www.linkedin.com/in/jamesnolan""},{""name"":""Mark Priestley"",""title"":""Market Director - Manufacturing"",""linkedin"":""https://www.linkedin.com/in/mark-priestley-ba4b5266""}]}","{""seniorLeadership"":[{""name"":""Jonathan Berte"",""title"":""Chief Visionary Officer & Founder"",""linkedin"":""https://www.linkedin.com/in/jonathanberte""},{""name"":""Michael Black"",""title"":""Chief Financial Officer"",""linkedin"":""https://www.linkedin.com/in/michaelblack""},{""name"":""Christophe Rosseel"",""title"":""Chief Operating Officer"",""linkedin"":""https://www.linkedin.com/company/robovisionai""},{""name"":""David De Paula"",""title"":""Chief Commercial Officer"",""linkedin"":""https://www.linkedin.com/company/robovisionai""},{""name"":""James Nolan"",""title"":""Sr. Director AI Vision Solutions / Customer Success"",""linkedin"":""https://www.linkedin.com/in/jamesnolan""},{""name"":""Mark Priestley"",""title"":""Market Director - Manufacturing"",""linkedin"":""https://www.linkedin.com/in/mark-priestley-ba4b5266""}]}","{ - ""websiteURL"": ""https://robovision.ai/"", - ""companyDescription"": ""Turn automation challenges into advantage with vision AI: Any user—from factory operators and farmers to engineers and physicians—can create and retrain dynamic AI solutions with the Robovision AI Platform. By adding intelligence to machines, Robovision customers and partners can optimize automation processes, increase value, and accelerate innovation and time to market. Today, Robovision is trusted to power more than 1,000 robots across six continents. We are fearlessly authentic: Honesty, integrity, and authenticity are our cornerstones. We approach each other with respect, openness, and attentiveness, and choose a positive attitude. Building lasting connections and meaningful partnerships is our shared responsibility. We are determined to have a never-ending impact: We empower our customers with innovative technology and top-notch quality, value, and service that speak louder than words. We deliver sustainable, scalable results that help maintain long-lasting relationships. We keep learning to stay ahead of the curve: While everyone is in charge of their own unique growth path, we cherish growth and encourage your full potential. We constantly challenge one another, exchange feedback, and share newfound knowledge. We dream big but stay humble: Teamwork is part of our DNA. We are all on this incredible AI journey together. Every Robovisioneer gets credit on their efforts, but it’s never a solo achievement. No matter our role, we are always proud of our team’s achievements. We trust each other in taking ownership: At Robovision, taking ownership means committing 100% to everything you do. We cheer everyone who takes initiative and support people exploring challenges outside their comfort zone to help our customers thrive. We take decisive action with informed opinions: We encourage open debate and (self-)reflection. Robovisioneers are open to new approaches and prepared to compromise. Once a decision is final, we work harmoniously towards outstanding results."", - ""productDescription"": ""Robovision provides an AI-powered computer vision platform geared toward industrial automation, focusing on manufacturing efficiency and quality assurance. Key offerings include:\n- Automated inspection to ensure high-quality standards\n- Defect detection capable of identifying subtle defects quickly and accurately, 24/7\n- Real-time monitoring for trend analysis and preventive maintenance to reduce downtime\n- Platform features such as Data Annotation, Model Training, and Model Optimization\n- Flexible deployment options including cloud-based, on-premises, or hybrid solutions\nBenefits include quality assurance at scale, enhanced automation, lean manufacturing, and operator empowerment."", - ""clientCategories"": [""Agriculture"", ""Food"", ""Healthcare"", ""Logistics"", ""Manufacturing"", ""Automotive"", ""Battery"", ""Semiconductor"", ""Natural Resources""], - ""sectorDescription"": ""Operates in the industrial AI and computer vision sector, providing AI-powered automation solutions for manufacturing and related industries."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Jonathan Berte"", ""title"": ""CEO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""}, - {""name"": ""Tim Waegeman"", ""title"": ""CTO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""}, - {""name"": ""Christophe Rosseel"", ""title"": ""COO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""}, - {""name"": ""Michael Black"", ""title"": ""CFO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""} - ], - ""linkedDocuments"": [ - ""https://robovision.ai/resources/papers/image-labeling-whitepaper#accordion-resources"", - ""https://robovision.ai/resources/all/papers"" - ], - ""researcherNotes"": ""Headquarters and specific geographic sales regions were not found on the contact page or elsewhere on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://robovision.ai/about-us/who-we-are"", - ""productDescription"": ""https://robovision.ai/what-we-do/manufacturing#accordion-solutions-2"", - ""clientCategories"": ""https://robovision.ai/what-we-do/agriculture"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://robovision.ai/about-us/management-team"" - } -}","{ - ""websiteURL"": ""https://robovision.ai/"", - ""companyDescription"": ""Turn automation challenges into advantage with vision AI: Any user—from factory operators and farmers to engineers and physicians—can create and retrain dynamic AI solutions with the Robovision AI Platform. By adding intelligence to machines, Robovision customers and partners can optimize automation processes, increase value, and accelerate innovation and time to market. Today, Robovision is trusted to power more than 1,000 robots across six continents. We are fearlessly authentic: Honesty, integrity, and authenticity are our cornerstones. We approach each other with respect, openness, and attentiveness, and choose a positive attitude. Building lasting connections and meaningful partnerships is our shared responsibility. We are determined to have a never-ending impact: We empower our customers with innovative technology and top-notch quality, value, and service that speak louder than words. We deliver sustainable, scalable results that help maintain long-lasting relationships. We keep learning to stay ahead of the curve: While everyone is in charge of their own unique growth path, we cherish growth and encourage your full potential. We constantly challenge one another, exchange feedback, and share newfound knowledge. We dream big but stay humble: Teamwork is part of our DNA. We are all on this incredible AI journey together. Every Robovisioneer gets credit on their efforts, but it’s never a solo achievement. No matter our role, we are always proud of our team’s achievements. We trust each other in taking ownership: At Robovision, taking ownership means committing 100% to everything you do. We cheer everyone who takes initiative and support people exploring challenges outside their comfort zone to help our customers thrive. We take decisive action with informed opinions: We encourage open debate and (self-)reflection. Robovisioneers are open to new approaches and prepared to compromise. Once a decision is final, we work harmoniously towards outstanding results."", - ""productDescription"": ""Robovision provides an AI-powered computer vision platform geared toward industrial automation, focusing on manufacturing efficiency and quality assurance. Key offerings include:\n- Automated inspection to ensure high-quality standards\n- Defect detection capable of identifying subtle defects quickly and accurately, 24/7\n- Real-time monitoring for trend analysis and preventive maintenance to reduce downtime\n- Platform features such as Data Annotation, Model Training, and Model Optimization\n- Flexible deployment options including cloud-based, on-premises, or hybrid solutions\nBenefits include quality assurance at scale, enhanced automation, lean manufacturing, and operator empowerment."", - ""clientCategories"": [""Agriculture"", ""Food"", ""Healthcare"", ""Logistics"", ""Manufacturing"", ""Automotive"", ""Battery"", ""Semiconductor"", ""Natural Resources""], - ""sectorDescription"": ""Operates in the industrial AI and computer vision sector, providing AI-powered automation solutions for manufacturing and related industries."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Jonathan Berte"", ""title"": ""CEO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""}, - {""name"": ""Tim Waegeman"", ""title"": ""CTO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""}, - {""name"": ""Christophe Rosseel"", ""title"": ""COO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""}, - {""name"": ""Michael Black"", ""title"": ""CFO"", ""sourceUrl"": ""https://robovision.ai/about-us/management-team""} - ], - ""linkedDocuments"": [ - ""https://robovision.ai/resources/papers/image-labeling-whitepaper#accordion-resources"", - ""https://robovision.ai/resources/all/papers"" - ], - ""researcherNotes"": ""Headquarters and specific geographic sales regions were not found on the contact page or elsewhere on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://robovision.ai/about-us/who-we-are"", - ""productDescription"": ""https://robovision.ai/what-we-do/manufacturing#accordion-solutions-2"", - ""clientCategories"": ""https://robovision.ai/what-we-do/agriculture"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://robovision.ai/about-us/management-team"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://robovision.ai"", - ""companyDescription"": ""Robovision is an AI pioneer specializing in vision AI to transform automation challenges into advantages across multiple industries. Their platform enables any user—from factory operators and farmers to engineers and physicians—to create and retrain dynamic AI solutions easily. Trusted to power over 1,000 robots worldwide, Robovision enhances automation processes to optimize value, accelerate innovation, and improve manufacturing quality control from agriculture to semiconductors."", - ""productDescription"": ""Robovision offers an AI-powered computer vision platform designed for industrial automation targeting manufacturing efficiency and quality assurance. The platform supports data annotation, model training and testing, and flexible deployment (cloud, on-premises, hybrid). Core capabilities include automated inspection, precise defect detection, real-time monitoring for trend analysis and preventive maintenance, resulting in higher quality, reduced waste, and empowered operators."", - ""clientCategories"": [ - ""Agriculture"", - ""Food"", - ""Healthcare"", - ""Logistics"", - ""Manufacturing"", - ""Automotive"", - ""Battery"", - ""Semiconductor"", - ""Natural Resources"" - ], - ""sectorDescription"": ""Industrial AI and computer vision provider delivering intelligent automation solutions for manufacturing and related industries."", - ""geographicFocus"": ""Robovision operates globally with customers across six continents, serving over 45 countries including Europe, Asia, and the United States."", - ""keyExecutives"": [ - { - ""name"": ""Jonathan Berte"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://robovision.ai/about-us/management-team"" - }, - { - ""name"": ""Tim Waegeman"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://robovision.ai/about-us/management-team"" - }, - { - ""name"": ""Christophe Rosseel"", - ""title"": ""COO"", - ""sourceUrl"": ""https://robovision.ai/about-us/management-team"" - }, - { - ""name"": ""Michael Black"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://robovision.ai/about-us/management-team"" - } - ], - ""researcherNotes"": ""Geographic focus was not explicitly detailed on the corporate website but external sources including a TechCrunch interview mention operations serving over 45 countries globally, including Europe, Asia, and the U.S. The leadership titles are confirmed from the official company management page despite variations on LinkedIn titles for the CEO. Headquarters are located in Ghent, Belgium."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://robovision.ai/about-us/who-we-are"", - ""productDescription"": ""https://robovision.ai/platform/platform"", - ""clientCategories"": ""https://robovision.ai/what-we-do/agriculture"", - ""geographicFocus"": ""https://techcrunch.com/2024/04/05/robovision-computer-vision-belgium/"", - ""keyExecutives"": ""https://robovision.ai/about-us/management-team"" - } -}","{""clientCategories"":[""Agriculture"",""Food"",""Healthcare"",""Logistics"",""Manufacturing"",""Automotive"",""Battery"",""Semiconductor"",""Natural Resources""],""companyDescription"":""Robovision is an AI pioneer specializing in vision AI to transform automation challenges into advantages across multiple industries. Their platform enables any user—from factory operators and farmers to engineers and physicians—to create and retrain dynamic AI solutions easily. Trusted to power over 1,000 robots worldwide, Robovision enhances automation processes to optimize value, accelerate innovation, and improve manufacturing quality control from agriculture to semiconductors."",""geographicFocus"":""Robovision operates globally with customers across six continents, serving over 45 countries including Europe, Asia, and the United States."",""keyExecutives"":[{""name"":""Jonathan Berte"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""CEO""},{""name"":""Tim Waegeman"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""CTO""},{""name"":""Christophe Rosseel"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""COO""},{""name"":""Michael Black"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""Robovision offers an AI-powered computer vision platform designed for industrial automation targeting manufacturing efficiency and quality assurance. The platform supports data annotation, model training and testing, and flexible deployment (cloud, on-premises, hybrid). Core capabilities include automated inspection, precise defect detection, real-time monitoring for trend analysis and preventive maintenance, resulting in higher quality, reduced waste, and empowered operators."",""researcherNotes"":""Geographic focus was not explicitly detailed on the corporate website but external sources including a TechCrunch interview mention operations serving over 45 countries globally, including Europe, Asia, and the U.S. The leadership titles are confirmed from the official company management page despite variations on LinkedIn titles for the CEO. Headquarters are located in Ghent, Belgium."",""sectorDescription"":""Industrial AI and computer vision provider delivering intelligent automation solutions for manufacturing and related industries."",""sources"":{""clientCategories"":""https://robovision.ai/what-we-do/agriculture"",""companyDescription"":""https://robovision.ai/about-us/who-we-are"",""geographicFocus"":""https://techcrunch.com/2024/04/05/robovision-computer-vision-belgium/"",""keyExecutives"":""https://robovision.ai/about-us/management-team"",""productDescription"":""https://robovision.ai/platform/platform""},""websiteURL"":""https://robovision.ai""}","Correctness: 97% Completeness: 95% The information provided about Robovision is highly accurate and well-supported by multiple authoritative sources. Robovision was founded in 2009 in Ghent, Belgium, by Jonathan Berte, who is currently the CEO after retaking the role in 2025, with Christophe Rosseel as COO, Tim Waegeman as CTO, and Michael Black as CFO according to the official company management page[1][4]. The company specializes in AI-powered computer vision platforms for industrial automation across sectors including agriculture, manufacturing, healthcare, semiconductors, and more, serving customers globally in over 45 countries on six continents, including Europe, Asia, and the United States[1][3][4][5]. Their platform offers flexible deployment options and capabilities such as data annotation, model training, defect detection, and real-time monitoring[1][3]. Robovision has experienced significant funding rounds, including a $42 million raise in 2024 from prominent investors, supporting expansion particularly into the US market where they opened a new office in Florida in late 2024[1][3][5]. The headquarters remain in Ghent, Belgium, with robust global operations[1][3]. One minor discrepancy is the claim in a separate ZoomInfo profile about a New Jersey–based company called ""RoboVision"" unrelated to this Belgian firm, which is not consistent with Robovision's European identity and is thus excluded[2]. Overall, the factual statements on founding history, leadership roles, geographic footprint, product offerings, and recent funding are well-validated by both company-controlled sites and top-tier media like TechCrunch and imec.istart[1][3][4][5]. The completeness score is slightly below perfect due to the absence of some granular details like exact funding round dates in 2023 and more explicit metrics on deployment scale beyond “over a thousand robots.” Sources: https://robovision.ai/about-us/history https://robovision.ai/about-us/management-team https://robovision.ai/resources/news/robovision_launches_us_office_to_meet_demand https://techcrunch.com/2024/04/05/robovision-computer-vision-belgium/ https://www.imecistart.com/en/news/founders-circle-throwback-learnings-from-jonathan-berte-from-robovision","{""clientCategories"":[""Agriculture"",""Food"",""Healthcare"",""Logistics"",""Manufacturing"",""Automotive"",""Battery"",""Semiconductor"",""Natural Resources""],""companyDescription"":""Turn automation challenges into advantage with vision AI: Any user—from factory operators and farmers to engineers and physicians—can create and retrain dynamic AI solutions with the Robovision AI Platform. By adding intelligence to machines, Robovision customers and partners can optimize automation processes, increase value, and accelerate innovation and time to market. Today, Robovision is trusted to power more than 1,000 robots across six continents. We are fearlessly authentic: Honesty, integrity, and authenticity are our cornerstones. We approach each other with respect, openness, and attentiveness, and choose a positive attitude. Building lasting connections and meaningful partnerships is our shared responsibility. We are determined to have a never-ending impact: We empower our customers with innovative technology and top-notch quality, value, and service that speak louder than words. We deliver sustainable, scalable results that help maintain long-lasting relationships. We keep learning to stay ahead of the curve: While everyone is in charge of their own unique growth path, we cherish growth and encourage your full potential. We constantly challenge one another, exchange feedback, and share newfound knowledge. We dream big but stay humble: Teamwork is part of our DNA. We are all on this incredible AI journey together. Every Robovisioneer gets credit on their efforts, but it’s never a solo achievement. No matter our role, we are always proud of our team’s achievements. We trust each other in taking ownership: At Robovision, taking ownership means committing 100% to everything you do. We cheer everyone who takes initiative and support people exploring challenges outside their comfort zone to help our customers thrive. We take decisive action with informed opinions: We encourage open debate and (self-)reflection. Robovisioneers are open to new approaches and prepared to compromise. Once a decision is final, we work harmoniously towards outstanding results."",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Jonathan Berte"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""CEO""},{""name"":""Tim Waegeman"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""CTO""},{""name"":""Christophe Rosseel"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""COO""},{""name"":""Michael Black"",""sourceUrl"":""https://robovision.ai/about-us/management-team"",""title"":""CFO""}],""linkedDocuments"":[""https://robovision.ai/resources/papers/image-labeling-whitepaper#accordion-resources"",""https://robovision.ai/resources/all/papers""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Robovision provides an AI-powered computer vision platform geared toward industrial automation, focusing on manufacturing efficiency and quality assurance. Key offerings include:\n- Automated inspection to ensure high-quality standards\n- Defect detection capable of identifying subtle defects quickly and accurately, 24/7\n- Real-time monitoring for trend analysis and preventive maintenance to reduce downtime\n- Platform features such as Data Annotation, Model Training, and Model Optimization\n- Flexible deployment options including cloud-based, on-premises, or hybrid solutions\nBenefits include quality assurance at scale, enhanced automation, lean manufacturing, and operator empowerment."",""researcherNotes"":""Headquarters and specific geographic sales regions were not found on the contact page or elsewhere on the website."",""sectorDescription"":""Operates in the industrial AI and computer vision sector, providing AI-powered automation solutions for manufacturing and related industries."",""sources"":{""clientCategories"":""https://robovision.ai/what-we-do/agriculture"",""companyDescription"":""https://robovision.ai/about-us/who-we-are"",""geographicFocus"":null,""keyExecutives"":""https://robovision.ai/about-us/management-team"",""productDescription"":""https://robovision.ai/what-we-do/manufacturing#accordion-solutions-2""},""websiteURL"":""https://robovision.ai/""}" -Salar Pursuits,https://www.salarpursuits.co.uk,Abacus Group,salarpursuits.co.uk,https://www.linkedin.com/company/salar-pursuits-limited,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.salarpursuits.co.uk"", - ""companyDescription"": ""Salar Pursuits specializes in aquatic environmental solutions, focusing on salmon farming and aquaculture. The company develops innovative systems such as Smoltscreen™ and Bloomshield™ porous semi-open salmon aquaculture systems aimed at protecting farmed salmon and sea trout against sea lice and other threats. They retrofit deployment with pumps and filters to improve fish health and farm productivity."", - ""productDescription"": ""Core products include the Smoltscreen™ system designed to address salmon farming challenges through mesh test, lice test, and oxygen (O2) test for aquaculture environments. The offerings focus on salmon aquaculture protection and improving farm productivity by mitigating sea lice and related threats."", - ""clientCategories"": [""Salmon farmers"", ""Aquaculture businesses""], - ""sectorDescription"": ""Operates in the aquaculture and fish farming industry, providing innovative solutions to challenges such as sea lice control in salmon farming."", - ""geographicFocus"": ""HQ: Fern, Forfar, Scotland, United Kingdom; Sales Focus: United Kingdom, Norway"", - ""keyExecutives"": [ - { - ""name"": ""Andrew Bett"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.salarpursuits.co.uk/aboutus.html"" - }, - { - ""name"": ""Colette Bett"", - ""title"": ""Co-founder, Financial and Media Marketing Director"", - ""sourceUrl"": ""https://www.salarpursuits.co.uk/aboutus.html"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.salarpursuits.co.uk/aboutus.html"", - ""productDescription"": ""https://www.salarpursuits.co.uk/currentproducts.html"", - ""clientCategories"": ""https://www.salarpursuits.co.uk/"", - ""geographicFocus"": ""https://www.salarpursuits.co.uk/contact.html"", - ""keyExecutives"": ""https://www.salarpursuits.co.uk/aboutus.html"" - } -}","{ - ""websiteURL"": ""https://www.salarpursuits.co.uk"", - ""companyDescription"": ""Salar Pursuits specializes in aquatic environmental solutions, focusing on salmon farming and aquaculture. The company develops innovative systems such as Smoltscreen™ and Bloomshield™ porous semi-open salmon aquaculture systems aimed at protecting farmed salmon and sea trout against sea lice and other threats. They retrofit deployment with pumps and filters to improve fish health and farm productivity."", - ""productDescription"": ""Core products include the Smoltscreen™ system designed to address salmon farming challenges through mesh test, lice test, and oxygen (O2) test for aquaculture environments. The offerings focus on salmon aquaculture protection and improving farm productivity by mitigating sea lice and related threats."", - ""clientCategories"": [""Salmon farmers"", ""Aquaculture businesses""], - ""sectorDescription"": ""Operates in the aquaculture and fish farming industry, providing innovative solutions to challenges such as sea lice control in salmon farming."", - ""geographicFocus"": ""HQ: Fern, Forfar, Scotland, United Kingdom; Sales Focus: United Kingdom, Norway"", - ""keyExecutives"": [ - { - ""name"": ""Andrew Bett"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.salarpursuits.co.uk/aboutus.html"" - }, - { - ""name"": ""Colette Bett"", - ""title"": ""Co-founder, Financial and Media Marketing Director"", - ""sourceUrl"": ""https://www.salarpursuits.co.uk/aboutus.html"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.salarpursuits.co.uk/aboutus.html"", - ""productDescription"": ""https://www.salarpursuits.co.uk/currentproducts.html"", - ""clientCategories"": ""https://www.salarpursuits.co.uk/"", - ""geographicFocus"": ""https://www.salarpursuits.co.uk/contact.html"", - ""keyExecutives"": ""https://www.salarpursuits.co.uk/aboutus.html"" - } -}",[],"{ - ""websiteURL"": ""https://www.salarpursuits.co.uk"", - ""companyDescription"": ""Salar Pursuits specializes in aquatic environmental solutions, focusing on salmon farming and aquaculture. The company develops innovative systems such as Smoltscreen™ and Bloomshield™ porous semi-open salmon aquaculture systems aimed at protecting farmed salmon and sea trout against sea lice and other threats. They retrofit deployment with pumps and filters to improve fish health and farm productivity."", - ""productDescription"": ""Core products include the Smoltscreen™ system designed to address salmon farming challenges through mesh test, lice test, and oxygen (O2) test for aquaculture environments. The offerings focus on salmon aquaculture protection and improving farm productivity by mitigating sea lice and related threats."", - ""clientCategories"": [ - ""Salmon Farmers"", - ""Aquaculture Businesses"" - ], - ""sectorDescription"": ""Operates in the aquaculture and fish farming industry, providing innovative solutions to challenges such as sea lice control in salmon farming."", - ""geographicFocus"": ""HQ: Fern, Forfar, Scotland, United Kingdom; Sales Focus: United Kingdom, Norway"", - ""keyExecutives"": [ - { - ""name"": ""Andrew Bett"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.salarpursuits.co.uk/aboutus.html"" - }, - { - ""name"": ""Colette Bett"", - ""title"": ""Co-founder, Financial and Media Marketing Director"", - ""sourceUrl"": ""https://www.salarpursuits.co.uk/aboutus.html"" - } - ], - ""researcherNotes"": ""The entity 'Salar Pursuits' is confirmed by exact website domain match and HQ location in Scotland, consistent with Companies House records for Salar Pursuits Limited (company number 05414176), incorporated in 2005 with marine aquaculture SIC code. The geographic focus is directly stated on the company website. No senior leadership beyond founders found on LinkedIn or other sources. No missing important fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.salarpursuits.co.uk/aboutus.html"", - ""productDescription"": ""https://www.salarpursuits.co.uk/currentproducts.html"", - ""clientCategories"": ""https://www.salarpursuits.co.uk/"", - ""geographicFocus"": ""https://www.salarpursuits.co.uk/contact.html"", - ""keyExecutives"": ""https://www.salarpursuits.co.uk/aboutus.html"" - } -}","{""clientCategories"":[""Salmon Farmers"",""Aquaculture Businesses""],""companyDescription"":""Salar Pursuits specializes in aquatic environmental solutions, focusing on salmon farming and aquaculture. The company develops innovative systems such as Smoltscreen™ and Bloomshield™ porous semi-open salmon aquaculture systems aimed at protecting farmed salmon and sea trout against sea lice and other threats. They retrofit deployment with pumps and filters to improve fish health and farm productivity."",""geographicFocus"":""HQ: Fern, Forfar, Scotland, United Kingdom; Sales Focus: United Kingdom, Norway"",""keyExecutives"":[{""name"":""Andrew Bett"",""sourceUrl"":""https://www.salarpursuits.co.uk/aboutus.html"",""title"":""Founder and CEO""},{""name"":""Colette Bett"",""sourceUrl"":""https://www.salarpursuits.co.uk/aboutus.html"",""title"":""Co-founder, Financial and Media Marketing Director""}],""missingImportantFields"":[],""productDescription"":""Core products include the Smoltscreen™ system designed to address salmon farming challenges through mesh test, lice test, and oxygen (O2) test for aquaculture environments. The offerings focus on salmon aquaculture protection and improving farm productivity by mitigating sea lice and related threats."",""researcherNotes"":""The entity 'Salar Pursuits' is confirmed by exact website domain match and HQ location in Scotland, consistent with Companies House records for Salar Pursuits Limited (company number 05414176), incorporated in 2005 with marine aquaculture SIC code. The geographic focus is directly stated on the company website. No senior leadership beyond founders found on LinkedIn or other sources. No missing important fields remain."",""sectorDescription"":""Operates in the aquaculture and fish farming industry, providing innovative solutions to challenges such as sea lice control in salmon farming."",""sources"":{""clientCategories"":""https://www.salarpursuits.co.uk/"",""companyDescription"":""https://www.salarpursuits.co.uk/aboutus.html"",""geographicFocus"":""https://www.salarpursuits.co.uk/contact.html"",""keyExecutives"":""https://www.salarpursuits.co.uk/aboutus.html"",""productDescription"":""https://www.salarpursuits.co.uk/currentproducts.html""},""websiteURL"":""https://www.salarpursuits.co.uk""}","Correctness: 100% Completeness: 100% The information provided about Salar Pursuits is fully accurate and complete based on multiple authoritative sources. The company is confirmed as operating in aquaculture research and development in Angus, Scotland, specializing in porous semi-open salmon farming enclosures like Smoltscreen™ and Bloomshield™, aimed at controlling sea lice and enhancing farm productivity[1]. Its registered HQ is confirmed in Fern, Forfar, Scotland, consistent with Companies House records for Salar Pursuits Limited (company number 05414176)[4]. The key executives, Andrew Bett (Founder and CEO/Managing Director) and Colette Bett (Co-founder, Financial and Media Marketing Director/Director), are corroborated by both the company site and UK official filings[4][5]. The specific product descriptions and geographic sales focus on the UK and Norway match company website details[1][4]. No significant facts such as funding or leadership changes are missing or contradicted in filings or the official Salar Pursuits website. This establishes both correctness and completeness at 100%. Sources: https://www.salarpursuits.co.uk/aboutus.html, https://www.salarpursuits.co.uk/currentproducts.html, https://find-and-update.company-information.service.gov.uk/company/05414176, https://www.salmonscotland.co.uk/members/salar-pursuits","{""clientCategories"":[""Salmon farmers"",""Aquaculture businesses""],""companyDescription"":""Salar Pursuits specializes in aquatic environmental solutions, focusing on salmon farming and aquaculture. The company develops innovative systems such as Smoltscreen™ and Bloomshield™ porous semi-open salmon aquaculture systems aimed at protecting farmed salmon and sea trout against sea lice and other threats. They retrofit deployment with pumps and filters to improve fish health and farm productivity."",""geographicFocus"":""HQ: Fern, Forfar, Scotland, United Kingdom; Sales Focus: United Kingdom, Norway"",""keyExecutives"":[{""name"":""Andrew Bett"",""sourceUrl"":""https://www.salarpursuits.co.uk/aboutus.html"",""title"":""Founder and CEO""},{""name"":""Colette Bett"",""sourceUrl"":""https://www.salarpursuits.co.uk/aboutus.html"",""title"":""Co-founder, Financial and Media Marketing Director""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Core products include the Smoltscreen™ system designed to address salmon farming challenges through mesh test, lice test, and oxygen (O2) test for aquaculture environments. The offerings focus on salmon aquaculture protection and improving farm productivity by mitigating sea lice and related threats."",""researcherNotes"":null,""sectorDescription"":""Operates in the aquaculture and fish farming industry, providing innovative solutions to challenges such as sea lice control in salmon farming."",""sources"":{""clientCategories"":""https://www.salarpursuits.co.uk/"",""companyDescription"":""https://www.salarpursuits.co.uk/aboutus.html"",""geographicFocus"":""https://www.salarpursuits.co.uk/contact.html"",""keyExecutives"":""https://www.salarpursuits.co.uk/aboutus.html"",""productDescription"":""https://www.salarpursuits.co.uk/currentproducts.html""},""websiteURL"":""https://www.salarpursuits.co.uk""}" -"Biosavety: Automatically decontaminating buildings, while you are present.",https://www.biosavety.com,,biosavety.com,https://www.linkedin.com/company/oji-europe-gmbh,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.biosavety.com"", - ""companyDescription"": ""Biosavety, now rebranded as TOAF, provides smart solutions for indoor air quality and hygiene through its innovative 'oji' system. Their mission centers on creating healthier indoor environments by automatically purifying air, water, and surfaces without relying on chemicals, using only salt and water. This sustainable approach reduces CO₂ emissions significantly, enhances the lifespan of ventilation systems, and prevents mold and biofilm buildup. Their technology, based on HOCl and HOCl(g), continuously neutralizes airborne pathogens, spores, odors, and other contaminants, dynamically adapting to changing indoor environments to reduce infection risks and enhance comfort. Biosavety aims to set the standard for healthy buildings that are effortlessly managed and sustainable, supporting several United Nations Sustainable Development Goals."", - ""productDescription"": ""oji offers Biosafety as a Service (BaaS) focusing on continuous air and surface hygiene using HOCl technology that reduces airborne pathogens, mold, biofilm, and odors in various environments. Services include real-time monitoring and alerts, sustainable eco-friendly operation, prevention of biofilm buildup, and cost-effective long-term solutions. Product applications cover human indoor spaces (hospitals, care units), industrial plants (odor emission reduction, Legionella control, compliance, worker safety, biofilm mitigation), crop and livestock environments (air quality improvement, pathogen control, odor neutralization, reduced chemical pesticide usage, enhanced growth and feed efficiency, cross-contamination prevention), and production facilities (microbial load reduction, odor control, real-time monitoring, automated compliance reporting, consistent product quality)."", - ""clientCategories"": [ - ""Healthcare facilities"", - ""Food production"", - ""Agriculture"", - ""Industrial plants"", - ""Crop and livestock environments"" - ], - ""sectorDescription"": ""Operates in the smart indoor air quality and hygiene sector, utilizing patented HOCl technology for automatic, chemical-free decontamination of buildings."", - ""geographicFocus"": ""HQ: Friedrich Engels Street 3, 14641 Nauen, Germany; Sales Focus: European Union and other regions where indoor air hygiene is critical."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Thomas Bone-Winkel"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.biosavety.com/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website primarily focuses on the product and mission. Detailed executive roles beyond the founder and additional documents were not found on the site or linked subdomains."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.biosavety.com/"", - ""productDescription"": ""https://oji.life/air-purification-for-industries"", - ""clientCategories"": ""https://www.biosavety.com/"", - ""geographicFocus"": ""https://www.biosavety.com/legal/legal-notice"", - ""keyExecutives"": ""https://www.biosavety.com/"" - } -}","{ - ""websiteURL"": ""https://www.biosavety.com"", - ""companyDescription"": ""Biosavety, now rebranded as TOAF, provides smart solutions for indoor air quality and hygiene through its innovative 'oji' system. Their mission centers on creating healthier indoor environments by automatically purifying air, water, and surfaces without relying on chemicals, using only salt and water. This sustainable approach reduces CO₂ emissions significantly, enhances the lifespan of ventilation systems, and prevents mold and biofilm buildup. Their technology, based on HOCl and HOCl(g), continuously neutralizes airborne pathogens, spores, odors, and other contaminants, dynamically adapting to changing indoor environments to reduce infection risks and enhance comfort. Biosavety aims to set the standard for healthy buildings that are effortlessly managed and sustainable, supporting several United Nations Sustainable Development Goals."", - ""productDescription"": ""oji offers Biosafety as a Service (BaaS) focusing on continuous air and surface hygiene using HOCl technology that reduces airborne pathogens, mold, biofilm, and odors in various environments. Services include real-time monitoring and alerts, sustainable eco-friendly operation, prevention of biofilm buildup, and cost-effective long-term solutions. Product applications cover human indoor spaces (hospitals, care units), industrial plants (odor emission reduction, Legionella control, compliance, worker safety, biofilm mitigation), crop and livestock environments (air quality improvement, pathogen control, odor neutralization, reduced chemical pesticide usage, enhanced growth and feed efficiency, cross-contamination prevention), and production facilities (microbial load reduction, odor control, real-time monitoring, automated compliance reporting, consistent product quality)."", - ""clientCategories"": [ - ""Healthcare facilities"", - ""Food production"", - ""Agriculture"", - ""Industrial plants"", - ""Crop and livestock environments"" - ], - ""sectorDescription"": ""Operates in the smart indoor air quality and hygiene sector, utilizing patented HOCl technology for automatic, chemical-free decontamination of buildings."", - ""geographicFocus"": ""HQ: Friedrich Engels Street 3, 14641 Nauen, Germany; Sales Focus: European Union and other regions where indoor air hygiene is critical."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Thomas Bone-Winkel"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.biosavety.com/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website primarily focuses on the product and mission. Detailed executive roles beyond the founder and additional documents were not found on the site or linked subdomains."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.biosavety.com/"", - ""productDescription"": ""https://oji.life/air-purification-for-industries"", - ""clientCategories"": ""https://www.biosavety.com/"", - ""geographicFocus"": ""https://www.biosavety.com/legal/legal-notice"", - ""keyExecutives"": ""https://www.biosavety.com/"" - } -}",[],"{ - ""websiteURL"": ""https://www.biosavety.com"", - ""companyDescription"": ""Biosavety, now rebranded as TOAF, provides smart solutions for indoor air quality and hygiene through its innovative 'oji' system. Their mission centers on creating healthier indoor environments by automatically purifying air, water, and surfaces without relying on chemicals, using only salt and water. This sustainable approach reduces CO₂ emissions significantly, enhances the lifespan of ventilation systems, and prevents mold and biofilm buildup. Their technology, based on HOCl and HOCl(g), continuously neutralizes airborne pathogens, spores, odors, and other contaminants, dynamically adapting to changing indoor environments to reduce infection risks and enhance comfort. Biosavety aims to set the standard for healthy buildings that are effortlessly managed and sustainable, supporting several United Nations Sustainable Development Goals."", - ""productDescription"": ""oji offers Biosafety as a Service (BaaS) focusing on continuous air and surface hygiene using HOCl technology that reduces airborne pathogens, mold, biofilm, and odors in various environments. Services include real-time monitoring and alerts, sustainable eco-friendly operation, prevention of biofilm buildup, and cost-effective long-term solutions. Product applications cover human indoor spaces (hospitals, care units), industrial plants (odor emission reduction, Legionella control, compliance, worker safety, biofilm mitigation), crop and livestock environments (air quality improvement, pathogen control, odor neutralization, reduced chemical pesticide usage, enhanced growth and feed efficiency, cross-contamination prevention), and production facilities (microbial load reduction, odor control, real-time monitoring, automated compliance reporting, consistent product quality)."", - ""clientCategories"": [ - ""Healthcare Facilities"", - ""Food Production"", - ""Agriculture"", - ""Industrial Plants"", - ""Crop And Livestock Environments"" - ], - ""sectorDescription"": ""Operates in the smart indoor air quality and hygiene sector, utilizing patented HOCl technology for automatic, chemical-free decontamination of buildings."", - ""geographicFocus"": ""HQ in Nauen, Germany; sales primarily focused on the European Union and other regions where indoor air hygiene is critical."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Thomas Bone-Winkel"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.biosavety.com/"" - } - ], - ""researcherNotes"": ""The entity was confidently disambiguated by domain and headquarters location. The company’s leadership beyond the founder was not found on LinkedIn or the company website. Geographic focus is stated on the legal notice page and supported by the website, indicating a primary European Union market and other regions concerned with indoor air hygiene. No additional senior leadership details or linked documents were available."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.biosavety.com/"", - ""productDescription"": ""https://oji.life/air-purification-for-industries"", - ""clientCategories"": ""https://www.biosavety.com/"", - ""geographicFocus"": ""https://www.biosavety.com/legal/legal-notice"", - ""keyExecutives"": ""https://www.biosavety.com/"" - } -}","{""clientCategories"":[""Healthcare Facilities"",""Food Production"",""Agriculture"",""Industrial Plants"",""Crop And Livestock Environments""],""companyDescription"":""Biosavety, now rebranded as TOAF, provides smart solutions for indoor air quality and hygiene through its innovative 'oji' system. Their mission centers on creating healthier indoor environments by automatically purifying air, water, and surfaces without relying on chemicals, using only salt and water. This sustainable approach reduces CO₂ emissions significantly, enhances the lifespan of ventilation systems, and prevents mold and biofilm buildup. Their technology, based on HOCl and HOCl(g), continuously neutralizes airborne pathogens, spores, odors, and other contaminants, dynamically adapting to changing indoor environments to reduce infection risks and enhance comfort. Biosavety aims to set the standard for healthy buildings that are effortlessly managed and sustainable, supporting several United Nations Sustainable Development Goals."",""geographicFocus"":""HQ in Nauen, Germany; sales primarily focused on the European Union and other regions where indoor air hygiene is critical."",""keyExecutives"":[{""name"":""Dr. Thomas Bone-Winkel"",""sourceUrl"":""https://www.biosavety.com/"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""oji offers Biosafety as a Service (BaaS) focusing on continuous air and surface hygiene using HOCl technology that reduces airborne pathogens, mold, biofilm, and odors in various environments. Services include real-time monitoring and alerts, sustainable eco-friendly operation, prevention of biofilm buildup, and cost-effective long-term solutions. Product applications cover human indoor spaces (hospitals, care units), industrial plants (odor emission reduction, Legionella control, compliance, worker safety, biofilm mitigation), crop and livestock environments (air quality improvement, pathogen control, odor neutralization, reduced chemical pesticide usage, enhanced growth and feed efficiency, cross-contamination prevention), and production facilities (microbial load reduction, odor control, real-time monitoring, automated compliance reporting, consistent product quality)."",""researcherNotes"":""The entity was confidently disambiguated by domain and headquarters location. The company’s leadership beyond the founder was not found on LinkedIn or the company website. Geographic focus is stated on the legal notice page and supported by the website, indicating a primary European Union market and other regions concerned with indoor air hygiene. No additional senior leadership details or linked documents were available."",""sectorDescription"":""Operates in the smart indoor air quality and hygiene sector, utilizing patented HOCl technology for automatic, chemical-free decontamination of buildings."",""sources"":{""clientCategories"":""https://www.biosavety.com/"",""companyDescription"":""https://www.biosavety.com/"",""geographicFocus"":""https://www.biosavety.com/legal/legal-notice"",""keyExecutives"":""https://www.biosavety.com/"",""productDescription"":""https://oji.life/air-purification-for-industries""},""websiteURL"":""https://www.biosavety.com""}","Correctness: 100% Completeness: 95% The provided statement about Biosavety (now rebranded as TOAF) is factually correct and comprehensive regarding the company’s focus, technology, leadership, and geographic and market scope based on their official website and product description sources. It accurately states that the company specializes in sustainable indoor air quality and hygiene solutions using patented HOCl technology, automatically purifying air, water, and surfaces without chemicals, relying only on salt and water. The founder is correctly identified as Dr. Thomas Bone-Winkel, with headquarters in Nauen, Germany, and a primary sales focus on the European Union and other sensitive hygiene markets, as confirmed by the company’s legal notice and website information (https://www.biosavety.com/, https://oji.life/air-purification-for-industries). The product applications across various sectors are well detailed, reflecting the current scope of their Biosafety as a Service offering. The only minor incompleteness is the absence of additional senior leadership details beyond the founder, which is acknowledged as not publicly available on official or LinkedIn sources as of 2025-09-11. No contradicting or outdated information was found in the search results or sources provided.","{""clientCategories"":[""Healthcare facilities"",""Food production"",""Agriculture"",""Industrial plants"",""Crop and livestock environments""],""companyDescription"":""Biosavety, now rebranded as TOAF, provides smart solutions for indoor air quality and hygiene through its innovative 'oji' system. Their mission centers on creating healthier indoor environments by automatically purifying air, water, and surfaces without relying on chemicals, using only salt and water. This sustainable approach reduces CO₂ emissions significantly, enhances the lifespan of ventilation systems, and prevents mold and biofilm buildup. Their technology, based on HOCl and HOCl(g), continuously neutralizes airborne pathogens, spores, odors, and other contaminants, dynamically adapting to changing indoor environments to reduce infection risks and enhance comfort. Biosavety aims to set the standard for healthy buildings that are effortlessly managed and sustainable, supporting several United Nations Sustainable Development Goals."",""geographicFocus"":""HQ: Friedrich Engels Street 3, 14641 Nauen, Germany; Sales Focus: European Union and other regions where indoor air hygiene is critical."",""keyExecutives"":[{""name"":""Dr. Thomas Bone-Winkel"",""sourceUrl"":""https://www.biosavety.com/"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""oji offers Biosafety as a Service (BaaS) focusing on continuous air and surface hygiene using HOCl technology that reduces airborne pathogens, mold, biofilm, and odors in various environments. Services include real-time monitoring and alerts, sustainable eco-friendly operation, prevention of biofilm buildup, and cost-effective long-term solutions. Product applications cover human indoor spaces (hospitals, care units), industrial plants (odor emission reduction, Legionella control, compliance, worker safety, biofilm mitigation), crop and livestock environments (air quality improvement, pathogen control, odor neutralization, reduced chemical pesticide usage, enhanced growth and feed efficiency, cross-contamination prevention), and production facilities (microbial load reduction, odor control, real-time monitoring, automated compliance reporting, consistent product quality)."",""researcherNotes"":""The website primarily focuses on the product and mission. Detailed executive roles beyond the founder and additional documents were not found on the site or linked subdomains."",""sectorDescription"":""Operates in the smart indoor air quality and hygiene sector, utilizing patented HOCl technology for automatic, chemical-free decontamination of buildings."",""sources"":{""clientCategories"":""https://www.biosavety.com/"",""companyDescription"":""https://www.biosavety.com/"",""geographicFocus"":""https://www.biosavety.com/legal/legal-notice"",""keyExecutives"":""https://www.biosavety.com/"",""productDescription"":""https://oji.life/air-purification-for-industries""},""websiteURL"":""https://www.biosavety.com""}" -Nordic SeaFarm,https://en.nordicseafarm.com,"EIT InnoEnergy, Inter Ikea",en.nordicseafarm.com,https://www.linkedin.com/company/nordicseafarm,"{""seniorLeadership"":[{""name"":""Christer Olausson"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://se.linkedin.com/in/christer-olausson-4025bb5""},{""name"":""Kajsa Olsson"",""title"":""Head of Marketing"",""linkedinProfile"":""https://se.linkedin.com/in/kajsa-olsson""}]}","{""seniorLeadership"":[{""name"":""Christer Olausson"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://se.linkedin.com/in/christer-olausson-4025bb5""},{""name"":""Kajsa Olsson"",""title"":""Head of Marketing"",""linkedinProfile"":""https://se.linkedin.com/in/kajsa-olsson""}]}","{ - ""websiteURL"": ""https://en.nordicseafarm.com"", - ""companyDescription"": ""Nordic SeaFarm cultivates seaweed in pristine Nordic Waters with full traceability from seeds to seaweed. Founded in 2016, Nordic SeaFarm is at the forefront of making European seaweed available to industries. They grow high value species at their own seaweed farm and source sustainably from partner farms. Their mission is to unlock the potential of seaweed for sustainable food, climate solutions, and economic growth through collaboration with stakeholders and partners to drive change and create a regenerative and prosperous planet by future-proofing industries through making seaweed truly available."", - ""productDescription"": ""Nordic SeaFarm cultivates Sugar Kelp, Sea Lettuce, and Winged Kelp, each with unique nutritional properties and applications. Their seaweed products include food ingredients, supplements, and other applications. They offer processing services such as drying, blanching, freezing, brining, milling, and grinding, including the production of fine seaweed powder."", - ""clientCategories"": [""Food Industry"", ""Textile Industry"", ""Animal Feed"", ""Biomaterials""], - ""sectorDescription"": ""Operates in the seaweed cultivation, aquaculture, and ocean biomaterials sector, focusing on sustainable large-scale seaweed farming and processing for various industries."", - ""geographicFocus"": ""HQ: Prästängsvägen 8, 452 33 Strömstad, Sweden; Commercial Office: Masthamnsgatan 3, 413 27 Gothenburg, Sweden; Sales Focus: Nordic Waters, Europe"", - ""keyExecutives"": [ - { ""name"": ""Elisabet Brock"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Gunnar Cervin"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Fredrik Gröndahl"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Gunilla Toth"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Henrik Palvia"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Göran Nylund"", ""title"": ""Founder and Head of Production and R&D"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Christer Olausson"", ""title"": ""CEO"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Helen Larsson"", ""title"": ""Head of Finance"", ""sourceUrl"": ""https://nordicseafarm.com/team"" } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""All critical data fields were found with detailed information on the company's website, including the About, Team, and Services pages. No direct downloadable documents like PDFs were found on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordicseafarm.com/about"", - ""productDescription"": ""https://nordicseafarm.com/services"", - ""clientCategories"": ""https://nordicseafarm.com/about"", - ""geographicFocus"": ""https://nordicseafarm.com/contact"", - ""keyExecutives"": ""https://nordicseafarm.com/team"" - } -}","{ - ""websiteURL"": ""https://en.nordicseafarm.com"", - ""companyDescription"": ""Nordic SeaFarm cultivates seaweed in pristine Nordic Waters with full traceability from seeds to seaweed. Founded in 2016, Nordic SeaFarm is at the forefront of making European seaweed available to industries. They grow high value species at their own seaweed farm and source sustainably from partner farms. Their mission is to unlock the potential of seaweed for sustainable food, climate solutions, and economic growth through collaboration with stakeholders and partners to drive change and create a regenerative and prosperous planet by future-proofing industries through making seaweed truly available."", - ""productDescription"": ""Nordic SeaFarm cultivates Sugar Kelp, Sea Lettuce, and Winged Kelp, each with unique nutritional properties and applications. Their seaweed products include food ingredients, supplements, and other applications. They offer processing services such as drying, blanching, freezing, brining, milling, and grinding, including the production of fine seaweed powder."", - ""clientCategories"": [""Food Industry"", ""Textile Industry"", ""Animal Feed"", ""Biomaterials""], - ""sectorDescription"": ""Operates in the seaweed cultivation, aquaculture, and ocean biomaterials sector, focusing on sustainable large-scale seaweed farming and processing for various industries."", - ""geographicFocus"": ""HQ: Prästängsvägen 8, 452 33 Strömstad, Sweden; Commercial Office: Masthamnsgatan 3, 413 27 Gothenburg, Sweden; Sales Focus: Nordic Waters, Europe"", - ""keyExecutives"": [ - { ""name"": ""Elisabet Brock"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Gunnar Cervin"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Fredrik Gröndahl"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Gunilla Toth"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Henrik Palvia"", ""title"": ""Founder"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Göran Nylund"", ""title"": ""Founder and Head of Production and R&D"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Christer Olausson"", ""title"": ""CEO"", ""sourceUrl"": ""https://nordicseafarm.com/team"" }, - { ""name"": ""Helen Larsson"", ""title"": ""Head of Finance"", ""sourceUrl"": ""https://nordicseafarm.com/team"" } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""All critical data fields were found with detailed information on the company's website, including the About, Team, and Services pages. No direct downloadable documents like PDFs were found on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordicseafarm.com/about"", - ""productDescription"": ""https://nordicseafarm.com/services"", - ""clientCategories"": ""https://nordicseafarm.com/about"", - ""geographicFocus"": ""https://nordicseafarm.com/contact"", - ""keyExecutives"": ""https://nordicseafarm.com/team"" - } -}",[],"{ - ""websiteURL"": ""https://en.nordicseafarm.com"", - ""companyDescription"": ""Nordic SeaFarm cultivates seaweed in pristine Nordic Waters with full traceability from seeds to seaweed. Founded in 2016, Nordic SeaFarm is at the forefront of making European seaweed available to industries. They grow high-value species at their own seaweed farm and source sustainably from partner farms. Their mission is to unlock the potential of seaweed for sustainable food, climate solutions, and economic growth by collaborating with stakeholders and partners to drive change and create a regenerative and prosperous planet."", - ""productDescription"": ""Nordic SeaFarm cultivates Sugar Kelp, Sea Lettuce, and Winged Kelp, each with unique nutritional properties and applications. Their seaweed products serve as food ingredients, supplements, and raw materials for other applications. They provide processing services including drying, blanching, freezing, brining, milling, and grinding, producing fine seaweed powders tailored for various industry needs."", - ""clientCategories"": [ - ""Food Industry"", - ""Textile Industry"", - ""Animal Feed"", - ""Biomaterials"" - ], - ""sectorDescription"": ""Operates in the seaweed cultivation, aquaculture, and ocean biomaterials sector, focusing on sustainable large-scale seaweed farming and processing for multiple industries."", - ""geographicFocus"": ""Primary focus on Nordic Waters and Europe, with headquarters in Strömstad and commercial office in Gothenburg, Sweden."", - ""keyExecutives"": [ - { - ""name"": ""Elisabet Brock"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Gunnar Cervin"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Fredrik Gröndahl"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Gunilla Toth"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Henrik Palvia"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Göran Nylund"", - ""title"": ""Founder and Head of Production and R&D"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Christer Olausson"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - }, - { - ""name"": ""Helen Larsson"", - ""title"": ""Head of Finance"", - ""sourceUrl"": ""https://nordicseafarm.com/team"" - } - ], - ""researcherNotes"": ""All required fields were found and confirmed primarily from the company's official website and leadership page. The CEO title for Christer Olausson is corroborated by both the company site and LinkedIn. No discrepancies or missing critical information remain. Geographic focus includes Nordic waters and Europe, consistent between site contact details and corporate description."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nordicseafarm.com/about"", - ""productDescription"": ""https://nordicseafarm.com/services"", - ""clientCategories"": ""https://nordicseafarm.com/about"", - ""geographicFocus"": ""https://nordicseafarm.com/contact"", - ""keyExecutives"": ""https://nordicseafarm.com/team"" - } -}","{""clientCategories"":[""Food Industry"",""Textile Industry"",""Animal Feed"",""Biomaterials""],""companyDescription"":""Nordic SeaFarm cultivates seaweed in pristine Nordic Waters with full traceability from seeds to seaweed. Founded in 2016, Nordic SeaFarm is at the forefront of making European seaweed available to industries. They grow high-value species at their own seaweed farm and source sustainably from partner farms. Their mission is to unlock the potential of seaweed for sustainable food, climate solutions, and economic growth by collaborating with stakeholders and partners to drive change and create a regenerative and prosperous planet."",""geographicFocus"":""Primary focus on Nordic Waters and Europe, with headquarters in Strömstad and commercial office in Gothenburg, Sweden."",""keyExecutives"":[{""name"":""Elisabet Brock"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Gunnar Cervin"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Fredrik Gröndahl"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Gunilla Toth"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Henrik Palvia"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Göran Nylund"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder and Head of Production and R&D""},{""name"":""Christer Olausson"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Chief Executive Officer""},{""name"":""Helen Larsson"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Head of Finance""}],""missingImportantFields"":[],""productDescription"":""Nordic SeaFarm cultivates Sugar Kelp, Sea Lettuce, and Winged Kelp, each with unique nutritional properties and applications. Their seaweed products serve as food ingredients, supplements, and raw materials for other applications. They provide processing services including drying, blanching, freezing, brining, milling, and grinding, producing fine seaweed powders tailored for various industry needs."",""researcherNotes"":""All required fields were found and confirmed primarily from the company's official website and leadership page. The CEO title for Christer Olausson is corroborated by both the company site and LinkedIn. No discrepancies or missing critical information remain. Geographic focus includes Nordic waters and Europe, consistent between site contact details and corporate description."",""sectorDescription"":""Operates in the seaweed cultivation, aquaculture, and ocean biomaterials sector, focusing on sustainable large-scale seaweed farming and processing for multiple industries."",""sources"":{""clientCategories"":""https://nordicseafarm.com/about"",""companyDescription"":""https://nordicseafarm.com/about"",""geographicFocus"":""https://nordicseafarm.com/contact"",""keyExecutives"":""https://nordicseafarm.com/team"",""productDescription"":""https://nordicseafarm.com/services""},""websiteURL"":""https://en.nordicseafarm.com""}","Correctness: 100% Completeness: 98% The description of Nordic SeaFarm is factually accurate and comprehensive based on multiple direct company sources. The company was indeed founded in 2016 and focuses on large-scale sustainable seaweed cultivation in Nordic Waters and Europe, with offices in Strömstad and Gothenburg, Sweden[1][2][3]. The founders include Elisabet Brock, Gunnar Cervin, Fredrik Gröndahl, Gunilla Toth, Henrik Pavia, and Göran Nylund, confirmed on the official team page[2]. Christer Olausson is the CEO as corroborated by company sources and LinkedIn profiles[1]. Nordic SeaFarm cultivates Sugar Kelp, Sea Lettuce, and Winged Kelp, providing various processing services such as drying, blanching, freezing, brining, milling, and grinding to create products for food, supplements, animal feed, textile, and biomaterials industries[1][4]. Their recent milestone as the first European company to farm and harvest Ulva fenestrata at scale (2023) demonstrates active innovation[4]. The only minor omission is deeper detail on their joint venture Manatee Biomaterials formed in 2024, briefly mentioned but not fully elaborated here[1]. Overall, the core claims stand fully supported by current official and EU maritime sources dated as recently as June 2024, with no contradictory information detected. URLs: https://www.nordicseafarm.com/about https://www.nordicseafarm.com/team https://ecosystem.andorra-startup.com/companies/nordic_seafarm https://maritime-forum.ec.europa.eu/news/introducing-nordic-seafarm-pioneering-company-dedicated-sustainable-cultivation-and-2024-06-26_en","{""clientCategories"":[""Food Industry"",""Textile Industry"",""Animal Feed"",""Biomaterials""],""companyDescription"":""Nordic SeaFarm cultivates seaweed in pristine Nordic Waters with full traceability from seeds to seaweed. Founded in 2016, Nordic SeaFarm is at the forefront of making European seaweed available to industries. They grow high value species at their own seaweed farm and source sustainably from partner farms. Their mission is to unlock the potential of seaweed for sustainable food, climate solutions, and economic growth through collaboration with stakeholders and partners to drive change and create a regenerative and prosperous planet by future-proofing industries through making seaweed truly available."",""geographicFocus"":""HQ: Prästängsvägen 8, 452 33 Strömstad, Sweden; Commercial Office: Masthamnsgatan 3, 413 27 Gothenburg, Sweden; Sales Focus: Nordic Waters, Europe"",""keyExecutives"":[{""name"":""Elisabet Brock"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Gunnar Cervin"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Fredrik Gröndahl"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Gunilla Toth"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Henrik Palvia"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder""},{""name"":""Göran Nylund"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Founder and Head of Production and R&D""},{""name"":""Christer Olausson"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""CEO""},{""name"":""Helen Larsson"",""sourceUrl"":""https://nordicseafarm.com/team"",""title"":""Head of Finance""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Nordic SeaFarm cultivates Sugar Kelp, Sea Lettuce, and Winged Kelp, each with unique nutritional properties and applications. Their seaweed products include food ingredients, supplements, and other applications. They offer processing services such as drying, blanching, freezing, brining, milling, and grinding, including the production of fine seaweed powder."",""researcherNotes"":""All critical data fields were found with detailed information on the company's website, including the About, Team, and Services pages. No direct downloadable documents like PDFs were found on the site."",""sectorDescription"":""Operates in the seaweed cultivation, aquaculture, and ocean biomaterials sector, focusing on sustainable large-scale seaweed farming and processing for various industries."",""sources"":{""clientCategories"":""https://nordicseafarm.com/about"",""companyDescription"":""https://nordicseafarm.com/about"",""geographicFocus"":""https://nordicseafarm.com/contact"",""keyExecutives"":""https://nordicseafarm.com/team"",""productDescription"":""https://nordicseafarm.com/services""},""websiteURL"":""https://en.nordicseafarm.com""}" -recalm,https://www.recalm.com,"bmp Ventures, Greeneering Invest, Silver Crown Capital, Symbia VC",recalm.com,https://www.linkedin.com/company/recalm,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.recalm.com"", - ""companyDescription"": ""Mission: Turning noise into sound– our mission. Vision: Committed to driving positive change for people and organizations through innovation and collaboration, creating safe and enjoyable work environments. Belief in the essential basis of mental and physical health and satisfaction of employees for productive work. Pioneer in the field improving quality of life by reducing hazardous noise and converting it into soothing sounds, reducing stress and preventing health problems. Values: Reliability, Honesty, Appreciation, Curiosity, Sustainability, Passion."", - ""productDescription"": ""The ANCOR Headrest is an all-in-one solution designed for construction, agricultural, forestry machinery, trucks, aircraft, and vehicles exposed to harmful noise. It features active noise cancellation (up to 50% noise reduction), communication with digital signal processing and multiple microphones for high voice quality, a radio module compatible with PMR, professional mobile radio, CB radio from Kenwood, Motorola, Midland, iCom, and Stabo, and helmet radio solutions from 3M Peltor LiteCom. Entertainment includes adaptive volume adjustment, Bluetooth music connection, and superior sound quality. The ANCOR Custom offers B2B consulting and customization with features such as DoIP for OTA updates and diagnostics, operation via display controller, digital signal processing, edge computing with real-time data processing at 48 kHz, DAB+ radio module with twin tuner, graphical user interface, acoustic maintenance with predictive fault detection, embedded audio algorithms including AI-based speech denoising, beamforming, adaptive gain control, virtual sensing, and customized signature sounds. Services include commissioning, configuration of various interfaces (A2B, I2C, I2S), and consultancy on radio standards (BTcom, Company radio, PMR, VHF, CB radio)."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the B2B technology sector, providing active noise reduction and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles."", - ""geographicFocus"": ""HQ: recalm GmbH, Gasstr. 16, 22761 Hamburg, Deutschland; Zweigstelle: recalm GmbH, Steinfeldstraße 2a, 39179 Barleben, Deutschland; Primary region focus: Norddeutschland and Süddeutschland."", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://recalm.com/wp-content/uploads/2025/01/Datasheets_D2023_02_27_ANCOR_Gesamtbauteilzeichnung_351ANC03000_K1.pdf"",""https://recalm.com/wp-content/uploads/2025/06/Betriebsanleitung_ANCOR_FINAL_2025_04_25.pdf"",""https://recalm.com/wp-content/uploads/2025/06/A5_Schnellanleitung_ANCOR_FINAL_2025_02_05.pdf""], - ""researcherNotes"": ""No specific founder or key executive titles were found on the website despite extensive search. Client categories were also not explicitly listed."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://recalm.com/en/about-recalm/"", - ""productDescription"": ""https://recalm.com/en/solutions/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://recalm.com/kontakt/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.recalm.com"", - ""companyDescription"": ""Mission: Turning noise into sound– our mission. Vision: Committed to driving positive change for people and organizations through innovation and collaboration, creating safe and enjoyable work environments. Belief in the essential basis of mental and physical health and satisfaction of employees for productive work. Pioneer in the field improving quality of life by reducing hazardous noise and converting it into soothing sounds, reducing stress and preventing health problems. Values: Reliability, Honesty, Appreciation, Curiosity, Sustainability, Passion."", - ""productDescription"": ""The ANCOR Headrest is an all-in-one solution designed for construction, agricultural, forestry machinery, trucks, aircraft, and vehicles exposed to harmful noise. It features active noise cancellation (up to 50% noise reduction), communication with digital signal processing and multiple microphones for high voice quality, a radio module compatible with PMR, professional mobile radio, CB radio from Kenwood, Motorola, Midland, iCom, and Stabo, and helmet radio solutions from 3M Peltor LiteCom. Entertainment includes adaptive volume adjustment, Bluetooth music connection, and superior sound quality. The ANCOR Custom offers B2B consulting and customization with features such as DoIP for OTA updates and diagnostics, operation via display controller, digital signal processing, edge computing with real-time data processing at 48 kHz, DAB+ radio module with twin tuner, graphical user interface, acoustic maintenance with predictive fault detection, embedded audio algorithms including AI-based speech denoising, beamforming, adaptive gain control, virtual sensing, and customized signature sounds. Services include commissioning, configuration of various interfaces (A2B, I2C, I2S), and consultancy on radio standards (BTcom, Company radio, PMR, VHF, CB radio)."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the B2B technology sector, providing active noise reduction and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles."", - ""geographicFocus"": ""HQ: recalm GmbH, Gasstr. 16, 22761 Hamburg, Deutschland; Zweigstelle: recalm GmbH, Steinfeldstraße 2a, 39179 Barleben, Deutschland; Primary region focus: Norddeutschland and Süddeutschland."", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://recalm.com/wp-content/uploads/2025/01/Datasheets_D2023_02_27_ANCOR_Gesamtbauteilzeichnung_351ANC03000_K1.pdf"",""https://recalm.com/wp-content/uploads/2025/06/Betriebsanleitung_ANCOR_FINAL_2025_04_25.pdf"",""https://recalm.com/wp-content/uploads/2025/06/A5_Schnellanleitung_ANCOR_FINAL_2025_02_05.pdf""], - ""researcherNotes"": ""No specific founder or key executive titles were found on the website despite extensive search. Client categories were also not explicitly listed."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://recalm.com/en/about-recalm/"", - ""productDescription"": ""https://recalm.com/en/solutions/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://recalm.com/kontakt/"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.recalm.com"", - ""companyDescription"": ""recalm is a B2B technology company headquartered in Hamburg, Germany, specializing in active noise cancellation and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles. Their mission is to transform hazardous noise into soothing sound to improve the quality of life for operators by reducing stress and preventing health problems. They focus on innovation and collaboration to create safe and enjoyable work environments, advancing mental and physical health as a foundation for productive work. They are pioneers in active noise reduction technology with a comprehensive product ecosystem that enhances communication, entertainment, and safety."", - ""productDescription"": ""The ANCOR Headrest system integrates active noise cancellation technology that reduces harmful noise by up to 50% without the need for headphones, creating a quiet zone around the operator's head. It features digital signal processing with multiple microphones for high voice quality, radio modules compatible with professional radios (PMR, CB, etc.), helmet radio solutions, adaptive volume control, Bluetooth music playback, and advanced embedded audio algorithms including AI-based speech denoising and predictive fault detection. The system is customizable for various industrial vehicles such as construction, agricultural, forestry machinery, trucks, and aircraft, with additional B2B consulting and configuration services provided."", - ""clientCategories"": [ - ""Construction Machinery Operators"", - ""Agricultural Machinery Operators"", - ""Forestry Machinery Operators"", - ""Truck Operators"", - ""Aircraft Operators"", - ""Industrial Vehicle Operators"" - ], - ""sectorDescription"": ""B2B technology company specializing in active noise reduction and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles."", - ""geographicFocus"": ""Primary focus on Norddeutschland and Süddeutschland regions in Germany, with headquarters in Hamburg and a branch in Barleben."", - ""keyExecutives"": [], - ""researcherNotes"": ""No senior leadership information or key executive names were found in either the company website or LinkedIn profiles after thorough search. Client categories were not explicitly listed but logically inferred from product use cases and industry focus. Geographic focus and sector are supported by company address data and product market orientation. The company is confirmed as recalm GmbH based on domain, HQ city/country, and proprietary ANCOR noise-cancellation technology references."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://recalm.com/en/about-recalm/"", - ""productDescription"": ""https://recalm.com/en/solutions/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://recalm.com/kontakt/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Construction Machinery Operators"",""Agricultural Machinery Operators"",""Forestry Machinery Operators"",""Truck Operators"",""Aircraft Operators"",""Industrial Vehicle Operators""],""companyDescription"":""recalm is a B2B technology company headquartered in Hamburg, Germany, specializing in active noise cancellation and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles. Their mission is to transform hazardous noise into soothing sound to improve the quality of life for operators by reducing stress and preventing health problems. They focus on innovation and collaboration to create safe and enjoyable work environments, advancing mental and physical health as a foundation for productive work. They are pioneers in active noise reduction technology with a comprehensive product ecosystem that enhances communication, entertainment, and safety."",""geographicFocus"":""Primary focus on Norddeutschland and Süddeutschland regions in Germany, with headquarters in Hamburg and a branch in Barleben."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The ANCOR Headrest system integrates active noise cancellation technology that reduces harmful noise by up to 50% without the need for headphones, creating a quiet zone around the operator's head. It features digital signal processing with multiple microphones for high voice quality, radio modules compatible with professional radios (PMR, CB, etc.), helmet radio solutions, adaptive volume control, Bluetooth music playback, and advanced embedded audio algorithms including AI-based speech denoising and predictive fault detection. The system is customizable for various industrial vehicles such as construction, agricultural, forestry machinery, trucks, and aircraft, with additional B2B consulting and configuration services provided."",""researcherNotes"":""No senior leadership information or key executive names were found in either the company website or LinkedIn profiles after thorough search. Client categories were not explicitly listed but logically inferred from product use cases and industry focus. Geographic focus and sector are supported by company address data and product market orientation. The company is confirmed as recalm GmbH based on domain, HQ city/country, and proprietary ANCOR noise-cancellation technology references."",""sectorDescription"":""B2B technology company specializing in active noise reduction and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles."",""sources"":{""clientCategories"":null,""companyDescription"":""https://recalm.com/en/about-recalm/"",""geographicFocus"":""https://recalm.com/kontakt/"",""keyExecutives"":null,""productDescription"":""https://recalm.com/en/solutions/""},""websiteURL"":""https://www.recalm.com""}","Correctness: 95% Completeness: 85% The information provided about recalm GmbH is largely accurate and substantiated by multiple official and company-controlled sources. The company is indeed a B2B technology firm headquartered in Hamburg, Germany (confirmed at Harburger Schloßstrasse 6-12, Hamburg), specializing in active noise cancellation and communication systems for construction, agricultural, forestry machinery, trucks, aircraft, and industrial vehicles, with a focus on improving operator wellbeing through noise reduction and advanced communication technologies[1][4]. The ANCOR Headrest system description matches the company’s stated proprietary active noise cancellation technology, including features such as noise reduction up to 50%, digital signal processing, radio compatibility, Bluetooth music, and AI-based speech denoising[1]. The geographic focus on North and South Germany is consistent with their Hamburg headquarters and branch in Barleben based on contact details, though explicit sources naming both regional focuses are less direct but supported by company location and market orientation[1][4]. The key executives' information is missing in the original data; although the company’s “Our Team” page lists numerous team members with roles, no clear senior leadership titles (CEO, CTO etc.) are prominently stated, confirming the noted gap[2]. The client categories logically follow from product application areas listed and are confirmed by the product page and about page[1][2]. Overall, the completeness is slightly reduced by lack of explicitly named senior leadership and absence of detailed recent milestones or funding information publicly available. This summary is based on company website pages (https://www.recalm.com/en/about-recalm/, https://www.recalm.com/en/solutions/, https://www.recalm.com/kontakt/), Creditsafe registry (https://www.creditsafe.com/business-index/en-gb/company/recalm-gmbh-de22646350), and supplemental startup profiles confirming key claims[1][2][4].","{""clientCategories"":[],""companyDescription"":""Mission: Turning noise into sound– our mission. Vision: Committed to driving positive change for people and organizations through innovation and collaboration, creating safe and enjoyable work environments. Belief in the essential basis of mental and physical health and satisfaction of employees for productive work. Pioneer in the field improving quality of life by reducing hazardous noise and converting it into soothing sounds, reducing stress and preventing health problems. Values: Reliability, Honesty, Appreciation, Curiosity, Sustainability, Passion."",""geographicFocus"":""HQ: recalm GmbH, Gasstr. 16, 22761 Hamburg, Deutschland; Zweigstelle: recalm GmbH, Steinfeldstraße 2a, 39179 Barleben, Deutschland; Primary region focus: Norddeutschland and Süddeutschland."",""keyExecutives"":[],""linkedDocuments"":[""https://recalm.com/wp-content/uploads/2025/01/Datasheets_D2023_02_27_ANCOR_Gesamtbauteilzeichnung_351ANC03000_K1.pdf"",""https://recalm.com/wp-content/uploads/2025/06/Betriebsanleitung_ANCOR_FINAL_2025_04_25.pdf"",""https://recalm.com/wp-content/uploads/2025/06/A5_Schnellanleitung_ANCOR_FINAL_2025_02_05.pdf""],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""The ANCOR Headrest is an all-in-one solution designed for construction, agricultural, forestry machinery, trucks, aircraft, and vehicles exposed to harmful noise. It features active noise cancellation (up to 50% noise reduction), communication with digital signal processing and multiple microphones for high voice quality, a radio module compatible with PMR, professional mobile radio, CB radio from Kenwood, Motorola, Midland, iCom, and Stabo, and helmet radio solutions from 3M Peltor LiteCom. Entertainment includes adaptive volume adjustment, Bluetooth music connection, and superior sound quality. The ANCOR Custom offers B2B consulting and customization with features such as DoIP for OTA updates and diagnostics, operation via display controller, digital signal processing, edge computing with real-time data processing at 48 kHz, DAB+ radio module with twin tuner, graphical user interface, acoustic maintenance with predictive fault detection, embedded audio algorithms including AI-based speech denoising, beamforming, adaptive gain control, virtual sensing, and customized signature sounds. Services include commissioning, configuration of various interfaces (A2B, I2C, I2S), and consultancy on radio standards (BTcom, Company radio, PMR, VHF, CB radio)."",""researcherNotes"":""No specific founder or key executive titles were found on the website despite extensive search. Client categories were also not explicitly listed."",""sectorDescription"":""Operates in the B2B technology sector, providing active noise reduction and communication systems for heavy machinery, trucks, aircraft, and industrial vehicles."",""sources"":{""clientCategories"":null,""companyDescription"":""https://recalm.com/en/about-recalm/"",""geographicFocus"":""https://recalm.com/kontakt/"",""keyExecutives"":null,""productDescription"":""https://recalm.com/en/solutions/""},""websiteURL"":""https://www.recalm.com""}" -Calyxia,https://calyxia.com,"Astanor Ventures, Bpifrance Large Venture, Lombard Odier Investment Managers",calyxia.com,https://www.linkedin.com/company/calyxiasustainablechemistry,"{""seniorLeadership"":[{""fullName"":""Jamie Walters"",""title"":""Chief Executive Officer (CEO), Co-Founder"",""linkedInProfile"":""https://www.linkedin.com/in/jamie-walters-CEO-cofounder""},{""fullName"":""Michel Boyer-Chammard"",""title"":""Deputy CEO (Directeur Général Délégué)"",""linkedInProfile"":""https://www.linkedin.com/in/boyer-chammard""},{""fullName"":""Patrice Lataillade"",""title"":""Chief Financial Officer (CFO)"",""linkedInProfile"":""https://www.linkedin.com/in/patrice-lataillade-8454241""},{""fullName"":""Diane Bausson"",""title"":""HSE and Sustainable Development Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Frédéric Boubet"",""title"":""Quality and Operational Excellence Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Jennifer Dall’anese"",""title"":""Industrial Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Damien Demoulin"",""title"":""Chief Technological Officer"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Nicolas Kerfant"",""title"":""Head of Business Unit – Agriculture"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Karima Ouhenia"",""title"":""Product Development Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Estelle Torre"",""title"":""Head of Business Unit – Consumer Care"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Christophe Wielgosik"",""title"":""Chief Human Resources Officer"",""linkedInProfile"":""https://www.linkedin.com/in/christophe-wielgosik""}]}","{""seniorLeadership"":[{""fullName"":""Jamie Walters"",""title"":""Chief Executive Officer (CEO), Co-Founder"",""linkedInProfile"":""https://www.linkedin.com/in/jamie-walters-CEO-cofounder""},{""fullName"":""Michel Boyer-Chammard"",""title"":""Deputy CEO (Directeur Général Délégué)"",""linkedInProfile"":""https://www.linkedin.com/in/boyer-chammard""},{""fullName"":""Patrice Lataillade"",""title"":""Chief Financial Officer (CFO)"",""linkedInProfile"":""https://www.linkedin.com/in/patrice-lataillade-8454241""},{""fullName"":""Diane Bausson"",""title"":""HSE and Sustainable Development Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Frédéric Boubet"",""title"":""Quality and Operational Excellence Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Jennifer Dall’anese"",""title"":""Industrial Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Damien Demoulin"",""title"":""Chief Technological Officer"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Nicolas Kerfant"",""title"":""Head of Business Unit – Agriculture"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Karima Ouhenia"",""title"":""Product Development Director"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Estelle Torre"",""title"":""Head of Business Unit – Consumer Care"",""linkedInProfile"":""https://www.linkedin.com/company/calyxiasustainablechemistry""},{""fullName"":""Christophe Wielgosik"",""title"":""Chief Human Resources Officer"",""linkedInProfile"":""https://www.linkedin.com/in/christophe-wielgosik""}]}","{ - ""websiteURL"": ""https://calyxia.com"", - ""companyDescription"": ""Calyxia designs, manufactures, and sells high-performing and eco-engineered microcapsule and microsphere solutions aiming to advance product performance and achieve sustainability goals. The company serves industrial clients in Agriculture, Consumer Care, and Advanced Materials. Their mission includes empowering sustainable growth in agriculture, offering microplastic-free microcapsules for home and personal care, and enabling more efficient processes and high-performance materials. Calyxia emphasizes scientific creativity, industrial boldness, and fighting microplastic pollution to deliver a sustainable future, addressing biodiversity protection, soil fertility, human health, and energy-efficient materials."", - ""productDescription"": ""Calyxia offers advanced and sustainable microcapsules and microspheres in three core sectors: Agriculture (biodegradable NaturaCaps™ microcapsules improving crop yields and soil quality), Home & Beauty (microplastic-free biodegradable microcapsules and microspheres enhancing sensory and functional performance), and Advanced Materials (high-performance capsules like ActivOptix™, Calyshield™, and Catalyx™ that protect reactive ingredients and enable efficient processes)."", - ""clientCategories"": [""Agriculture"", ""Consumer Care"", ""Advanced Materials""], - ""sectorDescription"": ""Operates in the industrial B2B cleantech sector, specializing in advanced sustainable microencapsulation technologies for agriculture, consumer care, and advanced materials."", - ""geographicFocus"": ""HQ: 2 Allée Katherine Johnson, 94380 Bonneuil-sur-Marne, France and 4 rue des frères Thonet, 94450 Limeil Brevannes, France; Sales regions not explicitly stated."", - ""keyExecutives"": [ - {""name"": ""Jamie Walters"", ""title"": ""CEO and Co-Founder"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Damien Demoulin"", ""title"": ""Chief Technological Officer"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Patrice Lataillade"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Michel Boyer-Chammard"", ""title"": ""Deputy CEO"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Christian Dubois"", ""title"": ""Chief Operations Officer"", ""sourceUrl"": ""https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/""} - ], - ""linkedDocuments"": [ - ""https://calyxia.com/app/uploads/2024/03/calyxia-csr-charter.pdf"", - ""https://calyxia.com/app/uploads/2024/09/calyxia-press-release-series-b-1-1.pdf"", - ""https://calyxia.com/app/uploads/2024/09/calyxia-communique-de-presse-serie-b-1.pdf"" - ], - ""researcherNotes"": ""No explicit geographic sales focus described on the website beyond the headquarters locations in France."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://calyxia.com/about-us/"", - ""productDescription"": ""https://calyxia.com/our-products/"", - ""clientCategories"": ""https://calyxia.com/"", - ""geographicFocus"": ""https://calyxia.com/contact-us/"", - ""keyExecutives"": ""https://calyxia.com/about-us/"" - } -}","{ - ""websiteURL"": ""https://calyxia.com"", - ""companyDescription"": ""Calyxia designs, manufactures, and sells high-performing and eco-engineered microcapsule and microsphere solutions aiming to advance product performance and achieve sustainability goals. The company serves industrial clients in Agriculture, Consumer Care, and Advanced Materials. Their mission includes empowering sustainable growth in agriculture, offering microplastic-free microcapsules for home and personal care, and enabling more efficient processes and high-performance materials. Calyxia emphasizes scientific creativity, industrial boldness, and fighting microplastic pollution to deliver a sustainable future, addressing biodiversity protection, soil fertility, human health, and energy-efficient materials."", - ""productDescription"": ""Calyxia offers advanced and sustainable microcapsules and microspheres in three core sectors: Agriculture (biodegradable NaturaCaps™ microcapsules improving crop yields and soil quality), Home & Beauty (microplastic-free biodegradable microcapsules and microspheres enhancing sensory and functional performance), and Advanced Materials (high-performance capsules like ActivOptix™, Calyshield™, and Catalyx™ that protect reactive ingredients and enable efficient processes)."", - ""clientCategories"": [""Agriculture"", ""Consumer Care"", ""Advanced Materials""], - ""sectorDescription"": ""Operates in the industrial B2B cleantech sector, specializing in advanced sustainable microencapsulation technologies for agriculture, consumer care, and advanced materials."", - ""geographicFocus"": ""HQ: 2 Allée Katherine Johnson, 94380 Bonneuil-sur-Marne, France and 4 rue des frères Thonet, 94450 Limeil Brevannes, France; Sales regions not explicitly stated."", - ""keyExecutives"": [ - {""name"": ""Jamie Walters"", ""title"": ""CEO and Co-Founder"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Damien Demoulin"", ""title"": ""Chief Technological Officer"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Patrice Lataillade"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Michel Boyer-Chammard"", ""title"": ""Deputy CEO"", ""sourceUrl"": ""https://calyxia.com/about-us/""}, - {""name"": ""Christian Dubois"", ""title"": ""Chief Operations Officer"", ""sourceUrl"": ""https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/""} - ], - ""linkedDocuments"": [ - ""https://calyxia.com/app/uploads/2024/03/calyxia-csr-charter.pdf"", - ""https://calyxia.com/app/uploads/2024/09/calyxia-press-release-series-b-1-1.pdf"", - ""https://calyxia.com/app/uploads/2024/09/calyxia-communique-de-presse-serie-b-1.pdf"" - ], - ""researcherNotes"": ""No explicit geographic sales focus described on the website beyond the headquarters locations in France."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://calyxia.com/about-us/"", - ""productDescription"": ""https://calyxia.com/our-products/"", - ""clientCategories"": ""https://calyxia.com/"", - ""geographicFocus"": ""https://calyxia.com/contact-us/"", - ""keyExecutives"": ""https://calyxia.com/about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://calyxia.com"", - ""companyDescription"": ""Calyxia designs, manufactures, and sells high-performing and eco-engineered microcapsule and microsphere solutions that enable sustainable growth for industrial manufacturers in Agriculture, Consumer Care, and Advanced Materials sectors. Their unique microencapsulation technology protects and delivers active chemical ingredients with reduced environmental impact, aiming to advance product performance and address challenges such as microplastic pollution, biodiversity protection, soil fertility, and human health."", - ""productDescription"": ""Calyxia offers advanced, sustainable microcapsules and microspheres across three core sectors: Agriculture (biodegradable NaturaCaps™ that enhance crop yields and soil quality), Home & Beauty (microplastic-free biodegradable capsules improving sensory and functional product performances), and Advanced Materials (high-performance capsules like ActivOptix™, Calyshield™, and Catalyx™ designed to protect reactive ingredients and optimize industrial processes)."", - ""clientCategories"": [ - ""Agriculture"", - ""Consumer Care"", - ""Advanced Materials"" - ], - ""sectorDescription"": ""Industrial B2B cleantech focused on advanced sustainable microencapsulation technologies for agriculture, consumer care, and advanced materials industries."", - ""geographicFocus"": ""Operations include France, Germany, Japan, and the United States; headquarters and industrial sites are based in the Île-de-France region, France."", - ""keyExecutives"": [ - { - ""name"": ""Jamie Walters"", - ""title"": ""CEO and Co-Founder"", - ""sourceUrl"": ""https://calyxia.com/about-us/"" - }, - { - ""name"": ""Damien Demoulin"", - ""title"": ""Chief Technological Officer"", - ""sourceUrl"": ""https://calyxia.com/about-us/"" - }, - { - ""name"": ""Patrice Lataillade"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://calyxia.com/about-us/"" - }, - { - ""name"": ""Michel Boyer-Chammard"", - ""title"": ""Deputy CEO"", - ""sourceUrl"": ""https://calyxia.com/about-us/"" - }, - { - ""name"": ""Christian Dubois"", - ""title"": ""Chief Operations Officer"", - ""sourceUrl"": ""https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/"" - } - ], - ""researcherNotes"": ""Geographic footprint beyond headquarters in France is partially confirmed by B Corp certification indicating operations in Germany, Japan, and the U.S. There is no explicit comprehensive sales region description on the company website. Executive titles and leadership largely corroborated between Calyxia site and LinkedIn profiles. Additional senior roles on LinkedIn were not added here to strictly comply with senior leadership criteria and source authority."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://calyxia.com/about-us/"", - ""productDescription"": ""https://calyxia.com/our-products/"", - ""clientCategories"": ""https://calyxia.com/"", - ""geographicFocus"": ""https://www.bcorporation.net/find-a-b-corp/company/calyxia/"", - ""keyExecutives"": ""https://calyxia.com/about-us/"" - } -}","{""clientCategories"":[""Agriculture"",""Consumer Care"",""Advanced Materials""],""companyDescription"":""Calyxia designs, manufactures, and sells high-performing and eco-engineered microcapsule and microsphere solutions that enable sustainable growth for industrial manufacturers in Agriculture, Consumer Care, and Advanced Materials sectors. Their unique microencapsulation technology protects and delivers active chemical ingredients with reduced environmental impact, aiming to advance product performance and address challenges such as microplastic pollution, biodiversity protection, soil fertility, and human health."",""geographicFocus"":""Operations include France, Germany, Japan, and the United States; headquarters and industrial sites are based in the Île-de-France region, France."",""keyExecutives"":[{""name"":""Jamie Walters"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""CEO and Co-Founder""},{""name"":""Damien Demoulin"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""Chief Technological Officer""},{""name"":""Patrice Lataillade"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""Chief Financial Officer""},{""name"":""Michel Boyer-Chammard"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""Deputy CEO""},{""name"":""Christian Dubois"",""sourceUrl"":""https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/"",""title"":""Chief Operations Officer""}],""missingImportantFields"":[],""productDescription"":""Calyxia offers advanced, sustainable microcapsules and microspheres across three core sectors: Agriculture (biodegradable NaturaCaps™ that enhance crop yields and soil quality), Home & Beauty (microplastic-free biodegradable capsules improving sensory and functional product performances), and Advanced Materials (high-performance capsules like ActivOptix™, Calyshield™, and Catalyx™ designed to protect reactive ingredients and optimize industrial processes)."",""researcherNotes"":""Geographic footprint beyond headquarters in France is partially confirmed by B Corp certification indicating operations in Germany, Japan, and the U.S. There is no explicit comprehensive sales region description on the company website. Executive titles and leadership largely corroborated between Calyxia site and LinkedIn profiles. Additional senior roles on LinkedIn were not added here to strictly comply with senior leadership criteria and source authority."",""sectorDescription"":""Industrial B2B cleantech focused on advanced sustainable microencapsulation technologies for agriculture, consumer care, and advanced materials industries."",""sources"":{""clientCategories"":""https://calyxia.com/"",""companyDescription"":""https://calyxia.com/about-us/"",""geographicFocus"":""https://www.bcorporation.net/find-a-b-corp/company/calyxia/"",""keyExecutives"":""https://calyxia.com/about-us/"",""productDescription"":""https://calyxia.com/our-products/""},""websiteURL"":""https://calyxia.com""}","Correctness: 98% Completeness: 95% The provided information about Calyxia is highly accurate and mostly complete based on official company sources. The company designs, manufactures, and sells sustainable microcapsule and microsphere solutions serving Agriculture, Consumer Care, and Advanced Materials sectors, as described on their About Us and Products pages (https://calyxia.com/about-us/, https://calyxia.com/our-products/). The geographic footprint including France headquarters (Bonneuil-sur-Marne) and operations in Germany, Japan, and the U.S. is corroborated by B Corp certification and company details (https://www.bcorporation.net/find-a-b-corp/company/calyxia/, https://calyxia.com/contact-us/). Leadership titles (CEO Jamie Walters, CTO Damien Demoulin, CFO Patrice Lataillade, Deputy CEO Michel Boyer-Chammard, COO Christian Dubois) are confirmed on the company’s About Us page and related press (https://calyxia.com/about-us/, https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/). The product description matches the company's stated offerings in eco-engineered microcapsules like NaturaCaps™, ActivOptix™, Calyshield™, and Catalyx™ (https://calyxia.com/our-products/). The only minor omission is the lack of explicit detail about the full global sales regions beyond the base regions known, and no direct recent filings or tier-1 media confirming all footprint details, though these details are well supported by the company’s current disclosures and certifications. The planned 2024 new industrial site in Limeil-Brévannes further confirms growth and location (https://calyxia.com/news/calyxia-new-industrial-site-in-limeil-brevannes-for-2024/). Overall, the data is well corroborated from official Calyxia sources and current certifications as of 2025-09. -https://calyxia.com/about-us/ -https://calyxia.com/our-products/ -https://www.bcorporation.net/find-a-b-corp/company/calyxia/ -https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/ -https://calyxia.com/news/calyxia-new-industrial-site-in-limeil-brevannes-for-2024/","{""clientCategories"":[""Agriculture"",""Consumer Care"",""Advanced Materials""],""companyDescription"":""Calyxia designs, manufactures, and sells high-performing and eco-engineered microcapsule and microsphere solutions aiming to advance product performance and achieve sustainability goals. The company serves industrial clients in Agriculture, Consumer Care, and Advanced Materials. Their mission includes empowering sustainable growth in agriculture, offering microplastic-free microcapsules for home and personal care, and enabling more efficient processes and high-performance materials. Calyxia emphasizes scientific creativity, industrial boldness, and fighting microplastic pollution to deliver a sustainable future, addressing biodiversity protection, soil fertility, human health, and energy-efficient materials."",""geographicFocus"":""HQ: 2 Allée Katherine Johnson, 94380 Bonneuil-sur-Marne, France and 4 rue des frères Thonet, 94450 Limeil Brevannes, France; Sales regions not explicitly stated."",""keyExecutives"":[{""name"":""Jamie Walters"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""CEO and Co-Founder""},{""name"":""Damien Demoulin"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""Chief Technological Officer""},{""name"":""Patrice Lataillade"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""Chief Financial Officer""},{""name"":""Michel Boyer-Chammard"",""sourceUrl"":""https://calyxia.com/about-us/"",""title"":""Deputy CEO""},{""name"":""Christian Dubois"",""sourceUrl"":""https://calyxia.com/news/christian-dubois-coo-of-calyxia-elected-president-of-the-olympiades-de-la-chimie-ile-de-france/"",""title"":""Chief Operations Officer""}],""linkedDocuments"":[""https://calyxia.com/app/uploads/2024/03/calyxia-csr-charter.pdf"",""https://calyxia.com/app/uploads/2024/09/calyxia-press-release-series-b-1-1.pdf"",""https://calyxia.com/app/uploads/2024/09/calyxia-communique-de-presse-serie-b-1.pdf""],""missingImportantFields"":[],""productDescription"":""Calyxia offers advanced and sustainable microcapsules and microspheres in three core sectors: Agriculture (biodegradable NaturaCaps™ microcapsules improving crop yields and soil quality), Home & Beauty (microplastic-free biodegradable microcapsules and microspheres enhancing sensory and functional performance), and Advanced Materials (high-performance capsules like ActivOptix™, Calyshield™, and Catalyx™ that protect reactive ingredients and enable efficient processes)."",""researcherNotes"":""No explicit geographic sales focus described on the website beyond the headquarters locations in France."",""sectorDescription"":""Operates in the industrial B2B cleantech sector, specializing in advanced sustainable microencapsulation technologies for agriculture, consumer care, and advanced materials."",""sources"":{""clientCategories"":""https://calyxia.com/"",""companyDescription"":""https://calyxia.com/about-us/"",""geographicFocus"":""https://calyxia.com/contact-us/"",""keyExecutives"":""https://calyxia.com/about-us/"",""productDescription"":""https://calyxia.com/our-products/""},""websiteURL"":""https://calyxia.com""}" -FarmDroid,https://farmdroid.com,"Convent Capital, Export and Investment Fund, Navus Ventures",farmdroid.com,https://www.linkedin.com/company/farmdroid,"{""seniorLeadership"":[{""name"":""Kristian Warming"",""title"":""CEO and Co-founder"",""linkedinURL"":""https://dk.linkedin.com/in/kristianwarming""},{""name"":""Peter Førby-Madsen"",""title"":""Head of Innovation"",""linkedinURL"":""https://dk.linkedin.com/in/peterforbymadsen""}]}","{""seniorLeadership"":[{""name"":""Kristian Warming"",""title"":""CEO and Co-founder"",""linkedinURL"":""https://dk.linkedin.com/in/kristianwarming""},{""name"":""Peter Førby-Madsen"",""title"":""Head of Innovation"",""linkedinURL"":""https://dk.linkedin.com/in/peterforbymadsen""}]}","{ - ""websiteURL"": ""https://farmdroid.com"", - ""companyDescription"": ""FarmDroid ApS, founded in 2018 in Vejen, Denmark, by Jens Vest Warming and Kristian Warming, develops solar-powered autonomous robots aimed at reducing chemical inputs and manual labor costs in farming. Their mission is to promote sustainable agriculture and improve soil health through advanced technological solutions."", - ""productDescription"": ""FarmDroid's main product is the modular FarmDroid FD20 robot, which is a fully automatic, solar-powered field robot capable of sowing, mechanical weeding, and pesticide micro-spraying, designed to automate seeding and plant protection tasks in farming."", - ""clientCategories"": [""Farmers"", ""Plant growers"", ""Agricultural businesses""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing autonomous, solar-powered robots for sustainable farming and plant protection."", - ""geographicFocus"": ""HQ: Vejen, Denmark; Sales Focus: Global markets with over 500 customers worldwide served via distribution partners."", - ""keyExecutives"": [ - {""name"": ""Jens Vest Warming"", ""title"": ""Founder and Chief Technology Officer"", ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""}, - {""name"": ""Kristian Warming"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""}, - {""name"": ""René Jannick Jørgensen"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official FarmDroid website and its subpages have very limited explicit content regarding detailed company descriptions, client categories, geographic footprints, and leadership listings. Most leadership data and company information were confirmed from a reputable industry article. No downloadable documents were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""productDescription"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""clientCategories"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""geographicFocus"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""keyExecutives"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"" - } -}","{ - ""websiteURL"": ""https://farmdroid.com"", - ""companyDescription"": ""FarmDroid ApS, founded in 2018 in Vejen, Denmark, by Jens Vest Warming and Kristian Warming, develops solar-powered autonomous robots aimed at reducing chemical inputs and manual labor costs in farming. Their mission is to promote sustainable agriculture and improve soil health through advanced technological solutions."", - ""productDescription"": ""FarmDroid's main product is the modular FarmDroid FD20 robot, which is a fully automatic, solar-powered field robot capable of sowing, mechanical weeding, and pesticide micro-spraying, designed to automate seeding and plant protection tasks in farming."", - ""clientCategories"": [""Farmers"", ""Plant growers"", ""Agricultural businesses""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing autonomous, solar-powered robots for sustainable farming and plant protection."", - ""geographicFocus"": ""HQ: Vejen, Denmark; Sales Focus: Global markets with over 500 customers worldwide served via distribution partners."", - ""keyExecutives"": [ - {""name"": ""Jens Vest Warming"", ""title"": ""Founder and Chief Technology Officer"", ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""}, - {""name"": ""Kristian Warming"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""}, - {""name"": ""René Jannick Jørgensen"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official FarmDroid website and its subpages have very limited explicit content regarding detailed company descriptions, client categories, geographic footprints, and leadership listings. Most leadership data and company information were confirmed from a reputable industry article. No downloadable documents were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""productDescription"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""clientCategories"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""geographicFocus"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""keyExecutives"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"" - } -}",[],"{ - ""websiteURL"": ""https://farmdroid.com"", - ""companyDescription"": ""FarmDroid ApS, founded in 2018 in Vejen, Denmark, by Jens Vest Warming and Kristian Warming, develops solar-powered autonomous robots aimed at reducing chemical inputs and manual labor costs in farming. Their mission is to promote sustainable agriculture and improve soil health through advanced technological solutions. FarmDroid's robots are designed by farmers for farmers to make high-precision, CO2-neutral seeding and weeding accessible and cost-effective worldwide."", - ""productDescription"": ""FarmDroid's main product, the modular FarmDroid FD20 robot, is a fully automatic, solar-powered field robot capable of sowing, mechanical weeding with centimeter-level GPS accuracy, and pesticide micro-spraying. It automates seeding and plant protection tasks on farms with minimal soil compaction and significant reduction in chemical use, enabling up to a 40% increase in crop yield and up to 94% chemical reduction."", - ""clientCategories"": [""Farmers"", ""Plant Growers"", ""Agricultural Businesses""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing autonomous, solar-powered robots for sustainable farming and plant protection."", - ""geographicFocus"": ""Headquartered in Vejen, Denmark, FarmDroid serves a global customer base with over 500 customers worldwide through distribution partners."", - ""keyExecutives"": [ - { - ""name"": ""Jens Vest Warming"", - ""title"": ""Founder and Chief Technology Officer"", - ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"" - }, - { - ""name"": ""Kristian Warming"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://dk.linkedin.com/in/kristianwarming"" - }, - { - ""name"": ""René Jannick Jørgensen"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"" - }, - { - ""name"": ""Peter Førby-Madsen"", - ""title"": ""Head of Innovation"", - ""sourceUrl"": ""https://dk.linkedin.com/in/peterforbymadsen"" - } - ], - ""researcherNotes"": ""Company identity was confirmed by matching domain 'farmdroid.com', HQ city Vejen Denmark, founding year 2018, and key executives across sources. Geographic focus is globally distributed with 500+ customers via partners. The LinkedIn profile clarifies Kristian Warming's title as CEO and Co-founder, adding Peter Førby-Madsen as Head of Innovation. René Jannick Jørgensen is also listed as CEO in an industry article, so both are included with source URLs. No regulatory filings were found. The company website contains limited leadership details; LinkedIn and industry media were primary sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""productDescription"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""clientCategories"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""geographicFocus"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"", - ""keyExecutives"": ""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"" - } -}","{""clientCategories"":[""Farmers"",""Plant Growers"",""Agricultural Businesses""],""companyDescription"":""FarmDroid ApS, founded in 2018 in Vejen, Denmark, by Jens Vest Warming and Kristian Warming, develops solar-powered autonomous robots aimed at reducing chemical inputs and manual labor costs in farming. Their mission is to promote sustainable agriculture and improve soil health through advanced technological solutions. FarmDroid's robots are designed by farmers for farmers to make high-precision, CO2-neutral seeding and weeding accessible and cost-effective worldwide."",""geographicFocus"":""Headquartered in Vejen, Denmark, FarmDroid serves a global customer base with over 500 customers worldwide through distribution partners."",""keyExecutives"":[{""name"":""Jens Vest Warming"",""sourceUrl"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""title"":""Founder and Chief Technology Officer""},{""name"":""Kristian Warming"",""sourceUrl"":""https://dk.linkedin.com/in/kristianwarming"",""title"":""CEO and Co-founder""},{""name"":""René Jannick Jørgensen"",""sourceUrl"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""title"":""Chief Executive Officer""},{""name"":""Peter Førby-Madsen"",""sourceUrl"":""https://dk.linkedin.com/in/peterforbymadsen"",""title"":""Head of Innovation""}],""missingImportantFields"":[],""productDescription"":""FarmDroid's main product, the modular FarmDroid FD20 robot, is a fully automatic, solar-powered field robot capable of sowing, mechanical weeding with centimeter-level GPS accuracy, and pesticide micro-spraying. It automates seeding and plant protection tasks on farms with minimal soil compaction and significant reduction in chemical use, enabling up to a 40% increase in crop yield and up to 94% chemical reduction."",""researcherNotes"":""Company identity was confirmed by matching domain 'farmdroid.com', HQ city Vejen Denmark, founding year 2018, and key executives across sources. Geographic focus is globally distributed with 500+ customers via partners. The LinkedIn profile clarifies Kristian Warming's title as CEO and Co-founder, adding Peter Førby-Madsen as Head of Innovation. René Jannick Jørgensen is also listed as CEO in an industry article, so both are included with source URLs. No regulatory filings were found. The company website contains limited leadership details; LinkedIn and industry media were primary sources."",""sectorDescription"":""Operates in the agricultural technology sector, providing autonomous, solar-powered robots for sustainable farming and plant protection."",""sources"":{""clientCategories"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""companyDescription"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""geographicFocus"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""keyExecutives"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""productDescription"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""},""websiteURL"":""https://farmdroid.com""}","Correctness: 98% Completeness: 90% The company description is largely accurate and well-supported by multiple credible sources: FarmDroid ApS was founded in 2018 by brothers Jens Vest Warming and Kristian Warming in Vejen, Denmark, with collaboration from Innovationsmiljøet Syddansk Innovation A/S and robotics expert Esben Østergaard, matching key leadership info and founding details[1][2][3][4]. The product, the modular FarmDroid FD20 robot, is solar-powered, fully autonomous, and performs precision seeding and mechanical weeding with GPS centimeter accuracy to reduce chemical use and manual labor, consistent with all sources[2][4]. The mission to promote sustainable, CO2-neutral farming aligns with the company narrative and product capabilities[1][2]. The company serves a global customer base through partners, with over 500 customers, though this numeric detail is less explicitly sourced in available results; the global footprint and distribution partners are referenced[4]. Regarding leadership, Kristian Warming is CEO and Co-founder according to LinkedIn and company sites, while Jens Vest Warming is CTO; René Jannick Jørgensen is also noted as CEO in an industry article, which indicates slight ambiguity but both are valid given sources[4]. Peter Førby-Madsen as Head of Innovation is not contradicted, though not independently confirmed by top-tier sources. No glaring inaccuracies appear, but some minor omissions include latest funding rounds, exact counts of customers confirmed by primary filings, and more detailed leadership structure disclosures in official filings. Overall, the factual claims about company identity, product, leadership, and mission are strongly supported by primary company info and reputable media articles dated within the last 2-3 years, meeting the quality standards for correctness and reasonable completeness. Sources include FarmDroid official site (https://farmdroid.com/our-story/, https://farmdroid.com/the-team/) and independent reporting on the company (https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/, https://danskagroindustri.dk/farmdroid, https://www.reinvestrobotics.com/farmdroid/).","{""clientCategories"":[""Farmers"",""Plant growers"",""Agricultural businesses""],""companyDescription"":""FarmDroid ApS, founded in 2018 in Vejen, Denmark, by Jens Vest Warming and Kristian Warming, develops solar-powered autonomous robots aimed at reducing chemical inputs and manual labor costs in farming. Their mission is to promote sustainable agriculture and improve soil health through advanced technological solutions."",""geographicFocus"":""HQ: Vejen, Denmark; Sales Focus: Global markets with over 500 customers worldwide served via distribution partners."",""keyExecutives"":[{""name"":""Jens Vest Warming"",""sourceUrl"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""title"":""Founder and Chief Technology Officer""},{""name"":""Kristian Warming"",""sourceUrl"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""title"":""Founder""},{""name"":""René Jannick Jørgensen"",""sourceUrl"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""title"":""Chief Executive Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""FarmDroid's main product is the modular FarmDroid FD20 robot, which is a fully automatic, solar-powered field robot capable of sowing, mechanical weeding, and pesticide micro-spraying, designed to automate seeding and plant protection tasks in farming."",""researcherNotes"":""The official FarmDroid website and its subpages have very limited explicit content regarding detailed company descriptions, client categories, geographic footprints, and leadership listings. Most leadership data and company information were confirmed from a reputable industry article. No downloadable documents were found on the website."",""sectorDescription"":""Operates in the agricultural technology sector, providing autonomous, solar-powered robots for sustainable farming and plant protection."",""sources"":{""clientCategories"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""companyDescription"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""geographicFocus"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""keyExecutives"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/"",""productDescription"":""https://www.therobotreport.com/farmdroid-obtain-over-11m-deploy-modular-robot-globally/""},""websiteURL"":""https://farmdroid.com""}" -DEMORNY CAPITAL.,https://www.demorny.capital,,demorny.capital,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.demorny.capital"", - ""companyDescription"": ""Demorny Capital is a mission-driven company that acquires, restructures, and enhances French vineyard estates with high potential by converting them into regenerative, resilient, and high-performing ecosystems through regenerative agriculture practices. They operate in the French wine industry, focusing on sustainable viticulture and vineyard regeneration to restore soil vitality, biodiversity, and environmental footprint. Their mission is to preserve and enhance French viticultural heritage by regenerating exceptional vineyards using regenerative agriculture, thereby creating sustainable and value-creating wine estates."", - ""productDescription"": ""Demorny Capital offers investment opportunities in high-quality vineyard assets, focusing on regenerative viticulture that combines profitability, sustainability, and preservation of vineyard heritage. Their services include turnkey investments in exceptional vineyards targeting entrepreneurs and business families seeking portfolio diversification with tangible, resilient assets. They employ a proprietary operator-owner model enhancing asset appreciation through soil regeneration and wine production upgrading, diversify geographically to optimize returns and reduce climate risks, and emphasize positive environmental impact by preserving natural resources and combating climate change."", - ""clientCategories"": [""Entrepreneurs"", ""Business Families"", ""Investors""], - ""sectorDescription"": ""Operates in the viticulture and wine production sector, specializing in regenerative agriculture to restore and enhance French vineyard ecosystems."", - ""geographicFocus"": ""HQ: 47 boulevard de Courcelles, 75008 Paris, France; Sales Focus: France, with a focus on regions like the Val de Loire"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or titles of leadership, founders, or key executives are provided on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.demorny.capital/home-investisseurs"", - ""productDescription"": ""https://www.demorny.capital/investir"", - ""clientCategories"": ""https://www.demorny.capital/faq"", - ""geographicFocus"": ""https://www.demorny.capital/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.demorny.capital"", - ""companyDescription"": ""Demorny Capital is a mission-driven company that acquires, restructures, and enhances French vineyard estates with high potential by converting them into regenerative, resilient, and high-performing ecosystems through regenerative agriculture practices. They operate in the French wine industry, focusing on sustainable viticulture and vineyard regeneration to restore soil vitality, biodiversity, and environmental footprint. Their mission is to preserve and enhance French viticultural heritage by regenerating exceptional vineyards using regenerative agriculture, thereby creating sustainable and value-creating wine estates."", - ""productDescription"": ""Demorny Capital offers investment opportunities in high-quality vineyard assets, focusing on regenerative viticulture that combines profitability, sustainability, and preservation of vineyard heritage. Their services include turnkey investments in exceptional vineyards targeting entrepreneurs and business families seeking portfolio diversification with tangible, resilient assets. They employ a proprietary operator-owner model enhancing asset appreciation through soil regeneration and wine production upgrading, diversify geographically to optimize returns and reduce climate risks, and emphasize positive environmental impact by preserving natural resources and combating climate change."", - ""clientCategories"": [""Entrepreneurs"", ""Business Families"", ""Investors""], - ""sectorDescription"": ""Operates in the viticulture and wine production sector, specializing in regenerative agriculture to restore and enhance French vineyard ecosystems."", - ""geographicFocus"": ""HQ: 47 boulevard de Courcelles, 75008 Paris, France; Sales Focus: France, with a focus on regions like the Val de Loire"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or titles of leadership, founders, or key executives are provided on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.demorny.capital/home-investisseurs"", - ""productDescription"": ""https://www.demorny.capital/investir"", - ""clientCategories"": ""https://www.demorny.capital/faq"", - ""geographicFocus"": ""https://www.demorny.capital/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.demorny.capital"", - ""companyDescription"": ""Demorny Capital is a mission-driven company that acquires, restructures, and enhances French vineyard estates with high potential by converting them into regenerative, resilient, and high-performing ecosystems through regenerative agriculture practices. They operate in the French wine industry, focusing on sustainable viticulture and vineyard regeneration to restore soil vitality, biodiversity, and environmental footprint. Their mission is to preserve and enhance French viticultural heritage by regenerating exceptional vineyards using regenerative agriculture, thereby creating sustainable and value-creating wine estates."", - ""productDescription"": ""Demorny Capital offers investment opportunities in high-quality vineyard assets, focusing on regenerative viticulture that combines profitability, sustainability, and preservation of vineyard heritage. Their services include turnkey investments in exceptional vineyards targeting entrepreneurs and business families seeking portfolio diversification with tangible, resilient assets. They employ a proprietary operator-owner model enhancing asset appreciation through soil regeneration and wine production upgrading, diversify geographically to optimize returns and reduce climate risks, and emphasize positive environmental impact by preserving natural resources and combating climate change."", - ""clientCategories"": [ - ""Entrepreneurs"", - ""Business Families"", - ""Investors"" - ], - ""sectorDescription"": ""Operates in the viticulture and wine production sector, specializing in regenerative agriculture to restore and enhance French vineyard ecosystems."", - ""geographicFocus"": ""HQ: 47 boulevard de Courcelles, 75008 Paris, France; Sales Focus: France, with a focus on regions like the Val de Loire"", - ""keyExecutives"": [], - ""researcherNotes"": ""No specific names or titles of leadership, founders, or key executives could be identified from both the company website and LinkedIn sources; external authoritative filings or press releases do not provide these details either. Geographic focus information is confirmed from the official company contact page. The company's mission, products, and sector are well documented on their official site."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.demorny.capital/home-investisseurs"", - ""productDescription"": ""https://www.demorny.capital/investir"", - ""clientCategories"": ""https://www.demorny.capital/faq"", - ""geographicFocus"": ""https://www.demorny.capital/contact"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Entrepreneurs"",""Business Families"",""Investors""],""companyDescription"":""Demorny Capital is a mission-driven company that acquires, restructures, and enhances French vineyard estates with high potential by converting them into regenerative, resilient, and high-performing ecosystems through regenerative agriculture practices. They operate in the French wine industry, focusing on sustainable viticulture and vineyard regeneration to restore soil vitality, biodiversity, and environmental footprint. Their mission is to preserve and enhance French viticultural heritage by regenerating exceptional vineyards using regenerative agriculture, thereby creating sustainable and value-creating wine estates."",""geographicFocus"":""HQ: 47 boulevard de Courcelles, 75008 Paris, France; Sales Focus: France, with a focus on regions like the Val de Loire"",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Demorny Capital offers investment opportunities in high-quality vineyard assets, focusing on regenerative viticulture that combines profitability, sustainability, and preservation of vineyard heritage. Their services include turnkey investments in exceptional vineyards targeting entrepreneurs and business families seeking portfolio diversification with tangible, resilient assets. They employ a proprietary operator-owner model enhancing asset appreciation through soil regeneration and wine production upgrading, diversify geographically to optimize returns and reduce climate risks, and emphasize positive environmental impact by preserving natural resources and combating climate change."",""researcherNotes"":""No specific names or titles of leadership, founders, or key executives could be identified from both the company website and LinkedIn sources; external authoritative filings or press releases do not provide these details either. Geographic focus information is confirmed from the official company contact page. The company's mission, products, and sector are well documented on their official site."",""sectorDescription"":""Operates in the viticulture and wine production sector, specializing in regenerative agriculture to restore and enhance French vineyard ecosystems."",""sources"":{""clientCategories"":""https://www.demorny.capital/faq"",""companyDescription"":""https://www.demorny.capital/home-investisseurs"",""geographicFocus"":""https://www.demorny.capital/contact"",""keyExecutives"":null,""productDescription"":""https://www.demorny.capital/investir""},""websiteURL"":""https://www.demorny.capital""}","Correctness: 100% Completeness: 90% The description of Demorny Capital as a mission-driven company acquiring and regenerating French vineyard estates through regenerative agriculture focused on sustainability and value creation is accurate and well supported by the official company website across its home, investors, investing, and contact pages [https://www.demorny.capital/home-investisseurs][https://www.demorny.capital/investir][https://www.demorny.capital/contact]. The geographic focus on France, especially regions like Val de Loire, and the emphasis on environmental impact and regenerative viticulture align fully with the publicly available information. Key facts such as their proprietary operator-owner model, target clientele (entrepreneurs, business families, investors), and sector (viticulture and wine production with regenerative practices) are confirmed. The main incompleteness relates to the absence of identifiable key executive names or leadership details, which were not found on the company site or LinkedIn and lack coverage in external filings or press releases, thus reducing completeness but not correctness regarding the other claims. Overall, the core material facts about Demorny Capital’s mission, operations, products, and focus are fully correct and well documented.","{""clientCategories"":[""Entrepreneurs"",""Business Families"",""Investors""],""companyDescription"":""Demorny Capital is a mission-driven company that acquires, restructures, and enhances French vineyard estates with high potential by converting them into regenerative, resilient, and high-performing ecosystems through regenerative agriculture practices. They operate in the French wine industry, focusing on sustainable viticulture and vineyard regeneration to restore soil vitality, biodiversity, and environmental footprint. Their mission is to preserve and enhance French viticultural heritage by regenerating exceptional vineyards using regenerative agriculture, thereby creating sustainable and value-creating wine estates."",""geographicFocus"":""HQ: 47 boulevard de Courcelles, 75008 Paris, France; Sales Focus: France, with a focus on regions like the Val de Loire"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Demorny Capital offers investment opportunities in high-quality vineyard assets, focusing on regenerative viticulture that combines profitability, sustainability, and preservation of vineyard heritage. Their services include turnkey investments in exceptional vineyards targeting entrepreneurs and business families seeking portfolio diversification with tangible, resilient assets. They employ a proprietary operator-owner model enhancing asset appreciation through soil regeneration and wine production upgrading, diversify geographically to optimize returns and reduce climate risks, and emphasize positive environmental impact by preserving natural resources and combating climate change."",""researcherNotes"":""No specific names or titles of leadership, founders, or key executives are provided on the website."",""sectorDescription"":""Operates in the viticulture and wine production sector, specializing in regenerative agriculture to restore and enhance French vineyard ecosystems."",""sources"":{""clientCategories"":""https://www.demorny.capital/faq"",""companyDescription"":""https://www.demorny.capital/home-investisseurs"",""geographicFocus"":""https://www.demorny.capital/contact"",""keyExecutives"":null,""productDescription"":""https://www.demorny.capital/investir""},""websiteURL"":""https://www.demorny.capital""}" -Flox,https://www.flox.ai/,,flox.ai,https://www.linkedin.com/company/floxai,"{""seniorLeadership"":[{""name"":""Sára Nožková"",""title"":""CEO & Co-founder"",""linkedinProfile"":""https://www.linkedin.com/in/sára-nožková-91339685""},{""name"":""Michael Stahnke"",""title"":""Vice President of Engineering"",""linkedinProfile"":""https://www.linkedin.com/in/mstahnke""},{""name"":""Tomas Becklin"",""title"":""Chief Technology Officer (CTO) & Co-founder"",""linkedinProfile"":""https://www.linkedin.com/in/tomasbecklin""}]}","{""seniorLeadership"":[{""name"":""Sára Nožková"",""title"":""CEO & Co-founder"",""linkedinProfile"":""https://www.linkedin.com/in/sára-nožková-91339685""},{""name"":""Michael Stahnke"",""title"":""Vice President of Engineering"",""linkedinProfile"":""https://www.linkedin.com/in/mstahnke""},{""name"":""Tomas Becklin"",""title"":""Chief Technology Officer (CTO) & Co-founder"",""linkedinProfile"":""https://www.linkedin.com/in/tomasbecklin""}]}","{ - ""websiteURL"": ""https://www.flox.ai/"", - ""companyDescription"": ""Solutions to the greatest challenges in animal farming. Better welfare, for better performance while being globally sustainable. We're building intelligent technologies to make a real difference: our Artificial Intelligence powered products apply technology from sectors like autonomous vehicles or space exploration to solve our customer's greatest challenges. Our sensemaking tools, alerts & prediction systems combine innovative technologies with farming expertise – using less to grow better. Know what your animals are up to all the time, not just when you check on them or when something goes wrong. Build trust with evidence to build loyalty."", - ""productDescription"": ""The company offers AI-powered products for the animal farming sector that combine technology and farming expertise, including sensemaking tools, alerts, and prediction systems to monitor animal welfare and performance. Pricing packages available include Small Party ($150 for 0-50 guests), Medium Party ($350 for 50-100 guests), and Large Party ($750 for 100-200 guests), each including snacks and non-alcoholic beverages."", - ""clientCategories"": [""Animal Farmers"", ""Agriculture Sector""], - ""sectorDescription"": ""Operates in the agri-tech sector, providing AI-powered intelligent technologies for animal farming to improve welfare, performance, and sustainability."", - ""geographicFocus"": ""HQ: 1263 Mission Street, Floor 3, San Francisco CA 94103, United States; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Imtiaz Shams"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://flox.ai/#team"" - }, - { - ""name"": ""Nils Hügelmann"", - ""title"": ""Chief Technical Officer"", - ""sourceUrl"": ""https://flox.ai/#team"" - }, - { - ""name"": ""Dr. Luke Robinson"", - ""title"": ""Chief Scientist"", - ""sourceUrl"": ""https://flox.ai/#team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Some pricing and product details appear to mismatch or combine references from another domain 'spooncatering.com'. This may indicate a website content mix or outdated information, and no clear sales regions beyond HQ address are listed."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.flox.ai/"", - ""productDescription"": ""https://www.flox.ai/features"", - ""clientCategories"": ""https://www.flox.ai/about"", - ""geographicFocus"": ""https://www.flox.ai/contact"", - ""keyExecutives"": ""https://flox.ai/#team"" - } -}","{ - ""websiteURL"": ""https://www.flox.ai/"", - ""companyDescription"": ""Solutions to the greatest challenges in animal farming. Better welfare, for better performance while being globally sustainable. We're building intelligent technologies to make a real difference: our Artificial Intelligence powered products apply technology from sectors like autonomous vehicles or space exploration to solve our customer's greatest challenges. Our sensemaking tools, alerts & prediction systems combine innovative technologies with farming expertise – using less to grow better. Know what your animals are up to all the time, not just when you check on them or when something goes wrong. Build trust with evidence to build loyalty."", - ""productDescription"": ""The company offers AI-powered products for the animal farming sector that combine technology and farming expertise, including sensemaking tools, alerts, and prediction systems to monitor animal welfare and performance. Pricing packages available include Small Party ($150 for 0-50 guests), Medium Party ($350 for 50-100 guests), and Large Party ($750 for 100-200 guests), each including snacks and non-alcoholic beverages."", - ""clientCategories"": [""Animal Farmers"", ""Agriculture Sector""], - ""sectorDescription"": ""Operates in the agri-tech sector, providing AI-powered intelligent technologies for animal farming to improve welfare, performance, and sustainability."", - ""geographicFocus"": ""HQ: 1263 Mission Street, Floor 3, San Francisco CA 94103, United States; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Imtiaz Shams"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://flox.ai/#team"" - }, - { - ""name"": ""Nils Hügelmann"", - ""title"": ""Chief Technical Officer"", - ""sourceUrl"": ""https://flox.ai/#team"" - }, - { - ""name"": ""Dr. Luke Robinson"", - ""title"": ""Chief Scientist"", - ""sourceUrl"": ""https://flox.ai/#team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Some pricing and product details appear to mismatch or combine references from another domain 'spooncatering.com'. This may indicate a website content mix or outdated information, and no clear sales regions beyond HQ address are listed."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.flox.ai/"", - ""productDescription"": ""https://www.flox.ai/features"", - ""clientCategories"": ""https://www.flox.ai/about"", - ""geographicFocus"": ""https://www.flox.ai/contact"", - ""keyExecutives"": ""https://flox.ai/#team"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://floxintelligence.com"", - ""companyDescription"": ""Flox is a Swedish wildlife intelligence company founded in 2020, specializing in AI-powered autonomous systems that prevent conflicts between human infrastructure and wildlife. Their mission is to create safer, smarter, and more harmonious coexistence by using AI and bioacoustics technology to steer wildlife away from critical infrastructure without harm. Flox works with industries such as agriculture, aviation, railways, and public infrastructure, combining cutting-edge AI with wildlife biology to reduce damage, increase safety, and promote sustainability."", - ""productDescription"": ""Flox delivers AI-driven wildlife management products, including autonomous, battery-powered Edge devices that detect wildlife and emit species-specific bioacoustics to deter animals safely. These devices connect to the Flox Wildlife Platform, providing real-time monitoring, analytics, and remote control across infrastructure perimeters. Their solutions mitigate wildlife collisions, protect crops and livestock, and safeguard public spaces, all designed to be non-invasive, adaptive, ethical, and sustainable."", - ""clientCategories"": [ - ""Infrastructure Operators"", - ""Agriculture Sector"", - ""Aviation Industry"", - ""Railways"", - ""Public Authorities"", - ""Environmental NGOs"" - ], - ""sectorDescription"": ""A deeptech agri-tech and infrastructure technology company specializing in AI-based wildlife management to improve safety, sustainability, and coexistence between humans and wildlife."", - ""geographicFocus"": ""Primary operations and sales focus in Sweden and the Nordic region, with collaborations extending internationally including the United States."", - ""keyExecutives"": [ - { - ""name"": ""Sára Nožková"", - ""title"": ""CEO & Co-founder"", - ""sourceUrl"": ""https://www.linkedin.com/in/sára-nožková-91339685"" - }, - { - ""name"": ""Tomas Becklin"", - ""title"": ""Chief Technology Officer (CTO) & Co-founder"", - ""sourceUrl"": ""https://www.linkedin.com/in/tomasbecklin"" - }, - { - ""name"": ""Michael Stahnke"", - ""title"": ""Vice President of Engineering"", - ""sourceUrl"": ""https://www.linkedin.com/in/mstahnke"" - } - ], - ""researcherNotes"": ""The original SOURCE_JSON describes a U.S.-based company in animal farming with differing executives and product details, likely conflating with another domain or company named Flox. After disambiguation using multiple recent authoritative sources, this profile reflects a distinct Swedish AI startup founded in 2020 focused on wildlife intelligence and coexistence. Geographic focus, product, and executive details align with the Swedish Flox (floxintelligence.com) and their LinkedIn profiles. No reliable geographic sales footprint beyond Nordic origin and select international partners is publicly disclosed."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://floxintelligence.com/about"", - ""productDescription"": ""https://floxintelligence.com"", - ""clientCategories"": ""https://floxintelligence.com/about"", - ""geographicFocus"": ""https://tech.eu/2025/08/07/flox-raises-nearly-1m-to-redefine-human-wildlife-coexistence/"", - ""keyExecutives"": ""https://www.linkedin.com/in/sára-nožková-91339685"" - } -}","{""clientCategories"":[""Infrastructure Operators"",""Agriculture Sector"",""Aviation Industry"",""Railways"",""Public Authorities"",""Environmental NGOs""],""companyDescription"":""Flox is a Swedish wildlife intelligence company founded in 2020, specializing in AI-powered autonomous systems that prevent conflicts between human infrastructure and wildlife. Their mission is to create safer, smarter, and more harmonious coexistence by using AI and bioacoustics technology to steer wildlife away from critical infrastructure without harm. Flox works with industries such as agriculture, aviation, railways, and public infrastructure, combining cutting-edge AI with wildlife biology to reduce damage, increase safety, and promote sustainability."",""geographicFocus"":""Primary operations and sales focus in Sweden and the Nordic region, with collaborations extending internationally including the United States."",""keyExecutives"":[{""name"":""Sára Nožková"",""sourceUrl"":""https://www.linkedin.com/in/sára-nožková-91339685"",""title"":""CEO & Co-founder""},{""name"":""Tomas Becklin"",""sourceUrl"":""https://www.linkedin.com/in/tomasbecklin"",""title"":""Chief Technology Officer (CTO) & Co-founder""},{""name"":""Michael Stahnke"",""sourceUrl"":""https://www.linkedin.com/in/mstahnke"",""title"":""Vice President of Engineering""}],""missingImportantFields"":[],""productDescription"":""Flox delivers AI-driven wildlife management products, including autonomous, battery-powered Edge devices that detect wildlife and emit species-specific bioacoustics to deter animals safely. These devices connect to the Flox Wildlife Platform, providing real-time monitoring, analytics, and remote control across infrastructure perimeters. Their solutions mitigate wildlife collisions, protect crops and livestock, and safeguard public spaces, all designed to be non-invasive, adaptive, ethical, and sustainable."",""researcherNotes"":""The original SOURCE_JSON describes a U.S.-based company in animal farming with differing executives and product details, likely conflating with another domain or company named Flox. After disambiguation using multiple recent authoritative sources, this profile reflects a distinct Swedish AI startup founded in 2020 focused on wildlife intelligence and coexistence. Geographic focus, product, and executive details align with the Swedish Flox (floxintelligence.com) and their LinkedIn profiles. No reliable geographic sales footprint beyond Nordic origin and select international partners is publicly disclosed."",""sectorDescription"":""A deeptech agri-tech and infrastructure technology company specializing in AI-based wildlife management to improve safety, sustainability, and coexistence between humans and wildlife."",""sources"":{""clientCategories"":""https://floxintelligence.com/about"",""companyDescription"":""https://floxintelligence.com/about"",""geographicFocus"":""https://tech.eu/2025/08/07/flox-raises-nearly-1m-to-redefine-human-wildlife-coexistence/"",""keyExecutives"":""https://www.linkedin.com/in/sára-nožková-91339685"",""productDescription"":""https://floxintelligence.com""},""websiteURL"":""https://floxintelligence.com""}","Correctness: 100% Completeness: 95% The description of Flox as a Swedish wildlife intelligence company founded in 2020 specializing in AI-powered autonomous systems to prevent conflicts between human infrastructure and wildlife is fully supported by multiple authoritative sources, including the company’s official website and recent 2025 press coverage of their €1 million seed funding round[2][3][4]. Key executives Sara Nožková (CEO & Co-founder), Tomas Becklin (CTO & Co-founder), and Michael Stahnke (VP Engineering) align correctly with publicly available LinkedIn profiles[2]. The geographic focus on Sweden and the Nordic region with some international collaborations, especially the U.S., is consistent with recent reports[1][3]. Product descriptions of autonomous Edge devices using bioacoustics for ethical wildlife deterrence connected to a monitoring platform are detailed on the company site and supported by client case examples in transport, agriculture, and public infrastructure sectors[2][3]. The mission and sector categorization as deeptech agri-tech/infrastructure AI for coexistence are verified[1][3]. Minor completeness points were deducted because no explicit mention of the recent funding amount (€1 million) or investors appeared in the original data, though this is available publicly[1][4]. Overall, the statement is factually robust and nearly comprehensive. -Sources: https://floxintelligence.com/about, https://floxintelligence.com, https://www.femaleswitch.com/startup-news/tpost/cr8isaixo1-startup-news-how-swedish-ai-startup-flox, https://www.eu-startups.com/2025/08/swedish-ai-startup-flox-secures-nearly-e1-million-to-keep-wildlife-safe-and-help-coexist-without-conflict/","{""clientCategories"":[""Animal Farmers"",""Agriculture Sector""],""companyDescription"":""Solutions to the greatest challenges in animal farming. Better welfare, for better performance while being globally sustainable. We're building intelligent technologies to make a real difference: our Artificial Intelligence powered products apply technology from sectors like autonomous vehicles or space exploration to solve our customer's greatest challenges. Our sensemaking tools, alerts & prediction systems combine innovative technologies with farming expertise – using less to grow better. Know what your animals are up to all the time, not just when you check on them or when something goes wrong. Build trust with evidence to build loyalty."",""geographicFocus"":""HQ: 1263 Mission Street, Floor 3, San Francisco CA 94103, United States; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Imtiaz Shams"",""sourceUrl"":""https://flox.ai/#team"",""title"":""Chief Executive Officer""},{""name"":""Nils Hügelmann"",""sourceUrl"":""https://flox.ai/#team"",""title"":""Chief Technical Officer""},{""name"":""Dr. Luke Robinson"",""sourceUrl"":""https://flox.ai/#team"",""title"":""Chief Scientist""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""The company offers AI-powered products for the animal farming sector that combine technology and farming expertise, including sensemaking tools, alerts, and prediction systems to monitor animal welfare and performance. Pricing packages available include Small Party ($150 for 0-50 guests), Medium Party ($350 for 50-100 guests), and Large Party ($750 for 100-200 guests), each including snacks and non-alcoholic beverages."",""researcherNotes"":""Some pricing and product details appear to mismatch or combine references from another domain 'spooncatering.com'. This may indicate a website content mix or outdated information, and no clear sales regions beyond HQ address are listed."",""sectorDescription"":""Operates in the agri-tech sector, providing AI-powered intelligent technologies for animal farming to improve welfare, performance, and sustainability."",""sources"":{""clientCategories"":""https://www.flox.ai/about"",""companyDescription"":""https://www.flox.ai/"",""geographicFocus"":""https://www.flox.ai/contact"",""keyExecutives"":""https://flox.ai/#team"",""productDescription"":""https://www.flox.ai/features""},""websiteURL"":""https://www.flox.ai/""}" -Arevo,https://www.arevo.se/en/,"Fort Knox, Industrifonden, Navigare Ventures, Stora Enso, The Kempes Foundations",arevo.se,https://www.linkedin.com/company/arevo-ab,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.arevo.se/en/"", - ""companyDescription"": ""Arevo is an innovation and product company that develops highly efficient and environmentally friendly plant nutrition products. Their mission focuses on helping growers combine sustainable cultivation without sacrificing yields by providing technology that enables plants to grow stronger, more resilient, and better equipped to withstand drought and stress, all while producing zero nitrogen waste. Arevo's solutions stimulate root growth, strengthen plants, facilitate interaction with soil microbes, and nourish plants without nitrogen leakage, benefiting both soil and environment."", - ""productDescription"": ""Arevo develops highly efficient and environmentally friendly plant nutrition products."", - ""clientCategories"": [""Soya"", ""Forest planting"", ""Forest nurseries"", ""Garden products"", ""Agriculture"", ""Forestry"", ""Horticulture""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative and sustainable plant nutrition products to improve crop resilience and environmental impact."", - ""geographicFocus"": ""HQ: Dåva Energiväg 8, 905 95 Umeå, Sweden; Sales Focus: agriculture, horticulture, and forestry markets."", - ""keyExecutives"": [ - { - ""name"": ""Sonny Vu"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - }, - { - ""name"": ""Hemant Bheda"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://arevo.se/en/"", - ""productDescription"": ""https://www.arevo.se/en/products/"", - ""clientCategories"": ""https://www.arevo.se/en/our-approach/"", - ""geographicFocus"": ""https://www.arevo.se/en/contact/"", - ""keyExecutives"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - } -}","{ - ""websiteURL"": ""https://www.arevo.se/en/"", - ""companyDescription"": ""Arevo is an innovation and product company that develops highly efficient and environmentally friendly plant nutrition products. Their mission focuses on helping growers combine sustainable cultivation without sacrificing yields by providing technology that enables plants to grow stronger, more resilient, and better equipped to withstand drought and stress, all while producing zero nitrogen waste. Arevo's solutions stimulate root growth, strengthen plants, facilitate interaction with soil microbes, and nourish plants without nitrogen leakage, benefiting both soil and environment."", - ""productDescription"": ""Arevo develops highly efficient and environmentally friendly plant nutrition products."", - ""clientCategories"": [""Soya"", ""Forest planting"", ""Forest nurseries"", ""Garden products"", ""Agriculture"", ""Forestry"", ""Horticulture""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative and sustainable plant nutrition products to improve crop resilience and environmental impact."", - ""geographicFocus"": ""HQ: Dåva Energiväg 8, 905 95 Umeå, Sweden; Sales Focus: agriculture, horticulture, and forestry markets."", - ""keyExecutives"": [ - { - ""name"": ""Sonny Vu"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - }, - { - ""name"": ""Hemant Bheda"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://arevo.se/en/"", - ""productDescription"": ""https://www.arevo.se/en/products/"", - ""clientCategories"": ""https://www.arevo.se/en/our-approach/"", - ""geographicFocus"": ""https://www.arevo.se/en/contact/"", - ""keyExecutives"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - } -}",[],"{ - ""websiteURL"": ""https://www.arevo.se/en"", - ""companyDescription"": ""Arevo is an innovation and product company that develops highly efficient and environmentally friendly plant nutrition products. Their mission focuses on helping growers combine sustainable cultivation without sacrificing yields by providing technology that enables plants to grow stronger, more resilient, and better equipped to withstand drought and stress, all while producing zero nitrogen waste. Arevo's solutions stimulate root growth, strengthen plants, facilitate interaction with soil microbes, and nourish plants without nitrogen leakage, benefiting both soil and environment."", - ""productDescription"": ""Arevo develops highly efficient and environmentally friendly plant nutrition products based on world-leading research into plant nutrient uptake, particularly the use of the amino acid arginine as a natural source of nitrogen. Their patented precision nutrition products promote rapid root growth, robust plants, and improved resilience to environmental stresses while eliminating nitrogen waste and supporting soil microbial activity."", - ""clientCategories"": [ - ""Soya"", - ""Forest Planting"", - ""Forest Nurseries"", - ""Garden Products"", - ""Agriculture"", - ""Forestry"", - ""Horticulture"" - ], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative and sustainable plant nutrition products to improve crop resilience and environmental impact."", - ""geographicFocus"": ""Headquartered in Umeå, Sweden, Arevo primarily focuses on agriculture, horticulture, and forestry markets."", - ""keyExecutives"": [ - { - ""name"": ""Sonny Vu"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - }, - { - ""name"": ""Hemant Bheda"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - }, - { - ""name"": ""Bo Niklas Åström"", - ""title"": ""Manager"", - ""sourceUrl"": ""https://www.dnb.com/business-directory/company-profiles.arevo_ab.1bcd18f645011abc30b2e4b4b131eb7b.html"" - } - ], - ""researcherNotes"": ""The company is confirmed as Arevo based on the exact website domain and location in Umeå, Sweden. Multiple sources including the official site and business directories corroborate the product focus on sustainable, arginine-based plant nutrition. CEO and co-founder names are from a credible tech media article; additionally, Bo Niklas Åström appears as a manager in business listings but not in executive press coverage. Geographic focus is limited to Sweden headquartered with sales in agriculture/horticulture/forestry sectors. No conflicting data on leadership titles were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://arevo.se/en/"", - ""productDescription"": ""https://arevo.se/en/business-area/agriculture"", - ""clientCategories"": ""https://arevo.se/en/our-approach/"", - ""geographicFocus"": ""https://arevo.se/en/contact/"", - ""keyExecutives"": ""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"" - } -}","{""clientCategories"":[""Soya"",""Forest Planting"",""Forest Nurseries"",""Garden Products"",""Agriculture"",""Forestry"",""Horticulture""],""companyDescription"":""Arevo is an innovation and product company that develops highly efficient and environmentally friendly plant nutrition products. Their mission focuses on helping growers combine sustainable cultivation without sacrificing yields by providing technology that enables plants to grow stronger, more resilient, and better equipped to withstand drought and stress, all while producing zero nitrogen waste. Arevo's solutions stimulate root growth, strengthen plants, facilitate interaction with soil microbes, and nourish plants without nitrogen leakage, benefiting both soil and environment."",""geographicFocus"":""Headquartered in Umeå, Sweden, Arevo primarily focuses on agriculture, horticulture, and forestry markets."",""keyExecutives"":[{""name"":""Sonny Vu"",""sourceUrl"":""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"",""title"":""Chief Executive Officer""},{""name"":""Hemant Bheda"",""sourceUrl"":""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"",""title"":""Co-founder""},{""name"":""Bo Niklas Åström"",""sourceUrl"":""https://www.dnb.com/business-directory/company-profiles.arevo_ab.1bcd18f645011abc30b2e4b4b131eb7b.html"",""title"":""Manager""}],""missingImportantFields"":[],""productDescription"":""Arevo develops highly efficient and environmentally friendly plant nutrition products based on world-leading research into plant nutrient uptake, particularly the use of the amino acid arginine as a natural source of nitrogen. Their patented precision nutrition products promote rapid root growth, robust plants, and improved resilience to environmental stresses while eliminating nitrogen waste and supporting soil microbial activity."",""researcherNotes"":""The company is confirmed as Arevo based on the exact website domain and location in Umeå, Sweden. Multiple sources including the official site and business directories corroborate the product focus on sustainable, arginine-based plant nutrition. CEO and co-founder names are from a credible tech media article; additionally, Bo Niklas Åström appears as a manager in business listings but not in executive press coverage. Geographic focus is limited to Sweden headquartered with sales in agriculture/horticulture/forestry sectors. No conflicting data on leadership titles were found."",""sectorDescription"":""Operates in the agricultural technology sector, providing innovative and sustainable plant nutrition products to improve crop resilience and environmental impact."",""sources"":{""clientCategories"":""https://arevo.se/en/our-approach/"",""companyDescription"":""https://arevo.se/en/"",""geographicFocus"":""https://arevo.se/en/contact/"",""keyExecutives"":""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"",""productDescription"":""https://arevo.se/en/business-area/agriculture""},""websiteURL"":""https://www.arevo.se/en""}","Correctness: 95% Completeness: 90% The description of Arevo is highly accurate based on multiple credible sources. Arevo is confirmed to be a Umeå, Sweden headquartered company specializing in innovative, environmentally friendly plant nutrition products that promote sustainable cultivation by stimulating root growth and reducing nitrogen waste, using arginine-based precision nutrition technology founded on Professor Torgny Näsholm’s research[1][4][5]. The CEO leadership information has a small discrepancy: Sonny Vu was mentioned as CEO/co-founder in older 2020 media sources, but the most recent 2023 report states Niklas Åström became CEO in autumn 2023, indicating an update in leadership not reflected in older sources[3]. Arevo’s product focus spans agriculture, horticulture, and forestry sectors, with specialized products such as arGrow® series and a new soy seed coating Arevo Booster, targeting improved plant resilience and minimal environmental impact[1][2][5]. Funding data (€6.6M) is also recent and verified[3]. Minor completeness deductions apply due to absence of very latest leadership update in initial profile, and limited mention of some product lines. All core claims about company mission, products, geography, and technology are well supported by official site and credible secondary sources. URLs: https://arevo.se/en/, https://www.northswedencleantech.se/en/business-network/arevo/, https://arcticstartup.com/arevo-raises-e6-6m/, https://arevo.se/en/business-area/agriculture, https://www.futurefarming.com/crop-solutions/arevos-technology-a-critical-look-at-its-nitrogen-efficiency-for-growers/","{""clientCategories"":[""Soya"",""Forest planting"",""Forest nurseries"",""Garden products"",""Agriculture"",""Forestry"",""Horticulture""],""companyDescription"":""Arevo is an innovation and product company that develops highly efficient and environmentally friendly plant nutrition products. Their mission focuses on helping growers combine sustainable cultivation without sacrificing yields by providing technology that enables plants to grow stronger, more resilient, and better equipped to withstand drought and stress, all while producing zero nitrogen waste. Arevo's solutions stimulate root growth, strengthen plants, facilitate interaction with soil microbes, and nourish plants without nitrogen leakage, benefiting both soil and environment."",""geographicFocus"":""HQ: Dåva Energiväg 8, 905 95 Umeå, Sweden; Sales Focus: agriculture, horticulture, and forestry markets."",""keyExecutives"":[{""name"":""Sonny Vu"",""sourceUrl"":""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"",""title"":""Chief Executive Officer""},{""name"":""Hemant Bheda"",""sourceUrl"":""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Arevo develops highly efficient and environmentally friendly plant nutrition products."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural technology sector, providing innovative and sustainable plant nutrition products to improve crop resilience and environmental impact."",""sources"":{""clientCategories"":""https://www.arevo.se/en/our-approach/"",""companyDescription"":""https://arevo.se/en/"",""geographicFocus"":""https://www.arevo.se/en/contact/"",""keyExecutives"":""https://techcrunch.com/2020/08/11/with-former-misfit-founder-sonny-vu-at-the-helm-arevo-raises-25-million-for-its-3d-printing-tech/"",""productDescription"":""https://www.arevo.se/en/products/""},""websiteURL"":""https://www.arevo.se/en/""}" -Pure Pet Food,https://www.purepetfood.com/,"Felix Capital, Mercia Ventures",purepetfood.com,https://www.linkedin.com/company/pure-pet-food,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.purepetfood.com/"", - ""companyDescription"": ""Since 2012, Pure Pet Food has aimed to change pet food by offering natural, high-quality, convenient meals made via an age-old moisture removal method instead of harmful extrusion. Their mission is to provide happier, healthier, and longer lives for pets by creating tailored, vet-approved recipes personalized for each dog, delivered to customers' doors. They collaborate with industry-leading vets and nutritionists and emphasize healthy dogs living longer lives."", - ""productDescription"": ""Pure Pet Food offers a dog food subscription service with personalized monthly plans tailored to each dog's age, breed, weight, and health needs. Customers can select up to two unique recipes from options like healthy dog food (chicken, duck, herring, salmon, turkey), sensitive dog food, and renal dog food. The subscription includes free delivery straight to your door, with options to deliver every 8 weeks. Subscribers can add treats to their boxes and adjust their plans anytime via their Pure account. The service is vet- and nutritionist-backed, focuses on natural, human-quality ingredients, and offers expert advice. Prices start at £0.89 per day, varying by dog size, age, and activity level."", - ""clientCategories"": [ - ""Dogs with specific health conditions such as Colitis, Diabetes, Diarrhoea, Digestion issues, High fibre needs, Hypoallergenic, Pancreatitis, Renal & kidney issues, Sensitive skin, Sensitive stomach, Urinary health, Weight management"", - ""Owners of various dog breeds including Bulldog, Chihuahua, Cockapoo, Cocker Spaniel, Dachshund, French bulldog, German Shepherd, Golden retriever, Labrador, Small breed dogs, Staffordshire bull terrier, Whippet, and Yorkie"", - ""Puppy and senior dog owners requiring tailored nutrition plans"" - ], - ""sectorDescription"": ""Operates in the pet nutrition sector, providing natural, vet-approved, tailored dog food subscriptions focused on health and longevity."", - ""geographicFocus"": ""HQ: West Yorkshire, UK; Sales Focus: United Kingdom"", - ""keyExecutives"": [ - { - ""name"": ""Roz Cuschieri"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"" - }, - { - ""name"": ""Mathew Ian Cockroft"", - ""title"": ""Director, Founder"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"" - }, - { - ""name"": ""Daniel Thomas Valdur Eha"", - ""title"": ""Director, Founder"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable document links (PDF, DOCX, etc.) were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.purepetfood.com/about"", - ""productDescription"": ""https://www.purepetfood.com/dog-food-subscription"", - ""clientCategories"": ""https://www.purepetfood.com/"", - ""geographicFocus"": ""https://www.purepetfood.com/about"", - ""keyExecutives"": ""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"" - } -}","{ - ""websiteURL"": ""https://www.purepetfood.com/"", - ""companyDescription"": ""Since 2012, Pure Pet Food has aimed to change pet food by offering natural, high-quality, convenient meals made via an age-old moisture removal method instead of harmful extrusion. Their mission is to provide happier, healthier, and longer lives for pets by creating tailored, vet-approved recipes personalized for each dog, delivered to customers' doors. They collaborate with industry-leading vets and nutritionists and emphasize healthy dogs living longer lives."", - ""productDescription"": ""Pure Pet Food offers a dog food subscription service with personalized monthly plans tailored to each dog's age, breed, weight, and health needs. Customers can select up to two unique recipes from options like healthy dog food (chicken, duck, herring, salmon, turkey), sensitive dog food, and renal dog food. The subscription includes free delivery straight to your door, with options to deliver every 8 weeks. Subscribers can add treats to their boxes and adjust their plans anytime via their Pure account. The service is vet- and nutritionist-backed, focuses on natural, human-quality ingredients, and offers expert advice. Prices start at £0.89 per day, varying by dog size, age, and activity level."", - ""clientCategories"": [ - ""Dogs with specific health conditions such as Colitis, Diabetes, Diarrhoea, Digestion issues, High fibre needs, Hypoallergenic, Pancreatitis, Renal & kidney issues, Sensitive skin, Sensitive stomach, Urinary health, Weight management"", - ""Owners of various dog breeds including Bulldog, Chihuahua, Cockapoo, Cocker Spaniel, Dachshund, French bulldog, German Shepherd, Golden retriever, Labrador, Small breed dogs, Staffordshire bull terrier, Whippet, and Yorkie"", - ""Puppy and senior dog owners requiring tailored nutrition plans"" - ], - ""sectorDescription"": ""Operates in the pet nutrition sector, providing natural, vet-approved, tailored dog food subscriptions focused on health and longevity."", - ""geographicFocus"": ""HQ: West Yorkshire, UK; Sales Focus: United Kingdom"", - ""keyExecutives"": [ - { - ""name"": ""Roz Cuschieri"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"" - }, - { - ""name"": ""Mathew Ian Cockroft"", - ""title"": ""Director, Founder"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"" - }, - { - ""name"": ""Daniel Thomas Valdur Eha"", - ""title"": ""Director, Founder"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable document links (PDF, DOCX, etc.) were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.purepetfood.com/about"", - ""productDescription"": ""https://www.purepetfood.com/dog-food-subscription"", - ""clientCategories"": ""https://www.purepetfood.com/"", - ""geographicFocus"": ""https://www.purepetfood.com/about"", - ""keyExecutives"": ""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"" - } -}",[],"{ - ""websiteURL"": ""https://www.purepetfood.com"", - ""companyDescription"": ""Since 2012, Pure Pet Food has aimed to change pet food by offering natural, high-quality, convenient meals made via an age-old moisture removal method instead of harmful extrusion. Their mission is to provide happier, healthier, and longer lives for pets by creating tailored, vet-approved recipes personalized for each dog, delivered to customers' doors. They collaborate with industry-leading vets and nutritionists and emphasize healthy dogs living longer lives."", - ""productDescription"": ""Pure Pet Food offers a dog food subscription service with personalized monthly plans tailored to each dog's age, breed, weight, and health needs. Customers can select up to two unique recipes from options like healthy dog food (chicken, duck, herring, salmon, turkey), sensitive dog food, and renal dog food. The subscription includes free delivery straight to your door, with options to deliver every 8 weeks. Subscribers can add treats to their boxes and adjust their plans anytime via their Pure account. The service is vet- and nutritionist-backed, focuses on natural, human-quality ingredients, and offers expert advice. Prices start at £0.89 per day, varying by dog size, age, and activity level."", - ""clientCategories"": [ - ""Dogs with Specific Health Conditions Such as Colitis, Diabetes, Diarrhoea, Digestion Issues, High Fibre Needs, Hypoallergenic, Pancreatitis, Renal & Kidney Issues, Sensitive Skin, Sensitive Stomach, Urinary Health, Weight Management"", - ""Owners of Various Dog Breeds Including Bulldog, Chihuahua, Cockapoo, Cocker Spaniel, Dachshund, French Bulldog, German Shepherd, Golden Retriever, Labrador, Small Breed Dogs, Staffordshire Bull Terrier, Whippet, and Yorkie"", - ""Puppy and Senior Dog Owners Requiring Tailored Nutrition Plans"" - ], - ""sectorDescription"": ""Operates in the pet nutrition sector, providing natural, vet-approved, tailored dog food subscriptions focused on health and longevity."", - ""geographicFocus"": ""Headquartered in West Yorkshire, United Kingdom, Pure Pet Food primarily serves customers across the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Roz Cuschieri"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"" - }, - { - ""name"": ""Mathew Ian Cockroft"", - ""title"": ""Director, Founder"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"" - }, - { - ""name"": ""Daniel Thomas Valdur Eha"", - ""title"": ""Director, Founder"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"" - } - ], - ""researcherNotes"": ""Company disambiguation confirmed via matching domain (purepetfood.com), HQ location in West Yorkshire, UK, and founder identities consistent with Companies House and media reports. Detailed executive titles and founder identities were cross-verified with UK Companies House and industry coverage. Geographic focus confirmed as UK from the company website and recent investment articles. No conflicting information found. No downloadable documents present on the official website as noted."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.purepetfood.com/about"", - ""productDescription"": ""https://www.purepetfood.com/dog-food-subscription"", - ""clientCategories"": ""https://www.purepetfood.com/"", - ""geographicFocus"": ""https://www.purepetfood.com/about"", - ""keyExecutives"": ""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"" - } -}","{""clientCategories"":[""Dogs with Specific Health Conditions Such as Colitis, Diabetes, Diarrhoea, Digestion Issues, High Fibre Needs, Hypoallergenic, Pancreatitis, Renal & Kidney Issues, Sensitive Skin, Sensitive Stomach, Urinary Health, Weight Management"",""Owners of Various Dog Breeds Including Bulldog, Chihuahua, Cockapoo, Cocker Spaniel, Dachshund, French Bulldog, German Shepherd, Golden Retriever, Labrador, Small Breed Dogs, Staffordshire Bull Terrier, Whippet, and Yorkie"",""Puppy and Senior Dog Owners Requiring Tailored Nutrition Plans""],""companyDescription"":""Since 2012, Pure Pet Food has aimed to change pet food by offering natural, high-quality, convenient meals made via an age-old moisture removal method instead of harmful extrusion. Their mission is to provide happier, healthier, and longer lives for pets by creating tailored, vet-approved recipes personalized for each dog, delivered to customers' doors. They collaborate with industry-leading vets and nutritionists and emphasize healthy dogs living longer lives."",""geographicFocus"":""Headquartered in West Yorkshire, United Kingdom, Pure Pet Food primarily serves customers across the United Kingdom."",""keyExecutives"":[{""name"":""Roz Cuschieri"",""sourceUrl"":""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"",""title"":""Chief Executive Officer""},{""name"":""Mathew Ian Cockroft"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"",""title"":""Director, Founder""},{""name"":""Daniel Thomas Valdur Eha"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"",""title"":""Director, Founder""}],""missingImportantFields"":[],""productDescription"":""Pure Pet Food offers a dog food subscription service with personalized monthly plans tailored to each dog's age, breed, weight, and health needs. Customers can select up to two unique recipes from options like healthy dog food (chicken, duck, herring, salmon, turkey), sensitive dog food, and renal dog food. The subscription includes free delivery straight to your door, with options to deliver every 8 weeks. Subscribers can add treats to their boxes and adjust their plans anytime via their Pure account. The service is vet- and nutritionist-backed, focuses on natural, human-quality ingredients, and offers expert advice. Prices start at £0.89 per day, varying by dog size, age, and activity level."",""researcherNotes"":""Company disambiguation confirmed via matching domain (purepetfood.com), HQ location in West Yorkshire, UK, and founder identities consistent with Companies House and media reports. Detailed executive titles and founder identities were cross-verified with UK Companies House and industry coverage. Geographic focus confirmed as UK from the company website and recent investment articles. No conflicting information found. No downloadable documents present on the official website as noted."",""sectorDescription"":""Operates in the pet nutrition sector, providing natural, vet-approved, tailored dog food subscriptions focused on health and longevity."",""sources"":{""clientCategories"":""https://www.purepetfood.com/"",""companyDescription"":""https://www.purepetfood.com/about"",""geographicFocus"":""https://www.purepetfood.com/about"",""keyExecutives"":""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"",""productDescription"":""https://www.purepetfood.com/dog-food-subscription""},""websiteURL"":""https://www.purepetfood.com""}","Correctness: 98% Completeness: 95% The key factual claims about Pure Pet Food are accurate and well-supported by multiple reliable sources. The company was indeed founded in 2012 (incorporated 3 September 2012 per Companies House[5]) by Daniel Valdur Eha and Mathew Cockroft who remain directors[5][1][3]. Roz Cuschieri was appointed CEO in April 2023 as confirmed both by industry news and company statements[1]. The headquarters is in Cleckheaton, West Yorkshire, UK, matching registered office information from Companies House[5] and company website (via multiple reports)[1][4]. The firm operates a subscription-based personalized dog food service focusing on natural, vet-approved, shelf-stable, air-dried recipes tailored by dog age, breed, and health, with customers across the UK[1][3][4]. Product options include multiple proteins (chicken, duck, salmon, etc.) and specialized formulas for sensitive and renal needs, consistent with the product description on their site and media coverage[1][3]. The business has grown rapidly with over 100 employees and about 40,000 subscribers, offering free home delivery and customization[1][3]. Their funding includes a recent £15 million investment led by Felix Capital and Mercia Ventures, supporting expansion[1][3]. Minor discrepancies appear such as the founding year cited as 2012 vs 2013 in some sources; Companies House filing confirms 2012 incorporation, which is authoritative[5][1]. Overall, the information is nearly complete; details like explicit pricing starting at £0.89/day and founder backgrounds augment completeness but no significant omissions or contradictions arise. Sources: https://www.mercia.co.uk/natural-pet-food-firm-set-for-further-growth-after-15m-investment/ ; https://www.petfoodindustry.com/pet-food-market/news/15706725/pure-pet-food-doubles-revenue-secures-investment ; https://find-and-update.company-information.service.gov.uk/company/08199354 ; https://www.pratappartnership.com/news/daniel-valdur-eha ; https://www.zoominfo.com/c/pure-pet-food-ltd/357810760","{""clientCategories"":[""Dogs with specific health conditions such as Colitis, Diabetes, Diarrhoea, Digestion issues, High fibre needs, Hypoallergenic, Pancreatitis, Renal & kidney issues, Sensitive skin, Sensitive stomach, Urinary health, Weight management"",""Owners of various dog breeds including Bulldog, Chihuahua, Cockapoo, Cocker Spaniel, Dachshund, French bulldog, German Shepherd, Golden retriever, Labrador, Small breed dogs, Staffordshire bull terrier, Whippet, and Yorkie"",""Puppy and senior dog owners requiring tailored nutrition plans""],""companyDescription"":""Since 2012, Pure Pet Food has aimed to change pet food by offering natural, high-quality, convenient meals made via an age-old moisture removal method instead of harmful extrusion. Their mission is to provide happier, healthier, and longer lives for pets by creating tailored, vet-approved recipes personalized for each dog, delivered to customers' doors. They collaborate with industry-leading vets and nutritionists and emphasize healthy dogs living longer lives."",""geographicFocus"":""HQ: West Yorkshire, UK; Sales Focus: United Kingdom"",""keyExecutives"":[{""name"":""Roz Cuschieri"",""sourceUrl"":""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"",""title"":""Chief Executive Officer""},{""name"":""Mathew Ian Cockroft"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"",""title"":""Director, Founder""},{""name"":""Daniel Thomas Valdur Eha"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/08199354/officers"",""title"":""Director, Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Pure Pet Food offers a dog food subscription service with personalized monthly plans tailored to each dog's age, breed, weight, and health needs. Customers can select up to two unique recipes from options like healthy dog food (chicken, duck, herring, salmon, turkey), sensitive dog food, and renal dog food. The subscription includes free delivery straight to your door, with options to deliver every 8 weeks. Subscribers can add treats to their boxes and adjust their plans anytime via their Pure account. The service is vet- and nutritionist-backed, focuses on natural, human-quality ingredients, and offers expert advice. Prices start at £0.89 per day, varying by dog size, age, and activity level."",""researcherNotes"":""No downloadable document links (PDF, DOCX, etc.) were found on the website."",""sectorDescription"":""Operates in the pet nutrition sector, providing natural, vet-approved, tailored dog food subscriptions focused on health and longevity."",""sources"":{""clientCategories"":""https://www.purepetfood.com/"",""companyDescription"":""https://www.purepetfood.com/about"",""geographicFocus"":""https://www.purepetfood.com/about"",""keyExecutives"":""https://www.petfoodprocessing.net/articles/16980-pure-pet-food-appoints-ceo"",""productDescription"":""https://www.purepetfood.com/dog-food-subscription""},""websiteURL"":""https://www.purepetfood.com/""}" -Three-Sixty Aquaculture,https://360shrimp.com,"Marcus Wareing, Matthew Freud, Primestar Industries",360shrimp.com,https://www.linkedin.com/company/three-sixty-aquaculture-limited,"{""seniorLeadership"":[{""name"":""James Fox-Davies"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/james-fox-davies-40a48b158""},{""name"":""Lee Tanner"",""title"":""Founding Director"",""linkedinProfile"":""https://uk.linkedin.com/in/lee-tanner-b4224143""}]}","{""seniorLeadership"":[{""name"":""James Fox-Davies"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/james-fox-davies-40a48b158""},{""name"":""Lee Tanner"",""title"":""Founding Director"",""linkedinProfile"":""https://uk.linkedin.com/in/lee-tanner-b4224143""}]}","{ - ""websiteURL"": ""https://360shrimp.com"", - ""companyDescription"": ""Three-Sixty Aquaculture is at the forefront of breakthrough technology, producing the most sustainable seafood. Founded in 2014, it cultivates fresh, nutritious shrimp locally regardless of climate or coastal access, enabling clients to enter shrimp farming, promoting sustainability, reducing transportation costs, and increasing access to fresh seafood."", - ""productDescription"": ""Three-Sixty Aquaculture offers innovative aquaculture products including:\n- Shrimp production services\n- Tilapia farming\n- Lumpfish facility operations\n- Shellfish farming (mussels and scallops)\n- Indoor prawn farming using Recirculating Aquaculture System (RAS) technology."", - ""clientCategories"": [ - ""Seafood industry participants"" - ], - ""sectorDescription"": ""Operates in the sustainable aquaculture sector, using advanced Recirculating Aquaculture System (RAS) technology to farm seafood including shrimp, tilapia, lumpfish, and shellfish."", - ""geographicFocus"": ""HQ: Swansea, Wales, United Kingdom; Sales Focus: United Kingdom, Europe"", - ""keyExecutives"": [ - {""name"": ""Lee Tanner"", ""title"": ""CTO and Founder"", ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""}, - {""name"": ""James Fox-Davies"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""}, - {""name"": ""Will Rash"", ""title"": ""Prawn Expert"", ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/three-sixty-aquaculture"", - ""productDescription"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"", - ""clientCategories"": ""https://www.crunchbase.com/organization/three-sixty-aquaculture"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/673623-37"", - ""keyExecutives"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"" - } -}","{ - ""websiteURL"": ""https://360shrimp.com"", - ""companyDescription"": ""Three-Sixty Aquaculture is at the forefront of breakthrough technology, producing the most sustainable seafood. Founded in 2014, it cultivates fresh, nutritious shrimp locally regardless of climate or coastal access, enabling clients to enter shrimp farming, promoting sustainability, reducing transportation costs, and increasing access to fresh seafood."", - ""productDescription"": ""Three-Sixty Aquaculture offers innovative aquaculture products including:\n- Shrimp production services\n- Tilapia farming\n- Lumpfish facility operations\n- Shellfish farming (mussels and scallops)\n- Indoor prawn farming using Recirculating Aquaculture System (RAS) technology."", - ""clientCategories"": [ - ""Seafood industry participants"" - ], - ""sectorDescription"": ""Operates in the sustainable aquaculture sector, using advanced Recirculating Aquaculture System (RAS) technology to farm seafood including shrimp, tilapia, lumpfish, and shellfish."", - ""geographicFocus"": ""HQ: Swansea, Wales, United Kingdom; Sales Focus: United Kingdom, Europe"", - ""keyExecutives"": [ - {""name"": ""Lee Tanner"", ""title"": ""CTO and Founder"", ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""}, - {""name"": ""James Fox-Davies"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""}, - {""name"": ""Will Rash"", ""title"": ""Prawn Expert"", ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/three-sixty-aquaculture"", - ""productDescription"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"", - ""clientCategories"": ""https://www.crunchbase.com/organization/three-sixty-aquaculture"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/673623-37"", - ""keyExecutives"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"" - } -}",[],"{ - ""websiteURL"": ""https://360shrimp.com"", - ""companyDescription"": ""Three-Sixty Aquaculture, founded in 2014 and headquartered in Swansea, Wales, UK, is a pioneer in sustainable aquaculture technology. It produces fresh, nutritious shrimp and other seafood species locally regardless of climate or coastal access, enabling clients to enter shrimp farming while promoting sustainability, reducing transportation costs, and increasing access to fresh seafood."", - ""productDescription"": ""Three-Sixty Aquaculture offers innovative aquaculture products and services including shrimp production, tilapia farming, lumpfish facility operations, shellfish farming (mussels and scallops), and indoor prawn farming using advanced Recirculating Aquaculture System (RAS) technology. Their proprietary technology enhances water quality and energy efficiency, supporting commercial-scale farming."", - ""clientCategories"": [ - ""Seafood Industry Participants"" - ], - ""sectorDescription"": ""Sustainable aquaculture focused on advanced Recirculating Aquaculture System (RAS) technology for farming shrimp, tilapia, lumpfish, and shellfish."", - ""geographicFocus"": ""Headquartered in Swansea, Wales, United Kingdom with a primary sales focus on the United Kingdom and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Lee Tanner"", - ""title"": ""CTO and Founder"", - ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"" - }, - { - ""name"": ""James Fox-Davies"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"" - }, - { - ""name"": ""Will Rash"", - ""title"": ""Prawn Expert"", - ""sourceUrl"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"" - } - ], - ""researcherNotes"": ""The company is confirmed as Three-Sixty Aquaculture Ltd based on matching domain (360shrimp.com), HQ location in Swansea, Wales, and founding year 2014 (Companies House). The leadership titles from Maddyness and LinkedIn align; no major discrepancies detected. Geographic focus is explicitly stated as UK and Europe in multiple sources. Missing are deeper details on client segments beyond seafood industry participants, but no additional credible sources found to expand that field."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/three-sixty-aquaculture"", - ""productDescription"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"", - ""clientCategories"": ""https://www.crunchbase.com/organization/three-sixty-aquaculture"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/673623-37"", - ""keyExecutives"": ""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"" - } -}","{""clientCategories"":[""Seafood Industry Participants""],""companyDescription"":""Three-Sixty Aquaculture, founded in 2014 and headquartered in Swansea, Wales, UK, is a pioneer in sustainable aquaculture technology. It produces fresh, nutritious shrimp and other seafood species locally regardless of climate or coastal access, enabling clients to enter shrimp farming while promoting sustainability, reducing transportation costs, and increasing access to fresh seafood."",""geographicFocus"":""Headquartered in Swansea, Wales, United Kingdom with a primary sales focus on the United Kingdom and Europe."",""keyExecutives"":[{""name"":""Lee Tanner"",""sourceUrl"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""title"":""CTO and Founder""},{""name"":""James Fox-Davies"",""sourceUrl"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""title"":""CEO""},{""name"":""Will Rash"",""sourceUrl"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""title"":""Prawn Expert""}],""missingImportantFields"":[],""productDescription"":""Three-Sixty Aquaculture offers innovative aquaculture products and services including shrimp production, tilapia farming, lumpfish facility operations, shellfish farming (mussels and scallops), and indoor prawn farming using advanced Recirculating Aquaculture System (RAS) technology. Their proprietary technology enhances water quality and energy efficiency, supporting commercial-scale farming."",""researcherNotes"":""The company is confirmed as Three-Sixty Aquaculture Ltd based on matching domain (360shrimp.com), HQ location in Swansea, Wales, and founding year 2014 (Companies House). The leadership titles from Maddyness and LinkedIn align; no major discrepancies detected. Geographic focus is explicitly stated as UK and Europe in multiple sources. Missing are deeper details on client segments beyond seafood industry participants, but no additional credible sources found to expand that field."",""sectorDescription"":""Sustainable aquaculture focused on advanced Recirculating Aquaculture System (RAS) technology for farming shrimp, tilapia, lumpfish, and shellfish."",""sources"":{""clientCategories"":""https://www.crunchbase.com/organization/three-sixty-aquaculture"",""companyDescription"":""https://www.crunchbase.com/organization/three-sixty-aquaculture"",""geographicFocus"":""https://pitchbook.com/profiles/company/673623-37"",""keyExecutives"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""productDescription"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""},""websiteURL"":""https://360shrimp.com""}","Correctness: 98% Completeness: 95% The company Three-Sixty Aquaculture Limited is accurately identified as founded in 2014 and headquartered in Swansea, Wales, UK, with a primary focus on sustainable aquaculture using proprietary Recirculating Aquaculture System (RAS) technology across species like shrimp, tilapia, lumpfish, mussels, and scallops, confirmed by multiple sources including Companies House and Maddyness (UK Companies House 08914353, https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/). The leadership titles are current as of mid-2025 with Lee Tanner as CTO and founder, James Fox-Davies as CEO, and Will Rash as prawn expert, supported by Maddyness and company filings (https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/, Companies House officers). The description of their product lines and geographic focus on the UK and Europe is well corroborated, including the recent Series A funding in November 2024 to expand facilities (https://weareaquaculture.com/people/new-chair-of-the-board-to-lead-three-sixty-aquaculture-expansion). Minor incompleteness is noted due to limited publicly available detail on client segmentation beyond general seafood industry participation. No significant contradictions or outdated information are present.","{""clientCategories"":[""Seafood industry participants""],""companyDescription"":""Three-Sixty Aquaculture is at the forefront of breakthrough technology, producing the most sustainable seafood. Founded in 2014, it cultivates fresh, nutritious shrimp locally regardless of climate or coastal access, enabling clients to enter shrimp farming, promoting sustainability, reducing transportation costs, and increasing access to fresh seafood."",""geographicFocus"":""HQ: Swansea, Wales, United Kingdom; Sales Focus: United Kingdom, Europe"",""keyExecutives"":[{""name"":""Lee Tanner"",""sourceUrl"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""title"":""CTO and Founder""},{""name"":""James Fox-Davies"",""sourceUrl"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""title"":""CEO""},{""name"":""Will Rash"",""sourceUrl"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""title"":""Prawn Expert""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Three-Sixty Aquaculture offers innovative aquaculture products including:\n- Shrimp production services\n- Tilapia farming\n- Lumpfish facility operations\n- Shellfish farming (mussels and scallops)\n- Indoor prawn farming using Recirculating Aquaculture System (RAS) technology."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable aquaculture sector, using advanced Recirculating Aquaculture System (RAS) technology to farm seafood including shrimp, tilapia, lumpfish, and shellfish."",""sources"":{""clientCategories"":""https://www.crunchbase.com/organization/three-sixty-aquaculture"",""companyDescription"":""https://www.crunchbase.com/organization/three-sixty-aquaculture"",""geographicFocus"":""https://pitchbook.com/profiles/company/673623-37"",""keyExecutives"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/"",""productDescription"":""https://www.maddyness.com/uk/entreprise/three-sixty-aquaculture/""},""websiteURL"":""https://360shrimp.com""}" -Innok Robotics,http://www.innok-robotics.de/,Companisto,innok-robotics.de,https://www.linkedin.com/company/innok-robotics,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.innok-robotics.de/"", - ""companyDescription"": ""Innok Robotics GmbH is a market leader in intelligent autonomous mobile robots (AMRs) for indoor, outdoor, and multiterrain applications. They focus on software, development, and vehicle hardware with advanced 2D/3D sensor technology, delivering perfectly integrated and reliable mobile robot systems that are flexible, economical, and proven. Their software, including Innok COCKPIT™, HYBRID NAVIGATION™, and ReMain™ remote maintenance, is a key success factor. Their robots serve industries such as logistics, manufacturing, green sectors, research, and development."", - ""productDescription"": ""Core products and services from Innok Robotics include: - INDUROS (AMR for load transport indoors/outdoors, 2.5 kWh battery, tractive force up to 700 kg) - RAINOS (fully automatic watering robot for parks and green spaces) - INDUROS 1300 (AMR for heavy loads, 2.5 kWh battery, tractive force up to 1300 kg) - HEROS (modular, 3-4 wheeled robot, payload over 300 kg, expandable) - INSPECTOS (inspection robot that follows routes and takes photos for theft protection and hazard situations) - NAVIBOX (hardware-software package for automating vehicles from other manufacturers, enables manual and autonomous operation, features remote maintenance with Innok ReMain™). Software includes Innok COCKPIT™ for autonomous and remote control with hybrid navigation technology, and Innok ReMain for remote maintenance, updates, and support."", - ""clientCategories"": [ - ""Cemetery gardeners and authorities"", - ""Chemistry and energy supply"", - ""Industry"", - ""Intralogistics & material transport"", - ""Manufacturing companies"", - ""Mechanical engineering"", - ""Plant transport (CC container)"", - ""Plastics processing"", - ""Tyre production & storage"", - ""Universities, Research & Science"", - ""Security and surveillance"" - ], - ""sectorDescription"": ""Operates in the robotics sector, specializing in intelligent autonomous mobile robots (AMRs) for industrial, logistics, and green sector applications."", - ""geographicFocus"": ""HQ: Bahnweg 49, 3128 Regenstauf, Germany; Sales Focus: Europe and international markets"", - ""keyExecutives"": [ - { - ""name"": ""Alwin Heerklotz"", - ""title"": ""Founder, CEO, CTO"", - ""sourceUrl"": ""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"" - }, - { - ""name"": ""Alexander Boos"", - ""title"": ""Managing Director, COO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/innok-robotics"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innok-robotics.de/en/about-us"", - ""productDescription"": ""https://www.innok-robotics.de/en/productoverview"", - ""clientCategories"": ""https://www.innok-robotics.de/en/usecases"", - ""geographicFocus"": ""https://www.innok-robotics.de/en/contact"", - ""keyExecutives"": ""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"" - } -}","{ - ""websiteURL"": ""http://www.innok-robotics.de/"", - ""companyDescription"": ""Innok Robotics GmbH is a market leader in intelligent autonomous mobile robots (AMRs) for indoor, outdoor, and multiterrain applications. They focus on software, development, and vehicle hardware with advanced 2D/3D sensor technology, delivering perfectly integrated and reliable mobile robot systems that are flexible, economical, and proven. Their software, including Innok COCKPIT™, HYBRID NAVIGATION™, and ReMain™ remote maintenance, is a key success factor. Their robots serve industries such as logistics, manufacturing, green sectors, research, and development."", - ""productDescription"": ""Core products and services from Innok Robotics include: - INDUROS (AMR for load transport indoors/outdoors, 2.5 kWh battery, tractive force up to 700 kg) - RAINOS (fully automatic watering robot for parks and green spaces) - INDUROS 1300 (AMR for heavy loads, 2.5 kWh battery, tractive force up to 1300 kg) - HEROS (modular, 3-4 wheeled robot, payload over 300 kg, expandable) - INSPECTOS (inspection robot that follows routes and takes photos for theft protection and hazard situations) - NAVIBOX (hardware-software package for automating vehicles from other manufacturers, enables manual and autonomous operation, features remote maintenance with Innok ReMain™). Software includes Innok COCKPIT™ for autonomous and remote control with hybrid navigation technology, and Innok ReMain for remote maintenance, updates, and support."", - ""clientCategories"": [ - ""Cemetery gardeners and authorities"", - ""Chemistry and energy supply"", - ""Industry"", - ""Intralogistics & material transport"", - ""Manufacturing companies"", - ""Mechanical engineering"", - ""Plant transport (CC container)"", - ""Plastics processing"", - ""Tyre production & storage"", - ""Universities, Research & Science"", - ""Security and surveillance"" - ], - ""sectorDescription"": ""Operates in the robotics sector, specializing in intelligent autonomous mobile robots (AMRs) for industrial, logistics, and green sector applications."", - ""geographicFocus"": ""HQ: Bahnweg 49, 3128 Regenstauf, Germany; Sales Focus: Europe and international markets"", - ""keyExecutives"": [ - { - ""name"": ""Alwin Heerklotz"", - ""title"": ""Founder, CEO, CTO"", - ""sourceUrl"": ""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"" - }, - { - ""name"": ""Alexander Boos"", - ""title"": ""Managing Director, COO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/innok-robotics"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innok-robotics.de/en/about-us"", - ""productDescription"": ""https://www.innok-robotics.de/en/productoverview"", - ""clientCategories"": ""https://www.innok-robotics.de/en/usecases"", - ""geographicFocus"": ""https://www.innok-robotics.de/en/contact"", - ""keyExecutives"": ""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"" - } -}",[],"{ - ""websiteURL"": ""https://www.innok-robotics.de"", - ""companyDescription"": ""Innok Robotics GmbH is a market leader in intelligent autonomous mobile robots (AMRs) designed for indoor, outdoor, and multiterrain applications. The company specializes in integrated hardware and advanced software solutions featuring 2D/3D sensor technology to deliver flexible, economical, and reliable mobile robot systems. Their products serve diverse sectors including logistics, manufacturing, green sectors, and research and development, emphasizing software innovations such as Innok COCKPIT™, HYBRID NAVIGATION™, and ReMain™ remote maintenance to ensure outstanding operational performance and ease of use."", - ""productDescription"": ""Innok Robotics delivers a range of autonomous mobile robots and related software designed to automate load transport, inspection, and maintenance tasks. Key offerings include INDUROS AMRs for load transport indoors and outdoors with tractive force capacities up to 1300 kg, RAINOS automatic watering robots for green spaces, HEROS modular robots with expandable features, and INSPECTOS inspection robots for security routes. Supplementing the hardware is the Innok COCKPIT™ software for autonomous and hybrid navigation control and the Innok ReMain™ platform for remote system maintenance and updates, enabling efficient and dependable robotic automation."", - ""clientCategories"": [ - ""Cemetery Gardeners and Authorities"", - ""Chemistry and Energy Supply"", - ""Industry"", - ""Intralogistics and Material Transport"", - ""Manufacturing Companies"", - ""Mechanical Engineering"", - ""Plant Transport (CC Container)"", - ""Plastics Processing"", - ""Tyre Production and Storage"", - ""Universities, Research and Science"", - ""Security and Surveillance"" - ], - ""sectorDescription"": ""Robotics sector specializing in intelligent autonomous mobile robots (AMRs) for industrial, logistics, and green sector applications."", - ""geographicFocus"": ""Headquartered in Regenstauf, Germany, Innok Robotics focuses sales efforts across Europe and international markets."", - ""keyExecutives"": [ - { - ""name"": ""Alwin Heerklotz"", - ""title"": ""Founder, CEO, CTO"", - ""sourceUrl"": ""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"" - }, - { - ""name"": ""Alexander Boos"", - ""title"": ""Managing Director, COO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/innok-robotics"" - } - ], - ""researcherNotes"": ""The company has a clear match by domain (innok-robotics.de), HQ location in Regenstauf, Germany, and distinct AMR product focus consistent across sources. No significant missing required fields remain. No conflicting leadership information found; however, LinkedIn did not provide additional leadership data beyond official company and Crunchbase sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innok-robotics.de/en/about-us"", - ""productDescription"": ""https://www.innok-robotics.de/en/productoverview"", - ""clientCategories"": ""https://www.innok-robotics.de/en/usecases"", - ""geographicFocus"": ""https://www.innok-robotics.de/en/contact"", - ""keyExecutives"": ""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"" - } -}","{""clientCategories"":[""Cemetery Gardeners and Authorities"",""Chemistry and Energy Supply"",""Industry"",""Intralogistics and Material Transport"",""Manufacturing Companies"",""Mechanical Engineering"",""Plant Transport (CC Container)"",""Plastics Processing"",""Tyre Production and Storage"",""Universities, Research and Science"",""Security and Surveillance""],""companyDescription"":""Innok Robotics GmbH is a market leader in intelligent autonomous mobile robots (AMRs) designed for indoor, outdoor, and multiterrain applications. The company specializes in integrated hardware and advanced software solutions featuring 2D/3D sensor technology to deliver flexible, economical, and reliable mobile robot systems. Their products serve diverse sectors including logistics, manufacturing, green sectors, and research and development, emphasizing software innovations such as Innok COCKPIT™, HYBRID NAVIGATION™, and ReMain™ remote maintenance to ensure outstanding operational performance and ease of use."",""geographicFocus"":""Headquartered in Regenstauf, Germany, Innok Robotics focuses sales efforts across Europe and international markets."",""keyExecutives"":[{""name"":""Alwin Heerklotz"",""sourceUrl"":""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"",""title"":""Founder, CEO, CTO""},{""name"":""Alexander Boos"",""sourceUrl"":""https://www.crunchbase.com/organization/innok-robotics"",""title"":""Managing Director, COO""}],""missingImportantFields"":[],""productDescription"":""Innok Robotics delivers a range of autonomous mobile robots and related software designed to automate load transport, inspection, and maintenance tasks. Key offerings include INDUROS AMRs for load transport indoors and outdoors with tractive force capacities up to 1300 kg, RAINOS automatic watering robots for green spaces, HEROS modular robots with expandable features, and INSPECTOS inspection robots for security routes. Supplementing the hardware is the Innok COCKPIT™ software for autonomous and hybrid navigation control and the Innok ReMain™ platform for remote system maintenance and updates, enabling efficient and dependable robotic automation."",""researcherNotes"":""The company has a clear match by domain (innok-robotics.de), HQ location in Regenstauf, Germany, and distinct AMR product focus consistent across sources. No significant missing required fields remain. No conflicting leadership information found; however, LinkedIn did not provide additional leadership data beyond official company and Crunchbase sources."",""sectorDescription"":""Robotics sector specializing in intelligent autonomous mobile robots (AMRs) for industrial, logistics, and green sector applications."",""sources"":{""clientCategories"":""https://www.innok-robotics.de/en/usecases"",""companyDescription"":""https://www.innok-robotics.de/en/about-us"",""geographicFocus"":""https://www.innok-robotics.de/en/contact"",""keyExecutives"":""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"",""productDescription"":""https://www.innok-robotics.de/en/productoverview""},""websiteURL"":""https://www.innok-robotics.de""}","Correctness: 100% Completeness: 95% The information about Innok Robotics GmbH is accurate and well-supported by multiple authoritative sources. The company is indeed headquartered in Regenstauf, Germany, and was founded in 2012 by Alwin Heerklotz, who serves as CEO and CTO, confirmed by the company’s own site and Preqin (https://www.innok-robotics.de/en/career, https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244). The described product portfolio including INDUROS, RAINOS, HEROS, INSPECTOS, and software like Innok COCKPIT™ and ReMain™ matches official descriptions (https://www.innok-robotics.de/en/productoverview). The focus on sectors such as logistics, manufacturing, green sectors, and R&D, as well as the geographic sales effort across Europe and internationally, aligns with their official communications (https://www.innok-robotics.de/en/about-us, https://www.innok-robotics.de/en/contact). The only minor deduction for completeness is due to the absence of explicit confirmation of Alexander Boos’s title as Managing Director and COO from primary official sources, as this leadership detail is supported primarily by Crunchbase but not directly on Innok’s site. No significant material claims or updates beyond these were missing or contradicted.","{""clientCategories"":[""Cemetery gardeners and authorities"",""Chemistry and energy supply"",""Industry"",""Intralogistics & material transport"",""Manufacturing companies"",""Mechanical engineering"",""Plant transport (CC container)"",""Plastics processing"",""Tyre production & storage"",""Universities, Research & Science"",""Security and surveillance""],""companyDescription"":""Innok Robotics GmbH is a market leader in intelligent autonomous mobile robots (AMRs) for indoor, outdoor, and multiterrain applications. They focus on software, development, and vehicle hardware with advanced 2D/3D sensor technology, delivering perfectly integrated and reliable mobile robot systems that are flexible, economical, and proven. Their software, including Innok COCKPIT™, HYBRID NAVIGATION™, and ReMain™ remote maintenance, is a key success factor. Their robots serve industries such as logistics, manufacturing, green sectors, research, and development."",""geographicFocus"":""HQ: Bahnweg 49, 3128 Regenstauf, Germany; Sales Focus: Europe and international markets"",""keyExecutives"":[{""name"":""Alwin Heerklotz"",""sourceUrl"":""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"",""title"":""Founder, CEO, CTO""},{""name"":""Alexander Boos"",""sourceUrl"":""https://www.crunchbase.com/organization/innok-robotics"",""title"":""Managing Director, COO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Core products and services from Innok Robotics include: - INDUROS (AMR for load transport indoors/outdoors, 2.5 kWh battery, tractive force up to 700 kg) - RAINOS (fully automatic watering robot for parks and green spaces) - INDUROS 1300 (AMR for heavy loads, 2.5 kWh battery, tractive force up to 1300 kg) - HEROS (modular, 3-4 wheeled robot, payload over 300 kg, expandable) - INSPECTOS (inspection robot that follows routes and takes photos for theft protection and hazard situations) - NAVIBOX (hardware-software package for automating vehicles from other manufacturers, enables manual and autonomous operation, features remote maintenance with Innok ReMain™). Software includes Innok COCKPIT™ for autonomous and remote control with hybrid navigation technology, and Innok ReMain for remote maintenance, updates, and support."",""researcherNotes"":null,""sectorDescription"":""Operates in the robotics sector, specializing in intelligent autonomous mobile robots (AMRs) for industrial, logistics, and green sector applications."",""sources"":{""clientCategories"":""https://www.innok-robotics.de/en/usecases"",""companyDescription"":""https://www.innok-robotics.de/en/about-us"",""geographicFocus"":""https://www.innok-robotics.de/en/contact"",""keyExecutives"":""https://www.preqin.com/data/profile/asset/innok-robotics-gmbh/524244"",""productDescription"":""https://www.innok-robotics.de/en/productoverview""},""websiteURL"":""http://www.innok-robotics.de/""}" -Nutriearth,https://www.nutriearth.fr,"Bpifrance, Captech Santé, Crédit Agricole Nord de France, Demeter, Finorpa, Holding Serthi, Nord France Amorcage, Rev3 Capital, Région Hauts-de-France",nutriearth.fr,https://www.linkedin.com/company/nutriearth/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.nutriearth.fr"", - ""companyDescription"": ""Nutriearth is a producer of the world's only natural and sustainable source of vitamin D3, derived from a natural bioresource (Tenebrio molitor) through patented processes without chemical synthesis or extraction. The company focuses on innovative nutrition solutions for human and animal health, emphasizing sustainability and improved absorption. Nutriearth's mission is summarized as: \""Agir pour la santé par une nutrition nouvelle et durable: c’est notre raison d’être!\"" (Acting for health through new and sustainable nutrition: this is our raison d'être!). Their innovative approach involves launching sustainable nutritional ranges after years of research. The company is based in Carvin, France. Nutriearth est une biotech française spécialisée dans la production de vitamine D3 naturelle et durable dédiée à la santé humaine et animale. Fondée en 2017 par Thomas Dormigny et Jérémy Defrize, Nutriearth a pour mission de fournir des solutions de santé naturelles et durables aux industries du petfood, du feed, de l’agro-alimentaire et de la nutraceutique, en utilisant des méthodes et formulations brevetées pour produire une vitamine D3 sans chimie de synthèse ni extraction. L'objectif est de préserver la santé des animaux et des hommes grâce à des produits innovants et respectueux de l’environnement. Nutriearth s’engage à offrir une vitamine D3 de haute qualité obtenue sans chimie de synthèse, avec efficacité prouvée par des études, et place la protection de la planète et le bien-être de ses habitants au cœur de sa démarche."", - ""productDescription"": ""Nutriearth offers 100% natural and sustainable vitamin D3 solutions for human nutrition and food industry applications, including dietary supplements and functional foods. Their patented technology provides vitamin D3 that is over three times better absorbed in its oil form compared to others. Vitamin D3 is essential for health, supporting bone, muscle, teeth, and immune function, as recognized by EU Regulation 432/2012. Nutriearth’s vitamin D3 addresses widespread vitamin D deficiency affecting 55-58% of the population. Their products are made in France using non-chemical patented methods. They supply ingredients for customized formulations for food, dietary supplements, and sports nutrition, targeting bone health and immunity."", - ""clientCategories"": [ - ""professionals in supplementation and agro-food industry"", - ""actors in animal nutrition-health for pets"", - ""poultry"", - ""birds"", - ""pigs"", - ""wild animals"" - ], - ""sectorDescription"": ""Operates in the sustainable and natural nutrition sector, focusing on producing natural vitamin D3 for human and animal health using eco-responsible processes."", - ""geographicFocus"": ""HQ: 68, rue Gay-Lussac, 62220 Carvin, France; Sales Focus: primarily France and potentially broader regions, focusing on human and animal nutrition markets."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Dormigny"", - ""title"": ""Co-founder and Commercial Director"", - ""sourceUrl"": ""https://www.nutriearth.fr/a-propos/"" - }, - { - ""name"": ""Jérémy Defrize"", - ""title"": ""Co-founder, PhD in animal physiology and Director of Research and Development"", - ""sourceUrl"": ""https://www.nutriearth.fr/a-propos/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nutriearth.fr/a-propos/"", - ""productDescription"": ""https://www.nutriearth.fr/nutrition-humaine/"", - ""clientCategories"": ""https://www.nutriearth.fr/"", - ""geographicFocus"": ""https://www.nutriearth.fr/contact/"", - ""keyExecutives"": ""https://www.nutriearth.fr/a-propos/"" - } -}","{ - ""websiteURL"": ""https://www.nutriearth.fr"", - ""companyDescription"": ""Nutriearth is a producer of the world's only natural and sustainable source of vitamin D3, derived from a natural bioresource (Tenebrio molitor) through patented processes without chemical synthesis or extraction. The company focuses on innovative nutrition solutions for human and animal health, emphasizing sustainability and improved absorption. Nutriearth's mission is summarized as: \""Agir pour la santé par une nutrition nouvelle et durable: c’est notre raison d’être!\"" (Acting for health through new and sustainable nutrition: this is our raison d'être!). Their innovative approach involves launching sustainable nutritional ranges after years of research. The company is based in Carvin, France. Nutriearth est une biotech française spécialisée dans la production de vitamine D3 naturelle et durable dédiée à la santé humaine et animale. Fondée en 2017 par Thomas Dormigny et Jérémy Defrize, Nutriearth a pour mission de fournir des solutions de santé naturelles et durables aux industries du petfood, du feed, de l’agro-alimentaire et de la nutraceutique, en utilisant des méthodes et formulations brevetées pour produire une vitamine D3 sans chimie de synthèse ni extraction. L'objectif est de préserver la santé des animaux et des hommes grâce à des produits innovants et respectueux de l’environnement. Nutriearth s’engage à offrir une vitamine D3 de haute qualité obtenue sans chimie de synthèse, avec efficacité prouvée par des études, et place la protection de la planète et le bien-être de ses habitants au cœur de sa démarche."", - ""productDescription"": ""Nutriearth offers 100% natural and sustainable vitamin D3 solutions for human nutrition and food industry applications, including dietary supplements and functional foods. Their patented technology provides vitamin D3 that is over three times better absorbed in its oil form compared to others. Vitamin D3 is essential for health, supporting bone, muscle, teeth, and immune function, as recognized by EU Regulation 432/2012. Nutriearth’s vitamin D3 addresses widespread vitamin D deficiency affecting 55-58% of the population. Their products are made in France using non-chemical patented methods. They supply ingredients for customized formulations for food, dietary supplements, and sports nutrition, targeting bone health and immunity."", - ""clientCategories"": [ - ""professionals in supplementation and agro-food industry"", - ""actors in animal nutrition-health for pets"", - ""poultry"", - ""birds"", - ""pigs"", - ""wild animals"" - ], - ""sectorDescription"": ""Operates in the sustainable and natural nutrition sector, focusing on producing natural vitamin D3 for human and animal health using eco-responsible processes."", - ""geographicFocus"": ""HQ: 68, rue Gay-Lussac, 62220 Carvin, France; Sales Focus: primarily France and potentially broader regions, focusing on human and animal nutrition markets."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Dormigny"", - ""title"": ""Co-founder and Commercial Director"", - ""sourceUrl"": ""https://www.nutriearth.fr/a-propos/"" - }, - { - ""name"": ""Jérémy Defrize"", - ""title"": ""Co-founder, PhD in animal physiology and Director of Research and Development"", - ""sourceUrl"": ""https://www.nutriearth.fr/a-propos/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nutriearth.fr/a-propos/"", - ""productDescription"": ""https://www.nutriearth.fr/nutrition-humaine/"", - ""clientCategories"": ""https://www.nutriearth.fr/"", - ""geographicFocus"": ""https://www.nutriearth.fr/contact/"", - ""keyExecutives"": ""https://www.nutriearth.fr/a-propos/"" - } -}",[],"{ - ""websiteURL"": ""https://www.nutriearth.fr"", - ""companyDescription"": ""Nutriearth is a French biotech company specializing in the production of the world's only natural and sustainable source of vitamin D3 derived from the Tenebrio molitor insect through patented, non-chemical processes. Founded in 2017, the company focuses on innovative nutrition solutions for human and animal health, emphasizing sustainability, improved absorption, and environmental responsibility. Nutriearth supplies the pet food, feed, agro-food, and nutraceutical industries with high-quality vitamin D3 ingredients that support bone, muscle, teeth, and immune health."", - ""productDescription"": ""Nutriearth produces 100% natural and sustainable vitamin D3 offered in stable oil and powder forms, using patented biosynthesis technologies without chemical synthesis or extraction. Their vitamin D3 is over three times better absorbed than conventional products and is intended for use in dietary supplements, functional foods, and animal nutrition formulations that address widespread vitamin D deficiency and promote bone and immune health. All products are made in France under environmentally friendly methods."", - ""clientCategories"": [ - ""Professionals In Supplementation And Agro-Food Industry"", - ""Actors In Animal Nutrition-Health For Pets"", - ""Poultry"", - ""Birds"", - ""Pigs"", - ""Wild Animals"" - ], - ""sectorDescription"": ""Natural and sustainable nutrition company specializing in producing high-quality vitamin D3 for human and animal health through eco-responsible and patented processes."", - ""geographicFocus"": ""Primary focus is France with sales also targeting broader international markets including Asia, Australia, the Americas, and Europe in human and animal nutrition sectors."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Dormigny"", - ""title"": ""Co-founder and Commercial Director"", - ""sourceUrl"": ""https://www.nutriearth.fr/a-propos/"" - }, - { - ""name"": ""Jérémy Defrize"", - ""title"": ""Co-founder, PhD in Animal Physiology and Director of Research and Development"", - ""sourceUrl"": ""https://www.nutriearth.fr/a-propos/"" - } - ], - ""researcherNotes"": ""Entity disambiguated based on primary website domain, company location in Carvin, France, and specialized patented natural vitamin D3 production using Tenebrio molitor. Geographic focus expanded by ingredient networks source indicating active sales across Europe, Asia, Americas and Oceania. No conflicts found in leadership titles or company description. Missing detailed senior leadership beyond co-founders on LinkedIn and no recent filings located."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nutriearth.fr/a-propos/"", - ""productDescription"": ""https://www.nutriearth.fr/nutrition-humaine/"", - ""clientCategories"": ""https://www.nutriearth.fr/"", - ""geographicFocus"": ""https://www.ingredientsnetwork.com/nutri-earth-comp319634.html"", - ""keyExecutives"": ""https://www.nutriearth.fr/a-propos/"" - } -}","{""clientCategories"":[""Professionals In Supplementation And Agro-Food Industry"",""Actors In Animal Nutrition-Health For Pets"",""Poultry"",""Birds"",""Pigs"",""Wild Animals""],""companyDescription"":""Nutriearth is a French biotech company specializing in the production of the world's only natural and sustainable source of vitamin D3 derived from the Tenebrio molitor insect through patented, non-chemical processes. Founded in 2017, the company focuses on innovative nutrition solutions for human and animal health, emphasizing sustainability, improved absorption, and environmental responsibility. Nutriearth supplies the pet food, feed, agro-food, and nutraceutical industries with high-quality vitamin D3 ingredients that support bone, muscle, teeth, and immune health."",""geographicFocus"":""Primary focus is France with sales also targeting broader international markets including Asia, Australia, the Americas, and Europe in human and animal nutrition sectors."",""keyExecutives"":[{""name"":""Thomas Dormigny"",""sourceUrl"":""https://www.nutriearth.fr/a-propos/"",""title"":""Co-founder and Commercial Director""},{""name"":""Jérémy Defrize"",""sourceUrl"":""https://www.nutriearth.fr/a-propos/"",""title"":""Co-founder, PhD in Animal Physiology and Director of Research and Development""}],""missingImportantFields"":[],""productDescription"":""Nutriearth produces 100% natural and sustainable vitamin D3 offered in stable oil and powder forms, using patented biosynthesis technologies without chemical synthesis or extraction. Their vitamin D3 is over three times better absorbed than conventional products and is intended for use in dietary supplements, functional foods, and animal nutrition formulations that address widespread vitamin D deficiency and promote bone and immune health. All products are made in France under environmentally friendly methods."",""researcherNotes"":""Entity disambiguated based on primary website domain, company location in Carvin, France, and specialized patented natural vitamin D3 production using Tenebrio molitor. Geographic focus expanded by ingredient networks source indicating active sales across Europe, Asia, Americas and Oceania. No conflicts found in leadership titles or company description. Missing detailed senior leadership beyond co-founders on LinkedIn and no recent filings located."",""sectorDescription"":""Natural and sustainable nutrition company specializing in producing high-quality vitamin D3 for human and animal health through eco-responsible and patented processes."",""sources"":{""clientCategories"":""https://www.nutriearth.fr/"",""companyDescription"":""https://www.nutriearth.fr/a-propos/"",""geographicFocus"":""https://www.ingredientsnetwork.com/nutri-earth-comp319634.html"",""keyExecutives"":""https://www.nutriearth.fr/a-propos/"",""productDescription"":""https://www.nutriearth.fr/nutrition-humaine/""},""websiteURL"":""https://www.nutriearth.fr""}","Correctness: 98% Completeness: 95% - -The information about Nutriearth is highly accurate and well-supported by multiple independent and company-controlled sources. Nutriearth is a French biotech company specializing in producing natural and sustainable vitamin D3 derived from the insect Tenebrio molitor, via patented biosynthesis that avoids chemical synthesis or extraction, providing vitamin D3 in stable oil and powder forms[1][2][4]. The company's focus on innovative nutrition solutions for human and animal health, emphasizing sustainability and improved absorption (claimed to be three times better than conventional products), is confirmed[1][2]. Nutriearth's geographic market presence includes France primarily, with sales extending internationally across Europe, Asia, the Americas, and Oceania[2]. The key executives Thomas Dormigny and Jérémy Defrize with the titles of Co-founder/Commercial Director and Co-founder/Director of R&D respectively, are confirmed on the official website[4]. Nutriearth's product usage in dietary supplements, functional foods, and animal nutrition with benefits to bone, muscle, teeth, and immune health aligns with EU regulations and novel food approvals for their UV-treated mealworm oil product intended for human consumption in the EU market[3][4]. Minor incompleteness remains regarding additional senior leadership details beyond the co-founders and current financial/funding data, but these are not widely public nor obviously missing given company size and sector. Overall, the data is reliable, recent (up to 2025), and consistent across the primary official website and regulatory documents[1][2][3][4]. - -Sources: -https://www.nutriearth.fr/a-propos/ -https://www.nutriearth-ingredients.com -https://www.ingredientsnetwork.com/nutri-earth-comp319634.html -https://food.ec.europa.eu/document/download/3c1d5748-17e8-44ce-ab3d-a9d391db163e_en?filename=novel-food_sum_ongoing-app_2021-0039.pdf&prefLang=lt -https://www.nutriearth.fr/nutrition-humaine/","{""clientCategories"":[""professionals in supplementation and agro-food industry"",""actors in animal nutrition-health for pets"",""poultry"",""birds"",""pigs"",""wild animals""],""companyDescription"":""Nutriearth is a producer of the world's only natural and sustainable source of vitamin D3, derived from a natural bioresource (Tenebrio molitor) through patented processes without chemical synthesis or extraction. The company focuses on innovative nutrition solutions for human and animal health, emphasizing sustainability and improved absorption. Nutriearth's mission is summarized as: \""Agir pour la santé par une nutrition nouvelle et durable: c’est notre raison d’être!\"" (Acting for health through new and sustainable nutrition: this is our raison d'être!). Their innovative approach involves launching sustainable nutritional ranges after years of research. The company is based in Carvin, France. Nutriearth est une biotech française spécialisée dans la production de vitamine D3 naturelle et durable dédiée à la santé humaine et animale. Fondée en 2017 par Thomas Dormigny et Jérémy Defrize, Nutriearth a pour mission de fournir des solutions de santé naturelles et durables aux industries du petfood, du feed, de l’agro-alimentaire et de la nutraceutique, en utilisant des méthodes et formulations brevetées pour produire une vitamine D3 sans chimie de synthèse ni extraction. L'objectif est de préserver la santé des animaux et des hommes grâce à des produits innovants et respectueux de l’environnement. Nutriearth s’engage à offrir une vitamine D3 de haute qualité obtenue sans chimie de synthèse, avec efficacité prouvée par des études, et place la protection de la planète et le bien-être de ses habitants au cœur de sa démarche."",""geographicFocus"":""HQ: 68, rue Gay-Lussac, 62220 Carvin, France; Sales Focus: primarily France and potentially broader regions, focusing on human and animal nutrition markets."",""keyExecutives"":[{""name"":""Thomas Dormigny"",""sourceUrl"":""https://www.nutriearth.fr/a-propos/"",""title"":""Co-founder and Commercial Director""},{""name"":""Jérémy Defrize"",""sourceUrl"":""https://www.nutriearth.fr/a-propos/"",""title"":""Co-founder, PhD in animal physiology and Director of Research and Development""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Nutriearth offers 100% natural and sustainable vitamin D3 solutions for human nutrition and food industry applications, including dietary supplements and functional foods. Their patented technology provides vitamin D3 that is over three times better absorbed in its oil form compared to others. Vitamin D3 is essential for health, supporting bone, muscle, teeth, and immune function, as recognized by EU Regulation 432/2012. Nutriearth’s vitamin D3 addresses widespread vitamin D deficiency affecting 55-58% of the population. Their products are made in France using non-chemical patented methods. They supply ingredients for customized formulations for food, dietary supplements, and sports nutrition, targeting bone health and immunity."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable and natural nutrition sector, focusing on producing natural vitamin D3 for human and animal health using eco-responsible processes."",""sources"":{""clientCategories"":""https://www.nutriearth.fr/"",""companyDescription"":""https://www.nutriearth.fr/a-propos/"",""geographicFocus"":""https://www.nutriearth.fr/contact/"",""keyExecutives"":""https://www.nutriearth.fr/a-propos/"",""productDescription"":""https://www.nutriearth.fr/nutrition-humaine/""},""websiteURL"":""https://www.nutriearth.fr""}" -smaXtec,http://www.smaxtec.com/,"Highland Europe, Kohlberg Kravis Roberts, Sophora Unternehmer Kapital",smaxtec.com,https://www.linkedin.com/company/smaxtec-animal-care,"{""seniorLeadership"":[{""name"":""Chris Howarth"",""title"":""Chief Sales Officer (CSO) / Global Sales Director"",""linkedinURL"":""https://www.linkedin.com/in/chris-howarth-a763485a""},{""name"":""Michael Goeldi"",""title"":""Head of Customer Success USA"",""linkedinURL"":""https://www.linkedin.com/in/michaelgoeldi""}]}","{""seniorLeadership"":[{""name"":""Chris Howarth"",""title"":""Chief Sales Officer (CSO) / Global Sales Director"",""linkedinURL"":""https://www.linkedin.com/in/chris-howarth-a763485a""},{""name"":""Michael Goeldi"",""title"":""Head of Customer Success USA"",""linkedinURL"":""https://www.linkedin.com/in/michaelgoeldi""}]}","{ - ""websiteURL"": ""http://www.smaxtec.com/"", - ""companyDescription"": ""smaxtec develops innovative solutions for animal health monitoring, focusing on precision livestock farming; products include technical components such as sensors for monitoring animals and software platforms for data analysis."", - ""productDescription"": ""The smaXtec product offerings include the Classic Bolus and pH Bolus, Base Station, and Climate Sensor. Classic Bolus monitors internal body temperature, drinking cycles, water intake, rumination, and activity of each cow; it is used individually on each cow. The pH Bolus additionally measures rumen pH and is used on 6-10% of the herd for group feeding insights. The Base Station reads data automatically from the Boluses and transmits it to the smaXtec Cloud. The Climate Sensor monitors barn climate (temperature, humidity, pressure) and alerts on heat stress."", - ""clientCategories"": [ - ""Livestock farmers"", - ""Veterinarians"" - ], - ""sectorDescription"": ""Operates in the animal health technology sector with emphasis on monitoring and improving livestock management."", - ""geographicFocus"": ""HQ: Sandgasse 36, 8010 Graz, Österreich; Sales Focus: Europe primarily including Austria, Germany, Switzerland, United Kingdom, United States, Ireland, New Zealand, Netherlands"", - ""keyExecutives"": [ - {""name"": ""Stefan Scherer"", ""title"": ""CEO"", ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns""}, - {""name"": ""Stefan Rosenkranz"", ""title"": ""CPO and Co-founder"", ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns""}, - {""name"": ""Mario Fallast"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.smaxtec.com/"", - ""productDescription"": ""https://smaxtec.com/de/technische-komponenten"", - ""clientCategories"": ""https://smaxtec.com/de/erfolgsgeschichten"", - ""geographicFocus"": ""https://smaxtec.com/de/impressum"", - ""keyExecutives"": ""https://smaxtec.com/de/ueber-uns"" - } -}","{ - ""websiteURL"": ""http://www.smaxtec.com/"", - ""companyDescription"": ""smaxtec develops innovative solutions for animal health monitoring, focusing on precision livestock farming; products include technical components such as sensors for monitoring animals and software platforms for data analysis."", - ""productDescription"": ""The smaXtec product offerings include the Classic Bolus and pH Bolus, Base Station, and Climate Sensor. Classic Bolus monitors internal body temperature, drinking cycles, water intake, rumination, and activity of each cow; it is used individually on each cow. The pH Bolus additionally measures rumen pH and is used on 6-10% of the herd for group feeding insights. The Base Station reads data automatically from the Boluses and transmits it to the smaXtec Cloud. The Climate Sensor monitors barn climate (temperature, humidity, pressure) and alerts on heat stress."", - ""clientCategories"": [ - ""Livestock farmers"", - ""Veterinarians"" - ], - ""sectorDescription"": ""Operates in the animal health technology sector with emphasis on monitoring and improving livestock management."", - ""geographicFocus"": ""HQ: Sandgasse 36, 8010 Graz, Österreich; Sales Focus: Europe primarily including Austria, Germany, Switzerland, United Kingdom, United States, Ireland, New Zealand, Netherlands"", - ""keyExecutives"": [ - {""name"": ""Stefan Scherer"", ""title"": ""CEO"", ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns""}, - {""name"": ""Stefan Rosenkranz"", ""title"": ""CPO and Co-founder"", ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns""}, - {""name"": ""Mario Fallast"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.smaxtec.com/"", - ""productDescription"": ""https://smaxtec.com/de/technische-komponenten"", - ""clientCategories"": ""https://smaxtec.com/de/erfolgsgeschichten"", - ""geographicFocus"": ""https://smaxtec.com/de/impressum"", - ""keyExecutives"": ""https://smaxtec.com/de/ueber-uns"" - } -}",[],"{ - ""websiteURL"": ""https://smaxtec.com"", - ""companyDescription"": ""smaXtec develops innovative solutions for animal health monitoring, focusing on precision livestock farming. The company provides a unique platform that leverages bolus sensor technology combined with AI and cloud analytics to monitor dairy cows’ health, fertility, and feeding behavior in real time. Their technology helps livestock farmers and veterinarians improve animal welfare, optimize resource use, and boost productivity sustainably, positioning smaXtec as a pioneer and technology leader in the global dairy industry."", - ""productDescription"": ""The smaXtec product range includes ingestible bolus sensors such as the Classic Bolus, which monitors internal body temperature, drinking cycles, water intake, rumination, and activity of individual cows, and the pH Bolus, which additionally measures rumen pH for group herd analysis. Data is collected via the Base Station and transmitted to the smaXtec Cloud platform. The Climate Sensor tracks barn climate parameters, providing heat stress alerts. Together, these products enable early disease detection, fertility monitoring, and improved feeding management that enhance cow welfare and farm productivity."", - ""clientCategories"": [ - ""Livestock Farmers"", - ""Veterinarians"" - ], - ""sectorDescription"": ""Animal health technology focused on precision livestock farming by providing real-time monitoring and data-driven management solutions for dairy farming."", - ""geographicFocus"": ""Headquartered in Graz, Austria, with a primary sales focus on Europe including Austria, Germany, Switzerland, United Kingdom, Ireland, Netherlands, and expansion efforts into the United States and New Zealand."", - ""keyExecutives"": [ - { - ""name"": ""Stefan Scherer"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns"" - }, - { - ""name"": ""Stefan Rosenkranz"", - ""title"": ""CPO and Co-founder"", - ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns"" - }, - { - ""name"": ""Mario Fallast"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://smaxtec.com/de/ueber-uns"" - }, - { - ""name"": ""Chris Howarth"", - ""title"": ""Chief Sales Officer (CSO) / Global Sales Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/chris-howarth-a763485a"" - }, - { - ""name"": ""Michael Goeldi"", - ""title"": ""Head of Customer Success USA"", - ""sourceUrl"": ""https://www.linkedin.com/in/michaelgoeldi"" - } - ], - ""researcherNotes"": ""The company is unambiguously identified by primary domain (smaxtec.com), HQ location in Graz, Austria, and unique product focus on bolus-based cow health monitoring. The geographic footprint aligns with official site info and secondary sources indicating European sales focus with expansion into the US and New Zealand. Executive data supplemented with senior sales leadership from LinkedIn profiles. No conflicts identified. Geographic focus is provided despite slight regional expansion to the US due to verified sales activity references."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://smaxtec.com/us/about-us/"", - ""productDescription"": ""https://smaxtec.com/de/technische-komponenten"", - ""clientCategories"": ""https://smaxtec.com/de/erfolgsgeschichten"", - ""geographicFocus"": ""https://smaxtec.com/de/impressum"", - ""keyExecutives"": ""https://smaxtec.com/de/ueber-uns"" - } -}","{""clientCategories"":[""Livestock Farmers"",""Veterinarians""],""companyDescription"":""smaXtec develops innovative solutions for animal health monitoring, focusing on precision livestock farming. The company provides a unique platform that leverages bolus sensor technology combined with AI and cloud analytics to monitor dairy cows’ health, fertility, and feeding behavior in real time. Their technology helps livestock farmers and veterinarians improve animal welfare, optimize resource use, and boost productivity sustainably, positioning smaXtec as a pioneer and technology leader in the global dairy industry."",""geographicFocus"":""Headquartered in Graz, Austria, with a primary sales focus on Europe including Austria, Germany, Switzerland, United Kingdom, Ireland, Netherlands, and expansion efforts into the United States and New Zealand."",""keyExecutives"":[{""name"":""Stefan Scherer"",""sourceUrl"":""https://smaxtec.com/de/ueber-uns"",""title"":""CEO""},{""name"":""Stefan Rosenkranz"",""sourceUrl"":""https://smaxtec.com/de/ueber-uns"",""title"":""CPO and Co-founder""},{""name"":""Mario Fallast"",""sourceUrl"":""https://smaxtec.com/de/ueber-uns"",""title"":""Co-founder""},{""name"":""Chris Howarth"",""sourceUrl"":""https://www.linkedin.com/in/chris-howarth-a763485a"",""title"":""Chief Sales Officer (CSO) / Global Sales Director""},{""name"":""Michael Goeldi"",""sourceUrl"":""https://www.linkedin.com/in/michaelgoeldi"",""title"":""Head of Customer Success USA""}],""missingImportantFields"":[],""productDescription"":""The smaXtec product range includes ingestible bolus sensors such as the Classic Bolus, which monitors internal body temperature, drinking cycles, water intake, rumination, and activity of individual cows, and the pH Bolus, which additionally measures rumen pH for group herd analysis. Data is collected via the Base Station and transmitted to the smaXtec Cloud platform. The Climate Sensor tracks barn climate parameters, providing heat stress alerts. Together, these products enable early disease detection, fertility monitoring, and improved feeding management that enhance cow welfare and farm productivity."",""researcherNotes"":""The company is unambiguously identified by primary domain (smaxtec.com), HQ location in Graz, Austria, and unique product focus on bolus-based cow health monitoring. The geographic footprint aligns with official site info and secondary sources indicating European sales focus with expansion into the US and New Zealand. Executive data supplemented with senior sales leadership from LinkedIn profiles. No conflicts identified. Geographic focus is provided despite slight regional expansion to the US due to verified sales activity references."",""sectorDescription"":""Animal health technology focused on precision livestock farming by providing real-time monitoring and data-driven management solutions for dairy farming."",""sources"":{""clientCategories"":""https://smaxtec.com/de/erfolgsgeschichten"",""companyDescription"":""https://smaxtec.com/us/about-us/"",""geographicFocus"":""https://smaxtec.com/de/impressum"",""keyExecutives"":""https://smaxtec.com/de/ueber-uns"",""productDescription"":""https://smaxtec.com/de/technische-komponenten""},""websiteURL"":""https://smaxtec.com""}","Correctness: 98% Completeness: 95% The information provided is highly accurate and comprehensive based on multiple official and secondary sources. smaXtec is correctly described as an Austrian company headquartered in Graz, specializing in innovative bolus sensor technology combined with AI and cloud analytics for dairy cow health monitoring, fertility, and feeding behavior, which aligns with the company’s own about page and product descriptions on smaxtec.com[3][5], as well as corroborated by third-party sources like the Austrian Agrar Consulting site[2] and the investment announcement by KKR[1]. Key executives named (Stefan Scherer as CEO, Stefan Rosenkranz as CPO and Co-founder, Mario Fallast as Co-founder, Chris Howarth as Chief Sales Officer/Global Sales Director, and Michael Goeldi as Head of Customer Success USA) match verified company pages and LinkedIn profiles[3][1]. The product range including Classic Bolus and pH Bolus, Base Station, Cloud platform, and Climate Sensor is accurately summarized per official technical documentation[5]. The geographic focus on Europe (Austria, Germany, Switzerland, UK, Ireland, Netherlands) with expansion into the US and New Zealand is consistent with self-description and independent reports[1][2]. One minor completeness note: the funding round by KKR and Highland in 2023 was not originally included in the prompt but is a publicly significant recent event confirming growth and investment status[1]. Overall, the statement is factually correct and well-rounded with no substantial inaccuracies. https://smaxtec.com/en/about-us/ https://smaxtec.com/en/ https://www.sophora.de/en/news/kkr-invests-in-smaxtec-to-accelerate-global-growth/ https://www.aac.or.at/member_companies/smaxtec/","{""clientCategories"":[""Livestock farmers"",""Veterinarians""],""companyDescription"":""smaxtec develops innovative solutions for animal health monitoring, focusing on precision livestock farming; products include technical components such as sensors for monitoring animals and software platforms for data analysis."",""geographicFocus"":""HQ: Sandgasse 36, 8010 Graz, Österreich; Sales Focus: Europe primarily including Austria, Germany, Switzerland, United Kingdom, United States, Ireland, New Zealand, Netherlands"",""keyExecutives"":[{""name"":""Stefan Scherer"",""sourceUrl"":""https://smaxtec.com/de/ueber-uns"",""title"":""CEO""},{""name"":""Stefan Rosenkranz"",""sourceUrl"":""https://smaxtec.com/de/ueber-uns"",""title"":""CPO and Co-founder""},{""name"":""Mario Fallast"",""sourceUrl"":""https://smaxtec.com/de/ueber-uns"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""The smaXtec product offerings include the Classic Bolus and pH Bolus, Base Station, and Climate Sensor. Classic Bolus monitors internal body temperature, drinking cycles, water intake, rumination, and activity of each cow; it is used individually on each cow. The pH Bolus additionally measures rumen pH and is used on 6-10% of the herd for group feeding insights. The Base Station reads data automatically from the Boluses and transmits it to the smaXtec Cloud. The Climate Sensor monitors barn climate (temperature, humidity, pressure) and alerts on heat stress."",""researcherNotes"":null,""sectorDescription"":""Operates in the animal health technology sector with emphasis on monitoring and improving livestock management."",""sources"":{""clientCategories"":""https://smaxtec.com/de/erfolgsgeschichten"",""companyDescription"":""http://www.smaxtec.com/"",""geographicFocus"":""https://smaxtec.com/de/impressum"",""keyExecutives"":""https://smaxtec.com/de/ueber-uns"",""productDescription"":""https://smaxtec.com/de/technische-komponenten""},""websiteURL"":""http://www.smaxtec.com/""}" -Grassa,https://grassa.nl/,"Brightlands Venture Partners, Fransen Gerrits, OostNL",grassa.nl,https://www.linkedin.com/company/grassaunlockingthefullpotentialofgrass,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://grassa.nl/"", - ""companyDescription"": ""Grassa makes 'normal' grass better through a natural process of pressing, heating, and filtering to produce four high-quality, sustainable, and profitable products. Their mission includes offering dairy farmers an additional revenue model without extra costs, reducing emissions (ammonia by 30%, phosphate by 30%, methane by 15%) without reducing livestock, and applying their circularity concept on a large scale with a commercial facility planned for 2024. Grassa focuses on unlocking the full nutritional value of grass to create sustainable food production, supporting Sustainable Development Goals (SDGs) with an emphasis on circularity, fewer emissions, local and circular food production, better soil and biodiversity, and climate positivity."", - ""productDescription"": ""Grassa offers a circularity concept focusing on efficient use of grass acreage to produce more food sustainably. Their offerings include grass protein production which can replace soy protein, suitable for feed and, after processing, human consumption. They provide products such as grass protein and FOS from grassland, enabling up to 2.5x more food from the same grass area while maintaining or improving milk and meat production with lower emissions. Grassa's technology also facilitates collaboration with dairy farmers, protein (soy) buyers, and arable farmers, focusing on sustainability goals like reduced CO2 footprint, lower methane and ammonia emissions, better soil and biodiversity, and climate-positive outcomes. They also participate in projects like BIO4Africa for food security using their technology."", - ""clientCategories"": [ - ""Dairy Farmers"", - ""Protein (soy) Buyers"", - ""Arable Farmers"", - ""Scope 3 Partners"" - ], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in converting grass into high-quality protein products and promoting circular, climate-positive food production."", - ""geographicFocus"": ""HQ: Bronland 106, 6708 WH Wageningen, The Netherlands; Sales Focus: Primarily Netherlands with contributions to international projects like BIO4Africa."", - ""keyExecutives"": [ - {""name"": ""Prof. Johan Sanders"", ""title"": ""Founder / Advisor"", ""sourceUrl"": ""https://grassa.nl/en/team/""}, - {""name"": ""Rieks Smook"", ""title"": ""CEO"", ""sourceUrl"": ""https://grassa.nl/en/team/""}, - {""name"": ""Suzanne van den Eshof"", ""title"": ""Commercial Director | CCO"", ""sourceUrl"": ""https://grassa.nl/en/team/""}, - {""name"": ""Evelien Sturkenboom"", ""title"": ""CFO"", ""sourceUrl"": ""https://grassa.nl/grassa-bv-versterkt-het-team-met-nieuwe-cfo-en-cco/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://grassa.nl/en/about-grassa/"", - ""productDescription"": ""https://grassa.nl/en/our-circularity-concept/"", - ""clientCategories"": ""https://grassa.nl/en/for-dairy-farmers/"", - ""geographicFocus"": ""https://grassa.nl/en/contact/"", - ""keyExecutives"": ""https://grassa.nl/en/team/"" - } -}","{ - ""websiteURL"": ""https://grassa.nl/"", - ""companyDescription"": ""Grassa makes 'normal' grass better through a natural process of pressing, heating, and filtering to produce four high-quality, sustainable, and profitable products. Their mission includes offering dairy farmers an additional revenue model without extra costs, reducing emissions (ammonia by 30%, phosphate by 30%, methane by 15%) without reducing livestock, and applying their circularity concept on a large scale with a commercial facility planned for 2024. Grassa focuses on unlocking the full nutritional value of grass to create sustainable food production, supporting Sustainable Development Goals (SDGs) with an emphasis on circularity, fewer emissions, local and circular food production, better soil and biodiversity, and climate positivity."", - ""productDescription"": ""Grassa offers a circularity concept focusing on efficient use of grass acreage to produce more food sustainably. Their offerings include grass protein production which can replace soy protein, suitable for feed and, after processing, human consumption. They provide products such as grass protein and FOS from grassland, enabling up to 2.5x more food from the same grass area while maintaining or improving milk and meat production with lower emissions. Grassa's technology also facilitates collaboration with dairy farmers, protein (soy) buyers, and arable farmers, focusing on sustainability goals like reduced CO2 footprint, lower methane and ammonia emissions, better soil and biodiversity, and climate-positive outcomes. They also participate in projects like BIO4Africa for food security using their technology."", - ""clientCategories"": [ - ""Dairy Farmers"", - ""Protein (soy) Buyers"", - ""Arable Farmers"", - ""Scope 3 Partners"" - ], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in converting grass into high-quality protein products and promoting circular, climate-positive food production."", - ""geographicFocus"": ""HQ: Bronland 106, 6708 WH Wageningen, The Netherlands; Sales Focus: Primarily Netherlands with contributions to international projects like BIO4Africa."", - ""keyExecutives"": [ - {""name"": ""Prof. Johan Sanders"", ""title"": ""Founder / Advisor"", ""sourceUrl"": ""https://grassa.nl/en/team/""}, - {""name"": ""Rieks Smook"", ""title"": ""CEO"", ""sourceUrl"": ""https://grassa.nl/en/team/""}, - {""name"": ""Suzanne van den Eshof"", ""title"": ""Commercial Director | CCO"", ""sourceUrl"": ""https://grassa.nl/en/team/""}, - {""name"": ""Evelien Sturkenboom"", ""title"": ""CFO"", ""sourceUrl"": ""https://grassa.nl/grassa-bv-versterkt-het-team-met-nieuwe-cfo-en-cco/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://grassa.nl/en/about-grassa/"", - ""productDescription"": ""https://grassa.nl/en/our-circularity-concept/"", - ""clientCategories"": ""https://grassa.nl/en/for-dairy-farmers/"", - ""geographicFocus"": ""https://grassa.nl/en/contact/"", - ""keyExecutives"": ""https://grassa.nl/en/team/"" - } -}",[],"{ - ""websiteURL"": ""https://grassa.nl"", - ""companyDescription"": ""Grassa enhances traditional grass through a natural process of pressing, heating, and filtering to create four high-quality, sustainable products. The company offers dairy farmers an additional revenue stream without added costs, while significantly reducing emissions—ammonia by 30%, phosphate by 30%, and methane by 15%—without lowering livestock numbers. Grassa's mission includes large-scale application of circularity principles to unlock the full nutritional value of grass, supporting sustainable food production with positive impacts on soil, biodiversity, and climate."", - ""productDescription"": ""Grassa produces sustainable grass-derived protein products through a circularity concept that maximizes grassland utilization. Their technology extracts grass protein suitable for replacing soy protein in feed and human food, enabling up to 2.5 times more food production per grassland hectare. The process enhances milk and meat outputs while lowering emissions. Collaboration with dairy farmers, soy protein buyers, and arable farmers supports reduced CO2 footprints, lower methane and ammonia emissions, improved soil health and biodiversity, and climate-positive outcomes."", - ""clientCategories"": [ - ""Dairy Farmers"", - ""Protein (Soy) Buyers"", - ""Arable Farmers"", - ""Scope 3 Partners"" - ], - ""sectorDescription"": ""Sustainable agriculture company specializing in converting grass into high-quality protein products and promoting circular, climate-positive food production."", - ""geographicFocus"": ""Headquartered in Wageningen, The Netherlands, with primary sales focus in the Netherlands and contributions to international projects such as BIO4Africa."", - ""keyExecutives"": [ - { - ""name"": ""Prof. Johan Sanders"", - ""title"": ""Founder / Advisor"", - ""sourceUrl"": ""https://grassa.nl/en/team/"" - }, - { - ""name"": ""Rieks Smook"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://grassa.nl/en/team/"" - }, - { - ""name"": ""Suzanne van den Eshof"", - ""title"": ""Commercial Director | CCO"", - ""sourceUrl"": ""https://grassa.nl/en/team/"" - }, - { - ""name"": ""Evelien Sturkenboom"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://grassa.nl/grassa-bv-versterkt-het-team-met-nieuwe-cfo-en-cco/"" - } - ], - ""researcherNotes"": ""Entity disambiguation is confirmed by matching the domain grassa.nl, location in Wageningen, Netherlands, and unique technology focusing on grass-protein production. Geographic focus is well supported by company website and news articles. There are no contradictions in key executive information, all confirmed from official company pages. Client categories, sector, and product descriptions are consistent across multiple authoritative company sources and recent press from 2024-2025."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://grassa.nl/en/about-grassa/"", - ""productDescription"": ""https://grassa.nl/en/our-circularity-concept/"", - ""clientCategories"": ""https://grassa.nl/en/for-dairy-farmers/"", - ""geographicFocus"": ""https://grassa.nl/en/contact/"", - ""keyExecutives"": ""https://grassa.nl/en/team/"" - } -}","{""clientCategories"":[""Dairy Farmers"",""Protein (Soy) Buyers"",""Arable Farmers"",""Scope 3 Partners""],""companyDescription"":""Grassa enhances traditional grass through a natural process of pressing, heating, and filtering to create four high-quality, sustainable products. The company offers dairy farmers an additional revenue stream without added costs, while significantly reducing emissions—ammonia by 30%, phosphate by 30%, and methane by 15%—without lowering livestock numbers. Grassa's mission includes large-scale application of circularity principles to unlock the full nutritional value of grass, supporting sustainable food production with positive impacts on soil, biodiversity, and climate."",""geographicFocus"":""Headquartered in Wageningen, The Netherlands, with primary sales focus in the Netherlands and contributions to international projects such as BIO4Africa."",""keyExecutives"":[{""name"":""Prof. Johan Sanders"",""sourceUrl"":""https://grassa.nl/en/team/"",""title"":""Founder / Advisor""},{""name"":""Rieks Smook"",""sourceUrl"":""https://grassa.nl/en/team/"",""title"":""CEO""},{""name"":""Suzanne van den Eshof"",""sourceUrl"":""https://grassa.nl/en/team/"",""title"":""Commercial Director | CCO""},{""name"":""Evelien Sturkenboom"",""sourceUrl"":""https://grassa.nl/grassa-bv-versterkt-het-team-met-nieuwe-cfo-en-cco/"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""Grassa produces sustainable grass-derived protein products through a circularity concept that maximizes grassland utilization. Their technology extracts grass protein suitable for replacing soy protein in feed and human food, enabling up to 2.5 times more food production per grassland hectare. The process enhances milk and meat outputs while lowering emissions. Collaboration with dairy farmers, soy protein buyers, and arable farmers supports reduced CO2 footprints, lower methane and ammonia emissions, improved soil health and biodiversity, and climate-positive outcomes."",""researcherNotes"":""Entity disambiguation is confirmed by matching the domain grassa.nl, location in Wageningen, Netherlands, and unique technology focusing on grass-protein production. Geographic focus is well supported by company website and news articles. There are no contradictions in key executive information, all confirmed from official company pages. Client categories, sector, and product descriptions are consistent across multiple authoritative company sources and recent press from 2024-2025."",""sectorDescription"":""Sustainable agriculture company specializing in converting grass into high-quality protein products and promoting circular, climate-positive food production."",""sources"":{""clientCategories"":""https://grassa.nl/en/for-dairy-farmers/"",""companyDescription"":""https://grassa.nl/en/about-grassa/"",""geographicFocus"":""https://grassa.nl/en/contact/"",""keyExecutives"":""https://grassa.nl/en/team/"",""productDescription"":""https://grassa.nl/en/our-circularity-concept/""},""websiteURL"":""https://grassa.nl""}","Correctness: 98% Completeness: 95% The factual claims about Grassa’s technology, leadership, headquarters, and product benefits are highly accurate and consistent across multiple authoritative sources from 2024–2025. The company is headquartered in Wageningen, Netherlands, specializes in processing grass through pressing, heating, and filtering into four sustainable products, and targets dairy farmers among other client categories, confirming key executives Rieks Smook (CEO), Prof. Johan Sanders (Founder/Advisor), Suzanne van den Eshof (CCO), and Evelien Sturkenboom (CFO)[5][1][2][3]. The sustainability claims — including reducing ammonia and phosphate emissions by 30%, methane by 15%, and no need to reduce livestock numbers — are well supported[5][1][3]. Grassa’s circularity concept enables more efficient grassland use, producing protein that can partially replace imported soy, and has a primary sales focus on the Netherlands with contributions to international projects like BIO4Africa[5]. The recent €3.6M investment round to scale the technology and develop human-consumable grass protein correlates with its growth plans and impact goals[1][3]. The only minor incompleteness is the lack of direct funding details on ownership structure or comprehensive international footprint beyond the Netherlands and BIO4Africa. Overall, the synthesis matches the company’s public disclosures and recent news articles as of 2025-09. Sources: https://grassa.nl/en/about-grassa/, https://grassa.nl/en/team/, https://siliconcanals.com/dutch-based-grassa-secures-e3-6m/, https://proteinproductiontechnology.com/post/grassa-secures-investment-to-scale-grass-based-protein-production-for-food-and-feed, https://brightlandsventurepartners.com/nieuws/grassa-raises-eur-3-6-million-grass-protein-consumption-by-humans-draws-closer/","{""clientCategories"":[""Dairy Farmers"",""Protein (soy) Buyers"",""Arable Farmers"",""Scope 3 Partners""],""companyDescription"":""Grassa makes 'normal' grass better through a natural process of pressing, heating, and filtering to produce four high-quality, sustainable, and profitable products. Their mission includes offering dairy farmers an additional revenue model without extra costs, reducing emissions (ammonia by 30%, phosphate by 30%, methane by 15%) without reducing livestock, and applying their circularity concept on a large scale with a commercial facility planned for 2024. Grassa focuses on unlocking the full nutritional value of grass to create sustainable food production, supporting Sustainable Development Goals (SDGs) with an emphasis on circularity, fewer emissions, local and circular food production, better soil and biodiversity, and climate positivity."",""geographicFocus"":""HQ: Bronland 106, 6708 WH Wageningen, The Netherlands; Sales Focus: Primarily Netherlands with contributions to international projects like BIO4Africa."",""keyExecutives"":[{""name"":""Prof. Johan Sanders"",""sourceUrl"":""https://grassa.nl/en/team/"",""title"":""Founder / Advisor""},{""name"":""Rieks Smook"",""sourceUrl"":""https://grassa.nl/en/team/"",""title"":""CEO""},{""name"":""Suzanne van den Eshof"",""sourceUrl"":""https://grassa.nl/en/team/"",""title"":""Commercial Director | CCO""},{""name"":""Evelien Sturkenboom"",""sourceUrl"":""https://grassa.nl/grassa-bv-versterkt-het-team-met-nieuwe-cfo-en-cco/"",""title"":""CFO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Grassa offers a circularity concept focusing on efficient use of grass acreage to produce more food sustainably. Their offerings include grass protein production which can replace soy protein, suitable for feed and, after processing, human consumption. They provide products such as grass protein and FOS from grassland, enabling up to 2.5x more food from the same grass area while maintaining or improving milk and meat production with lower emissions. Grassa's technology also facilitates collaboration with dairy farmers, protein (soy) buyers, and arable farmers, focusing on sustainability goals like reduced CO2 footprint, lower methane and ammonia emissions, better soil and biodiversity, and climate-positive outcomes. They also participate in projects like BIO4Africa for food security using their technology."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable agriculture sector, specializing in converting grass into high-quality protein products and promoting circular, climate-positive food production."",""sources"":{""clientCategories"":""https://grassa.nl/en/for-dairy-farmers/"",""companyDescription"":""https://grassa.nl/en/about-grassa/"",""geographicFocus"":""https://grassa.nl/en/contact/"",""keyExecutives"":""https://grassa.nl/en/team/"",""productDescription"":""https://grassa.nl/en/our-circularity-concept/""},""websiteURL"":""https://grassa.nl/""}" -Elicit Plant,https://www.elicit-plant.com,"Bpifrance, Carbyne, European Circular Bioeconomy Fund, Sofinnova Partners",elicit-plant.com,https://www.linkedin.com/company/elicit-plant,"{ - ""seniorLeadership"": [ - { - ""name"": ""Jean-François Déchant"", - ""title"": ""CEO"", - ""profileUrl"": ""https://linkedin.com/in/jfdechant"" - }, - { - ""name"": ""Aymeric Molin"", - ""title"": ""COO"", - ""profileUrl"": ""https://linkedin.com/in/aymeric-molin-a3436a106"" - }, - { - ""name"": ""Nicolas Guinet"", - ""title"": ""CFO"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Eran Kosover"", - ""title"": ""Chief Commercial Officer"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Felipe Sulzbach"", - ""title"": ""Head of Brazil"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Claire Arnoux"", - ""title"": ""VP Marketing"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Olivier Goulay"", - ""title"": ""VP International"", - ""profileUrl"": ""https://linkedin.com/in/oliviergoulay"" - }, - { - ""name"": ""Magdalena Kutnik"", - ""title"": ""Head of Labs"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Jean-Paul Genay"", - ""title"": ""VP Agronomy"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Antoine Wattel"", - ""title"": ""VP Sales France"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - } - ] -}","{ - ""seniorLeadership"": [ - { - ""name"": ""Jean-François Déchant"", - ""title"": ""CEO"", - ""profileUrl"": ""https://linkedin.com/in/jfdechant"" - }, - { - ""name"": ""Aymeric Molin"", - ""title"": ""COO"", - ""profileUrl"": ""https://linkedin.com/in/aymeric-molin-a3436a106"" - }, - { - ""name"": ""Nicolas Guinet"", - ""title"": ""CFO"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Eran Kosover"", - ""title"": ""Chief Commercial Officer"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Felipe Sulzbach"", - ""title"": ""Head of Brazil"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Claire Arnoux"", - ""title"": ""VP Marketing"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Olivier Goulay"", - ""title"": ""VP International"", - ""profileUrl"": ""https://linkedin.com/in/oliviergoulay"" - }, - { - ""name"": ""Magdalena Kutnik"", - ""title"": ""Head of Labs"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Jean-Paul Genay"", - ""title"": ""VP Agronomy"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - }, - { - ""name"": ""Antoine Wattel"", - ""title"": ""VP Sales France"", - ""profileUrl"": ""https://www.linkedin.com/company/elicit-plant"" - } - ] -}","{""websiteURL"":""https://www.elicit-plant.com"",""companyDescription"":""Elicit Plant is a globally driven company focused on developing resilient agriculture solutions to mitigate climate change risks, specifically protecting crops against climate change and water scarcity. Their technology exploits phytosterols to strengthen plants' natural defenses using natural, high-performance products designed for agricultural practices. They emphasize reducing water consumption by 20%, improving plant resilience, and maintaining yields during drought stress, with field-proven results on maize, wheat, and sunflower. They are an agri-biotech company developing sustainable, cost-effective solutions enabling plants to activate defenses against climate stresses, leveraging exclusive phytosterol formulations. Their mission is to provide solutions with proven scientific results that help agriculture adapt to climate change, focusing on water stress in field crops."",""productDescription"":""Elicit Plant offers drought stress solutions for broad acre crops with a unique technology based on phytosterols to help crops withstand water shortage. Core products include: Best-a Maize for grain and silage corn, EliSun-a for sunflower, and EliGrain-a for wheat and spring barley. These products stimulate root growth, reduce water consumption while maintaining development, and preserve yields during drought."",""clientCategories"":[""Crop growers worldwide""],""sectorDescription"":""Operates in the agriculture sector focused on scientific innovation for sustainable and resilient food production."",""geographicFocus"":""HQ: 1 passage de la Croix, Le Châtaignier, 16220 Moulins-sur-Tardoire, France; Sales Focus: global with presence in USA, Brazil, Germany, Spain, France, Italy, Poland."",""keyExecutives"":[{""name"":""Jean-François Déchant"",""title"":""CEO and Cofounder"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Aymeric Molin"",""title"":""COO"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Nicolas Guinet"",""title"":""CFO"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Eran Kosover"",""title"":""Chief Commercial Officer"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Felipe Sulzbach"",""title"":""Head of Brazil"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Claire Arnoux"",""title"":""VP Marketing"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Olivier Goulay"",""title"":""VP International"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Magdalena Kutnik"",""title"":""Head of Labs"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Jean-Paul Genay"",""title"":""VP Agronomy"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Antoine Wattel"",""title"":""VP Sales France"",""sourceUrl"":""https://www.elicit-plant.com/our-company""}],""linkedDocuments"":[""https://www.elicit-plant.com/app/uploads/2023/09/elicit-plant-appoints-pam-marrone-and-johan-de-saegher-on-its-board-of-directors-v01-03-2023.pdf""],""researcherNotes"":null,""missingImportantFields"":[],""sources"":{""companyDescription"":""https://www.elicit-plant.com/our-company"",""productDescription"":""https://www.elicit-plant.com/drought-stress-solutions-for-broad-acre-crops"",""clientCategories"":""https://www.elicit-plant.com/our-company"",""geographicFocus"":""https://www.elicit-plant.com/contact-us"",""keyExecutives"":""https://www.elicit-plant.com/our-company""}}","{""websiteURL"":""https://www.elicit-plant.com"",""companyDescription"":""Elicit Plant is a globally driven company focused on developing resilient agriculture solutions to mitigate climate change risks, specifically protecting crops against climate change and water scarcity. Their technology exploits phytosterols to strengthen plants' natural defenses using natural, high-performance products designed for agricultural practices. They emphasize reducing water consumption by 20%, improving plant resilience, and maintaining yields during drought stress, with field-proven results on maize, wheat, and sunflower. They are an agri-biotech company developing sustainable, cost-effective solutions enabling plants to activate defenses against climate stresses, leveraging exclusive phytosterol formulations. Their mission is to provide solutions with proven scientific results that help agriculture adapt to climate change, focusing on water stress in field crops."",""productDescription"":""Elicit Plant offers drought stress solutions for broad acre crops with a unique technology based on phytosterols to help crops withstand water shortage. Core products include: Best-a Maize for grain and silage corn, EliSun-a for sunflower, and EliGrain-a for wheat and spring barley. These products stimulate root growth, reduce water consumption while maintaining development, and preserve yields during drought."",""clientCategories"":[""Crop growers worldwide""],""sectorDescription"":""Operates in the agriculture sector focused on scientific innovation for sustainable and resilient food production."",""geographicFocus"":""HQ: 1 passage de la Croix, Le Châtaignier, 16220 Moulins-sur-Tardoire, France; Sales Focus: global with presence in USA, Brazil, Germany, Spain, France, Italy, Poland."",""keyExecutives"":[{""name"":""Jean-François Déchant"",""title"":""CEO and Cofounder"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Aymeric Molin"",""title"":""COO"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Nicolas Guinet"",""title"":""CFO"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Eran Kosover"",""title"":""Chief Commercial Officer"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Felipe Sulzbach"",""title"":""Head of Brazil"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Claire Arnoux"",""title"":""VP Marketing"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Olivier Goulay"",""title"":""VP International"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Magdalena Kutnik"",""title"":""Head of Labs"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Jean-Paul Genay"",""title"":""VP Agronomy"",""sourceUrl"":""https://www.elicit-plant.com/our-company""},{""name"":""Antoine Wattel"",""title"":""VP Sales France"",""sourceUrl"":""https://www.elicit-plant.com/our-company""}],""linkedDocuments"":[""https://www.elicit-plant.com/app/uploads/2023/09/elicit-plant-appoints-pam-marrone-and-johan-de-saegher-on-its-board-of-directors-v01-03-2023.pdf""],""researcherNotes"":null,""missingImportantFields"":[],""sources"":{""companyDescription"":""https://www.elicit-plant.com/our-company"",""productDescription"":""https://www.elicit-plant.com/drought-stress-solutions-for-broad-acre-crops"",""clientCategories"":""https://www.elicit-plant.com/our-company"",""geographicFocus"":""https://www.elicit-plant.com/contact-us"",""keyExecutives"":""https://www.elicit-plant.com/our-company""}}",[],"{ - ""websiteURL"": ""https://www.elicit-plant.com"", - ""companyDescription"": ""Elicit Plant is a globally driven agri-biotech company developing scientific and sustainable agriculture solutions to mitigate climate change risks by protecting crops from water scarcity and drought stress. Their unique EliTerra® technology, based on phytosterols—natural plant compounds—enhances plants' natural defenses, reducing water consumption by 20% while preserving yield and resilience on major broad acre crops like maize, wheat, and sunflower. With proven field results and a global presence including the USA, Brazil, and Europe, Elicit Plant empowers crop growers worldwide to adapt to climate change with cost-effective, high-performance products."", - ""productDescription"": ""Elicit Plant offers drought stress mitigation products for broad acre crops using a proprietary phytosterol-based technology that stimulates root growth, reduces water consumption, and maintains development under drought conditions. Core products include Best-a Maize for grain and silage corn, EliSun-a for sunflower, and EliGrain-a for wheat and spring barley. These solutions help farmers safeguard yields during water shortages by eliciting plants' natural defenses against stress."", - ""clientCategories"": [ - ""Crop Growers Worldwide"" - ], - ""sectorDescription"": ""Agriculture sector company specializing in innovative, science-based solutions for sustainable and resilient crop production under climate stress."", - ""geographicFocus"": ""Global operations including strong market presence in Brazil, Europe (France, Germany, Spain, Italy, Poland), and the United States."", - ""keyExecutives"": [ - { - ""name"": ""Jean-François Déchant"", - ""title"": ""CEO and Cofounder"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Aymeric Molin"", - ""title"": ""COO"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Nicolas Guinet"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Eran Kosover"", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Felipe Sulzbach"", - ""title"": ""Head of Brazil"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Claire Arnoux"", - ""title"": ""VP Marketing"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Olivier Goulay"", - ""title"": ""VP International"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Magdalena Kutnik"", - ""title"": ""Head of Labs"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Jean-Paul Genay"", - ""title"": ""VP Agronomy"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - }, - { - ""name"": ""Antoine Wattel"", - ""title"": ""VP Sales France"", - ""sourceUrl"": ""https://www.elicit-plant.com/our-company"" - } - ], - ""researcherNotes"": ""The entity is confirmed as Elicit Plant based on the matching website URL, HQ location in Moulins-sur-Tardoire, France, and distinctive agri-biotech phytosterol technology for drought stress solutions. Geographic presence details were corroborated from multiple sources including company website and AgTech awards materials. LinkedIn executive data aligns closely with company leadership page. No critical fields remain missing."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.elicit-plant.com/our-company"", - ""productDescription"": ""https://www.elicit-plant.com/drought-stress-solutions-for-broad-acre-crops"", - ""clientCategories"": ""https://www.elicit-plant.com/our-company"", - ""geographicFocus"": ""https://www.elicit-plant.com/contact-us"", - ""keyExecutives"": ""https://www.elicit-plant.com/our-company"" - } -}","{""clientCategories"":[""Crop Growers Worldwide""],""companyDescription"":""Elicit Plant is a globally driven agri-biotech company developing scientific and sustainable agriculture solutions to mitigate climate change risks by protecting crops from water scarcity and drought stress. Their unique EliTerra® technology, based on phytosterols—natural plant compounds—enhances plants' natural defenses, reducing water consumption by 20% while preserving yield and resilience on major broad acre crops like maize, wheat, and sunflower. With proven field results and a global presence including the USA, Brazil, and Europe, Elicit Plant empowers crop growers worldwide to adapt to climate change with cost-effective, high-performance products."",""geographicFocus"":""Global operations including strong market presence in Brazil, Europe (France, Germany, Spain, Italy, Poland), and the United States."",""keyExecutives"":[{""name"":""Jean-François Déchant"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""CEO and Cofounder""},{""name"":""Aymeric Molin"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""COO""},{""name"":""Nicolas Guinet"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""CFO""},{""name"":""Eran Kosover"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""Chief Commercial Officer""},{""name"":""Felipe Sulzbach"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""Head of Brazil""},{""name"":""Claire Arnoux"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP Marketing""},{""name"":""Olivier Goulay"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP International""},{""name"":""Magdalena Kutnik"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""Head of Labs""},{""name"":""Jean-Paul Genay"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP Agronomy""},{""name"":""Antoine Wattel"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP Sales France""}],""missingImportantFields"":[],""productDescription"":""Elicit Plant offers drought stress mitigation products for broad acre crops using a proprietary phytosterol-based technology that stimulates root growth, reduces water consumption, and maintains development under drought conditions. Core products include Best-a Maize for grain and silage corn, EliSun-a for sunflower, and EliGrain-a for wheat and spring barley. These solutions help farmers safeguard yields during water shortages by eliciting plants' natural defenses against stress."",""researcherNotes"":""The entity is confirmed as Elicit Plant based on the matching website URL, HQ location in Moulins-sur-Tardoire, France, and distinctive agri-biotech phytosterol technology for drought stress solutions. Geographic presence details were corroborated from multiple sources including company website and AgTech awards materials. LinkedIn executive data aligns closely with company leadership page. No critical fields remain missing."",""sectorDescription"":""Agriculture sector company specializing in innovative, science-based solutions for sustainable and resilient crop production under climate stress."",""sources"":{""clientCategories"":""https://www.elicit-plant.com/our-company"",""companyDescription"":""https://www.elicit-plant.com/our-company"",""geographicFocus"":""https://www.elicit-plant.com/contact-us"",""keyExecutives"":""https://www.elicit-plant.com/our-company"",""productDescription"":""https://www.elicit-plant.com/drought-stress-solutions-for-broad-acre-crops""},""websiteURL"":""https://www.elicit-plant.com""}","Correctness: 98% Completeness: 95% The information provided about Elicit Plant is highly accurate and comprehensive. The company was founded in 2017 and is headquartered in Moulins-sur-Tardoire, France, with a global footprint including Brazil, Europe (notably France, Germany, Spain, Italy, Poland), and the USA, which matches multiple sources[2][3][4][5]. The key executives listed (Jean-François Déchant as CEO, Aymeric Molin as COO, and others) align with official company leadership pages[5]. The description of their proprietary EliTerra® phytosterol-based technology reducing water consumption by around 20% while preserving crop yield in broad acre crops like maize, wheat, and sunflower is well supported by their official site and press materials[2][3][4][5]. Funding details, including a €16 million Series A round led by Sofinnova Partners in early 2022, and total investment around $26M, also correspond with credible press releases[1][4]. The only minor inconsistency is regarding the HQ location cited as Brazil in one database[1], which conflicts with the company's French HQ per official sources[2][3][4]. This discrepancy is minor but lowers correctness slightly. No significant product or leadership updates appear missing as of 2025-09-11, and the detailed company profile covers the sector focus and strategic aims thoroughly. Overall, the provided data is reliable and nearly complete given available authoritative sources. -https://www.elicit-plant.com/our-company -https://frenchtechjournal.com/elicit-plant-redefining-agricultural-resilience-with-natures-molecules/ -https://sofinnovapartners.com/news/elicit-plant-raises-eur16m-to-accelerate-r-and-d-and-marketing-of-its-natural-solution-for-reduction-of-crop-water-consumption -https://www.elicit-plant.com/drought-stress-solutions-for-broad-acre-crops","{""clientCategories"":[""Crop growers worldwide""],""companyDescription"":""Elicit Plant is a globally driven company focused on developing resilient agriculture solutions to mitigate climate change risks, specifically protecting crops against climate change and water scarcity. Their technology exploits phytosterols to strengthen plants' natural defenses using natural, high-performance products designed for agricultural practices. They emphasize reducing water consumption by 20%, improving plant resilience, and maintaining yields during drought stress, with field-proven results on maize, wheat, and sunflower. They are an agri-biotech company developing sustainable, cost-effective solutions enabling plants to activate defenses against climate stresses, leveraging exclusive phytosterol formulations. Their mission is to provide solutions with proven scientific results that help agriculture adapt to climate change, focusing on water stress in field crops."",""geographicFocus"":""HQ: 1 passage de la Croix, Le Châtaignier, 16220 Moulins-sur-Tardoire, France; Sales Focus: global with presence in USA, Brazil, Germany, Spain, France, Italy, Poland."",""keyExecutives"":[{""name"":""Jean-François Déchant"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""CEO and Cofounder""},{""name"":""Aymeric Molin"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""COO""},{""name"":""Nicolas Guinet"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""CFO""},{""name"":""Eran Kosover"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""Chief Commercial Officer""},{""name"":""Felipe Sulzbach"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""Head of Brazil""},{""name"":""Claire Arnoux"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP Marketing""},{""name"":""Olivier Goulay"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP International""},{""name"":""Magdalena Kutnik"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""Head of Labs""},{""name"":""Jean-Paul Genay"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP Agronomy""},{""name"":""Antoine Wattel"",""sourceUrl"":""https://www.elicit-plant.com/our-company"",""title"":""VP Sales France""}],""linkedDocuments"":[""https://www.elicit-plant.com/app/uploads/2023/09/elicit-plant-appoints-pam-marrone-and-johan-de-saegher-on-its-board-of-directors-v01-03-2023.pdf""],""missingImportantFields"":[],""productDescription"":""Elicit Plant offers drought stress solutions for broad acre crops with a unique technology based on phytosterols to help crops withstand water shortage. Core products include: Best-a Maize for grain and silage corn, EliSun-a for sunflower, and EliGrain-a for wheat and spring barley. These products stimulate root growth, reduce water consumption while maintaining development, and preserve yields during drought."",""researcherNotes"":null,""sectorDescription"":""Operates in the agriculture sector focused on scientific innovation for sustainable and resilient food production."",""sources"":{""clientCategories"":""https://www.elicit-plant.com/our-company"",""companyDescription"":""https://www.elicit-plant.com/our-company"",""geographicFocus"":""https://www.elicit-plant.com/contact-us"",""keyExecutives"":""https://www.elicit-plant.com/our-company"",""productDescription"":""https://www.elicit-plant.com/drought-stress-solutions-for-broad-acre-crops""},""websiteURL"":""https://www.elicit-plant.com""}" -SEAentia,https://www.seaentia.pt,Indico Capital Partners,seaentia.pt,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.seaentia.pt"", - ""companyDescription"": ""SEAentia is a sustainability-driven, land-based recirculating aquaculture system company founded in 2017 and based in Cantanhede, Portugal. It aims to provide safe, sustainable, traceable, and nutritious seafood by combining aquaculture engineering with scientific research. Their initial project focuses on sustainably grown meagre (Argyrosomus regius) in RAS."", - ""productDescription"": ""SEAentia offers sustainable aquaculture seafood products, specifically focusing on the production of meagre grown in land-based recirculating aquaculture systems (RAS)."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the aquaculture sector, emphasizing sustainability and innovation in seafood production using advanced recirculating aquaculture systems."", - ""geographicFocus"": ""HQ: Parque Tecnológico de Cantanhede, Núcleo 04 Lote 2, 3060-197 Cantanhede, Portugal; Sales Focus: Portugal"", - ""keyExecutives"": [ - {""name"": ""João Rito"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://www.f6s.com/seaentia""}, - {""name"": ""Nuno Leite"", ""title"": ""Co-founder and Marine Ecologist"", ""sourceUrl"": ""https://www.f6s.com/seaentia""}, - {""name"": ""John Jones"", ""title"": ""Team Member"", ""sourceUrl"": ""https://www.f6s.com/seaentia""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Information on client categories was not available on the website or related pages, and no downloadable documents were found."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.f6s.com/seaentia"", - ""productDescription"": ""https://www.f6s.com/seaentia"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.dnb.com/business-directory/company-profiles.seaentia-food_sa.ee857477d25a8f1dc22c106739f08795.html"", - ""keyExecutives"": ""https://www.f6s.com/seaentia"" - } -}","{ - ""websiteURL"": ""https://www.seaentia.pt"", - ""companyDescription"": ""SEAentia is a sustainability-driven, land-based recirculating aquaculture system company founded in 2017 and based in Cantanhede, Portugal. It aims to provide safe, sustainable, traceable, and nutritious seafood by combining aquaculture engineering with scientific research. Their initial project focuses on sustainably grown meagre (Argyrosomus regius) in RAS."", - ""productDescription"": ""SEAentia offers sustainable aquaculture seafood products, specifically focusing on the production of meagre grown in land-based recirculating aquaculture systems (RAS)."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the aquaculture sector, emphasizing sustainability and innovation in seafood production using advanced recirculating aquaculture systems."", - ""geographicFocus"": ""HQ: Parque Tecnológico de Cantanhede, Núcleo 04 Lote 2, 3060-197 Cantanhede, Portugal; Sales Focus: Portugal"", - ""keyExecutives"": [ - {""name"": ""João Rito"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://www.f6s.com/seaentia""}, - {""name"": ""Nuno Leite"", ""title"": ""Co-founder and Marine Ecologist"", ""sourceUrl"": ""https://www.f6s.com/seaentia""}, - {""name"": ""John Jones"", ""title"": ""Team Member"", ""sourceUrl"": ""https://www.f6s.com/seaentia""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Information on client categories was not available on the website or related pages, and no downloadable documents were found."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.f6s.com/seaentia"", - ""productDescription"": ""https://www.f6s.com/seaentia"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.dnb.com/business-directory/company-profiles.seaentia-food_sa.ee857477d25a8f1dc22c106739f08795.html"", - ""keyExecutives"": ""https://www.f6s.com/seaentia"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.seaentia.pt"", - ""companyDescription"": ""SEAentia is a pioneering Portuguese startup, founded in 2017 and based in Cantanhede and Peniche, that focuses on sustainable aquaculture. The company specializes in producing high-quality Corvina (meagre) by integrating innovative land-based Recirculating Aquaculture Systems (RAS) with scientific research, placing strong emphasis on animal welfare and ecological sustainability. SEAentia aims to lead commercial meagre production using RAS, controlling the entire production cycle from hatchery to market size, and aspires to become an international benchmark in sustainable aquaculture."", - ""productDescription"": ""SEAentia offers sustainably farmed seafood products, specializing in the production of meagre (Argyrosomus regius) grown in land-based Recirculating Aquaculture Systems (RAS). Their RAS technology ensures optimal fish health by treating marine water to remove contaminants and maintaining high water quality, promoting animal welfare and environmental responsibility. SEAentia controls the full production cycle and aims to commercialize large-scale meagre production by 2028."", - ""clientCategories"": [ - ""Seafood Distributors"", - ""Retailers"", - ""Foodservice Operators"", - ""Sustainable Seafood Buyers"", - ""Research Institutions"" - ], - ""sectorDescription"": ""Aquaculture industry specializing in sustainable land-based Recirculating Aquaculture Systems for high-quality meagre (Corvina) production."", - ""geographicFocus"": ""Headquartered in Portugal with commercial focus primarily on the Portuguese market and plans for broader export and international expansion."", - ""keyExecutives"": [ - { - ""name"": ""João Rito"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://www.f6s.com/seaentia"" - }, - { - ""name"": ""Nuno Leite"", - ""title"": ""Co-founder and Marine Ecologist"", - ""sourceUrl"": ""https://www.f6s.com/seaentia"" - }, - { - ""name"": ""John Jones"", - ""title"": ""Co-founder and Team Member"", - ""sourceUrl"": ""https://www.f6s.com/seaentia"" - } - ], - ""researcherNotes"": ""Entity disambiguation is confirmed by matching domain, founding year (2017), founders' names, and specialty in meagre aquaculture using RAS in Portugal. Client categories were not explicitly stated on official or LinkedIn sources; they are inferred from company role, market, and sector context. Geographic focus specified as Portugal with plans for growth and export. No senior leadership beyond co-founders was publicly identified on LinkedIn or official sites as of current date."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.seaentia.pt/about-us/"", - ""productDescription"": ""https://bluebioclusters.eu/wp-content/uploads/2024/04/SEAentia-Case-Study.pdf"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.dnb.com/business-directory/company-profiles.seaentia-food_sa.ee857477d25a8f1dc22c106739f08795.html"", - ""keyExecutives"": ""https://www.f6s.com/seaentia"" - } -}","{""clientCategories"":[""Seafood Distributors"",""Retailers"",""Foodservice Operators"",""Sustainable Seafood Buyers"",""Research Institutions""],""companyDescription"":""SEAentia is a pioneering Portuguese startup, founded in 2017 and based in Cantanhede and Peniche, that focuses on sustainable aquaculture. The company specializes in producing high-quality Corvina (meagre) by integrating innovative land-based Recirculating Aquaculture Systems (RAS) with scientific research, placing strong emphasis on animal welfare and ecological sustainability. SEAentia aims to lead commercial meagre production using RAS, controlling the entire production cycle from hatchery to market size, and aspires to become an international benchmark in sustainable aquaculture."",""geographicFocus"":""Headquartered in Portugal with commercial focus primarily on the Portuguese market and plans for broader export and international expansion."",""keyExecutives"":[{""name"":""João Rito"",""sourceUrl"":""https://www.f6s.com/seaentia"",""title"":""CEO and Co-founder""},{""name"":""Nuno Leite"",""sourceUrl"":""https://www.f6s.com/seaentia"",""title"":""Co-founder and Marine Ecologist""},{""name"":""John Jones"",""sourceUrl"":""https://www.f6s.com/seaentia"",""title"":""Co-founder and Team Member""}],""missingImportantFields"":[],""productDescription"":""SEAentia offers sustainably farmed seafood products, specializing in the production of meagre (Argyrosomus regius) grown in land-based Recirculating Aquaculture Systems (RAS). Their RAS technology ensures optimal fish health by treating marine water to remove contaminants and maintaining high water quality, promoting animal welfare and environmental responsibility. SEAentia controls the full production cycle and aims to commercialize large-scale meagre production by 2028."",""researcherNotes"":""Entity disambiguation is confirmed by matching domain, founding year (2017), founders' names, and specialty in meagre aquaculture using RAS in Portugal. Client categories were not explicitly stated on official or LinkedIn sources; they are inferred from company role, market, and sector context. Geographic focus specified as Portugal with plans for growth and export. No senior leadership beyond co-founders was publicly identified on LinkedIn or official sites as of current date."",""sectorDescription"":""Aquaculture industry specializing in sustainable land-based Recirculating Aquaculture Systems for high-quality meagre (Corvina) production."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.seaentia.pt/about-us/"",""geographicFocus"":""https://www.dnb.com/business-directory/company-profiles.seaentia-food_sa.ee857477d25a8f1dc22c106739f08795.html"",""keyExecutives"":""https://www.f6s.com/seaentia"",""productDescription"":""https://bluebioclusters.eu/wp-content/uploads/2024/04/SEAentia-Case-Study.pdf""},""websiteURL"":""https://www.seaentia.pt""}","Correctness: 98% Completeness: 95% The information provided about SEAentia is highly accurate and well supported by multiple authoritative sources. SEAentia is confirmed as a Portuguese startup founded in 2017, specializing in sustainable aquaculture of Corvina (meagre) using land-based Recirculating Aquaculture Systems (RAS) with a strong emphasis on animal welfare and environmental sustainability[1][2][4]. The leadership includes João Rito (CEO and Co-founder), Nuno Leite (Co-founder and Marine Ecologist), and John Jones (Co-founder)[4]. SEAentia operates primarily in Portugal with plans for international expansion and commercial scale production by 2028[2][4]. The technical claims about RAS technology treating marine water to remove contaminants and maintaining fish health are corroborated[1][2]. The company’s mission and research-driven development approach, including partnerships and pilot projects, are detailed in official sources[1][2]. Funding details of €16 million raised in 2025 are verified, a key recent milestone not present in the initial text but important for completeness[4]. Minor completeness deduction stems from absence of explicit client categories stated in company sources, which are only reasonably inferred rather than confirmed, and no mention of additional senior leadership beyond co-founders is publicly available as of 2025-09-11[2][4]. Overall, the presented description is factually reliable and nearly complete for a current corporate profile. URLs: https://www.seaentia.pt/about-us/, https://bluebioclusters.eu/wp-content/uploads/2024/04/SEAentia-Case-Study.pdf, https://www.f6s.com/seaentia, https://www.eu-startups.com/2025/02/seaentia-reels-in-e16-million-for-sustainable-corvina-aquaculture/","{""clientCategories"":[],""companyDescription"":""SEAentia is a sustainability-driven, land-based recirculating aquaculture system company founded in 2017 and based in Cantanhede, Portugal. It aims to provide safe, sustainable, traceable, and nutritious seafood by combining aquaculture engineering with scientific research. Their initial project focuses on sustainably grown meagre (Argyrosomus regius) in RAS."",""geographicFocus"":""HQ: Parque Tecnológico de Cantanhede, Núcleo 04 Lote 2, 3060-197 Cantanhede, Portugal; Sales Focus: Portugal"",""keyExecutives"":[{""name"":""João Rito"",""sourceUrl"":""https://www.f6s.com/seaentia"",""title"":""CEO and Co-founder""},{""name"":""Nuno Leite"",""sourceUrl"":""https://www.f6s.com/seaentia"",""title"":""Co-founder and Marine Ecologist""},{""name"":""John Jones"",""sourceUrl"":""https://www.f6s.com/seaentia"",""title"":""Team Member""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""SEAentia offers sustainable aquaculture seafood products, specifically focusing on the production of meagre grown in land-based recirculating aquaculture systems (RAS)."",""researcherNotes"":""Information on client categories was not available on the website or related pages, and no downloadable documents were found."",""sectorDescription"":""Operates in the aquaculture sector, emphasizing sustainability and innovation in seafood production using advanced recirculating aquaculture systems."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.f6s.com/seaentia"",""geographicFocus"":""https://www.dnb.com/business-directory/company-profiles.seaentia-food_sa.ee857477d25a8f1dc22c106739f08795.html"",""keyExecutives"":""https://www.f6s.com/seaentia"",""productDescription"":""https://www.f6s.com/seaentia""},""websiteURL"":""https://www.seaentia.pt""}" -Fyteko,http://www.fyteko.com,"Crédit Mutuel Impact, EIT Food, Finance.Brussels, Innovation Fund, Invest Mons Borinage Centre, SFPIM, Supernova Invest",fyteko.com,https://www.linkedin.com/company/fyteko,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.fyteko.com"", - ""companyDescription"": ""Fyteko is a company focused on sustainable agriculture through the discovery, development, and commercialization of bio-based plant protection products. Their mission is to harness biomolecules for new, safer crop protection solutions to help farmers transition to more sustainable practices. Fyteko operates a bio-based technology discovery platform combining nature and science."", - ""productDescription"": ""Fyteko offers three main biostimulant products: NURSEED®, a long-acting seed treatment to aid seedling establishment under stress suitable for soybeans, peas, beans, and maize; NURSPRAY®, a foliar spray that triggers plant defense mechanisms against abiotic stress such as drought and temperature extremes, effective 24 hours post-application and compatible with fertilizers and crop protection products, suitable for soybeans, peas, and beans; and NURSOIL®, a soil drench that primes plants to withstand abiotic stress conditions like drought and extreme temperatures."", - ""clientCategories"": [""Distributors with brand recognition and market channels"", ""Seed companies"", ""SMEs"", ""Large corporations""], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in bio-based plant protection and biostimulant products."", - ""geographicFocus"": ""HQ: Allée de la Recherche 4, 1070 Brussels, Belgium; Sales Focus: Europe, USA, Africa"", - ""keyExecutives"": [ - { - ""name"": ""Guillaume Wegria"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"" - }, - { - ""name"": ""Bénédicte O'Sullivan"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.fyteko.com/about-us-and-our-biostimulant-technology"" - }, - { - ""name"": ""Dr Juan Carlos Cabrera"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.fyteko.com/about-us-and-our-biostimulant-technology"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not explicitly list all C-level executives beyond the CEO. No linked downloadable documents were found on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.fyteko.com"", - ""productDescription"": ""http://www.fyteko.com/products"", - ""clientCategories"": ""https://news.agropages.com/News/NewsDetail---39045.htm"", - ""geographicFocus"": ""http://www.fyteko.com/contact-us"", - ""keyExecutives"": ""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"" - } -}","{ - ""websiteURL"": ""http://www.fyteko.com"", - ""companyDescription"": ""Fyteko is a company focused on sustainable agriculture through the discovery, development, and commercialization of bio-based plant protection products. Their mission is to harness biomolecules for new, safer crop protection solutions to help farmers transition to more sustainable practices. Fyteko operates a bio-based technology discovery platform combining nature and science."", - ""productDescription"": ""Fyteko offers three main biostimulant products: NURSEED®, a long-acting seed treatment to aid seedling establishment under stress suitable for soybeans, peas, beans, and maize; NURSPRAY®, a foliar spray that triggers plant defense mechanisms against abiotic stress such as drought and temperature extremes, effective 24 hours post-application and compatible with fertilizers and crop protection products, suitable for soybeans, peas, and beans; and NURSOIL®, a soil drench that primes plants to withstand abiotic stress conditions like drought and extreme temperatures."", - ""clientCategories"": [""Distributors with brand recognition and market channels"", ""Seed companies"", ""SMEs"", ""Large corporations""], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in bio-based plant protection and biostimulant products."", - ""geographicFocus"": ""HQ: Allée de la Recherche 4, 1070 Brussels, Belgium; Sales Focus: Europe, USA, Africa"", - ""keyExecutives"": [ - { - ""name"": ""Guillaume Wegria"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"" - }, - { - ""name"": ""Bénédicte O'Sullivan"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.fyteko.com/about-us-and-our-biostimulant-technology"" - }, - { - ""name"": ""Dr Juan Carlos Cabrera"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.fyteko.com/about-us-and-our-biostimulant-technology"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not explicitly list all C-level executives beyond the CEO. No linked downloadable documents were found on the site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.fyteko.com"", - ""productDescription"": ""http://www.fyteko.com/products"", - ""clientCategories"": ""https://news.agropages.com/News/NewsDetail---39045.htm"", - ""geographicFocus"": ""http://www.fyteko.com/contact-us"", - ""keyExecutives"": ""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"" - } -}",[],"{ - ""websiteURL"": ""https://www.fyteko.com"", - ""companyDescription"": ""Fyteko is a company focused on sustainable agriculture through the discovery, development, and commercialization of bio-based plant protection products. Their mission is to harness biomolecules for new, safer crop protection solutions to help farmers transition to more sustainable practices. Founded in 2014 by bio-entrepreneurs Guillaume Wegria and Dr Juan Carlos Cabrera, Fyteko operates a bio-based technology discovery platform combining nature and science to create innovative biomolecule-based solutions that enhance crop resilience to abiotic stresses such as drought and temperature extremes."", - ""productDescription"": ""Fyteko offers three main biostimulant products: NURSEED®, a long-acting seed treatment to aid seedling establishment under stress suitable for soybeans, peas, beans, and maize; NURSPRAY®, a foliar spray that triggers plant defense mechanisms against abiotic stress such as drought and temperature extremes, effective 24 hours post-application and compatible with fertilizers and crop protection products, suitable for soybeans, peas, and beans; and NURSOIL®, a soil drench that primes plants to withstand abiotic stress conditions like drought and extreme temperatures. These products are based on patented enzymatic synthesis technology using biosourced molecules acting as signal molecules to enhance plant resilience and productivity under climate stress."", - ""clientCategories"": [ - ""Distributors With Brand Recognition And Market Channels"", - ""Seed Companies"", - ""SMEs"", - ""Large Corporations"" - ], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, specializing in bio-based plant protection and biostimulant products designed to improve crop resilience and sustainability."", - ""geographicFocus"": ""Headquartered in Brussels, Belgium, Fyteko's sales focus is on Europe, the USA, and Africa, with participation in European Union programs and international expansion efforts."", - ""keyExecutives"": [ - { - ""name"": ""Guillaume Wegria"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"" - }, - { - ""name"": ""Bénédicte O'Sullivan"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.fyteko.com/about-us-and-our-biostimulant-technology"" - }, - { - ""name"": ""Dr Juan Carlos Cabrera"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.fyteko.com/about-us-and-our-biostimulant-technology"" - } - ], - ""researcherNotes"": ""The company profile was confirmed by multiple sources indicating Fyteko is a Belgium-based agritech company established in 2014, focusing on enzymatic synthesis of biomolecules for sustainable agriculture. The website URL was normalized to https. Geographic focus is derived from company contact details and sales emphasis mentioned in recent reports. No additional senior leadership beyond founders and the CEO was found despite review of LinkedIn and company sources. Missing comprehensive C-suite details may indicate limited public disclosure or a startup organizational structure."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.fyteko.com"", - ""productDescription"": ""https://www.fyteko.com/products"", - ""clientCategories"": ""https://news.agropages.com/News/NewsDetail---39045.htm"", - ""geographicFocus"": ""https://www.fyteko.com/contact-us"", - ""keyExecutives"": ""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"" - } -}","{""clientCategories"":[""Distributors With Brand Recognition And Market Channels"",""Seed Companies"",""SMEs"",""Large Corporations""],""companyDescription"":""Fyteko is a company focused on sustainable agriculture through the discovery, development, and commercialization of bio-based plant protection products. Their mission is to harness biomolecules for new, safer crop protection solutions to help farmers transition to more sustainable practices. Founded in 2014 by bio-entrepreneurs Guillaume Wegria and Dr Juan Carlos Cabrera, Fyteko operates a bio-based technology discovery platform combining nature and science to create innovative biomolecule-based solutions that enhance crop resilience to abiotic stresses such as drought and temperature extremes."",""geographicFocus"":""Headquartered in Brussels, Belgium, Fyteko's sales focus is on Europe, the USA, and Africa, with participation in European Union programs and international expansion efforts."",""keyExecutives"":[{""name"":""Guillaume Wegria"",""sourceUrl"":""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"",""title"":""CEO and Founder""},{""name"":""Bénédicte O'Sullivan"",""sourceUrl"":""http://www.fyteko.com/about-us-and-our-biostimulant-technology"",""title"":""Founder""},{""name"":""Dr Juan Carlos Cabrera"",""sourceUrl"":""http://www.fyteko.com/about-us-and-our-biostimulant-technology"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Fyteko offers three main biostimulant products: NURSEED®, a long-acting seed treatment to aid seedling establishment under stress suitable for soybeans, peas, beans, and maize; NURSPRAY®, a foliar spray that triggers plant defense mechanisms against abiotic stress such as drought and temperature extremes, effective 24 hours post-application and compatible with fertilizers and crop protection products, suitable for soybeans, peas, and beans; and NURSOIL®, a soil drench that primes plants to withstand abiotic stress conditions like drought and extreme temperatures. These products are based on patented enzymatic synthesis technology using biosourced molecules acting as signal molecules to enhance plant resilience and productivity under climate stress."",""researcherNotes"":""The company profile was confirmed by multiple sources indicating Fyteko is a Belgium-based agritech company established in 2014, focusing on enzymatic synthesis of biomolecules for sustainable agriculture. The website URL was normalized to https. Geographic focus is derived from company contact details and sales emphasis mentioned in recent reports. No additional senior leadership beyond founders and the CEO was found despite review of LinkedIn and company sources. Missing comprehensive C-suite details may indicate limited public disclosure or a startup organizational structure."",""sectorDescription"":""Operates in the sustainable agriculture sector, specializing in bio-based plant protection and biostimulant products designed to improve crop resilience and sustainability."",""sources"":{""clientCategories"":""https://news.agropages.com/News/NewsDetail---39045.htm"",""companyDescription"":""https://www.fyteko.com"",""geographicFocus"":""https://www.fyteko.com/contact-us"",""keyExecutives"":""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"",""productDescription"":""https://www.fyteko.com/products""},""websiteURL"":""https://www.fyteko.com""}","Correctness: 98% Completeness: 95% The information about Fyteko is largely accurate and complete based on multiple credible sources. Fyteko was founded in 2014 by bio-entrepreneurs Guillaume Wegria, Dr Juan Carlos Cabrera, and Bénédicte O'Sullivan, with Guillaume Wegria serving as CEO, which matches company site and innovation fund data as of 2025-09-11[3][4]. The company is headquartered in Brussels, Belgium, focused on sustainable agriculture through bio-based biomolecule products improving plant resilience to abiotic stresses, confirmed by their site, EIT Food, and Innoviris Brussels[1][3][4]. Their three main biostimulant products—NURSEED®, NURSPRAY®, and NURSOIL®—are described consistently on their official product page and align with patented enzymatic synthesis technology claims[3]. Geographically, Fyteko targets Europe, USA, and Africa markets with EU program involvement, supported by contact details and company messaging[3]. Leadership mentions do not show additional C-suite disclosures beyond founders and CEO, indicative of a startup structure as noted in multiple places[3][4]. Funding data sourced from Founder Lodge confirms a recent Series B round raising approximately $13.6M in February 2025, adding relevant financial completeness[2]. Minor completeness reduction arises from absence of other senior leadership specifics and recent product launch dates, which aren’t explicitly detailed in the sources. Overall, the profile reflects a reliable, well-documented snapshot using verified official and industry sources. -https://www.fyteko.com/about-us-and-our-biostimulant-technology/ -https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf -https://founderlodge.com/startup-profile/fyteko-21017 -https://www.eitfood.eu/community/startups/fyteko -http://www.innoviris.brussels/story/fyteko-guillaume-wegria","{""clientCategories"":[""Distributors with brand recognition and market channels"",""Seed companies"",""SMEs"",""Large corporations""],""companyDescription"":""Fyteko is a company focused on sustainable agriculture through the discovery, development, and commercialization of bio-based plant protection products. Their mission is to harness biomolecules for new, safer crop protection solutions to help farmers transition to more sustainable practices. Fyteko operates a bio-based technology discovery platform combining nature and science."",""geographicFocus"":""HQ: Allée de la Recherche 4, 1070 Brussels, Belgium; Sales Focus: Europe, USA, Africa"",""keyExecutives"":[{""name"":""Guillaume Wegria"",""sourceUrl"":""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"",""title"":""CEO and Founder""},{""name"":""Bénédicte O'Sullivan"",""sourceUrl"":""http://www.fyteko.com/about-us-and-our-biostimulant-technology"",""title"":""Founder""},{""name"":""Dr Juan Carlos Cabrera"",""sourceUrl"":""http://www.fyteko.com/about-us-and-our-biostimulant-technology"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Fyteko offers three main biostimulant products: NURSEED®, a long-acting seed treatment to aid seedling establishment under stress suitable for soybeans, peas, beans, and maize; NURSPRAY®, a foliar spray that triggers plant defense mechanisms against abiotic stress such as drought and temperature extremes, effective 24 hours post-application and compatible with fertilizers and crop protection products, suitable for soybeans, peas, and beans; and NURSOIL®, a soil drench that primes plants to withstand abiotic stress conditions like drought and extreme temperatures."",""researcherNotes"":""The website does not explicitly list all C-level executives beyond the CEO. No linked downloadable documents were found on the site."",""sectorDescription"":""Operates in the sustainable agriculture sector, specializing in bio-based plant protection and biostimulant products."",""sources"":{""clientCategories"":""https://news.agropages.com/News/NewsDetail---39045.htm"",""companyDescription"":""http://www.fyteko.com"",""geographicFocus"":""http://www.fyteko.com/contact-us"",""keyExecutives"":""https://innovationfund.eu/wp-content/uploads/2021/04/IF_RA-2020-web-LD.pdf"",""productDescription"":""http://www.fyteko.com/products""},""websiteURL"":""http://www.fyteko.com""}" -Reforest'Action,https://www.reforestaction.com,"Blisce, Eiffel Investment Group",reforestaction.com,https://www.linkedin.com/company/reforest'action,"{""seniorLeadership"":[{""name"":""Stéphane Hallaire"",""title"":""Founder & Executive Chairman""},{""name"":""Arnaud Bret"",""title"":""Chief Executive Officer""},{""name"":""Ludivine Buvat"",""title"":""Chief Marketing, Communication & CSR Officer""},{""name"":""Pierre Gaches"",""title"":""Chief Development Officer""},{""name"":""Matthieu Gendron"",""title"":""Chief Technical Officer""},{""name"":""Florence Ravel"",""title"":""Chief Human Resources Officer""},{""name"":""Arianna de Toni"",""title"":""Chief of Climate Solutions | PhD""},{""name"":""Jean-Amaury Bonnemains"",""title"":""Chief Financial Officer""}]}","{""seniorLeadership"":[{""name"":""Stéphane Hallaire"",""title"":""Founder & Executive Chairman""},{""name"":""Arnaud Bret"",""title"":""Chief Executive Officer""},{""name"":""Ludivine Buvat"",""title"":""Chief Marketing, Communication & CSR Officer""},{""name"":""Pierre Gaches"",""title"":""Chief Development Officer""},{""name"":""Matthieu Gendron"",""title"":""Chief Technical Officer""},{""name"":""Florence Ravel"",""title"":""Chief Human Resources Officer""},{""name"":""Arianna de Toni"",""title"":""Chief of Climate Solutions | PhD""},{""name"":""Jean-Amaury Bonnemains"",""title"":""Chief Financial Officer""}]}","{ - ""websiteURL"": ""https://www.reforestaction.com"", - ""companyDescription"": ""Our mission: to regenerate terrestrial ecosystems on a large scale to tackle global challenges using field experience, local communities, science and technology. We provide nature-based solutions to deal with organizational challenges aiming to provide customized and effective solutions tackling environmental issues while supporting organizational climate and transformation strategies simultaneously."", - ""productDescription"": ""The company offers nature-based solutions focused on integrating Climate and Biodiversity challenges by optimizing ecosystem benefits essential for ecosystem stability. Their services include: optimizing and developing carbon sequestration to combat climate change; enhancing biodiversity and minimizing disturbances to maintain biological diversity; restoring and preserving soil and water quality for ecosystem health; and optimizing benefits for local communities like income, education, and resources. They provide three main solutions: contributing to carbon neutrality by reducing greenhouse gas emissions; promoting regenerative agriculture within value chains; and financing reforestation projects globally involving stakeholders. Projects can be standard or customized, local or global, with monitored impacts, and they offer tools and services to help clients communicate their actions responsibly. The company has extensive expertise with over 1650 projects in 45 countries, 3600 contributing companies, supports over 3000 organizations, and emphasizes continuous improvement through research-action projects."", - ""clientCategories"": [""Environmental Organizations"", ""Private Corporations"", ""Businesses focused on Carbon Neutrality"", ""Agroforestry Stakeholders"", ""Organizations supporting Climate and Biodiversity""], - ""sectorDescription"": ""Operates in the environmental services sector, specializing in large-scale ecosystem regeneration and nature-based solutions for climate change mitigation and biodiversity preservation."", - ""geographicFocus"": ""HQ: 10, rue Jacques Daguerre, 92500 Rueil-Malmaison, France; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Stéphane Hallaire"", ""title"": ""Founder & Executive Chairman"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Arnaud Bret"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Pierre Gaches"", ""title"": ""Chief Development Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Ludivine Buvat"", ""title"": ""Chief Marketing, Communication & CSR Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Matthieu Gendron"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Arianna de Toni"", ""title"": ""Chief of Climate Solutions | PhD"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Jean-Amaury Bonnemains"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Florence Ravel"", ""title"": ""Head of HR"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Stéphanie Engling"", ""title"": ""Chief Sales Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable documents (PDF/DOCX) found on the website or subpages after thorough search."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.reforestaction.com/en"", - ""productDescription"": ""https://www.reforestaction.com/solutions"", - ""clientCategories"": ""https://www.reforestaction.com"", - ""geographicFocus"": ""https://www.reforestaction.com/contact"", - ""keyExecutives"": ""https://www.reforestaction.com/gouvernance"" - } -}","{ - ""websiteURL"": ""https://www.reforestaction.com"", - ""companyDescription"": ""Our mission: to regenerate terrestrial ecosystems on a large scale to tackle global challenges using field experience, local communities, science and technology. We provide nature-based solutions to deal with organizational challenges aiming to provide customized and effective solutions tackling environmental issues while supporting organizational climate and transformation strategies simultaneously."", - ""productDescription"": ""The company offers nature-based solutions focused on integrating Climate and Biodiversity challenges by optimizing ecosystem benefits essential for ecosystem stability. Their services include: optimizing and developing carbon sequestration to combat climate change; enhancing biodiversity and minimizing disturbances to maintain biological diversity; restoring and preserving soil and water quality for ecosystem health; and optimizing benefits for local communities like income, education, and resources. They provide three main solutions: contributing to carbon neutrality by reducing greenhouse gas emissions; promoting regenerative agriculture within value chains; and financing reforestation projects globally involving stakeholders. Projects can be standard or customized, local or global, with monitored impacts, and they offer tools and services to help clients communicate their actions responsibly. The company has extensive expertise with over 1650 projects in 45 countries, 3600 contributing companies, supports over 3000 organizations, and emphasizes continuous improvement through research-action projects."", - ""clientCategories"": [""Environmental Organizations"", ""Private Corporations"", ""Businesses focused on Carbon Neutrality"", ""Agroforestry Stakeholders"", ""Organizations supporting Climate and Biodiversity""], - ""sectorDescription"": ""Operates in the environmental services sector, specializing in large-scale ecosystem regeneration and nature-based solutions for climate change mitigation and biodiversity preservation."", - ""geographicFocus"": ""HQ: 10, rue Jacques Daguerre, 92500 Rueil-Malmaison, France; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Stéphane Hallaire"", ""title"": ""Founder & Executive Chairman"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Arnaud Bret"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Pierre Gaches"", ""title"": ""Chief Development Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Ludivine Buvat"", ""title"": ""Chief Marketing, Communication & CSR Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Matthieu Gendron"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Arianna de Toni"", ""title"": ""Chief of Climate Solutions | PhD"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Jean-Amaury Bonnemains"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Florence Ravel"", ""title"": ""Head of HR"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""}, - {""name"": ""Stéphanie Engling"", ""title"": ""Chief Sales Officer"", ""sourceUrl"": ""https://www.reforestaction.com/gouvernance""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable documents (PDF/DOCX) found on the website or subpages after thorough search."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.reforestaction.com/en"", - ""productDescription"": ""https://www.reforestaction.com/solutions"", - ""clientCategories"": ""https://www.reforestaction.com"", - ""geographicFocus"": ""https://www.reforestaction.com/contact"", - ""keyExecutives"": ""https://www.reforestaction.com/gouvernance"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.reforestaction.com"", - ""companyDescription"": ""Reforest'Action is dedicated to regenerating terrestrial ecosystems at large scale to address global environmental challenges by leveraging field experience, local communities, scientific approaches, and technology. The company provides nature-based solutions that integrate climate and biodiversity objectives, supporting organizations in climate and transformation strategies through customized, impactful projects. With over 1,650 projects across 45 countries and the support of more than 3,600 companies, Reforest'Action focuses on sustaining ecosystem stability while promoting regenerative agriculture and carbon neutrality."", - ""productDescription"": ""Reforest'Action offers nature-based solutions that optimize carbon sequestration, enhance biodiversity, and restore soil and water quality to support ecosystem health. Their three main services include contributing to carbon neutrality through greenhouse gas emission reductions, promoting regenerative agriculture within value chains, and financing reforestation projects worldwide. These projects are either standardized or tailored, with continuous impact monitoring and tools to help clients responsibly communicate their sustainability actions."", - ""clientCategories"": [ - ""Environmental Organizations"", - ""Private Corporations"", - ""Businesses Focused On Carbon Neutrality"", - ""Agroforestry Stakeholders"", - ""Organizations Supporting Climate And Biodiversity"" - ], - ""sectorDescription"": ""Environmental services specializing in large-scale ecosystem regeneration and nature-based solutions for climate change mitigation and biodiversity preservation."", - ""geographicFocus"": ""Global operations with more than 1,650 projects in 45 countries across multiple continents including Europe, Africa, Asia, and the Americas."", - ""keyExecutives"": [ - { - ""name"": ""Stéphane Hallaire"", - ""title"": ""Founder & Executive Chairman"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Arnaud Bret"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Pierre Gaches"", - ""title"": ""Chief Development Officer"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Ludivine Buvat"", - ""title"": ""Chief Marketing, Communication & CSR Officer"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Matthieu Gendron"", - ""title"": ""Chief Technical Officer"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Arianna de Toni"", - ""title"": ""Chief of Climate Solutions | PhD"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Jean-Amaury Bonnemains"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Florence Ravel"", - ""title"": ""Head of HR"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - }, - { - ""name"": ""Stéphanie Engling"", - ""title"": ""Chief Sales Officer"", - ""sourceUrl"": ""https://www.reforestaction.com/gouvernance"" - } - ], - ""researcherNotes"": ""The company's geographic footprint is global, verified with 45 countries participation across multiple continents, consistent with publicly available data and the company website. Titles and names of key executives align between the company's governance page and LinkedIn data, confirming accuracy. No downloadable official documents such as PDFs were found, and geographic focus was derived from project and corporate information rather than explicit sales focus details, which remain unspecified."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.reforestaction.com/en"", - ""productDescription"": ""https://www.reforestaction.com/solutions"", - ""clientCategories"": ""https://www.reforestaction.com"", - ""geographicFocus"": ""https://www.reforestaction.com/contact"", - ""keyExecutives"": ""https://www.reforestaction.com/gouvernance"" - } -}","{""clientCategories"":[""Environmental Organizations"",""Private Corporations"",""Businesses Focused On Carbon Neutrality"",""Agroforestry Stakeholders"",""Organizations Supporting Climate And Biodiversity""],""companyDescription"":""Reforest'Action is dedicated to regenerating terrestrial ecosystems at large scale to address global environmental challenges by leveraging field experience, local communities, scientific approaches, and technology. The company provides nature-based solutions that integrate climate and biodiversity objectives, supporting organizations in climate and transformation strategies through customized, impactful projects. With over 1,650 projects across 45 countries and the support of more than 3,600 companies, Reforest'Action focuses on sustaining ecosystem stability while promoting regenerative agriculture and carbon neutrality."",""geographicFocus"":""Global operations with more than 1,650 projects in 45 countries across multiple continents including Europe, Africa, Asia, and the Americas."",""keyExecutives"":[{""name"":""Stéphane Hallaire"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Founder & Executive Chairman""},{""name"":""Arnaud Bret"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Executive Officer""},{""name"":""Pierre Gaches"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Development Officer""},{""name"":""Ludivine Buvat"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Marketing, Communication & CSR Officer""},{""name"":""Matthieu Gendron"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Technical Officer""},{""name"":""Arianna de Toni"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief of Climate Solutions | PhD""},{""name"":""Jean-Amaury Bonnemains"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Financial Officer""},{""name"":""Florence Ravel"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Head of HR""},{""name"":""Stéphanie Engling"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Sales Officer""}],""missingImportantFields"":[],""productDescription"":""Reforest'Action offers nature-based solutions that optimize carbon sequestration, enhance biodiversity, and restore soil and water quality to support ecosystem health. Their three main services include contributing to carbon neutrality through greenhouse gas emission reductions, promoting regenerative agriculture within value chains, and financing reforestation projects worldwide. These projects are either standardized or tailored, with continuous impact monitoring and tools to help clients responsibly communicate their sustainability actions."",""researcherNotes"":""The company's geographic footprint is global, verified with 45 countries participation across multiple continents, consistent with publicly available data and the company website. Titles and names of key executives align between the company's governance page and LinkedIn data, confirming accuracy. No downloadable official documents such as PDFs were found, and geographic focus was derived from project and corporate information rather than explicit sales focus details, which remain unspecified."",""sectorDescription"":""Environmental services specializing in large-scale ecosystem regeneration and nature-based solutions for climate change mitigation and biodiversity preservation."",""sources"":{""clientCategories"":""https://www.reforestaction.com"",""companyDescription"":""https://www.reforestaction.com/en"",""geographicFocus"":""https://www.reforestaction.com/contact"",""keyExecutives"":""https://www.reforestaction.com/gouvernance"",""productDescription"":""https://www.reforestaction.com/solutions""},""websiteURL"":""https://www.reforestaction.com""}","Correctness: 98% Completeness: 95% - -The provided description of Reforest'Action is highly accurate and largely complete as of 2025. The company’s mission to regenerate terrestrial ecosystems globally by leveraging local experience, science, and technology aligns closely with official sources showing a global footprint in 45 countries and over 1,650 projects, consistent with data from the company website and independent profiles[2][4]. The leadership details including Stéphane Hallaire (Founder & Executive Chairman), Arnaud Bret (CEO), Pierre Gaches (Chief Development Officer), and other executives match the official governance page listings[4]. The product offerings focusing on nature-based solutions for carbon neutrality, biodiversity, and soil restoration correspond well with published descriptions of standardized and custom projects monitored for impact[4]. Numbers on corporate and community supporters (3,600+ companies, 400,000+ citizens) are in line with figures cited elsewhere[1][2]. The only minor discrepancy is that one source cites 1,500+ projects and 3,500 companies, while another states 1,650 projects and 3,600 companies, a small variance likely due to timing but both depict the same scale of operation[1][2]. No official filings or recent funding data were found, so financial details are unconfirmed but not explicitly claimed here. Overall, this synthesis integrates multiple credible sources dating as recent as 2024–2025 and the company’s own governance and solution pages, providing a thorough and factually supported profile. - -Sources: https://www.reforestaction.com/en/about, https://www.reforestaction.com/gouvernance, https://www.weforum.org/organizations/reforestaction/, https://www.reforestaction.com/en/magazine/reforestaction-becomes-member-european-forest-institute, https://leadiq.com/c/reforestaction/5a1dcc142300005900d22aa6","{""clientCategories"":[""Environmental Organizations"",""Private Corporations"",""Businesses focused on Carbon Neutrality"",""Agroforestry Stakeholders"",""Organizations supporting Climate and Biodiversity""],""companyDescription"":""Our mission: to regenerate terrestrial ecosystems on a large scale to tackle global challenges using field experience, local communities, science and technology. We provide nature-based solutions to deal with organizational challenges aiming to provide customized and effective solutions tackling environmental issues while supporting organizational climate and transformation strategies simultaneously."",""geographicFocus"":""HQ: 10, rue Jacques Daguerre, 92500 Rueil-Malmaison, France; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Stéphane Hallaire"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Founder & Executive Chairman""},{""name"":""Arnaud Bret"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Executive Officer""},{""name"":""Pierre Gaches"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Development Officer""},{""name"":""Ludivine Buvat"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Marketing, Communication & CSR Officer""},{""name"":""Matthieu Gendron"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Technical Officer""},{""name"":""Arianna de Toni"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief of Climate Solutions | PhD""},{""name"":""Jean-Amaury Bonnemains"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Financial Officer""},{""name"":""Florence Ravel"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Head of HR""},{""name"":""Stéphanie Engling"",""sourceUrl"":""https://www.reforestaction.com/gouvernance"",""title"":""Chief Sales Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""The company offers nature-based solutions focused on integrating Climate and Biodiversity challenges by optimizing ecosystem benefits essential for ecosystem stability. Their services include: optimizing and developing carbon sequestration to combat climate change; enhancing biodiversity and minimizing disturbances to maintain biological diversity; restoring and preserving soil and water quality for ecosystem health; and optimizing benefits for local communities like income, education, and resources. They provide three main solutions: contributing to carbon neutrality by reducing greenhouse gas emissions; promoting regenerative agriculture within value chains; and financing reforestation projects globally involving stakeholders. Projects can be standard or customized, local or global, with monitored impacts, and they offer tools and services to help clients communicate their actions responsibly. The company has extensive expertise with over 1650 projects in 45 countries, 3600 contributing companies, supports over 3000 organizations, and emphasizes continuous improvement through research-action projects."",""researcherNotes"":""No direct downloadable documents (PDF/DOCX) found on the website or subpages after thorough search."",""sectorDescription"":""Operates in the environmental services sector, specializing in large-scale ecosystem regeneration and nature-based solutions for climate change mitigation and biodiversity preservation."",""sources"":{""clientCategories"":""https://www.reforestaction.com"",""companyDescription"":""https://www.reforestaction.com/en"",""geographicFocus"":""https://www.reforestaction.com/contact"",""keyExecutives"":""https://www.reforestaction.com/gouvernance"",""productDescription"":""https://www.reforestaction.com/solutions""},""websiteURL"":""https://www.reforestaction.com""}" -Ace Aquatec,https://www.aceaquatec.com/,"Aqua Spark, Scottish Enterprise, Stolt Ventures",aceaquatec.com,https://www.linkedin.com/company/ace-aquatec-ltd,"{""seniorLeadership"":[{""name"":""Nathan Pyne-Carter"",""title"":""Chief Executive Officer (CEO)"",""profileURL"":""https://www.linkedin.com/in/nathan-pyne-carter-b013a769""},{""name"":""Alan MacLeod"",""title"":""Chief Finance Officer (CFO)"",""profileURL"":""https://www.linkedin.com/company/ace-aquatec-ltd""},{""name"":""Tara McGregor-Woodhams"",""title"":""Chief Sales & Marketing Officer (CSMO)"",""profileURL"":""https://www.linkedin.com/company/ace-aquatec-ltd""},{""name"":""Keith Davidson"",""title"":""Chief Technology Officer (CTO)"",""profileURL"":""https://www.linkedin.com/company/ace-aquatec-ltd""}]}","{""seniorLeadership"":[{""name"":""Nathan Pyne-Carter"",""title"":""Chief Executive Officer (CEO)"",""profileURL"":""https://www.linkedin.com/in/nathan-pyne-carter-b013a769""},{""name"":""Alan MacLeod"",""title"":""Chief Finance Officer (CFO)"",""profileURL"":""https://www.linkedin.com/company/ace-aquatec-ltd""},{""name"":""Tara McGregor-Woodhams"",""title"":""Chief Sales & Marketing Officer (CSMO)"",""profileURL"":""https://www.linkedin.com/company/ace-aquatec-ltd""},{""name"":""Keith Davidson"",""title"":""Chief Technology Officer (CTO)"",""profileURL"":""https://www.linkedin.com/company/ace-aquatec-ltd""}]}","{ - ""websiteURL"": ""https://www.aceaquatec.com/"", - ""companyDescription"": ""Ace Aquatec is a cutting-edge aquaculture technology company that partners with world-leading experts to apply technological developments to aquaculture and marine industries. Their mission is to accelerate the world’s adoption of sustainable aquaculture practices and enhance marine welfare. They design products to make fish farming more efficient and humane while protecting the environment, specializing in welfare-first in-water stunning and culling systems, marine mammal protection products, biomass estimation, and sea lice removal systems. Their strategy is to be the innovation partner of choice for those leading the blue revolution in developing welfare-first aquaculture technologies."", - ""productDescription"": ""Ace Aquatec offers aquaculture products categorized into Grow, Protect, and Harvest: Grow products monitor fish health and well-being using precision technologies; Protect products include award-winning predator control technology to keep fish safe without harming marine mammals; Harvest products provide humane, safe, and rapid fish stunning methods meeting high welfare standards. Technologies used include machine learning and the Internet of Things (IoT). Products include:\n- Humane Stunner Universal (A-HSU®) for fish stunning\n- Humane culling systems for smolt, juvenile fish, and by-catch\n- Acoustic startle response devices (A-ASR®) for predator control\n- Marine grade surface electric fence (ESR A-EFENCE®)\n- Biomass Camera (A-BIOMASS®) for fish biomass estimation\n- Low-stress mechanical lice removal system (A-ELECTROLICER™) in development."", - ""clientCategories"": [""Aquaculture operators"", ""Fish farmers"", ""Marine industries"", ""Offshore industries"", ""Sustainable aquaculture advocates""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing sustainable, welfare-first technological solutions for fish farming and marine protection."", - ""geographicFocus"": ""HQ: Unit 1, Water’s Edge, Camperdown Street, Dundee, DD1 3HY, United Kingdom; Sales Focus: UK & Ireland, EMEA, Asia & Oceania, Nordics, Americas, Offshore markets."", - ""keyExecutives"": [ - {""name"": ""Nathan Pyne-Carter"", ""title"": ""CEO"", ""sourceUrl"": ""https://aceaquatec.com/our-story""}, - {""name"": ""Alan MacLeod"", ""title"": ""CFO"", ""sourceUrl"": ""https://aceaquatec.com/our-company""}, - {""name"": ""Tara McGregor-Woodhams"", ""title"": ""CSMO"", ""sourceUrl"": ""https://aceaquatec.com/our-company""}, - {""name"": ""Keith Davidson"", ""title"": ""CTO"", ""sourceUrl"": ""https://aceaquatec.com/our-company""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No directly downloadable documents such as PDFs were found on the website despite checking resources and case studies sections."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aceaquatec.com/our-company"", - ""productDescription"": ""https://aceaquatec.com/aquaculture-products"", - ""clientCategories"": ""https://aceaquatec.com/news-and-resources/case-studies"", - ""geographicFocus"": ""https://aceaquatec.com/contact-us"", - ""keyExecutives"": ""https://aceaquatec.com/our-company"" - } -}","{ - ""websiteURL"": ""https://www.aceaquatec.com/"", - ""companyDescription"": ""Ace Aquatec is a cutting-edge aquaculture technology company that partners with world-leading experts to apply technological developments to aquaculture and marine industries. Their mission is to accelerate the world’s adoption of sustainable aquaculture practices and enhance marine welfare. They design products to make fish farming more efficient and humane while protecting the environment, specializing in welfare-first in-water stunning and culling systems, marine mammal protection products, biomass estimation, and sea lice removal systems. Their strategy is to be the innovation partner of choice for those leading the blue revolution in developing welfare-first aquaculture technologies."", - ""productDescription"": ""Ace Aquatec offers aquaculture products categorized into Grow, Protect, and Harvest: Grow products monitor fish health and well-being using precision technologies; Protect products include award-winning predator control technology to keep fish safe without harming marine mammals; Harvest products provide humane, safe, and rapid fish stunning methods meeting high welfare standards. Technologies used include machine learning and the Internet of Things (IoT). Products include:\n- Humane Stunner Universal (A-HSU®) for fish stunning\n- Humane culling systems for smolt, juvenile fish, and by-catch\n- Acoustic startle response devices (A-ASR®) for predator control\n- Marine grade surface electric fence (ESR A-EFENCE®)\n- Biomass Camera (A-BIOMASS®) for fish biomass estimation\n- Low-stress mechanical lice removal system (A-ELECTROLICER™) in development."", - ""clientCategories"": [""Aquaculture operators"", ""Fish farmers"", ""Marine industries"", ""Offshore industries"", ""Sustainable aquaculture advocates""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing sustainable, welfare-first technological solutions for fish farming and marine protection."", - ""geographicFocus"": ""HQ: Unit 1, Water’s Edge, Camperdown Street, Dundee, DD1 3HY, United Kingdom; Sales Focus: UK & Ireland, EMEA, Asia & Oceania, Nordics, Americas, Offshore markets."", - ""keyExecutives"": [ - {""name"": ""Nathan Pyne-Carter"", ""title"": ""CEO"", ""sourceUrl"": ""https://aceaquatec.com/our-story""}, - {""name"": ""Alan MacLeod"", ""title"": ""CFO"", ""sourceUrl"": ""https://aceaquatec.com/our-company""}, - {""name"": ""Tara McGregor-Woodhams"", ""title"": ""CSMO"", ""sourceUrl"": ""https://aceaquatec.com/our-company""}, - {""name"": ""Keith Davidson"", ""title"": ""CTO"", ""sourceUrl"": ""https://aceaquatec.com/our-company""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No directly downloadable documents such as PDFs were found on the website despite checking resources and case studies sections."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aceaquatec.com/our-company"", - ""productDescription"": ""https://aceaquatec.com/aquaculture-products"", - ""clientCategories"": ""https://aceaquatec.com/news-and-resources/case-studies"", - ""geographicFocus"": ""https://aceaquatec.com/contact-us"", - ""keyExecutives"": ""https://aceaquatec.com/our-company"" - } -}",[],"{ - ""websiteURL"": ""https://www.aceaquatec.com/"", - ""companyDescription"": ""Ace Aquatec is a cutting-edge aquaculture technology company that collaborates with world-leading experts to advance sustainable aquaculture and marine industries. Their mission focuses on accelerating adoption of welfare-first practices and enhancing marine welfare through innovative technology. They specialize in humane in-water stunning and culling systems, predator control, biomass estimation, and sea lice removal, using machine learning and IoT to improve fish farming efficiency and environmental protection."", - ""productDescription"": ""Ace Aquatec offers precise aquaculture technologies categorized into Grow, Protect, and Harvest. Grow products monitor fish health via AI-powered cameras and sensors; Protect products include non-lethal predator deterrent systems; Harvest products provide humane electric stunning and culling solutions meeting top welfare standards. Their portfolio includes the Humane Stunner Universal (A-HSU®), Humane culling systems, Acoustic startle response devices (A-ASR®), electric fences (ESR A-EFENCE®), Biomass Camera (A-BIOMASS®), and an electro-physical sea lice removal system (A-ELECTROLICER™) in development."", - ""clientCategories"": [ - ""Aquaculture Operators"", - ""Fish Farmers"", - ""Marine Industries"", - ""Offshore Industries"", - ""Sustainable Aquaculture Advocates"" - ], - ""sectorDescription"": ""Aquaculture technology company specializing in sustainable, welfare-first solutions for fish farming and marine protection."", - ""geographicFocus"": ""Headquartered in Dundee, UK, with sales focus across UK & Ireland, EMEA, Asia & Oceania, Nordics, Americas, and offshore markets."", - ""keyExecutives"": [ - { - ""name"": ""Nathan Pyne-Carter"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://aceaquatec.com/our-story"" - }, - { - ""name"": ""Alan MacLeod"", - ""title"": ""Chief Finance Officer (CFO)"", - ""sourceUrl"": ""https://aceaquatec.com/our-company"" - }, - { - ""name"": ""Tara McGregor-Woodhams"", - ""title"": ""Chief Sales & Marketing Officer (CSMO)"", - ""sourceUrl"": ""https://aceaquatec.com/our-company"" - }, - { - ""name"": ""Keith Davidson"", - ""title"": ""Chief Technology Officer (CTO)"", - ""sourceUrl"": ""https://aceaquatec.com/our-company"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed via primary website domain, UK Companies House (Company No. SC335694), and LinkedIn company/executive profiles. The company is a private limited company founded 31 Dec 2007, headquartered in Dundee, Scotland. The geographic focus is clearly outlined on their site. All current key executives’ names and titles were consistent across company and LinkedIn sources. No downloadable documents like PDFs found on the website. The company recently secured £10m funding to accelerate AI and product development."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aceaquatec.com/our-company"", - ""productDescription"": ""https://aceaquatec.com/aquaculture-products"", - ""clientCategories"": ""https://aceaquatec.com/news-and-resources/case-studies"", - ""geographicFocus"": ""https://aceaquatec.com/contact-us"", - ""keyExecutives"": ""https://aceaquatec.com/our-company"" - } -}","{""clientCategories"":[""Aquaculture Operators"",""Fish Farmers"",""Marine Industries"",""Offshore Industries"",""Sustainable Aquaculture Advocates""],""companyDescription"":""Ace Aquatec is a cutting-edge aquaculture technology company that collaborates with world-leading experts to advance sustainable aquaculture and marine industries. Their mission focuses on accelerating adoption of welfare-first practices and enhancing marine welfare through innovative technology. They specialize in humane in-water stunning and culling systems, predator control, biomass estimation, and sea lice removal, using machine learning and IoT to improve fish farming efficiency and environmental protection."",""geographicFocus"":""Headquartered in Dundee, UK, with sales focus across UK & Ireland, EMEA, Asia & Oceania, Nordics, Americas, and offshore markets."",""keyExecutives"":[{""name"":""Nathan Pyne-Carter"",""sourceUrl"":""https://aceaquatec.com/our-story"",""title"":""Chief Executive Officer (CEO)""},{""name"":""Alan MacLeod"",""sourceUrl"":""https://aceaquatec.com/our-company"",""title"":""Chief Finance Officer (CFO)""},{""name"":""Tara McGregor-Woodhams"",""sourceUrl"":""https://aceaquatec.com/our-company"",""title"":""Chief Sales & Marketing Officer (CSMO)""},{""name"":""Keith Davidson"",""sourceUrl"":""https://aceaquatec.com/our-company"",""title"":""Chief Technology Officer (CTO)""}],""missingImportantFields"":[],""productDescription"":""Ace Aquatec offers precise aquaculture technologies categorized into Grow, Protect, and Harvest. Grow products monitor fish health via AI-powered cameras and sensors; Protect products include non-lethal predator deterrent systems; Harvest products provide humane electric stunning and culling solutions meeting top welfare standards. Their portfolio includes the Humane Stunner Universal (A-HSU®), Humane culling systems, Acoustic startle response devices (A-ASR®), electric fences (ESR A-EFENCE®), Biomass Camera (A-BIOMASS®), and an electro-physical sea lice removal system (A-ELECTROLICER™) in development."",""researcherNotes"":""Entity disambiguation confirmed via primary website domain, UK Companies House (Company No. SC335694), and LinkedIn company/executive profiles. The company is a private limited company founded 31 Dec 2007, headquartered in Dundee, Scotland. The geographic focus is clearly outlined on their site. All current key executives’ names and titles were consistent across company and LinkedIn sources. No downloadable documents like PDFs found on the website. The company recently secured £10m funding to accelerate AI and product development."",""sectorDescription"":""Aquaculture technology company specializing in sustainable, welfare-first solutions for fish farming and marine protection."",""sources"":{""clientCategories"":""https://aceaquatec.com/news-and-resources/case-studies"",""companyDescription"":""https://aceaquatec.com/our-company"",""geographicFocus"":""https://aceaquatec.com/contact-us"",""keyExecutives"":""https://aceaquatec.com/our-company"",""productDescription"":""https://aceaquatec.com/aquaculture-products""},""websiteURL"":""https://www.aceaquatec.com/""}","Correctness: 98% Completeness: 95% The provided description of Ace Aquatec is highly accurate and comprehensive based on authoritative sources. The company is a private limited company, incorporated on 31 December 2007, headquartered at 1 Water's Edge, Camperdown Street, Dundee, Scotland, DD1 3HY, as confirmed by UK Companies House records[1]. Key executives named—Nathan Pyne-Carter as CEO, Alan MacLeod as CFO, Tara McGregor-Woodhams as CSMO, and Keith Davidson as CTO—are consistent with the company’s website and multiple sources, including recent press announcing Davidson’s CTO appointment to accelerate product development[2][3][5]. The company’s mission to advance sustainable aquaculture through welfare-first technologies aligns with product descriptions on their official site and corroborated by industry coverage; their product categories Grow, Protect, and Harvest and portfolio including humane stunning and culling systems, predator deterrents, biomass estimation, and sea lice removal are detailed on the official site and validated by case studies and news articles[3][4]. The geographic footprint spans UK & Ireland, EMEA, Asia & Oceania, Nordics, Americas, and offshore markets as stated[3]. The recent funding of £10m to accelerate AI and product innovation is documented, though one press source mentions a smaller prior £2.5m round, indicating progressive funding rounds[5]. Minor incompleteness is the absence of explicit “as of” dates for executives in the original text, though filings and recent announcements from 2025 confirm current leadership[2][5]. Overall, the information is factually correct, current, and nearly complete with no significant discrepancies. https://aceaquatec.com/our-company https://aceaquatec.com/aquaculture-products https://find-and-update.company-information.service.gov.uk/company/SC335694 https://goparity.com/project/ace-aquatec-421 https://www.intrafish.com/article/ace-aquatec-appoints-new-cto","{""clientCategories"":[""Aquaculture operators"",""Fish farmers"",""Marine industries"",""Offshore industries"",""Sustainable aquaculture advocates""],""companyDescription"":""Ace Aquatec is a cutting-edge aquaculture technology company that partners with world-leading experts to apply technological developments to aquaculture and marine industries. Their mission is to accelerate the world’s adoption of sustainable aquaculture practices and enhance marine welfare. They design products to make fish farming more efficient and humane while protecting the environment, specializing in welfare-first in-water stunning and culling systems, marine mammal protection products, biomass estimation, and sea lice removal systems. Their strategy is to be the innovation partner of choice for those leading the blue revolution in developing welfare-first aquaculture technologies."",""geographicFocus"":""HQ: Unit 1, Water’s Edge, Camperdown Street, Dundee, DD1 3HY, United Kingdom; Sales Focus: UK & Ireland, EMEA, Asia & Oceania, Nordics, Americas, Offshore markets."",""keyExecutives"":[{""name"":""Nathan Pyne-Carter"",""sourceUrl"":""https://aceaquatec.com/our-story"",""title"":""CEO""},{""name"":""Alan MacLeod"",""sourceUrl"":""https://aceaquatec.com/our-company"",""title"":""CFO""},{""name"":""Tara McGregor-Woodhams"",""sourceUrl"":""https://aceaquatec.com/our-company"",""title"":""CSMO""},{""name"":""Keith Davidson"",""sourceUrl"":""https://aceaquatec.com/our-company"",""title"":""CTO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Ace Aquatec offers aquaculture products categorized into Grow, Protect, and Harvest: Grow products monitor fish health and well-being using precision technologies; Protect products include award-winning predator control technology to keep fish safe without harming marine mammals; Harvest products provide humane, safe, and rapid fish stunning methods meeting high welfare standards. Technologies used include machine learning and the Internet of Things (IoT). Products include:\n- Humane Stunner Universal (A-HSU®) for fish stunning\n- Humane culling systems for smolt, juvenile fish, and by-catch\n- Acoustic startle response devices (A-ASR®) for predator control\n- Marine grade surface electric fence (ESR A-EFENCE®)\n- Biomass Camera (A-BIOMASS®) for fish biomass estimation\n- Low-stress mechanical lice removal system (A-ELECTROLICER™) in development."",""researcherNotes"":""No directly downloadable documents such as PDFs were found on the website despite checking resources and case studies sections."",""sectorDescription"":""Operates in the aquaculture technology sector, providing sustainable, welfare-first technological solutions for fish farming and marine protection."",""sources"":{""clientCategories"":""https://aceaquatec.com/news-and-resources/case-studies"",""companyDescription"":""https://aceaquatec.com/our-company"",""geographicFocus"":""https://aceaquatec.com/contact-us"",""keyExecutives"":""https://aceaquatec.com/our-company"",""productDescription"":""https://aceaquatec.com/aquaculture-products""},""websiteURL"":""https://www.aceaquatec.com/""}" -Beyond Green,https://beyond-green.org/,"Captain Watt Transition, Finorpa, Lita.co, MakeSense",beyond-green.org,https://www.linkedin.com/company/beyond-green-les-marques-alimentaires-de-la-transition-agricole,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://beyond-green.org/"", - ""companyDescription"": ""Beyond Green's mission is to support thousands of farmers moving towards sustainable agriculture by fairly remunerating those who engage in agricultural transition. Their goal is to enable consumers to easily support local farmers through everyday quality products. They operate three brands: PourDemain (supporting organic farming with a focus on fair remuneration), Transition (promoting agro-ecological farming with fair pay), and Vivants! (a juice brand that protects biodiversity, offering high-quality 100% pure juice at accessible prices). Since 2020, Beyond Green has accompanied many farmers in adopting sustainable practices, securing assured volumes and fair pay. Their values include humanity, audacity, authenticity, and sustainability."", - ""productDescription"": ""Beyond Green operates three main brands supporting sustainable agriculture: \n- PourDemain: Grocery and beverage products with two ranges, 'conversion biologique' for farmers transitioning to organic, and 'Bio Sans Compromis' for organic fair-trade farmers, targeted at organic stores.\n- Transition: Support for French farmers moving to agro-ecological models with fairly remunerated products available in mass retail and out-of-home catering.\n- Vivants!: A brand of 100% pure fruit juices that protect biodiversity, offering high-quality, environmentally committed products at accessible prices, also available in mass retail and out-of-home catering."", - ""clientCategories"": [""Organic stores"", ""Mass retail"", ""Out-of-home catering""], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, supporting farmers transitioning to organic and agro-ecological practices, and offering consumer products across grocery, beverage, and fruit juice brands."", - ""geographicFocus"": ""HQ: 47 rue Fourier, 59000 Lille; Sales Focus: France - in organic stores, mass retail, and out-of-home catering."", - ""keyExecutives"": [ - { - ""name"": ""Maxime Durand"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://beyond-green.org/espace-presse"" - } - ], - ""linkedDocuments"": [""https://beyond-green.org/dossier-de-presse-beyond-green-2025""], - ""researcherNotes"": ""Key executive information is limited; only the founder Maxime Durand is identified on the site. Other C-level executives are not publicly listed."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://beyond-green.org/#mission"", - ""productDescription"": ""https://beyond-green.org/#marques"", - ""clientCategories"": ""https://beyond-green.org/#marques"", - ""geographicFocus"": ""https://beyond-green.org/"", - ""keyExecutives"": ""https://beyond-green.org/espace-presse"" - } -}","{ - ""websiteURL"": ""https://beyond-green.org/"", - ""companyDescription"": ""Beyond Green's mission is to support thousands of farmers moving towards sustainable agriculture by fairly remunerating those who engage in agricultural transition. Their goal is to enable consumers to easily support local farmers through everyday quality products. They operate three brands: PourDemain (supporting organic farming with a focus on fair remuneration), Transition (promoting agro-ecological farming with fair pay), and Vivants! (a juice brand that protects biodiversity, offering high-quality 100% pure juice at accessible prices). Since 2020, Beyond Green has accompanied many farmers in adopting sustainable practices, securing assured volumes and fair pay. Their values include humanity, audacity, authenticity, and sustainability."", - ""productDescription"": ""Beyond Green operates three main brands supporting sustainable agriculture: \n- PourDemain: Grocery and beverage products with two ranges, 'conversion biologique' for farmers transitioning to organic, and 'Bio Sans Compromis' for organic fair-trade farmers, targeted at organic stores.\n- Transition: Support for French farmers moving to agro-ecological models with fairly remunerated products available in mass retail and out-of-home catering.\n- Vivants!: A brand of 100% pure fruit juices that protect biodiversity, offering high-quality, environmentally committed products at accessible prices, also available in mass retail and out-of-home catering."", - ""clientCategories"": [""Organic stores"", ""Mass retail"", ""Out-of-home catering""], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, supporting farmers transitioning to organic and agro-ecological practices, and offering consumer products across grocery, beverage, and fruit juice brands."", - ""geographicFocus"": ""HQ: 47 rue Fourier, 59000 Lille; Sales Focus: France - in organic stores, mass retail, and out-of-home catering."", - ""keyExecutives"": [ - { - ""name"": ""Maxime Durand"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://beyond-green.org/espace-presse"" - } - ], - ""linkedDocuments"": [""https://beyond-green.org/dossier-de-presse-beyond-green-2025""], - ""researcherNotes"": ""Key executive information is limited; only the founder Maxime Durand is identified on the site. Other C-level executives are not publicly listed."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://beyond-green.org/#mission"", - ""productDescription"": ""https://beyond-green.org/#marques"", - ""clientCategories"": ""https://beyond-green.org/#marques"", - ""geographicFocus"": ""https://beyond-green.org/"", - ""keyExecutives"": ""https://beyond-green.org/espace-presse"" - } -}",[],"{ - ""websiteURL"": ""https://beyond-green.org/"", - ""companyDescription"": ""Beyond Green's mission is to support thousands of farmers moving towards sustainable agriculture by fairly remunerating those who engage in agricultural transition. Their goal is to enable consumers to easily support local farmers through everyday quality products. They operate three brands: PourDemain (supporting organic farming with a focus on fair remuneration), Transition (promoting agro-ecological farming with fair pay), and Vivants! (a juice brand that protects biodiversity, offering high-quality 100% pure juice at accessible prices). Since 2020, Beyond Green has accompanied many farmers in adopting sustainable practices, securing assured volumes and fair pay. Their values include humanity, audacity, authenticity, and sustainability."", - ""productDescription"": ""Beyond Green operates three main brands supporting sustainable agriculture: \n- PourDemain: Grocery and beverage products with two ranges, 'conversion biologique' for farmers transitioning to organic, and 'Bio Sans Compromis' for organic fair-trade farmers, targeted at organic stores.\n- Transition: Support for French farmers moving to agro-ecological models with fairly remunerated products available in mass retail and out-of-home catering.\n- Vivants!: A brand of 100% pure fruit juices that protect biodiversity, offering high-quality, environmentally committed products at accessible prices, also available in mass retail and out-of-home catering."", - ""clientCategories"": [ - ""Organic Stores"", - ""Mass Retail"", - ""Out-Of-Home Catering"" - ], - ""sectorDescription"": ""Operates in the sustainable agriculture sector, supporting farmers transitioning to organic and agro-ecological practices, and offering consumer products across grocery, beverage, and fruit juice brands."", - ""geographicFocus"": ""HQ: 47 rue Fourier, 59000 Lille; Sales Focus: France - in organic stores, mass retail, and out-of-home catering."", - ""keyExecutives"": [ - { - ""name"": ""Maxime Durand"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://beyond-green.org/espace-presse"" - } - ], - ""researcherNotes"": ""The entity was confirmed as the French sustainable agriculture company via the official domain beyond-green.org and matching executive info (Founder Maxime Durand). No additional executives were found on LinkedIn or other sources, consistent with public website listings. Geographic focus is specifically France, centered in Lille. No conflicting companies with the same name matched the HQ and domain. Other 'Beyond Green' companies found (e.g., US-based school food provider, compostable products manufacturer) are unrelated by domain and sector."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://beyond-green.org/#mission"", - ""productDescription"": ""https://beyond-green.org/#marques"", - ""clientCategories"": ""https://beyond-green.org/#marques"", - ""geographicFocus"": ""https://beyond-green.org/"", - ""keyExecutives"": ""https://beyond-green.org/espace-presse"" - } -}","{""clientCategories"":[""Organic Stores"",""Mass Retail"",""Out-Of-Home Catering""],""companyDescription"":""Beyond Green's mission is to support thousands of farmers moving towards sustainable agriculture by fairly remunerating those who engage in agricultural transition. Their goal is to enable consumers to easily support local farmers through everyday quality products. They operate three brands: PourDemain (supporting organic farming with a focus on fair remuneration), Transition (promoting agro-ecological farming with fair pay), and Vivants! (a juice brand that protects biodiversity, offering high-quality 100% pure juice at accessible prices). Since 2020, Beyond Green has accompanied many farmers in adopting sustainable practices, securing assured volumes and fair pay. Their values include humanity, audacity, authenticity, and sustainability."",""geographicFocus"":""HQ: 47 rue Fourier, 59000 Lille; Sales Focus: France - in organic stores, mass retail, and out-of-home catering."",""keyExecutives"":[{""name"":""Maxime Durand"",""sourceUrl"":""https://beyond-green.org/espace-presse"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Beyond Green operates three main brands supporting sustainable agriculture: \n- PourDemain: Grocery and beverage products with two ranges, 'conversion biologique' for farmers transitioning to organic, and 'Bio Sans Compromis' for organic fair-trade farmers, targeted at organic stores.\n- Transition: Support for French farmers moving to agro-ecological models with fairly remunerated products available in mass retail and out-of-home catering.\n- Vivants!: A brand of 100% pure fruit juices that protect biodiversity, offering high-quality, environmentally committed products at accessible prices, also available in mass retail and out-of-home catering."",""researcherNotes"":""The entity was confirmed as the French sustainable agriculture company via the official domain beyond-green.org and matching executive info (Founder Maxime Durand). No additional executives were found on LinkedIn or other sources, consistent with public website listings. Geographic focus is specifically France, centered in Lille. No conflicting companies with the same name matched the HQ and domain. Other 'Beyond Green' companies found (e.g., US-based school food provider, compostable products manufacturer) are unrelated by domain and sector."",""sectorDescription"":""Operates in the sustainable agriculture sector, supporting farmers transitioning to organic and agro-ecological practices, and offering consumer products across grocery, beverage, and fruit juice brands."",""sources"":{""clientCategories"":""https://beyond-green.org/#marques"",""companyDescription"":""https://beyond-green.org/#mission"",""geographicFocus"":""https://beyond-green.org/"",""keyExecutives"":""https://beyond-green.org/espace-presse"",""productDescription"":""https://beyond-green.org/#marques""},""websiteURL"":""https://beyond-green.org/""}","Correctness: 20% Completeness: 15% The provided statement and data describe a French sustainable agriculture company named Beyond Green with a mission to support farmers transitioning to organic and agro-ecological practices, led by Founder Maxime Durand and based in Lille, France. However, all available search results clearly identify a different Beyond Green entity: a global sustainable travel and hospitality portfolio founded by Paul Adderley (2008) or established by Preferred Travel Group (2021) in the U.S. focused on sustainable hotels and environmental philanthropy. No sources corroborate the French agriculture sector claims, the named executive Maxime Durand, Lille HQ, or the three brand lines (PourDemain, Transition, Vivants!) described. The verified Beyond Green operates in sustainable tourism with no overlap in product offerings or leadership. The company websites referenced in the user query (beyond-green.org) differ from those of the returned Beyond Green travel/hospitality brands, and no supporting independent or official filings confirm the agriculture-related details. This indicates a mistaken conflation of two unrelated businesses sharing the same name. Hence, factual correctness is very low, and many important fields about the verified Beyond Green entities are missing from the query content. The only supporting URLs relate to the hospitality Beyond Green, none to the sustainable agriculture company cited. [1][2][3][4][5]","{""clientCategories"":[""Organic stores"",""Mass retail"",""Out-of-home catering""],""companyDescription"":""Beyond Green's mission is to support thousands of farmers moving towards sustainable agriculture by fairly remunerating those who engage in agricultural transition. Their goal is to enable consumers to easily support local farmers through everyday quality products. They operate three brands: PourDemain (supporting organic farming with a focus on fair remuneration), Transition (promoting agro-ecological farming with fair pay), and Vivants! (a juice brand that protects biodiversity, offering high-quality 100% pure juice at accessible prices). Since 2020, Beyond Green has accompanied many farmers in adopting sustainable practices, securing assured volumes and fair pay. Their values include humanity, audacity, authenticity, and sustainability."",""geographicFocus"":""HQ: 47 rue Fourier, 59000 Lille; Sales Focus: France - in organic stores, mass retail, and out-of-home catering."",""keyExecutives"":[{""name"":""Maxime Durand"",""sourceUrl"":""https://beyond-green.org/espace-presse"",""title"":""Founder""}],""linkedDocuments"":[""https://beyond-green.org/dossier-de-presse-beyond-green-2025""],""missingImportantFields"":[],""productDescription"":""Beyond Green operates three main brands supporting sustainable agriculture: \n- PourDemain: Grocery and beverage products with two ranges, 'conversion biologique' for farmers transitioning to organic, and 'Bio Sans Compromis' for organic fair-trade farmers, targeted at organic stores.\n- Transition: Support for French farmers moving to agro-ecological models with fairly remunerated products available in mass retail and out-of-home catering.\n- Vivants!: A brand of 100% pure fruit juices that protect biodiversity, offering high-quality, environmentally committed products at accessible prices, also available in mass retail and out-of-home catering."",""researcherNotes"":""Key executive information is limited; only the founder Maxime Durand is identified on the site. Other C-level executives are not publicly listed."",""sectorDescription"":""Operates in the sustainable agriculture sector, supporting farmers transitioning to organic and agro-ecological practices, and offering consumer products across grocery, beverage, and fruit juice brands."",""sources"":{""clientCategories"":""https://beyond-green.org/#marques"",""companyDescription"":""https://beyond-green.org/#mission"",""geographicFocus"":""https://beyond-green.org/"",""keyExecutives"":""https://beyond-green.org/espace-presse"",""productDescription"":""https://beyond-green.org/#marques""},""websiteURL"":""https://beyond-green.org/""}" -Deep Planet,https://www.deepplanet.ai,"Hermesa, Inovexus, Oxonian Ventures",deepplanet.ai,https://www.linkedin.com/company/deep-planet,"{""seniorLeadership"":[{""fullName"":""Dr Natalia Efremova"",""title"":""Co-founder"",""profileURL"":""https://www.linkedin.com/company/deep-planet""}]}","{""seniorLeadership"":[{""fullName"":""Dr Natalia Efremova"",""title"":""Co-founder"",""profileURL"":""https://www.linkedin.com/company/deep-planet""}]}","{ - ""websiteURL"": ""https://www.deepplanet.ai"", - ""companyDescription"": ""Deep Planet is a global AgriTech company founded in 2018 by Oxford University scientists and engineers, dedicated to harnessing the power of machine learning to address environmental challenges. Their mission is to mitigate environmental risks and develop cutting-edge AI solutions that benefit the planet, aiming to build a greener future through innovative technology. Deep Planet is an Oxford University startup focused on pioneering AI-driven geospatial solutions for planetary sustainability. The company operates in the agricultural technology sector, offering advanced precision agriculture monitoring, supply chain and landowner crop and habitat monitoring, and asset distribution and risk monitoring for investors, governments, and utilities. Deep Planet develops proprietary machine learning models combining satellite imagery, ground sensors, and crop and soil data to enhance agricultural productivity, environmental sustainability, and operational efficiency."", - ""productDescription"": ""Deep Planet offers geospatial AI-driven solutions for planetary sustainability, focusing on empowering decision making through cutting-edge technology. Their core product and service descriptions include Solutions such as Crop Monitoring, Soil Analysis, Climate Resilience, and Biodiversity Tracking. Precision agriculture solutions include Crop Health Monitoring with real-time insights from satellite imagery; Soil Health & Sustainability using AI for nutrient and carbon monitoring to optimize fertiliser use; Water Stress tracking soil moisture and evapotranspiration to manage irrigation; Maturity & Harvest Logistics with algorithms predicting optimal harvest times; and Pests & Disease early warning systems targeting diseases like Downy Mildew and Phylloxera for targeted pesticide application. Supply chain and landowners solutions include Regional Scans & Crop ID to identify crop boundaries and understand industry state, Crop Health Monitoring offering real-time insights into crop health and vegetation patterns, Regenerative Agriculture & Sustainability using AI soil analysis to monitor carbon sequestration and nutrient levels, Biodiversity & Habitat Classification for tracking ecosystem and habitat health, and Climate Event Analytics monitoring floods, frost, hail in real time for accurate reporting and response. Finance and infrastructure solutions include regional monitoring and asset scans for understanding industry state, identifying business and supply chain opportunities, and assessing growth. They use AI for regenerative agriculture and sustainability, offering soil analysis to monitor carbon sequestration and soil health, helping reduce sampling costs for large carbon projects, and supporting market opportunity identification. Biodiversity and habitat classification solutions track ecosystem health and support conservation and natural capital projects. Climate event analytics enable real-time monitoring of events like floods, frost, or hail to support risk assessment, reporting, and response."", - ""clientCategories"": [""Farmers & Cooperatives"", ""Supply Chain & Landowners"", ""Investors"", ""Governments"", ""Utilities""], - ""sectorDescription"": ""Operates in the agricultural technology (AgriTech) sector, providing AI-driven geospatial solutions for precision agriculture, supply chain monitoring, environmental sustainability, and finance and infrastructure sectors."", - ""geographicFocus"": ""HQ: UK IdeaLondon, 69 Wilson street, London EC2A 2BB, United Kingdom; Branches: Australia, USA, France, Saudi Arabia"", - ""keyExecutives"": [ - { - ""name"": ""Sushma Shankar"", - ""title"": ""Co-Founder, CEO"", - ""sourceUrl"": ""https://www.deepplanet.ai/team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.deepplanet.ai/about-us"", - ""productDescription"": ""https://www.deepplanet.ai/solutions"", - ""clientCategories"": ""https://www.deepplanet.ai/case-studies"", - ""geographicFocus"": ""https://www.deepplanet.ai/contact-us"", - ""keyExecutives"": ""https://www.deepplanet.ai/team"" - } -}","{ - ""websiteURL"": ""https://www.deepplanet.ai"", - ""companyDescription"": ""Deep Planet is a global AgriTech company founded in 2018 by Oxford University scientists and engineers, dedicated to harnessing the power of machine learning to address environmental challenges. Their mission is to mitigate environmental risks and develop cutting-edge AI solutions that benefit the planet, aiming to build a greener future through innovative technology. Deep Planet is an Oxford University startup focused on pioneering AI-driven geospatial solutions for planetary sustainability. The company operates in the agricultural technology sector, offering advanced precision agriculture monitoring, supply chain and landowner crop and habitat monitoring, and asset distribution and risk monitoring for investors, governments, and utilities. Deep Planet develops proprietary machine learning models combining satellite imagery, ground sensors, and crop and soil data to enhance agricultural productivity, environmental sustainability, and operational efficiency."", - ""productDescription"": ""Deep Planet offers geospatial AI-driven solutions for planetary sustainability, focusing on empowering decision making through cutting-edge technology. Their core product and service descriptions include Solutions such as Crop Monitoring, Soil Analysis, Climate Resilience, and Biodiversity Tracking. Precision agriculture solutions include Crop Health Monitoring with real-time insights from satellite imagery; Soil Health & Sustainability using AI for nutrient and carbon monitoring to optimize fertiliser use; Water Stress tracking soil moisture and evapotranspiration to manage irrigation; Maturity & Harvest Logistics with algorithms predicting optimal harvest times; and Pests & Disease early warning systems targeting diseases like Downy Mildew and Phylloxera for targeted pesticide application. Supply chain and landowners solutions include Regional Scans & Crop ID to identify crop boundaries and understand industry state, Crop Health Monitoring offering real-time insights into crop health and vegetation patterns, Regenerative Agriculture & Sustainability using AI soil analysis to monitor carbon sequestration and nutrient levels, Biodiversity & Habitat Classification for tracking ecosystem and habitat health, and Climate Event Analytics monitoring floods, frost, hail in real time for accurate reporting and response. Finance and infrastructure solutions include regional monitoring and asset scans for understanding industry state, identifying business and supply chain opportunities, and assessing growth. They use AI for regenerative agriculture and sustainability, offering soil analysis to monitor carbon sequestration and soil health, helping reduce sampling costs for large carbon projects, and supporting market opportunity identification. Biodiversity and habitat classification solutions track ecosystem health and support conservation and natural capital projects. Climate event analytics enable real-time monitoring of events like floods, frost, or hail to support risk assessment, reporting, and response."", - ""clientCategories"": [""Farmers & Cooperatives"", ""Supply Chain & Landowners"", ""Investors"", ""Governments"", ""Utilities""], - ""sectorDescription"": ""Operates in the agricultural technology (AgriTech) sector, providing AI-driven geospatial solutions for precision agriculture, supply chain monitoring, environmental sustainability, and finance and infrastructure sectors."", - ""geographicFocus"": ""HQ: UK IdeaLondon, 69 Wilson street, London EC2A 2BB, United Kingdom; Branches: Australia, USA, France, Saudi Arabia"", - ""keyExecutives"": [ - { - ""name"": ""Sushma Shankar"", - ""title"": ""Co-Founder, CEO"", - ""sourceUrl"": ""https://www.deepplanet.ai/team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.deepplanet.ai/about-us"", - ""productDescription"": ""https://www.deepplanet.ai/solutions"", - ""clientCategories"": ""https://www.deepplanet.ai/case-studies"", - ""geographicFocus"": ""https://www.deepplanet.ai/contact-us"", - ""keyExecutives"": ""https://www.deepplanet.ai/team"" - } -}",[],"{ - ""websiteURL"": ""https://www.deepplanet.ai"", - ""companyDescription"": ""Deep Planet is a global AgriTech company founded in 2018 by Oxford University scientists and engineers, dedicated to harnessing machine learning to address environmental challenges. Their mission is to mitigate environmental risks and develop advanced AI-driven geospatial solutions that empower farmers, supply chains, investors, governments, and utilities. The company combines satellite imagery, ground sensors, and crop data to enhance agricultural productivity, sustainability, and operational efficiency while pioneering planetary sustainability."", - ""productDescription"": ""Deep Planet offers AI-powered geospatial solutions focusing on precision agriculture, environmental sustainability, and supply chain monitoring. Their solutions include Crop Health Monitoring using satellite imagery, Soil Health & Sustainability with AI nutrient and carbon tracking, Water Stress monitoring for irrigation management, Climate Resilience tools forecasting climate impacts, Biodiversity & Habitat Tracking, and Finance & Infrastructure analytics. These products support farmers, landowners, investors, and governments to optimize agricultural outputs, manage risks, and promote regenerative agriculture and conservation."", - ""clientCategories"": [ - ""Farmers & Cooperatives"", - ""Supply Chain & Landowners"", - ""Investors"", - ""Governments"", - ""Utilities"" - ], - ""sectorDescription"": ""Agricultural technology sector specializing in AI-driven geospatial solutions for precision agriculture, environmental monitoring, and supply chain and finance analytics."", - ""geographicFocus"": ""Headquartered in London, UK, with operational branches in Australia, USA, France, and Saudi Arabia, serving global markets with a focus on scalable planetary sustainability solutions."", - ""keyExecutives"": [ - { - ""name"": ""Sushma Shankar"", - ""title"": ""Co-Founder, CEO"", - ""sourceUrl"": ""https://www.deepplanet.ai/team"" - }, - { - ""name"": ""Dr Natalia Efremova"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.linkedin.com/company/deep-planet"" - } - ], - ""researcherNotes"": ""The company was confirmed as Deep Planet based on domain match (deepplanet.ai), HQ in London, founding date 2018, and AI-driven AgriTech focus confirmed across official site and LinkedIn. Senior leadership includes CEO Sushma Shankar from company site and co-founder Dr Natalia Efremova from LinkedIn; both are included. Geographic focus is drawn from about and contact pages. No critical fields remain blank."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.deepplanet.ai/about-us"", - ""productDescription"": ""https://www.deepplanet.ai/solutions"", - ""clientCategories"": ""https://www.deepplanet.ai/case-studies"", - ""geographicFocus"": ""https://www.deepplanet.ai/contact-us"", - ""keyExecutives"": ""https://www.deepplanet.ai/team"" - } -}","{""clientCategories"":[""Farmers & Cooperatives"",""Supply Chain & Landowners"",""Investors"",""Governments"",""Utilities""],""companyDescription"":""Deep Planet is a global AgriTech company founded in 2018 by Oxford University scientists and engineers, dedicated to harnessing machine learning to address environmental challenges. Their mission is to mitigate environmental risks and develop advanced AI-driven geospatial solutions that empower farmers, supply chains, investors, governments, and utilities. The company combines satellite imagery, ground sensors, and crop data to enhance agricultural productivity, sustainability, and operational efficiency while pioneering planetary sustainability."",""geographicFocus"":""Headquartered in London, UK, with operational branches in Australia, USA, France, and Saudi Arabia, serving global markets with a focus on scalable planetary sustainability solutions."",""keyExecutives"":[{""name"":""Sushma Shankar"",""sourceUrl"":""https://www.deepplanet.ai/team"",""title"":""Co-Founder, CEO""},{""name"":""Dr Natalia Efremova"",""sourceUrl"":""https://www.linkedin.com/company/deep-planet"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Deep Planet offers AI-powered geospatial solutions focusing on precision agriculture, environmental sustainability, and supply chain monitoring. Their solutions include Crop Health Monitoring using satellite imagery, Soil Health & Sustainability with AI nutrient and carbon tracking, Water Stress monitoring for irrigation management, Climate Resilience tools forecasting climate impacts, Biodiversity & Habitat Tracking, and Finance & Infrastructure analytics. These products support farmers, landowners, investors, and governments to optimize agricultural outputs, manage risks, and promote regenerative agriculture and conservation."",""researcherNotes"":""The company was confirmed as Deep Planet based on domain match (deepplanet.ai), HQ in London, founding date 2018, and AI-driven AgriTech focus confirmed across official site and LinkedIn. Senior leadership includes CEO Sushma Shankar from company site and co-founder Dr Natalia Efremova from LinkedIn; both are included. Geographic focus is drawn from about and contact pages. No critical fields remain blank."",""sectorDescription"":""Agricultural technology sector specializing in AI-driven geospatial solutions for precision agriculture, environmental monitoring, and supply chain and finance analytics."",""sources"":{""clientCategories"":""https://www.deepplanet.ai/case-studies"",""companyDescription"":""https://www.deepplanet.ai/about-us"",""geographicFocus"":""https://www.deepplanet.ai/contact-us"",""keyExecutives"":""https://www.deepplanet.ai/team"",""productDescription"":""https://www.deepplanet.ai/solutions""},""websiteURL"":""https://www.deepplanet.ai""}","Correctness: 96% Completeness: 92% The description of Deep Planet as a global AgriTech company founded in 2018 by Oxford University scientists and engineers focusing on AI-driven geospatial solutions aligns well with multiple sources, confirming founding year, founding team, and Oxford origin (https://www.deepplanet.ai/about-us, https://www.growag.com/highlights/article/the-advanced-technology-helping-viticulture-adapt-to-climate-change). Leadership information including CEO Sushma Shankar and co-founder Dr Natalia Efremova is consistent with official pages and LinkedIn (https://www.deepplanet.ai/team, https://www.linkedin.com/company/deep-planet). The geographic footprint with headquarters in London and operational branches in Australia, the USA, France, and Saudi Arabia is supported by company contact and expansion articles (https://www.deepplanet.ai/contact-us, https://www.evokeag.com/deep-planet-explores-australias-wine-tech-market-evokeag). Product offerings around AI precision agriculture, environmental sustainability, and supply chain analytics are detailed on the company site and related case studies (https://www.deepplanet.ai/solutions). The completeness score is slightly reduced because details on funding and investor profiles or recent financial milestones were not clearly found in the sources, and while David Carter is confirmed as a co-founder and CEO in media, the provided client data only names two co-founders specifically. Overall, the factual assertions about mission, leadership, foundation, geography, and products are well-supported and current as of 2025-09-11. https://www.deepplanet.ai/about-us https://www.growag.com/highlights/article/the-advanced-technology-helping-viticulture-adapt-to-climate-change https://www.deepplanet.ai/team https://www.deepplanet.ai/contact-us https://www.evokeag.com/deep-planet-explores-australias-wine-tech-market-evokeag","{""clientCategories"":[""Farmers & Cooperatives"",""Supply Chain & Landowners"",""Investors"",""Governments"",""Utilities""],""companyDescription"":""Deep Planet is a global AgriTech company founded in 2018 by Oxford University scientists and engineers, dedicated to harnessing the power of machine learning to address environmental challenges. Their mission is to mitigate environmental risks and develop cutting-edge AI solutions that benefit the planet, aiming to build a greener future through innovative technology. Deep Planet is an Oxford University startup focused on pioneering AI-driven geospatial solutions for planetary sustainability. The company operates in the agricultural technology sector, offering advanced precision agriculture monitoring, supply chain and landowner crop and habitat monitoring, and asset distribution and risk monitoring for investors, governments, and utilities. Deep Planet develops proprietary machine learning models combining satellite imagery, ground sensors, and crop and soil data to enhance agricultural productivity, environmental sustainability, and operational efficiency."",""geographicFocus"":""HQ: UK IdeaLondon, 69 Wilson street, London EC2A 2BB, United Kingdom; Branches: Australia, USA, France, Saudi Arabia"",""keyExecutives"":[{""name"":""Sushma Shankar"",""sourceUrl"":""https://www.deepplanet.ai/team"",""title"":""Co-Founder, CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Deep Planet offers geospatial AI-driven solutions for planetary sustainability, focusing on empowering decision making through cutting-edge technology. Their core product and service descriptions include Solutions such as Crop Monitoring, Soil Analysis, Climate Resilience, and Biodiversity Tracking. Precision agriculture solutions include Crop Health Monitoring with real-time insights from satellite imagery; Soil Health & Sustainability using AI for nutrient and carbon monitoring to optimize fertiliser use; Water Stress tracking soil moisture and evapotranspiration to manage irrigation; Maturity & Harvest Logistics with algorithms predicting optimal harvest times; and Pests & Disease early warning systems targeting diseases like Downy Mildew and Phylloxera for targeted pesticide application. Supply chain and landowners solutions include Regional Scans & Crop ID to identify crop boundaries and understand industry state, Crop Health Monitoring offering real-time insights into crop health and vegetation patterns, Regenerative Agriculture & Sustainability using AI soil analysis to monitor carbon sequestration and nutrient levels, Biodiversity & Habitat Classification for tracking ecosystem and habitat health, and Climate Event Analytics monitoring floods, frost, hail in real time for accurate reporting and response. Finance and infrastructure solutions include regional monitoring and asset scans for understanding industry state, identifying business and supply chain opportunities, and assessing growth. They use AI for regenerative agriculture and sustainability, offering soil analysis to monitor carbon sequestration and soil health, helping reduce sampling costs for large carbon projects, and supporting market opportunity identification. Biodiversity and habitat classification solutions track ecosystem health and support conservation and natural capital projects. Climate event analytics enable real-time monitoring of events like floods, frost, or hail to support risk assessment, reporting, and response."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural technology (AgriTech) sector, providing AI-driven geospatial solutions for precision agriculture, supply chain monitoring, environmental sustainability, and finance and infrastructure sectors."",""sources"":{""clientCategories"":""https://www.deepplanet.ai/case-studies"",""companyDescription"":""https://www.deepplanet.ai/about-us"",""geographicFocus"":""https://www.deepplanet.ai/contact-us"",""keyExecutives"":""https://www.deepplanet.ai/team"",""productDescription"":""https://www.deepplanet.ai/solutions""},""websiteURL"":""https://www.deepplanet.ai""}" -OroraTech,https://ororatech.com,"Ananda Impact Ventures, Bayern Kapital, BNP Paribas Solar Impulse Venture fund, ConActivity KG, Edaphon, European Circular Bioeconomy Fund, Findus Venture, Korys, Rabo Ventures",ororatech.com,https://www.linkedin.com/company/ororatech,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://ororatech.com"", - ""companyDescription"": ""We empower those who protect our world, one decision at a time. Using thermal intelligence, satellite technology, and real-time insights, we help first responders and decision-makers safeguard communities, reduce risks, and build a more resilient future. OroraTech is a global leader in providing innovative SaaS solutions to tackle wildfires, natural disasters, and climate challenges, utilizing satellite technology, advanced analytics, and real-time insights to protect resources and enhance resilience. Driving resilience through innovation by equipping decision-makers with space-based insights for faster, smarter responses to wildfires, disasters, and climate challenges. Empower everyday heroes to protect lives, sustain resources, and create a safer, more resilient future for people and the planet. Provide critical space insights to heroes on the ground to help them act faster and make smarter decisions."", - ""productDescription"": ""Wildfire Solution: Near-real-time wildfire detection and monitoring from space using thermal intelligence and satellite technology. Technologies include a satellite network, sensors, and AI for thermal data capture and instant alerts. Additional offerings involve wildfire risk assessment and predictive analytics."", - ""clientCategories"": [""Civil protection"", ""Infrastructure & energy"", ""Forestry"", ""Carbon"", ""Climate""], - ""sectorDescription"": ""Operates in the SaaS sector providing space-based thermal intelligence and AI-driven solutions for wildfire detection, risk assessment, and climate resilience."", - ""geographicFocus"": ""HQ: Munich, Germany; Regional offices and operations in the United States, Greece (Athens), Australia, Brazil, and Canada; Sales focus is global wildfire detection and monitoring services via satellite."", - ""keyExecutives"": [ - {""name"": ""Thomas Grübler"", ""title"": ""CSO & Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Rupert Amann"", ""title"": ""Head of Satellite Development & Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Florian Mauracher"", ""title"": ""Head of Product Development & Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Björn Stoffers"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Martin Langer"", ""title"": ""CEO & CTO"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Axel Roenneke"", ""title"": ""CCO"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Viktor Gauk"", ""title"": ""CFO"", ""sourceUrl"": ""https://ororatech.com/company/about-us""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable document files (PDF, DOCX) were found on the website despite searching the Wildfire Library and site-wide search."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ororatech.com/company/about-us"", - ""productDescription"": ""https://ororatech.com/all-products/wildfire-solution"", - ""clientCategories"": ""https://ororatech.com/industries/civil-protection"", - ""geographicFocus"": ""https://ororatech.com/resources/news-blog/ororatech-opens-greek-headquarters-to-accelerate-wildfire-constellation-and-boost-national-innovation"", - ""keyExecutives"": ""https://ororatech.com/company/about-us"" - } -}","{ - ""websiteURL"": ""https://ororatech.com"", - ""companyDescription"": ""We empower those who protect our world, one decision at a time. Using thermal intelligence, satellite technology, and real-time insights, we help first responders and decision-makers safeguard communities, reduce risks, and build a more resilient future. OroraTech is a global leader in providing innovative SaaS solutions to tackle wildfires, natural disasters, and climate challenges, utilizing satellite technology, advanced analytics, and real-time insights to protect resources and enhance resilience. Driving resilience through innovation by equipping decision-makers with space-based insights for faster, smarter responses to wildfires, disasters, and climate challenges. Empower everyday heroes to protect lives, sustain resources, and create a safer, more resilient future for people and the planet. Provide critical space insights to heroes on the ground to help them act faster and make smarter decisions."", - ""productDescription"": ""Wildfire Solution: Near-real-time wildfire detection and monitoring from space using thermal intelligence and satellite technology. Technologies include a satellite network, sensors, and AI for thermal data capture and instant alerts. Additional offerings involve wildfire risk assessment and predictive analytics."", - ""clientCategories"": [""Civil protection"", ""Infrastructure & energy"", ""Forestry"", ""Carbon"", ""Climate""], - ""sectorDescription"": ""Operates in the SaaS sector providing space-based thermal intelligence and AI-driven solutions for wildfire detection, risk assessment, and climate resilience."", - ""geographicFocus"": ""HQ: Munich, Germany; Regional offices and operations in the United States, Greece (Athens), Australia, Brazil, and Canada; Sales focus is global wildfire detection and monitoring services via satellite."", - ""keyExecutives"": [ - {""name"": ""Thomas Grübler"", ""title"": ""CSO & Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Rupert Amann"", ""title"": ""Head of Satellite Development & Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Florian Mauracher"", ""title"": ""Head of Product Development & Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Björn Stoffers"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Martin Langer"", ""title"": ""CEO & CTO"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Axel Roenneke"", ""title"": ""CCO"", ""sourceUrl"": ""https://ororatech.com/company/about-us""}, - {""name"": ""Viktor Gauk"", ""title"": ""CFO"", ""sourceUrl"": ""https://ororatech.com/company/about-us""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable document files (PDF, DOCX) were found on the website despite searching the Wildfire Library and site-wide search."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ororatech.com/company/about-us"", - ""productDescription"": ""https://ororatech.com/all-products/wildfire-solution"", - ""clientCategories"": ""https://ororatech.com/industries/civil-protection"", - ""geographicFocus"": ""https://ororatech.com/resources/news-blog/ororatech-opens-greek-headquarters-to-accelerate-wildfire-constellation-and-boost-national-innovation"", - ""keyExecutives"": ""https://ororatech.com/company/about-us"" - } -}",[],"{ - ""websiteURL"": ""https://ororatech.com"", - ""companyDescription"": ""OroraTech empowers those who protect our world by providing thermal intelligence, satellite technology, and real-time insights to first responders and decision-makers. Founded in 2018 as a university spin-off in Munich, OroraTech delivers innovative SaaS solutions for wildfire detection, natural disaster management, and climate resilience worldwide. Their cutting-edge space-based thermal intelligence and AI technologies enable faster, smarter decisions to safeguard communities, reduce risks, and build resilience."", - ""productDescription"": ""OroraTech's flagship Wildfire Solution leverages a proprietary satellite network, thermal sensors, and AI to deliver near-real-time wildfire detection and monitoring from space. The platform offers instant alerts for emerging fires, wildfire risk assessments, and predictive analytics to enhance situational awareness and disaster response capabilities for public safety and environmental stakeholders globally."", - ""clientCategories"": [""Civil Protection"", ""Infrastructure & Energy"", ""Forestry"", ""Carbon"", ""Climate""], - ""sectorDescription"": ""SaaS provider specializing in space-based thermal intelligence and AI-driven solutions for wildfire detection, risk assessment, and climate resilience."", - ""geographicFocus"": ""Headquartered in Munich, Germany, OroraTech operates globally with regional offices in the United States (Denver), Greece (Athens), Australia, Brazil, and Canada, focusing on worldwide wildfire detection and monitoring via satellite."", - ""keyExecutives"": [ - { - ""name"": ""Thomas Grübler"", - ""title"": ""CSO & Co-founder"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - }, - { - ""name"": ""Rupert Amann"", - ""title"": ""Head of Satellite Development & Co-founder"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - }, - { - ""name"": ""Florian Mauracher"", - ""title"": ""Head of Product Development & Co-founder"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - }, - { - ""name"": ""Björn Stoffers"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - }, - { - ""name"": ""Martin Langer"", - ""title"": ""CEO & CTO"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - }, - { - ""name"": ""Axel Roenneke"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - }, - { - ""name"": ""Viktor Gauk"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://ororatech.com/company/about-us"" - } - ], - ""researcherNotes"": ""The company is well-identified by multiple signals: official website domain, Munich HQ, founding in 2018 as a university spin-off, and distinct nanosatellite wildfire detection technology. Geographic footprint expanded recently with new regional offices in the US (Denver) and Greece (Athens), confirmed by official announcements from 2025. No conflicts found in key executive data. No downloadable documents found on the company's site despite searching. Sources include OroraTech's official site and credible news updates."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ororatech.com/company/about-us"", - ""productDescription"": ""https://ororatech.com/all-products/wildfire-solution"", - ""clientCategories"": ""https://ororatech.com/industries/civil-protection"", - ""geographicFocus"": ""https://ororatech.com/resources/news-blog/ororatech-opens-greek-headquarters-to-accelerate-wildfire-constellation-and-boost-national-innovation"", - ""keyExecutives"": ""https://ororatech.com/company/about-us"" - } -}","{""clientCategories"":[""Civil Protection"",""Infrastructure & Energy"",""Forestry"",""Carbon"",""Climate""],""companyDescription"":""OroraTech empowers those who protect our world by providing thermal intelligence, satellite technology, and real-time insights to first responders and decision-makers. Founded in 2018 as a university spin-off in Munich, OroraTech delivers innovative SaaS solutions for wildfire detection, natural disaster management, and climate resilience worldwide. Their cutting-edge space-based thermal intelligence and AI technologies enable faster, smarter decisions to safeguard communities, reduce risks, and build resilience."",""geographicFocus"":""Headquartered in Munich, Germany, OroraTech operates globally with regional offices in the United States (Denver), Greece (Athens), Australia, Brazil, and Canada, focusing on worldwide wildfire detection and monitoring via satellite."",""keyExecutives"":[{""name"":""Thomas Grübler"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CSO & Co-founder""},{""name"":""Rupert Amann"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""Head of Satellite Development & Co-founder""},{""name"":""Florian Mauracher"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""Head of Product Development & Co-founder""},{""name"":""Björn Stoffers"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""Co-founder""},{""name"":""Martin Langer"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CEO & CTO""},{""name"":""Axel Roenneke"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CCO""},{""name"":""Viktor Gauk"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""OroraTech's flagship Wildfire Solution leverages a proprietary satellite network, thermal sensors, and AI to deliver near-real-time wildfire detection and monitoring from space. The platform offers instant alerts for emerging fires, wildfire risk assessments, and predictive analytics to enhance situational awareness and disaster response capabilities for public safety and environmental stakeholders globally."",""researcherNotes"":""The company is well-identified by multiple signals: official website domain, Munich HQ, founding in 2018 as a university spin-off, and distinct nanosatellite wildfire detection technology. Geographic footprint expanded recently with new regional offices in the US (Denver) and Greece (Athens), confirmed by official announcements from 2025. No conflicts found in key executive data. No downloadable documents found on the company's site despite searching. Sources include OroraTech's official site and credible news updates."",""sectorDescription"":""SaaS provider specializing in space-based thermal intelligence and AI-driven solutions for wildfire detection, risk assessment, and climate resilience."",""sources"":{""clientCategories"":""https://ororatech.com/industries/civil-protection"",""companyDescription"":""https://ororatech.com/company/about-us"",""geographicFocus"":""https://ororatech.com/resources/news-blog/ororatech-opens-greek-headquarters-to-accelerate-wildfire-constellation-and-boost-national-innovation"",""keyExecutives"":""https://ororatech.com/company/about-us"",""productDescription"":""https://ororatech.com/all-products/wildfire-solution""},""websiteURL"":""https://ororatech.com""}","Correctness: 98% Completeness: 95% The company profile presented is largely accurate and well-supported by multiple authoritative sources. OroraTech was indeed founded in 2018 as a university spin-off from the Technical University of Munich and is headquartered in Munich, Germany. The founders — Thomas Grübler, Rupert Amann, Florian Mauracher, and Björn Stoffers — along with their leadership roles such as Martin Langer as CEO & CTO and Axel Roenneke as CCO, are confirmed on OroraTech’s official site. Their flagship product, the Wildfire Solution, utilizes proprietary nanosatellite thermal sensors and AI for near-real-time global wildfire detection and monitoring, delivering alerts and analytics, consistent with their stated mission. The company’s global footprint includes regional offices in the United States (Denver), Greece (Athens), Australia, Brazil, and Canada, reflecting recent official expansions. Employee counts (~80-90), Series B funding in 2024, and partnerships such as participation in ESA’s Copernicus Programme in 2023 also align with public data. Minor omissions include exact investor names and some specific metrics (e.g., detailed revenue figures vary by source) but do not affect core factual integrity. No contradictory information was found across sources. Main references include OroraTech’s official About Us page, ESA-supported news, and independent profiles from Wikipedia and Terra.do validating all key claims as of mid-2025: https://ororatech.com/company/about-us, https://en.wikipedia.org/wiki/OroraTech, https://www.terra.do/climate-companies/ororatech/, https://ororatech.com/resources/news-blog/ororatech-opens-greek-headquarters-to-accelerate-wildfire-constellation-and-boost-national-innovation.","{""clientCategories"":[""Civil protection"",""Infrastructure & energy"",""Forestry"",""Carbon"",""Climate""],""companyDescription"":""We empower those who protect our world, one decision at a time. Using thermal intelligence, satellite technology, and real-time insights, we help first responders and decision-makers safeguard communities, reduce risks, and build a more resilient future. OroraTech is a global leader in providing innovative SaaS solutions to tackle wildfires, natural disasters, and climate challenges, utilizing satellite technology, advanced analytics, and real-time insights to protect resources and enhance resilience. Driving resilience through innovation by equipping decision-makers with space-based insights for faster, smarter responses to wildfires, disasters, and climate challenges. Empower everyday heroes to protect lives, sustain resources, and create a safer, more resilient future for people and the planet. Provide critical space insights to heroes on the ground to help them act faster and make smarter decisions."",""geographicFocus"":""HQ: Munich, Germany; Regional offices and operations in the United States, Greece (Athens), Australia, Brazil, and Canada; Sales focus is global wildfire detection and monitoring services via satellite."",""keyExecutives"":[{""name"":""Thomas Grübler"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CSO & Co-founder""},{""name"":""Rupert Amann"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""Head of Satellite Development & Co-founder""},{""name"":""Florian Mauracher"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""Head of Product Development & Co-founder""},{""name"":""Björn Stoffers"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""Co-founder""},{""name"":""Martin Langer"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CEO & CTO""},{""name"":""Axel Roenneke"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CCO""},{""name"":""Viktor Gauk"",""sourceUrl"":""https://ororatech.com/company/about-us"",""title"":""CFO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Wildfire Solution: Near-real-time wildfire detection and monitoring from space using thermal intelligence and satellite technology. Technologies include a satellite network, sensors, and AI for thermal data capture and instant alerts. Additional offerings involve wildfire risk assessment and predictive analytics."",""researcherNotes"":""No downloadable document files (PDF, DOCX) were found on the website despite searching the Wildfire Library and site-wide search."",""sectorDescription"":""Operates in the SaaS sector providing space-based thermal intelligence and AI-driven solutions for wildfire detection, risk assessment, and climate resilience."",""sources"":{""clientCategories"":""https://ororatech.com/industries/civil-protection"",""companyDescription"":""https://ororatech.com/company/about-us"",""geographicFocus"":""https://ororatech.com/resources/news-blog/ororatech-opens-greek-headquarters-to-accelerate-wildfire-constellation-and-boost-national-innovation"",""keyExecutives"":""https://ororatech.com/company/about-us"",""productDescription"":""https://ororatech.com/all-products/wildfire-solution""},""websiteURL"":""https://ororatech.com""}" -OCELL,https://www.ocell.io/,"AENU, Bayern Kapital, Capnamic, Maximilian Viessmann, Summiteer",ocell.io,https://www.linkedin.com/company/ocell-io,"{""seniorLeadership"":[{""name"":""Christian Decher"",""title"":""Co-Founder & Co-CEO - Product and Sales"",""linkedinProfile"":""https://www.linkedin.com/in/christian-decher""},{""name"":""Felix Horvat"",""title"":""CTO"",""linkedinProfile"":""https://de.linkedin.com/in/felix-horvat-0b5941103""},{""name"":""David Dohmen"",""title"":""Co-Founder & Co-CEO"",""linkedinProfile"":""https://www.linkedin.com/in/david-dohmen-5328508b""}]}","{""seniorLeadership"":[{""name"":""Christian Decher"",""title"":""Co-Founder & Co-CEO - Product and Sales"",""linkedinProfile"":""https://www.linkedin.com/in/christian-decher""},{""name"":""Felix Horvat"",""title"":""CTO"",""linkedinProfile"":""https://de.linkedin.com/in/felix-horvat-0b5941103""},{""name"":""David Dohmen"",""title"":""Co-Founder & Co-CEO"",""linkedinProfile"":""https://www.linkedin.com/in/david-dohmen-5328508b""}]}","{ - ""websiteURL"": ""https://www.ocell.io/"", - ""companyDescription"": ""OCELL is a Munich-based green-tech startup focused on developing local, high-quality climate projects that are transparent, measurable, and effective. Their mission is to harness the full potential of forests to make a significant contribution to climate protection. OCELL uses aerial photography and artificial intelligence to create 'digital twins' of forests, enabling insights into forest growth, carbon storage capacity, and optimal forest management strategies for long-term carbon storage. Their Dynamic Forest technology forms a reliable Measurement, Reporting, and Verification (MRV) system, managing over 800,000 hectares of sustainable forest land across eleven countries."", - ""productDescription"": ""OCELL offers Dynamic Forest, a software platform including an app and desktop software for forest management. Products include a 12-month software license integrating existing GIS data. Key features: real-time data access, offline map functionality, digital workflows from forest inventory to planning, work order creation and sharing, calamity data capture, timber harvesting processes, planting overview, annual planning with dashboards, and supply chain integration. Dynamic Forest supports interfaces with merchandise management systems like TimberData for automated data transfer. Licenses are available for service providers and companies aiming for efficient, digitalized forest management processes."", - ""clientCategories"": [ - ""Professionally-operating forestry companies"", - ""Local forest owners"", - ""Companies seeking carbon storage and biodiversity promotion partnerships"" - ], - ""sectorDescription"": ""Operates in the green-tech and climate protection sector, providing AI-driven forest management and climate project solutions."", - ""geographicFocus"": ""HQ: Munich, Germany; Sales Focus: Eleven countries across Europe"", - ""keyExecutives"": [ - { - ""name"": ""David Dohmen"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Christian Decher"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Felix Horvat"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Jaron Pazi"", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://ocell.io/en-us/blog/jaron-pazi-cco"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company does not publish a comprehensive leadership team list on the site, only the founders and one C-level executive announced recently. No downloadable documents were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ocell.io/"", - ""productDescription"": ""https://www.ocell.io/dynamic-forest"", - ""clientCategories"": ""https://www.ocell.io/en-us/companies"", - ""geographicFocus"": ""https://www.ocell.io/en-us/imprint"", - ""keyExecutives"": ""https://ocell.io/en-us/about-us"" - } -}","{ - ""websiteURL"": ""https://www.ocell.io/"", - ""companyDescription"": ""OCELL is a Munich-based green-tech startup focused on developing local, high-quality climate projects that are transparent, measurable, and effective. Their mission is to harness the full potential of forests to make a significant contribution to climate protection. OCELL uses aerial photography and artificial intelligence to create 'digital twins' of forests, enabling insights into forest growth, carbon storage capacity, and optimal forest management strategies for long-term carbon storage. Their Dynamic Forest technology forms a reliable Measurement, Reporting, and Verification (MRV) system, managing over 800,000 hectares of sustainable forest land across eleven countries."", - ""productDescription"": ""OCELL offers Dynamic Forest, a software platform including an app and desktop software for forest management. Products include a 12-month software license integrating existing GIS data. Key features: real-time data access, offline map functionality, digital workflows from forest inventory to planning, work order creation and sharing, calamity data capture, timber harvesting processes, planting overview, annual planning with dashboards, and supply chain integration. Dynamic Forest supports interfaces with merchandise management systems like TimberData for automated data transfer. Licenses are available for service providers and companies aiming for efficient, digitalized forest management processes."", - ""clientCategories"": [ - ""Professionally-operating forestry companies"", - ""Local forest owners"", - ""Companies seeking carbon storage and biodiversity promotion partnerships"" - ], - ""sectorDescription"": ""Operates in the green-tech and climate protection sector, providing AI-driven forest management and climate project solutions."", - ""geographicFocus"": ""HQ: Munich, Germany; Sales Focus: Eleven countries across Europe"", - ""keyExecutives"": [ - { - ""name"": ""David Dohmen"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Christian Decher"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Felix Horvat"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Jaron Pazi"", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://ocell.io/en-us/blog/jaron-pazi-cco"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company does not publish a comprehensive leadership team list on the site, only the founders and one C-level executive announced recently. No downloadable documents were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ocell.io/"", - ""productDescription"": ""https://www.ocell.io/dynamic-forest"", - ""clientCategories"": ""https://www.ocell.io/en-us/companies"", - ""geographicFocus"": ""https://www.ocell.io/en-us/imprint"", - ""keyExecutives"": ""https://ocell.io/en-us/about-us"" - } -}",[],"{ - ""websiteURL"": ""https://www.ocell.io/"", - ""companyDescription"": ""OCELL is a Munich-based green-tech startup founded in 2019 that develops local, high-quality climate protection projects which are transparent, measurable, and effective. The company harnesses artificial intelligence and aerial photography to create digital twins of forests, providing precise insights into forest growth, carbon storage capacity, and optimal forest management strategies. OCELL’s technology enables sustainable forestry management and supports the generation of reliable, high-quality carbon credits, serving professional forestry companies, local forest owners, and partners focused on carbon storage and biodiversity across eleven European countries."", - ""productDescription"": ""OCELL offers Dynamic Forest, a software platform available via 12-month licenses that integrates GIS data to support digitalized forest management. The product provides real-time data access (including offline maps), digital workflows for inventories, planning, work orders, calamity data capture, timber harvesting, and supply chain integration. It supports interfaces to merchandise management systems such as TimberData, enabling automated data transfer, and is designed for professional forestry service providers and companies seeking efficient forest management and climate impact monitoring."", - ""clientCategories"": [ - ""Professionally-operating Forestry Companies"", - ""Local Forest Owners"", - ""Companies Seeking Carbon Storage and Biodiversity Promotion Partnerships"" - ], - ""sectorDescription"": ""Green-tech and climate protection sector specializing in AI-driven forest management and transparent, measurable climate project solutions."", - ""geographicFocus"": ""Headquartered in Munich, Germany, OCELL operates mainly across eleven European countries with sales and management focus throughout Europe."", - ""keyExecutives"": [ - { - ""name"": ""David Dohmen"", - ""title"": ""Co-Founder & Co-CEO"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Christian Decher"", - ""title"": ""Co-Founder & Co-CEO - Product and Sales"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Felix Horvat"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://ocell.io/en-us/about-us"" - }, - { - ""name"": ""Jaron Pazi"", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://ocell.io/en-us/blog/jaron-pazi-cco"" - } - ], - ""researcherNotes"": ""Confirmation of OCELL identity is based on consistent matches of website domain, HQ in Munich, founding year 2019, and product description tied to AI-based forest digital twins and climate projects. Geographic focus is mainly Europe, specifically eleven countries, as per company sources and recent press. Key executives titles aligned and supplemented with LinkedIn data to clarify co-CEO roles and CTO title. The geographic focus field is provided explicitly by the company. The company does not publish a fully detailed leadership list beyond founders and a C-level officer. No important fields remain missing."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ocell.io/"", - ""productDescription"": ""https://www.ocell.io/dynamic-forest"", - ""clientCategories"": ""https://www.ocell.io/en-us/companies"", - ""geographicFocus"": ""https://www.ocell.io/en-us/imprint"", - ""keyExecutives"": ""https://ocell.io/en-us/about-us"" - } -}","{""clientCategories"":[""Professionally-operating Forestry Companies"",""Local Forest Owners"",""Companies Seeking Carbon Storage and Biodiversity Promotion Partnerships""],""companyDescription"":""OCELL is a Munich-based green-tech startup founded in 2019 that develops local, high-quality climate protection projects which are transparent, measurable, and effective. The company harnesses artificial intelligence and aerial photography to create digital twins of forests, providing precise insights into forest growth, carbon storage capacity, and optimal forest management strategies. OCELL’s technology enables sustainable forestry management and supports the generation of reliable, high-quality carbon credits, serving professional forestry companies, local forest owners, and partners focused on carbon storage and biodiversity across eleven European countries."",""geographicFocus"":""Headquartered in Munich, Germany, OCELL operates mainly across eleven European countries with sales and management focus throughout Europe."",""keyExecutives"":[{""name"":""David Dohmen"",""sourceUrl"":""https://ocell.io/en-us/about-us"",""title"":""Co-Founder & Co-CEO""},{""name"":""Christian Decher"",""sourceUrl"":""https://ocell.io/en-us/about-us"",""title"":""Co-Founder & Co-CEO - Product and Sales""},{""name"":""Felix Horvat"",""sourceUrl"":""https://ocell.io/en-us/about-us"",""title"":""CTO""},{""name"":""Jaron Pazi"",""sourceUrl"":""https://ocell.io/en-us/blog/jaron-pazi-cco"",""title"":""Chief Commercial Officer""}],""missingImportantFields"":[],""productDescription"":""OCELL offers Dynamic Forest, a software platform available via 12-month licenses that integrates GIS data to support digitalized forest management. The product provides real-time data access (including offline maps), digital workflows for inventories, planning, work orders, calamity data capture, timber harvesting, and supply chain integration. It supports interfaces to merchandise management systems such as TimberData, enabling automated data transfer, and is designed for professional forestry service providers and companies seeking efficient forest management and climate impact monitoring."",""researcherNotes"":""Confirmation of OCELL identity is based on consistent matches of website domain, HQ in Munich, founding year 2019, and product description tied to AI-based forest digital twins and climate projects. Geographic focus is mainly Europe, specifically eleven countries, as per company sources and recent press. Key executives titles aligned and supplemented with LinkedIn data to clarify co-CEO roles and CTO title. The geographic focus field is provided explicitly by the company. The company does not publish a fully detailed leadership list beyond founders and a C-level officer. No important fields remain missing."",""sectorDescription"":""Green-tech and climate protection sector specializing in AI-driven forest management and transparent, measurable climate project solutions."",""sources"":{""clientCategories"":""https://www.ocell.io/en-us/companies"",""companyDescription"":""https://www.ocell.io/"",""geographicFocus"":""https://www.ocell.io/en-us/imprint"",""keyExecutives"":""https://ocell.io/en-us/about-us"",""productDescription"":""https://www.ocell.io/dynamic-forest""},""websiteURL"":""https://www.ocell.io/""}","Correctness: 98% Completeness: 95% The description of OCELL as a Munich-based green-tech startup founded in 2019 specializing in AI-driven forest digital twins and climate projects is fully supported by multiple sources[1][3]. The company’s focus on transparent, measurable, and effective climate protection projects across eleven European countries aligns with official descriptions[1][3]. The key executives named—David Dohmen (Co-Founder & Co-CEO), Christian Decher (Co-Founder & Co-CEO - Product and Sales), Felix Horvat (CTO), and Jaron Pazi (Chief Commercial Officer)—match the company website and recent company blog details[3]. The product Dynamic Forest, a GIS-integrated software platform supporting digitalized forest management workflows and timber supply chain integration, is confirmed in the company’s official product page and press materials[3]. The recent €10 million Series A funding round led by Capnamic in January 2025 corroborates the company’s financial backing and growth trajectory, as reported by credible sources[3]. The company’s European geographic footprint with Munich HQ is consistently reported[1][3]. Minor completeness deduction is due to lack of full leadership roster beyond C-level and no specific funding investors named in some sources[2]. Overall, the data is current as of early 2025 and drawn from reliable, official company sources and reputable startup news outlets. https://www.ocell.io/en-us/about-us https://www.ocell.io/dynamic-forest https://www.startbase.com/news/10-millionen-fuer-ocell/ https://www.munich-startup.de/en/startups/ocell-gmbh/","{""clientCategories"":[""Professionally-operating forestry companies"",""Local forest owners"",""Companies seeking carbon storage and biodiversity promotion partnerships""],""companyDescription"":""OCELL is a Munich-based green-tech startup focused on developing local, high-quality climate projects that are transparent, measurable, and effective. Their mission is to harness the full potential of forests to make a significant contribution to climate protection. OCELL uses aerial photography and artificial intelligence to create 'digital twins' of forests, enabling insights into forest growth, carbon storage capacity, and optimal forest management strategies for long-term carbon storage. Their Dynamic Forest technology forms a reliable Measurement, Reporting, and Verification (MRV) system, managing over 800,000 hectares of sustainable forest land across eleven countries."",""geographicFocus"":""HQ: Munich, Germany; Sales Focus: Eleven countries across Europe"",""keyExecutives"":[{""name"":""David Dohmen"",""sourceUrl"":""https://ocell.io/en-us/about-us"",""title"":""Founder""},{""name"":""Christian Decher"",""sourceUrl"":""https://ocell.io/en-us/about-us"",""title"":""Founder""},{""name"":""Felix Horvat"",""sourceUrl"":""https://ocell.io/en-us/about-us"",""title"":""Founder""},{""name"":""Jaron Pazi"",""sourceUrl"":""https://ocell.io/en-us/blog/jaron-pazi-cco"",""title"":""Chief Commercial Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""OCELL offers Dynamic Forest, a software platform including an app and desktop software for forest management. Products include a 12-month software license integrating existing GIS data. Key features: real-time data access, offline map functionality, digital workflows from forest inventory to planning, work order creation and sharing, calamity data capture, timber harvesting processes, planting overview, annual planning with dashboards, and supply chain integration. Dynamic Forest supports interfaces with merchandise management systems like TimberData for automated data transfer. Licenses are available for service providers and companies aiming for efficient, digitalized forest management processes."",""researcherNotes"":""The company does not publish a comprehensive leadership team list on the site, only the founders and one C-level executive announced recently. No downloadable documents were found."",""sectorDescription"":""Operates in the green-tech and climate protection sector, providing AI-driven forest management and climate project solutions."",""sources"":{""clientCategories"":""https://www.ocell.io/en-us/companies"",""companyDescription"":""https://www.ocell.io/"",""geographicFocus"":""https://www.ocell.io/en-us/imprint"",""keyExecutives"":""https://ocell.io/en-us/about-us"",""productDescription"":""https://www.ocell.io/dynamic-forest""},""websiteURL"":""https://www.ocell.io/""}" -Unibio,https://www.unibio.dk,,unibio.dk,https://www.linkedin.com/company/unibio-a-s/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.unibio.dk"", - ""companyDescription"": ""Unibio is pioneering sustainable protein production using advanced fermentation technology to develop scalable, drop-in protein solutions for animal and human nutrition. Their mission is to transform protein production to be affordable, planet-friendly, and efficient, addressing global food security and environmental challenges."", - ""productDescription"": ""Uniprotein® is the core product offering by Unibio, described as a cost-efficient, single-cell protein solution ideal for animal and aquaculture feed including piglets, salmon, shrimp, sea bream, sturgeon, trout, and pet food. It contains up to 70% protein, 6% crude ash, 9% fat, and 85% digestibility. Uniprotein® is non-GMO, antibiotic-free, highly digestible, nutrient dense, and sustainable, with minimal resource requirements and a scalable production process independent of climate and arable land. It is approved for all animal and fish feed in the EU, free from pesticides and contaminants, and promotes health and growth in animals."", - ""clientCategories"": [""Aquaculture"", ""Livestock"", ""Pet Food"", ""Human Nutrition""], - ""sectorDescription"": ""Operates in the sustainable protein production and biotechnology sector, focusing on advanced fermentation technology for animal and human nutrition."", - ""geographicFocus"": ""HQ: Langebjerg 1, DK-4000, Roskilde, Denmark; UK Headquarters: 2 Royal College Street, London NW1 0NH, United Kingdom; Innovation Centre: Asnæsvej 2A, DK - 4400, Kalundborg, Denmark."", - ""keyExecutives"": [ - { - ""name"": ""Abdulrahman S. Alismail"", - ""title"": ""CEO of Saudi Industrial Investment Group (SIIG) - Investor in Unibio"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Hitmi Al-Hitmi"", - ""title"": ""Founder of Gulf Biotech - License Partner"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct PDF or document links were found on the website. Key executives for Unibio itself beyond investors and partners were not explicitly listed."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.unibio.dk/about"", - ""productDescription"": ""https://www.unibio.dk/uniprotein"", - ""clientCategories"": ""https://www.unibio.dk/partnerships"", - ""geographicFocus"": ""https://www.unibio.dk/contact"", - ""keyExecutives"": ""https://www.unibio.dk/about"" - } -}","{ - ""websiteURL"": ""https://www.unibio.dk"", - ""companyDescription"": ""Unibio is pioneering sustainable protein production using advanced fermentation technology to develop scalable, drop-in protein solutions for animal and human nutrition. Their mission is to transform protein production to be affordable, planet-friendly, and efficient, addressing global food security and environmental challenges."", - ""productDescription"": ""Uniprotein® is the core product offering by Unibio, described as a cost-efficient, single-cell protein solution ideal for animal and aquaculture feed including piglets, salmon, shrimp, sea bream, sturgeon, trout, and pet food. It contains up to 70% protein, 6% crude ash, 9% fat, and 85% digestibility. Uniprotein® is non-GMO, antibiotic-free, highly digestible, nutrient dense, and sustainable, with minimal resource requirements and a scalable production process independent of climate and arable land. It is approved for all animal and fish feed in the EU, free from pesticides and contaminants, and promotes health and growth in animals."", - ""clientCategories"": [""Aquaculture"", ""Livestock"", ""Pet Food"", ""Human Nutrition""], - ""sectorDescription"": ""Operates in the sustainable protein production and biotechnology sector, focusing on advanced fermentation technology for animal and human nutrition."", - ""geographicFocus"": ""HQ: Langebjerg 1, DK-4000, Roskilde, Denmark; UK Headquarters: 2 Royal College Street, London NW1 0NH, United Kingdom; Innovation Centre: Asnæsvej 2A, DK - 4400, Kalundborg, Denmark."", - ""keyExecutives"": [ - { - ""name"": ""Abdulrahman S. Alismail"", - ""title"": ""CEO of Saudi Industrial Investment Group (SIIG) - Investor in Unibio"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Hitmi Al-Hitmi"", - ""title"": ""Founder of Gulf Biotech - License Partner"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct PDF or document links were found on the website. Key executives for Unibio itself beyond investors and partners were not explicitly listed."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.unibio.dk/about"", - ""productDescription"": ""https://www.unibio.dk/uniprotein"", - ""clientCategories"": ""https://www.unibio.dk/partnerships"", - ""geographicFocus"": ""https://www.unibio.dk/contact"", - ""keyExecutives"": ""https://www.unibio.dk/about"" - } -}",[],"{ - ""websiteURL"": ""https://www.unibio.dk"", - ""companyDescription"": ""Unibio pioneers sustainable protein production using advanced fermentation technology to create scalable, drop-in protein solutions for animal and human nutrition. Their mission is to transform protein production to be affordable, planet-friendly, and efficient, addressing global food security and environmental challenges. They harness nature’s alchemy via microbes to brew resilient, nutrient-rich proteins, aiming to lead a global transformation in protein production."", - ""productDescription"": ""Uniprotein® is Unibio's core product, a cost-efficient, single-cell protein ideal for animal and aquaculture feed including piglets, salmon, shrimp, sea bream, sturgeon, trout, and pets. It contains up to 70% protein, is non-GMO, antibiotic-free, highly digestible, nutrient dense, and sustainable with minimal resource use. The production is scalable, independent of climate or arable land, and Uniprotein® is approved for all animal and fish feed in the EU, free from pesticides and contaminants, supporting animal health and growth."", - ""clientCategories"": [ - ""Aquaculture"", - ""Livestock"", - ""Pet Food"", - ""Human Nutrition"" - ], - ""sectorDescription"": ""Operates in sustainable protein production and biotechnology, focusing on advanced fermentation technology for animal and human nutrition."", - ""geographicFocus"": ""Headquartered in Roskilde, Denmark, with a UK office in London and an Innovation Centre in Kalundborg, Denmark. Expanding industrial plants are under development internationally, including Russia and the United States, indicating a growing global footprint."", - ""keyExecutives"": [ - { - ""name"": ""Abdulrahman S. Alismail"", - ""title"": ""CEO of Saudi Industrial Investment Group (SIIG) - Investor in Unibio"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Hitmi Al-Hitmi"", - ""title"": ""Founder of Gulf Biotech - License Partner"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""David Henstrom"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.unibio.dk"" - }, - { - ""name"": ""Jess Dragheim"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Olivier Hartz"", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Jens Dynesen"", - ""title"": ""Chief Scientific Officer"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Søren Olsen"", - ""title"": ""Chief Business Officer"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - }, - { - ""name"": ""Anette Lund Petersen"", - ""title"": ""Vice President of People & Culture"", - ""sourceUrl"": ""https://www.unibio.dk/about"" - } - ], - ""researcherNotes"": ""The company is unambiguously identified by matching domain (unibio.dk), HQ location (Roskilde, Denmark), and distinctive protein production technology. Key executives beyond investors and partners were not listed in the initial source but found on the official company About page. Geographic footprint includes Denmark HQ, UK office, and international expansion efforts in Russia and the US, supporting a global operational focus. No regulatory filings or filings with LEI could be sourced within available results. Some leadership titles were added from the company About page to supplement investor/partner list."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.unibio.dk/about"", - ""productDescription"": ""https://www.unibio.dk/uniprotein"", - ""clientCategories"": ""https://www.unibio.dk/partnerships"", - ""geographicFocus"": ""https://www.unibio.dk/contact"", - ""keyExecutives"": ""https://www.unibio.dk/about"" - } -}","{""clientCategories"":[""Aquaculture"",""Livestock"",""Pet Food"",""Human Nutrition""],""companyDescription"":""Unibio pioneers sustainable protein production using advanced fermentation technology to create scalable, drop-in protein solutions for animal and human nutrition. Their mission is to transform protein production to be affordable, planet-friendly, and efficient, addressing global food security and environmental challenges. They harness nature’s alchemy via microbes to brew resilient, nutrient-rich proteins, aiming to lead a global transformation in protein production."",""geographicFocus"":""Headquartered in Roskilde, Denmark, with a UK office in London and an Innovation Centre in Kalundborg, Denmark. Expanding industrial plants are under development internationally, including Russia and the United States, indicating a growing global footprint."",""keyExecutives"":[{""name"":""Abdulrahman S. Alismail"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""CEO of Saudi Industrial Investment Group (SIIG) - Investor in Unibio""},{""name"":""Hitmi Al-Hitmi"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Founder of Gulf Biotech - License Partner""},{""name"":""David Henstrom"",""sourceUrl"":""https://www.unibio.dk"",""title"":""CEO""},{""name"":""Jess Dragheim"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Chief Technology Officer""},{""name"":""Olivier Hartz"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Chief Commercial Officer""},{""name"":""Jens Dynesen"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Chief Scientific Officer""},{""name"":""Søren Olsen"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Chief Business Officer""},{""name"":""Anette Lund Petersen"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Vice President of People & Culture""}],""missingImportantFields"":[],""productDescription"":""Uniprotein® is Unibio's core product, a cost-efficient, single-cell protein ideal for animal and aquaculture feed including piglets, salmon, shrimp, sea bream, sturgeon, trout, and pets. It contains up to 70% protein, is non-GMO, antibiotic-free, highly digestible, nutrient dense, and sustainable with minimal resource use. The production is scalable, independent of climate or arable land, and Uniprotein® is approved for all animal and fish feed in the EU, free from pesticides and contaminants, supporting animal health and growth."",""researcherNotes"":""The company is unambiguously identified by matching domain (unibio.dk), HQ location (Roskilde, Denmark), and distinctive protein production technology. Key executives beyond investors and partners were not listed in the initial source but found on the official company About page. Geographic footprint includes Denmark HQ, UK office, and international expansion efforts in Russia and the US, supporting a global operational focus. No regulatory filings or filings with LEI could be sourced within available results. Some leadership titles were added from the company About page to supplement investor/partner list."",""sectorDescription"":""Operates in sustainable protein production and biotechnology, focusing on advanced fermentation technology for animal and human nutrition."",""sources"":{""clientCategories"":""https://www.unibio.dk/partnerships"",""companyDescription"":""https://www.unibio.dk/about"",""geographicFocus"":""https://www.unibio.dk/contact"",""keyExecutives"":""https://www.unibio.dk/about"",""productDescription"":""https://www.unibio.dk/uniprotein""},""websiteURL"":""https://www.unibio.dk""}","Correctness: 95% Completeness: 90% The company information is largely accurate and well substantiated by official and credible sources. Unibio is indeed headquartered in Roskilde, Denmark, with offices in the UK and an Innovation Centre in Kalundborg, Denmark, and is expanding internationally with plants in Russia and the US being developed[1][3]. The leadership team, including CEO David Henstrom and other key executives like CTO Jess Dragheim and CCO Olivier Hartz, matches details from the official About page[https://www.unibio.dk/about]. Unibio’s core product, Uniprotein®, is a sustainable, single-cell protein made via methane fermentation, approved for animal feed in the EU and described with accurate nutritional and sustainability claims[https://www.unibio.dk/uniprotein]. Funding data citing a $70M investment from Saudi Industrial Investment Group is consistent with external profiles[4]. Minor discrepancies appear in founding date mentions (2001 via Danish sources including UNDP, and 2014 in some international profiles) likely due to corporate history nuances[1][3]. Some leadership titles and complete geographic footprint details were supplemented from the company website beyond initial input, contributing to high but slightly imperfect completeness. No regulatory filings or LEI records were found as expected. Overall, the information represents a faithful and near-complete portrayal of Unibio's identity, business scope, leadership, and product offering as of 2025-09-11. https://www.unibio.dk/about https://www.unibio.dk/uniprotein https://www.undp.org/sdg-accelerator/accelerators/sdg-accelerator-denmark/unibio https://stateofgreen.com/en/solution-providers/unibio/ https://www.zoominfo.com/c/unibio/425705941","{""clientCategories"":[""Aquaculture"",""Livestock"",""Pet Food"",""Human Nutrition""],""companyDescription"":""Unibio is pioneering sustainable protein production using advanced fermentation technology to develop scalable, drop-in protein solutions for animal and human nutrition. Their mission is to transform protein production to be affordable, planet-friendly, and efficient, addressing global food security and environmental challenges."",""geographicFocus"":""HQ: Langebjerg 1, DK-4000, Roskilde, Denmark; UK Headquarters: 2 Royal College Street, London NW1 0NH, United Kingdom; Innovation Centre: Asnæsvej 2A, DK - 4400, Kalundborg, Denmark."",""keyExecutives"":[{""name"":""Abdulrahman S. Alismail"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""CEO of Saudi Industrial Investment Group (SIIG) - Investor in Unibio""},{""name"":""Hitmi Al-Hitmi"",""sourceUrl"":""https://www.unibio.dk/about"",""title"":""Founder of Gulf Biotech - License Partner""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Uniprotein® is the core product offering by Unibio, described as a cost-efficient, single-cell protein solution ideal for animal and aquaculture feed including piglets, salmon, shrimp, sea bream, sturgeon, trout, and pet food. It contains up to 70% protein, 6% crude ash, 9% fat, and 85% digestibility. Uniprotein® is non-GMO, antibiotic-free, highly digestible, nutrient dense, and sustainable, with minimal resource requirements and a scalable production process independent of climate and arable land. It is approved for all animal and fish feed in the EU, free from pesticides and contaminants, and promotes health and growth in animals."",""researcherNotes"":""No direct PDF or document links were found on the website. Key executives for Unibio itself beyond investors and partners were not explicitly listed."",""sectorDescription"":""Operates in the sustainable protein production and biotechnology sector, focusing on advanced fermentation technology for animal and human nutrition."",""sources"":{""clientCategories"":""https://www.unibio.dk/partnerships"",""companyDescription"":""https://www.unibio.dk/about"",""geographicFocus"":""https://www.unibio.dk/contact"",""keyExecutives"":""https://www.unibio.dk/about"",""productDescription"":""https://www.unibio.dk/uniprotein""},""websiteURL"":""https://www.unibio.dk""}" -Tarfin,https://tarfin.com,"Collective Spark, Elevator Ventures, Quona Capital, Syngenta Group, Wamda Capital, Yara Growth Ventures",tarfin.com,https://www.linkedin.com/company/tarfin-group,"{""seniorLeadership"":[{""fullName"":""Mansur Yilmaz"",""title"":""Vice President of Partnership and Sales"",""linkedInProfile"":""https://www.linkedin.com/in/mansur-yilmaz-16434032""},{""fullName"":""Valentina Seiciu"",""title"":""General Manager"",""linkedInProfile"":""https://www.linkedin.com/in/valentina-seiciu-6b5b5b9""}]}","{""seniorLeadership"":[{""fullName"":""Mansur Yilmaz"",""title"":""Vice President of Partnership and Sales"",""linkedInProfile"":""https://www.linkedin.com/in/mansur-yilmaz-16434032""},{""fullName"":""Valentina Seiciu"",""title"":""General Manager"",""linkedInProfile"":""https://www.linkedin.com/in/valentina-seiciu-6b5b5b9""}]}","{ - ""websiteURL"": ""https://tarfin.com"", - ""companyDescription"": ""Tarfin Tarım A.Ş. is dedicated to supporting Turkish farmers, considered key stakeholders in the country's future, by providing access to agricultural inputs like fertilizers, seeds, and feed at suitable prices with flexible payment options. Utilizing a machine learning-based agricultural risk scoring model, the company offers farmers up-to-date price comparisons via a mobile app and through over 1400 authorized sales points across 75 provinces. Their mission includes enabling farmers to purchase agricultural needs without additional costs or burdensome obligations, supporting them to select payment dates aligned with harvest times. Tarfin emphasizes reliability, quality, affordable pricing, and ease of ordering in its services."", - ""productDescription"": ""Tarfin offers core products including fertilizers, seeds, animal feed, and agricultural equipment. Farmers can purchase these products at competitive prices with the option to pay at harvest time using Tarfin's payment plans. Tarfin operates through a mobile app and authorized sales points across 75 cities in Turkey, enabling farmers to compare prices, place orders, and pick up products conveniently. Authorized Tarfin retailers sell fertilizer, feed, seeds, equipment, irrigation systems, and fuel oil. Products vary by retailer."", - ""clientCategories"": [""Farmers"", ""Agricultural producers"", ""Livestock producers""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing financing and sales of fertilizers, seeds, feed, and other agricultural inputs to farmers in Turkey."", - ""geographicFocus"": ""HQ: Ömer Avni Mah. İnebolu Sk. Ekemen Han No:1 Kat:1, D:1 34427 Beyoğlu/İstanbul, Turkey; Sales Focus: Turkey, Romania"", - ""keyExecutives"": [ - { - ""name"": ""Mehmet Memecan"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Valentina Seiciu"", - ""title"": ""General Manager Romania"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Alper Gökalp"", - ""title"": ""VP of Product"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Faruk Can"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Kerimcan Aycibin"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - } - ], - ""linkedDocuments"": [""https://tarfin.com/yetki-belgeleri""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tarfin.com/hakkimizda"", - ""productDescription"": ""https://tarfin.com/en/faq"", - ""clientCategories"": ""https://tarfin.com/blog"", - ""geographicFocus"": ""https://tarfin.com/iletisim"", - ""keyExecutives"": ""https://tarfin.com/en/career"" - } -}","{ - ""websiteURL"": ""https://tarfin.com"", - ""companyDescription"": ""Tarfin Tarım A.Ş. is dedicated to supporting Turkish farmers, considered key stakeholders in the country's future, by providing access to agricultural inputs like fertilizers, seeds, and feed at suitable prices with flexible payment options. Utilizing a machine learning-based agricultural risk scoring model, the company offers farmers up-to-date price comparisons via a mobile app and through over 1400 authorized sales points across 75 provinces. Their mission includes enabling farmers to purchase agricultural needs without additional costs or burdensome obligations, supporting them to select payment dates aligned with harvest times. Tarfin emphasizes reliability, quality, affordable pricing, and ease of ordering in its services."", - ""productDescription"": ""Tarfin offers core products including fertilizers, seeds, animal feed, and agricultural equipment. Farmers can purchase these products at competitive prices with the option to pay at harvest time using Tarfin's payment plans. Tarfin operates through a mobile app and authorized sales points across 75 cities in Turkey, enabling farmers to compare prices, place orders, and pick up products conveniently. Authorized Tarfin retailers sell fertilizer, feed, seeds, equipment, irrigation systems, and fuel oil. Products vary by retailer."", - ""clientCategories"": [""Farmers"", ""Agricultural producers"", ""Livestock producers""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing financing and sales of fertilizers, seeds, feed, and other agricultural inputs to farmers in Turkey."", - ""geographicFocus"": ""HQ: Ömer Avni Mah. İnebolu Sk. Ekemen Han No:1 Kat:1, D:1 34427 Beyoğlu/İstanbul, Turkey; Sales Focus: Turkey, Romania"", - ""keyExecutives"": [ - { - ""name"": ""Mehmet Memecan"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Valentina Seiciu"", - ""title"": ""General Manager Romania"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Alper Gökalp"", - ""title"": ""VP of Product"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Faruk Can"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Kerimcan Aycibin"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - } - ], - ""linkedDocuments"": [""https://tarfin.com/yetki-belgeleri""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tarfin.com/hakkimizda"", - ""productDescription"": ""https://tarfin.com/en/faq"", - ""clientCategories"": ""https://tarfin.com/blog"", - ""geographicFocus"": ""https://tarfin.com/iletisim"", - ""keyExecutives"": ""https://tarfin.com/en/career"" - } -}",[],"{ - ""websiteURL"": ""https://tarfin.com"", - ""companyDescription"": ""Tarfin Tarım A.Ş. is dedicated to supporting Turkish farmers by providing access to agricultural inputs such as fertilizers, seeds, and animal feed at competitive prices with flexible payment options, including payment at harvest. Utilizing proprietary machine learning-based agricultural risk scoring models and a widespread network of over 1,400 authorized retailers across Turkey, Tarfin enables farmers to conveniently compare prices, place orders via a mobile app, and purchase without collateral or hidden fees. The company focuses on reliability, affordability, and ease of ordering to empower farmers and improve their financial stability."", - ""productDescription"": ""Tarfin offers fertilizers, seeds, animal feed, and agricultural equipment through a mobile application and authorized sales points across 75 cities in Turkey. Farmers can compare prices, select from competitive offers, and purchase inputs with flexible payment terms aligned with harvest times. The products, which include irrigation systems and fuel oil depending on retailer availability, are delivered quickly from nearby authorized Tarfin retailers, providing ease of access and cost savings to farmers."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Producers"", - ""Livestock Producers"" - ], - ""sectorDescription"": ""Agricultural technology company specializing in financing and distribution of fertilizers, seeds, feed, and other agricultural inputs in Turkey."", - ""geographicFocus"": ""Primary focus on Turkey with sales presence also in Romania."", - ""keyExecutives"": [ - { - ""name"": ""Mehmet Memecan"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Valentina Seiciu"", - ""title"": ""General Manager Romania"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Alper Gökalp"", - ""title"": ""VP of Product"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Faruk Can"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Kerimcan Aycibin"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://tarfin.com/en/career"" - }, - { - ""name"": ""Mansur Yilmaz"", - ""title"": ""Vice President of Partnership and Sales"", - ""sourceUrl"": ""https://www.linkedin.com/in/mansur-yilmaz-16434032"" - } - ], - ""researcherNotes"": ""The company is clearly identified by matching domain (tarfin.com), HQ city (Istanbul, Turkey), and founder Mehmet Memecan, confirmed through multiple sources including the official website, LinkedIn profiles, and trusted press. Geographic focus extends from Turkey to Romania, supported by company and event listings. Executive leadership includes additional senior executive Mansur Yilmaz from LinkedIn not previously in company data. No conflicting information found. Some titles from LinkedIn supplement company site data. All required fields are completed."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tarfin.com/en/about-us"", - ""productDescription"": ""https://tarfin.com/en/faq"", - ""clientCategories"": ""https://tarfin.com/blog"", - ""geographicFocus"": ""https://tarfin.com/iletisim"", - ""keyExecutives"": ""https://tarfin.com/en/career"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Producers"",""Livestock Producers""],""companyDescription"":""Tarfin Tarım A.Ş. is dedicated to supporting Turkish farmers by providing access to agricultural inputs such as fertilizers, seeds, and animal feed at competitive prices with flexible payment options, including payment at harvest. Utilizing proprietary machine learning-based agricultural risk scoring models and a widespread network of over 1,400 authorized retailers across Turkey, Tarfin enables farmers to conveniently compare prices, place orders via a mobile app, and purchase without collateral or hidden fees. The company focuses on reliability, affordability, and ease of ordering to empower farmers and improve their financial stability."",""geographicFocus"":""Primary focus on Turkey with sales presence also in Romania."",""keyExecutives"":[{""name"":""Mehmet Memecan"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""Founder and CEO""},{""name"":""Valentina Seiciu"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""General Manager Romania""},{""name"":""Alper Gökalp"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""VP of Product""},{""name"":""Faruk Can"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""CTO""},{""name"":""Kerimcan Aycibin"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""CFO""},{""name"":""Mansur Yilmaz"",""sourceUrl"":""https://www.linkedin.com/in/mansur-yilmaz-16434032"",""title"":""Vice President of Partnership and Sales""}],""missingImportantFields"":[],""productDescription"":""Tarfin offers fertilizers, seeds, animal feed, and agricultural equipment through a mobile application and authorized sales points across 75 cities in Turkey. Farmers can compare prices, select from competitive offers, and purchase inputs with flexible payment terms aligned with harvest times. The products, which include irrigation systems and fuel oil depending on retailer availability, are delivered quickly from nearby authorized Tarfin retailers, providing ease of access and cost savings to farmers."",""researcherNotes"":""The company is clearly identified by matching domain (tarfin.com), HQ city (Istanbul, Turkey), and founder Mehmet Memecan, confirmed through multiple sources including the official website, LinkedIn profiles, and trusted press. Geographic focus extends from Turkey to Romania, supported by company and event listings. Executive leadership includes additional senior executive Mansur Yilmaz from LinkedIn not previously in company data. No conflicting information found. Some titles from LinkedIn supplement company site data. All required fields are completed."",""sectorDescription"":""Agricultural technology company specializing in financing and distribution of fertilizers, seeds, feed, and other agricultural inputs in Turkey."",""sources"":{""clientCategories"":""https://tarfin.com/blog"",""companyDescription"":""https://tarfin.com/en/about-us"",""geographicFocus"":""https://tarfin.com/iletisim"",""keyExecutives"":""https://tarfin.com/en/career"",""productDescription"":""https://tarfin.com/en/faq""},""websiteURL"":""https://tarfin.com""}","Correctness: 97% Completeness: 95% The provided information about Tarfin Tarım A.Ş. is highly accurate and comprehensive based on multiple official sources. Tarfin is indeed an Istanbul-based agricultural fintech startup founded in 2017, focused on providing Turkish farmers access to agricultural inputs—including fertilizers, seeds, and animal feed—via a mobile app and a widespread network of authorized retailers, with flexible payment options at harvest time and no collateral requirements. Key leadership names including Founder and CEO Mehmet Memecan are confirmed by the company website and EIF case study (https://tarfin.com/en/about-us, https://www.eif.org/what_we_do/equity/Case_studies/tarfin-turkey.htm). The geographic focus is primarily Turkey (75+ cities) with sales presence also in Romania per official sources. Product descriptions covering fertilizers, seeds, feed, equipment, and payment flexibility match well with Tarfin’s communications. Some minor differences exist for number of authorized retailers (800+ vs 1400+), likely reflecting updates over time. The leadership list includes verified executives from the company site and LinkedIn, including Mansur Yilmaz as VP of Partnership and Sales, confirming completeness. No conflicting or inaccurate data was found in the verified sources. Overall, the record is precise and captures all key material aspects as of 2025-09-11 from primary company sources and EIF (https://tarfin.com/en/career, https://tarfin.com/iletisim, https://www.linkedin.com/in/mansur-yilmaz-16434032, https://tarfin.com/en/faq).","{""clientCategories"":[""Farmers"",""Agricultural producers"",""Livestock producers""],""companyDescription"":""Tarfin Tarım A.Ş. is dedicated to supporting Turkish farmers, considered key stakeholders in the country's future, by providing access to agricultural inputs like fertilizers, seeds, and feed at suitable prices with flexible payment options. Utilizing a machine learning-based agricultural risk scoring model, the company offers farmers up-to-date price comparisons via a mobile app and through over 1400 authorized sales points across 75 provinces. Their mission includes enabling farmers to purchase agricultural needs without additional costs or burdensome obligations, supporting them to select payment dates aligned with harvest times. Tarfin emphasizes reliability, quality, affordable pricing, and ease of ordering in its services."",""geographicFocus"":""HQ: Ömer Avni Mah. İnebolu Sk. Ekemen Han No:1 Kat:1, D:1 34427 Beyoğlu/İstanbul, Turkey; Sales Focus: Turkey, Romania"",""keyExecutives"":[{""name"":""Mehmet Memecan"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""Founder and CEO""},{""name"":""Valentina Seiciu"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""General Manager Romania""},{""name"":""Alper Gökalp"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""VP of Product""},{""name"":""Faruk Can"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""CTO""},{""name"":""Kerimcan Aycibin"",""sourceUrl"":""https://tarfin.com/en/career"",""title"":""CFO""}],""linkedDocuments"":[""https://tarfin.com/yetki-belgeleri""],""missingImportantFields"":[],""productDescription"":""Tarfin offers core products including fertilizers, seeds, animal feed, and agricultural equipment. Farmers can purchase these products at competitive prices with the option to pay at harvest time using Tarfin's payment plans. Tarfin operates through a mobile app and authorized sales points across 75 cities in Turkey, enabling farmers to compare prices, place orders, and pick up products conveniently. Authorized Tarfin retailers sell fertilizer, feed, seeds, equipment, irrigation systems, and fuel oil. Products vary by retailer."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural technology sector, providing financing and sales of fertilizers, seeds, feed, and other agricultural inputs to farmers in Turkey."",""sources"":{""clientCategories"":""https://tarfin.com/blog"",""companyDescription"":""https://tarfin.com/hakkimizda"",""geographicFocus"":""https://tarfin.com/iletisim"",""keyExecutives"":""https://tarfin.com/en/career"",""productDescription"":""https://tarfin.com/en/faq""},""websiteURL"":""https://tarfin.com""}" -eAgronom,https://www.eagronom.com/,Sustainable Futures,eagronom.com,https://www.linkedin.com/company/eagronom,"{""seniorLeadership"":[{""name"":""Robin Saluoks"",""title"":""Founder & CEO"",""linkedinProfile"":""https://www.linkedin.com/in/robin-saluoks-097487a7""},{""name"":""Kristjan Luha"",""title"":""Co-Founder & Head of Value Chain Partnerships"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Tarmo Osman"",""title"":""COO"",""linkedinProfile"":""https://www.linkedin.com/in/tarmoosman""},{""name"":""Andres Täht"",""title"":""CTO"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Adam Mikolajczak"",""title"":""GM of Central and Eastern Europe"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Tatiana Boussange"",""title"":""Chief Scientific and Innovation Officer"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Silver Bohl"",""title"":""Head of Marketing"",""linkedinProfile"":""https://www.linkedin.com/in/silver-bohl""},{""name"":""Marget Miil"",""title"":""Head of People and Culture"",""linkedinProfile"":""https://www.linkedin.com/in/margetmiil""},{""name"":""Tiit-Gregor Mets"",""title"":""Head of Legal"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""}]}","{""seniorLeadership"":[{""name"":""Robin Saluoks"",""title"":""Founder & CEO"",""linkedinProfile"":""https://www.linkedin.com/in/robin-saluoks-097487a7""},{""name"":""Kristjan Luha"",""title"":""Co-Founder & Head of Value Chain Partnerships"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Tarmo Osman"",""title"":""COO"",""linkedinProfile"":""https://www.linkedin.com/in/tarmoosman""},{""name"":""Andres Täht"",""title"":""CTO"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Adam Mikolajczak"",""title"":""GM of Central and Eastern Europe"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Tatiana Boussange"",""title"":""Chief Scientific and Innovation Officer"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""},{""name"":""Silver Bohl"",""title"":""Head of Marketing"",""linkedinProfile"":""https://www.linkedin.com/in/silver-bohl""},{""name"":""Marget Miil"",""title"":""Head of People and Culture"",""linkedinProfile"":""https://www.linkedin.com/in/margetmiil""},{""name"":""Tiit-Gregor Mets"",""title"":""Head of Legal"",""linkedinProfile"":""https://www.linkedin.com/company/eagronom""}]}","{""websiteURL"":""https://www.eagronom.com/"",""companyDescription"":""eAgronom is an Estonian company founded in 2016, headquartered in Tartu, Estonia, with teams in Latvia, Poland, and Spain, and operating in Europe and Africa. Its mission is to bring financial benefits to sustainable farmers by helping them operate smarter and sustainably, fighting climate change by removing carbon from the atmosphere through soil carbon capture, and providing solutions like monitoring and verifying sustainable practices, generating carbon credits, increasing agricultural efficiency, and improving access to financing."",""productDescription"":""Core offerings include farm management software that supports smart and sustainable farming practices, a Carbon Program focused on regenerative farming and carbon credit projects, and sustainable farmer loans to improve financial access for farmers."",""clientCategories"":[""Resellers"",""Banks"",""Food companies"",""Landowners"",""Carbon credit buyers""],""sectorDescription"":""Operates in the sustainable agriculture and farm management technology sector, focusing on climate-friendly farming solutions and carbon credit generation."",""geographicFocus"":""HQ: Tartu, Estonia; Sales Focus: Europe, Africa, Central and Eastern Europe, West Europe, Estonia, Latvia, Poland, Romania."",""keyExecutives"":[{""name"":""Robin Saluoks"",""title"":""Founder & CEO"",""sourceUrl"":""https://linkedin.com/in/robin-saluoks-097487a7""},{""name"":""Kristjan Luha"",""title"":""Co-Founder & Head of Value Chain Partnerships"",""sourceUrl"":""https://linkedin.com/in/kristjan-luha-4690472""},{""name"":""Tarmo Osman"",""title"":""COO"",""sourceUrl"":""https://linkedin.com/in/tarmoosman""},{""name"":""Andres Täht"",""title"":""CTO"",""sourceUrl"":""https://linkedin.com/in/andrestaht""},{""name"":""Tatiana Boussange"",""title"":""Chief Scientific and Innovation Officer"",""sourceUrl"":""https://linkedin.com/in/tatianab""}],""linkedDocuments"":[""https://eagronom.com/legal""],""researcherNotes"":null,""missingImportantFields"":[],""sources"":{""companyDescription"":""https://www.eagronom.com/about"",""productDescription"":""https://www.eagronom.com/about"",""clientCategories"":""https://www.eagronom.com/partners"",""geographicFocus"":""https://www.eagronom.com/contacts"",""keyExecutives"":""https://www.eagronom.com/about""}}","{""websiteURL"":""https://www.eagronom.com/"",""companyDescription"":""eAgronom is an Estonian company founded in 2016, headquartered in Tartu, Estonia, with teams in Latvia, Poland, and Spain, and operating in Europe and Africa. Its mission is to bring financial benefits to sustainable farmers by helping them operate smarter and sustainably, fighting climate change by removing carbon from the atmosphere through soil carbon capture, and providing solutions like monitoring and verifying sustainable practices, generating carbon credits, increasing agricultural efficiency, and improving access to financing."",""productDescription"":""Core offerings include farm management software that supports smart and sustainable farming practices, a Carbon Program focused on regenerative farming and carbon credit projects, and sustainable farmer loans to improve financial access for farmers."",""clientCategories"":[""Resellers"",""Banks"",""Food companies"",""Landowners"",""Carbon credit buyers""],""sectorDescription"":""Operates in the sustainable agriculture and farm management technology sector, focusing on climate-friendly farming solutions and carbon credit generation."",""geographicFocus"":""HQ: Tartu, Estonia; Sales Focus: Europe, Africa, Central and Eastern Europe, West Europe, Estonia, Latvia, Poland, Romania."",""keyExecutives"":[{""name"":""Robin Saluoks"",""title"":""Founder & CEO"",""sourceUrl"":""https://linkedin.com/in/robin-saluoks-097487a7""},{""name"":""Kristjan Luha"",""title"":""Co-Founder & Head of Value Chain Partnerships"",""sourceUrl"":""https://linkedin.com/in/kristjan-luha-4690472""},{""name"":""Tarmo Osman"",""title"":""COO"",""sourceUrl"":""https://linkedin.com/in/tarmoosman""},{""name"":""Andres Täht"",""title"":""CTO"",""sourceUrl"":""https://linkedin.com/in/andrestaht""},{""name"":""Tatiana Boussange"",""title"":""Chief Scientific and Innovation Officer"",""sourceUrl"":""https://linkedin.com/in/tatianab""}],""linkedDocuments"":[""https://eagronom.com/legal""],""researcherNotes"":null,""missingImportantFields"":[],""sources"":{""companyDescription"":""https://www.eagronom.com/about"",""productDescription"":""https://www.eagronom.com/about"",""clientCategories"":""https://www.eagronom.com/partners"",""geographicFocus"":""https://www.eagronom.com/contacts"",""keyExecutives"":""https://www.eagronom.com/about""}}",[],"{ - ""websiteURL"": ""https://www.eagronom.com"", - ""companyDescription"": ""eAgronom is an Estonian company founded in 2016 and headquartered in Tartu, Estonia, with teams in Latvia, Poland, and Spain, operating mainly across Europe and Africa. Its mission is to help farmers operate smarter and sustainably, providing financial benefits by improving agricultural efficiency, monitoring and verifying sustainable practices, generating carbon credits through soil carbon capture, and enhancing access to financing. The company addresses climate change by enabling carbon removal from the atmosphere via regenerative farming techniques."", - ""productDescription"": ""eAgronom offers farm management software that supports smart, sustainable farming practices by enabling real-time oversight of farms, employees, and fields. Its Carbon Program focuses on regenerative farming and carbon credit projects, allowing farmers to participate in carbon markets and earn additional revenue. The company also provides sustainable farmer loans to improve financial access, helping farmers increase soil health, reduce input costs, and improve overall agricultural profitability."", - ""clientCategories"": [ - ""Resellers"", - ""Banks"", - ""Food Companies"", - ""Landowners"", - ""Carbon Credit Buyers"" - ], - ""sectorDescription"": ""Agricultural technology company specializing in sustainable farm management and climate-friendly farming solutions, including carbon credit generation and regenerative agriculture."", - ""geographicFocus"": ""Headquartered in Tartu, Estonia, with primary sales and operational focus across Europe and Africa, including Central and Eastern Europe, Western Europe, Estonia, Latvia, Poland, and Romania."", - ""keyExecutives"": [ - { - ""name"": ""Robin Saluoks"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://linkedin.com/in/robin-saluoks-097487a7"" - }, - { - ""name"": ""Kristjan Luha"", - ""title"": ""Co-Founder & Head of Value Chain Partnerships"", - ""sourceUrl"": ""https://linkedin.com/in/kristjan-luha-4690472"" - }, - { - ""name"": ""Tarmo Osman"", - ""title"": ""COO"", - ""sourceUrl"": ""https://linkedin.com/in/tarmoosman"" - }, - { - ""name"": ""Andres Täht"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://linkedin.com/in/andrestaht"" - }, - { - ""name"": ""Tatiana Boussange"", - ""title"": ""Chief Scientific and Innovation Officer"", - ""sourceUrl"": ""https://linkedin.com/in/tatianab"" - } - ], - ""researcherNotes"": ""The entity is confirmed based on domain match (eagronom.com), HQ location (Tartu, Estonia), founding year (2016), and consistent product and sector descriptions. Geographic focus is derived primarily from the company website and recent press, detailing European and African markets with explicit country mentions. All listed key executives are senior-level and corroborated by LinkedIn profiles and the company’s About page. No critical fields remain blank."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.eagronom.com/about"", - ""productDescription"": ""https://www.eagronom.com/about"", - ""clientCategories"": ""https://www.eagronom.com/partners"", - ""geographicFocus"": ""https://www.eagronom.com/contacts"", - ""keyExecutives"": ""https://www.eagronom.com/about"" - } -}","{""clientCategories"":[""Resellers"",""Banks"",""Food Companies"",""Landowners"",""Carbon Credit Buyers""],""companyDescription"":""eAgronom is an Estonian company founded in 2016 and headquartered in Tartu, Estonia, with teams in Latvia, Poland, and Spain, operating mainly across Europe and Africa. Its mission is to help farmers operate smarter and sustainably, providing financial benefits by improving agricultural efficiency, monitoring and verifying sustainable practices, generating carbon credits through soil carbon capture, and enhancing access to financing. The company addresses climate change by enabling carbon removal from the atmosphere via regenerative farming techniques."",""geographicFocus"":""Headquartered in Tartu, Estonia, with primary sales and operational focus across Europe and Africa, including Central and Eastern Europe, Western Europe, Estonia, Latvia, Poland, and Romania."",""keyExecutives"":[{""name"":""Robin Saluoks"",""sourceUrl"":""https://linkedin.com/in/robin-saluoks-097487a7"",""title"":""Founder & CEO""},{""name"":""Kristjan Luha"",""sourceUrl"":""https://linkedin.com/in/kristjan-luha-4690472"",""title"":""Co-Founder & Head of Value Chain Partnerships""},{""name"":""Tarmo Osman"",""sourceUrl"":""https://linkedin.com/in/tarmoosman"",""title"":""COO""},{""name"":""Andres Täht"",""sourceUrl"":""https://linkedin.com/in/andrestaht"",""title"":""CTO""},{""name"":""Tatiana Boussange"",""sourceUrl"":""https://linkedin.com/in/tatianab"",""title"":""Chief Scientific and Innovation Officer""}],""missingImportantFields"":[],""productDescription"":""eAgronom offers farm management software that supports smart, sustainable farming practices by enabling real-time oversight of farms, employees, and fields. Its Carbon Program focuses on regenerative farming and carbon credit projects, allowing farmers to participate in carbon markets and earn additional revenue. The company also provides sustainable farmer loans to improve financial access, helping farmers increase soil health, reduce input costs, and improve overall agricultural profitability."",""researcherNotes"":""The entity is confirmed based on domain match (eagronom.com), HQ location (Tartu, Estonia), founding year (2016), and consistent product and sector descriptions. Geographic focus is derived primarily from the company website and recent press, detailing European and African markets with explicit country mentions. All listed key executives are senior-level and corroborated by LinkedIn profiles and the company’s About page. No critical fields remain blank."",""sectorDescription"":""Agricultural technology company specializing in sustainable farm management and climate-friendly farming solutions, including carbon credit generation and regenerative agriculture."",""sources"":{""clientCategories"":""https://www.eagronom.com/partners"",""companyDescription"":""https://www.eagronom.com/about"",""geographicFocus"":""https://www.eagronom.com/contacts"",""keyExecutives"":""https://www.eagronom.com/about"",""productDescription"":""https://www.eagronom.com/about""},""websiteURL"":""https://www.eagronom.com""}","Correctness: 98% Completeness: 95% The provided description of eAgronom is highly accurate and comprehensive. It correctly identifies eAgronom as an Estonian agritech company founded in 2016, headquartered in Tartu, with teams in Latvia, Poland, and Spain, operating primarily across Europe and Africa[1][2][3]. The founders and key executives mentioned align with identified leadership from LinkedIn and company About information, including Robin Saluoks as Founder & CEO and Kristjan Luha as Co-Founder and Head of Value Chain Partnerships[1][3]. The product and service descriptions, emphasizing sustainable farm management software, carbon credit generation, and financial access for farmers, match the company’s communications and recent press on regenerative agriculture and carbon market participation[3][4][5]. Geographic focus on several European countries and Africa is consistent with sources, detailing market presence in Eastern and Western Europe and African operations via partnerships[3][4]. Minor discrepancy is the original co-founder Stenver Jerkku not listed among the current key executives here, reflecting either a role change or omission, which causes a slight deduction. Overall, key company details, market focus, leadership, and product scope are well covered, with no major contradictions or important fields missing in publicly available sources as of 2025[1][3][4][5]. URLs: https://www.eagronom.com/about; https://venturekites.com/eagronom-sustainable-agritech-company/; https://tech.eu/2025/05/09/mondel-z-invests-in-estonia-s-eagronom-to-boost-regenerative-farming-across-europe/; https://app.dealroom.co/companies/eagronom","{""clientCategories"":[""Resellers"",""Banks"",""Food companies"",""Landowners"",""Carbon credit buyers""],""companyDescription"":""eAgronom is an Estonian company founded in 2016, headquartered in Tartu, Estonia, with teams in Latvia, Poland, and Spain, and operating in Europe and Africa. Its mission is to bring financial benefits to sustainable farmers by helping them operate smarter and sustainably, fighting climate change by removing carbon from the atmosphere through soil carbon capture, and providing solutions like monitoring and verifying sustainable practices, generating carbon credits, increasing agricultural efficiency, and improving access to financing."",""geographicFocus"":""HQ: Tartu, Estonia; Sales Focus: Europe, Africa, Central and Eastern Europe, West Europe, Estonia, Latvia, Poland, Romania."",""keyExecutives"":[{""name"":""Robin Saluoks"",""sourceUrl"":""https://linkedin.com/in/robin-saluoks-097487a7"",""title"":""Founder & CEO""},{""name"":""Kristjan Luha"",""sourceUrl"":""https://linkedin.com/in/kristjan-luha-4690472"",""title"":""Co-Founder & Head of Value Chain Partnerships""},{""name"":""Tarmo Osman"",""sourceUrl"":""https://linkedin.com/in/tarmoosman"",""title"":""COO""},{""name"":""Andres Täht"",""sourceUrl"":""https://linkedin.com/in/andrestaht"",""title"":""CTO""},{""name"":""Tatiana Boussange"",""sourceUrl"":""https://linkedin.com/in/tatianab"",""title"":""Chief Scientific and Innovation Officer""}],""linkedDocuments"":[""https://eagronom.com/legal""],""missingImportantFields"":[],""productDescription"":""Core offerings include farm management software that supports smart and sustainable farming practices, a Carbon Program focused on regenerative farming and carbon credit projects, and sustainable farmer loans to improve financial access for farmers."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable agriculture and farm management technology sector, focusing on climate-friendly farming solutions and carbon credit generation."",""sources"":{""clientCategories"":""https://www.eagronom.com/partners"",""companyDescription"":""https://www.eagronom.com/about"",""geographicFocus"":""https://www.eagronom.com/contacts"",""keyExecutives"":""https://www.eagronom.com/about"",""productDescription"":""https://www.eagronom.com/about""},""websiteURL"":""https://www.eagronom.com/""}" -xFarm Technologies,http://www.xfarm.ag,"Creadd Ventures, Mouro Capital, Neva SGR, Partech, Swisscom Ventures, United Ventures",xfarm.ag,https://www.linkedin.com/company/xfarm-technologies,"{""seniorLeadership"":[{""name"":""Bala Ram"",""title"":""Executive Consultant"",""profileURL"":""https://www.linkedin.com/in/balaram-bhavanam""},{""name"":""David Moore"",""title"":""Senior Sales Consultant"",""profileURL"":""https://www.linkedin.com/in/david-moore-b039328""},{""name"":""Salvatore Ferullo"",""title"":""Chief Technology Officer"",""profileURL"":""https://www.linkedin.com/in/salvatore-ferullo-9b208761""},{""name"":""Pier Alberto Gobbo"",""title"":""Country Manager Iberia | España y Portugal"",""profileURL"":""https://www.linkedin.com/in/pier-alberto-gobbo""}]}","{""seniorLeadership"":[{""name"":""Bala Ram"",""title"":""Executive Consultant"",""profileURL"":""https://www.linkedin.com/in/balaram-bhavanam""},{""name"":""David Moore"",""title"":""Senior Sales Consultant"",""profileURL"":""https://www.linkedin.com/in/david-moore-b039328""},{""name"":""Salvatore Ferullo"",""title"":""Chief Technology Officer"",""profileURL"":""https://www.linkedin.com/in/salvatore-ferullo-9b208761""},{""name"":""Pier Alberto Gobbo"",""title"":""Country Manager Iberia | España y Portugal"",""profileURL"":""https://www.linkedin.com/in/pier-alberto-gobbo""}]}","{ - ""websiteURL"": ""http://www.xfarm.ag"", - ""companyDescription"": ""xFarm is a company focused on supporting farmers with cutting-edge technologies to increase productivity and sustainability. They offer digital tools such as a Farm App for field and farm management, precision agriculture, sustainability monitoring, and activities management. Their mission includes using technology to help cope with market needs and climate change, promoting sustainable and regenerative agriculture, and enhancing farm digitization. They provide a complete platform for managing agricultural enterprises, including monitoring, planning, compliance, and economic management."", - ""productDescription"": ""xFarm offers an all-in-one farm management app featuring digital field notebook, field management, crop protection, livestock, sustainability, environment and climate, machinery, precision agriculture, irrigation, economic management, activities management, logistics, and documentation. The platform leverages sensors and satellites to optimize irrigation, defense, and fertilization, monitor field information, and improve farm sustainability. It supports over 14 million hectares digitized, 550,000 farms, 12,000 related machinery, 12,000 connected sensors, and 500 supported crops. Additional offerings include xFarm Analytics for monitoring environmental impacts and regenerative agriculture practices, and xFarm CONNECT."", - ""clientCategories"": [ - ""Agribusiness industries"", - ""Regenerative Agriculture"", - ""Machinery manufacturers"", - ""Contractors"", - ""Cooperatives"", - ""Input manufacturers"", - ""Agronomists"", - ""Insurance"", - ""Banks"" - ], - ""sectorDescription"": ""Operates in the agtech sector, providing digital farm management solutions that combine precision agriculture, sustainability, and agricultural digitization."", - ""geographicFocus"": ""Headquarters in Manno, Switzerland; operational headquarters in Milan and Rome, Italy; presence in Spain, France, Brazil, Poland, Germany, and the UK."", - ""keyExecutives"": [ - {""name"": ""Matteo Vanotti"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Matteo Cunial"", ""title"": ""CRO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Giuseppe Manzione"", ""title"": ""CFO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Flavio Cozzoli"", ""title"": ""CDO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Alexandra Freche"", ""title"": ""CMO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Micol Ariane Bottazzi"", ""title"": ""COO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable PDF brochures were found on the website, only references to documentation and manuals pages."", - ""missingImportantFields"": [""linkedDocuments""], - ""sources"": { - ""companyDescription"": ""https://xfarm.ag/en"", - ""productDescription"": ""https://xfarm.ag/en"", - ""clientCategories"": ""https://xfarm.ag/en"", - ""geographicFocus"": ""https://xfarm.ag/en/contact-us"", - ""keyExecutives"": ""https://xfarm.ag/en/xfarm-people"" - } -}","{ - ""websiteURL"": ""http://www.xfarm.ag"", - ""companyDescription"": ""xFarm is a company focused on supporting farmers with cutting-edge technologies to increase productivity and sustainability. They offer digital tools such as a Farm App for field and farm management, precision agriculture, sustainability monitoring, and activities management. Their mission includes using technology to help cope with market needs and climate change, promoting sustainable and regenerative agriculture, and enhancing farm digitization. They provide a complete platform for managing agricultural enterprises, including monitoring, planning, compliance, and economic management."", - ""productDescription"": ""xFarm offers an all-in-one farm management app featuring digital field notebook, field management, crop protection, livestock, sustainability, environment and climate, machinery, precision agriculture, irrigation, economic management, activities management, logistics, and documentation. The platform leverages sensors and satellites to optimize irrigation, defense, and fertilization, monitor field information, and improve farm sustainability. It supports over 14 million hectares digitized, 550,000 farms, 12,000 related machinery, 12,000 connected sensors, and 500 supported crops. Additional offerings include xFarm Analytics for monitoring environmental impacts and regenerative agriculture practices, and xFarm CONNECT."", - ""clientCategories"": [ - ""Agribusiness industries"", - ""Regenerative Agriculture"", - ""Machinery manufacturers"", - ""Contractors"", - ""Cooperatives"", - ""Input manufacturers"", - ""Agronomists"", - ""Insurance"", - ""Banks"" - ], - ""sectorDescription"": ""Operates in the agtech sector, providing digital farm management solutions that combine precision agriculture, sustainability, and agricultural digitization."", - ""geographicFocus"": ""Headquarters in Manno, Switzerland; operational headquarters in Milan and Rome, Italy; presence in Spain, France, Brazil, Poland, Germany, and the UK."", - ""keyExecutives"": [ - {""name"": ""Matteo Vanotti"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Matteo Cunial"", ""title"": ""CRO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Giuseppe Manzione"", ""title"": ""CFO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Flavio Cozzoli"", ""title"": ""CDO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Alexandra Freche"", ""title"": ""CMO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""}, - {""name"": ""Micol Ariane Bottazzi"", ""title"": ""COO"", ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable PDF brochures were found on the website, only references to documentation and manuals pages."", - ""missingImportantFields"": [""linkedDocuments""], - ""sources"": { - ""companyDescription"": ""https://xfarm.ag/en"", - ""productDescription"": ""https://xfarm.ag/en"", - ""clientCategories"": ""https://xfarm.ag/en"", - ""geographicFocus"": ""https://xfarm.ag/en/contact-us"", - ""keyExecutives"": ""https://xfarm.ag/en/xfarm-people"" - } -}","[""linkedDocuments""]","{ - ""websiteURL"": ""https://xfarm.ag"", - ""companyDescription"": ""xFarm is a technology company dedicated to digitizing the agribusiness sector by providing innovative digital tools that support agricultural entrepreneurs and stakeholders in managing farms efficiently. Their mission focuses on increasing farm productivity and sustainability by combining precision agriculture, sustainability monitoring, and farm digitization tailored to diverse agricultural needs and climate challenges. Founded by farmers for farmers, xFarm's solutions serve more than 600,000 farms globally, facilitating simpler, more sustainable agricultural management."", - ""productDescription"": ""xFarm offers a comprehensive farm management platform including a digital field notebook, crop and livestock management, precision agriculture solutions, irrigation optimization, machinery and logistics management, sustainability and environment monitoring, and economic management. The platform integrates data from satellites and sensors, enabling real-time decision-making to optimize irrigation, fertilization, and crop protection. It serves over 550,000 farms covering millions of hectares and supports more than 500 crops with modular services that adapt to diverse farm requirements."", - ""clientCategories"": [ - ""Agribusiness Industries"", - ""Regenerative Agriculture"", - ""Machinery Manufacturers"", - ""Contractors"", - ""Cooperatives"", - ""Input Manufacturers"", - ""Agronomists"", - ""Insurance"", - ""Banks"" - ], - ""sectorDescription"": ""Agtech sector specializing in digital farm management solutions that integrate precision agriculture, sustainability, and agricultural digitization."", - ""geographicFocus"": ""Headquartered in Manno, Switzerland, with operational headquarters in Milan and Rome, Italy, xFarm maintains a presence across Spain, France, Brazil, Poland, Germany, and the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Matteo Vanotti"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people"" - }, - { - ""name"": ""Matteo Cunial"", - ""title"": ""CRO"", - ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people"" - }, - { - ""name"": ""Giuseppe Manzione"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people"" - }, - { - ""name"": ""Flavio Cozzoli"", - ""title"": ""CDO"", - ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people"" - }, - { - ""name"": ""Alexandra Freche"", - ""title"": ""CMO"", - ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people"" - }, - { - ""name"": ""Micol Ariane Bottazzi"", - ""title"": ""COO"", - ""sourceUrl"": ""https://xfarm.ag/en/xfarm-people"" - }, - { - ""name"": ""Salvatore Ferullo"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/salvatore-ferullo-9b208761"" - }, - { - ""name"": ""Pier Alberto Gobbo"", - ""title"": ""Country Manager Iberia | España y Portugal"", - ""sourceUrl"": ""https://www.linkedin.com/in/pier-alberto-gobbo"" - } - ], - ""researcherNotes"": ""The company profile is well verified through the official xFarm website and associated leadership pages. LinkedIn data supplements the key executives list with relevant senior roles like CTO and Country Manager Iberia. Geographic focus includes multiple European countries plus Brazil, aligning with official source data. No regulatory filings or PDFs were found. Missing linkedDocuments remain unfilled due to lack of available downloadable materials on the site."", - ""missingImportantFields"": [ - ""linkedDocuments"" - ], - ""sources"": { - ""companyDescription"": ""https://xfarm.ag/en/the-company"", - ""productDescription"": ""https://xfarm.ag/en"", - ""clientCategories"": ""https://xfarm.ag/en"", - ""geographicFocus"": ""https://xfarm.ag/en/contact-us"", - ""keyExecutives"": ""https://xfarm.ag/en/xfarm-people"" - } -}","{""clientCategories"":[""Agribusiness Industries"",""Regenerative Agriculture"",""Machinery Manufacturers"",""Contractors"",""Cooperatives"",""Input Manufacturers"",""Agronomists"",""Insurance"",""Banks""],""companyDescription"":""xFarm is a technology company dedicated to digitizing the agribusiness sector by providing innovative digital tools that support agricultural entrepreneurs and stakeholders in managing farms efficiently. Their mission focuses on increasing farm productivity and sustainability by combining precision agriculture, sustainability monitoring, and farm digitization tailored to diverse agricultural needs and climate challenges. Founded by farmers for farmers, xFarm's solutions serve more than 600,000 farms globally, facilitating simpler, more sustainable agricultural management."",""geographicFocus"":""Headquartered in Manno, Switzerland, with operational headquarters in Milan and Rome, Italy, xFarm maintains a presence across Spain, France, Brazil, Poland, Germany, and the United Kingdom."",""keyExecutives"":[{""name"":""Matteo Vanotti"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CEO and Co-founder""},{""name"":""Matteo Cunial"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CRO""},{""name"":""Giuseppe Manzione"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CFO""},{""name"":""Flavio Cozzoli"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CDO""},{""name"":""Alexandra Freche"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CMO""},{""name"":""Micol Ariane Bottazzi"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""COO""},{""name"":""Salvatore Ferullo"",""sourceUrl"":""https://www.linkedin.com/in/salvatore-ferullo-9b208761"",""title"":""Chief Technology Officer""},{""name"":""Pier Alberto Gobbo"",""sourceUrl"":""https://www.linkedin.com/in/pier-alberto-gobbo"",""title"":""Country Manager Iberia | España y Portugal""}],""missingImportantFields"":[""linkedDocuments""],""productDescription"":""xFarm offers a comprehensive farm management platform including a digital field notebook, crop and livestock management, precision agriculture solutions, irrigation optimization, machinery and logistics management, sustainability and environment monitoring, and economic management. The platform integrates data from satellites and sensors, enabling real-time decision-making to optimize irrigation, fertilization, and crop protection. It serves over 550,000 farms covering millions of hectares and supports more than 500 crops with modular services that adapt to diverse farm requirements."",""researcherNotes"":""The company profile is well verified through the official xFarm website and associated leadership pages. LinkedIn data supplements the key executives list with relevant senior roles like CTO and Country Manager Iberia. Geographic focus includes multiple European countries plus Brazil, aligning with official source data. No regulatory filings or PDFs were found. Missing linkedDocuments remain unfilled due to lack of available downloadable materials on the site."",""sectorDescription"":""Agtech sector specializing in digital farm management solutions that integrate precision agriculture, sustainability, and agricultural digitization."",""sources"":{""clientCategories"":""https://xfarm.ag/en"",""companyDescription"":""https://xfarm.ag/en/the-company"",""geographicFocus"":""https://xfarm.ag/en/contact-us"",""keyExecutives"":""https://xfarm.ag/en/xfarm-people"",""productDescription"":""https://xfarm.ag/en""},""websiteURL"":""https://xfarm.ag""}","Correctness: 97% Completeness: 90% The provided company profile of xFarm is highly accurate and largely comprehensive when cross-checked against multiple authoritative sources. The headquarters in Manno, Switzerland, and operational presence in European countries, as well as Brazil, matches Dealroom and the official xFarm site[1][2][5]. Leadership details including CEO Matteo Vanotti are consistently confirmed on xFarm’s official leadership page and public interviews[3][5]. The product descriptions—offering a comprehensive digital farm management platform integrating precision agriculture, sustainability, and economic management—align well with official communications and recent news on their platform enhancements and geographic expansions[4][5]. The number of farms served (~300,000 to 600,000 range), hectares managed, and crop diversity is supported but varies slightly by source, indicating some updates over time (e.g., 300,000 farms covering 3 million hectares in late 2023 versus 600,000 farms mentioned in the profile), reflecting recent growth[1][4][5]. The funding data, including the latest €36 million Series C round led by Partech, is confirmed by independent reporting[4]. The profile lacks linked documents or downloadable PDFs, which is consistent with the official website’s current offerings and absence of regulatory filings publicly available as of 2025-09-11[1][2]. Overall, the minor details in farm counts and hectares reflect growth but do not undermine factual accuracy; major claims like leadership, HQ, product scope, and funding are well supported. Sources: https://xfarm.ag/en, https://app.dealroom.co/companies/xfarm, https://www.startup.ch/xfarm-technologies, https://www.startupticker.ch/en/news/36-million-to-digitalise-farming-with-xfarm-s-platform, https://xfarm.ag/en/blog-posts/azienda-leader-nella-digitalizzazione-dellagricoltura-pronta-a-presentare-le-proprie-innovazioni-alla-ferme-france","{""clientCategories"":[""Agribusiness industries"",""Regenerative Agriculture"",""Machinery manufacturers"",""Contractors"",""Cooperatives"",""Input manufacturers"",""Agronomists"",""Insurance"",""Banks""],""companyDescription"":""xFarm is a company focused on supporting farmers with cutting-edge technologies to increase productivity and sustainability. They offer digital tools such as a Farm App for field and farm management, precision agriculture, sustainability monitoring, and activities management. Their mission includes using technology to help cope with market needs and climate change, promoting sustainable and regenerative agriculture, and enhancing farm digitization. They provide a complete platform for managing agricultural enterprises, including monitoring, planning, compliance, and economic management."",""geographicFocus"":""Headquarters in Manno, Switzerland; operational headquarters in Milan and Rome, Italy; presence in Spain, France, Brazil, Poland, Germany, and the UK."",""keyExecutives"":[{""name"":""Matteo Vanotti"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CEO and Co-founder""},{""name"":""Matteo Cunial"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CRO""},{""name"":""Giuseppe Manzione"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CFO""},{""name"":""Flavio Cozzoli"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CDO""},{""name"":""Alexandra Freche"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""CMO""},{""name"":""Micol Ariane Bottazzi"",""sourceUrl"":""https://xfarm.ag/en/xfarm-people"",""title"":""COO""}],""linkedDocuments"":[],""missingImportantFields"":[""linkedDocuments""],""productDescription"":""xFarm offers an all-in-one farm management app featuring digital field notebook, field management, crop protection, livestock, sustainability, environment and climate, machinery, precision agriculture, irrigation, economic management, activities management, logistics, and documentation. The platform leverages sensors and satellites to optimize irrigation, defense, and fertilization, monitor field information, and improve farm sustainability. It supports over 14 million hectares digitized, 550,000 farms, 12,000 related machinery, 12,000 connected sensors, and 500 supported crops. Additional offerings include xFarm Analytics for monitoring environmental impacts and regenerative agriculture practices, and xFarm CONNECT."",""researcherNotes"":""No direct downloadable PDF brochures were found on the website, only references to documentation and manuals pages."",""sectorDescription"":""Operates in the agtech sector, providing digital farm management solutions that combine precision agriculture, sustainability, and agricultural digitization."",""sources"":{""clientCategories"":""https://xfarm.ag/en"",""companyDescription"":""https://xfarm.ag/en"",""geographicFocus"":""https://xfarm.ag/en/contact-us"",""keyExecutives"":""https://xfarm.ag/en/xfarm-people"",""productDescription"":""https://xfarm.ag/en""},""websiteURL"":""http://www.xfarm.ag""}" -Agurotech,https://www.agurotech.com,"Navus Ventures, Rabo Investments, ROM InWest",agurotech.com,https://www.linkedin.com/company/agurotech-b-v,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.agurotech.com"", - ""companyDescription"": ""Agurotech is a high-tech company founded in 2020 specializing in sensor technology and data-driven agriculture solutions. They develop and produce innovative soil sensors, weather stations, digital rain meters, and frost monitoring sensors to optimize irrigation, planning, and crop health. Their mission is to make agriculture more efficient and sustainable by providing real-time, localized data and actionable advice for farmers."", - ""productDescription"": ""Agurotech offers core products including sensor technology, weather stations, digital rain gauges, and frost monitoring systems focused on providing precise weather and environmental data for agricultural and related applications."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the precision agriculture sector, providing sensor and data-driven solutions for optimizing irrigation and crop health."", - ""geographicFocus"": ""HQ: Zekeringstraat 46, 1014 BT Amsterdam, Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Joelle van den Brand"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agurotech.com/en/about-us"" - }, - { - ""name"": ""Lilia Planjyan"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agurotech.com/en/about-us"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit client categories or geographic sales regions were found on the website or linked pages."", - ""missingImportantFields"": [""clientCategories"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.agurotech.com"", - ""productDescription"": ""https://www.agurotech.com"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.agurotech.com/contact"", - ""keyExecutives"": ""https://agurotech.com/en/about-us"" - } -}","{ - ""websiteURL"": ""https://www.agurotech.com"", - ""companyDescription"": ""Agurotech is a high-tech company founded in 2020 specializing in sensor technology and data-driven agriculture solutions. They develop and produce innovative soil sensors, weather stations, digital rain meters, and frost monitoring sensors to optimize irrigation, planning, and crop health. Their mission is to make agriculture more efficient and sustainable by providing real-time, localized data and actionable advice for farmers."", - ""productDescription"": ""Agurotech offers core products including sensor technology, weather stations, digital rain gauges, and frost monitoring systems focused on providing precise weather and environmental data for agricultural and related applications."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the precision agriculture sector, providing sensor and data-driven solutions for optimizing irrigation and crop health."", - ""geographicFocus"": ""HQ: Zekeringstraat 46, 1014 BT Amsterdam, Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Joelle van den Brand"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agurotech.com/en/about-us"" - }, - { - ""name"": ""Lilia Planjyan"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agurotech.com/en/about-us"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit client categories or geographic sales regions were found on the website or linked pages."", - ""missingImportantFields"": [""clientCategories"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.agurotech.com"", - ""productDescription"": ""https://www.agurotech.com"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.agurotech.com/contact"", - ""keyExecutives"": ""https://agurotech.com/en/about-us"" - } -}","[""clientCategories"",""geographicFocus""]","{ - ""websiteURL"": ""https://www.agurotech.com"", - ""companyDescription"": ""Agurotech is a high-tech Amsterdam-based company founded in 2020 that develops sensor and software technology for precision agriculture. They provide real-time, localized data and AI-driven insights that help farmers optimize irrigation, fertilization, frost protection, and crop health, making agriculture more efficient and sustainable. The company is female-led by co-founders Joëlle van den Brand and Lilia Planjyan and aims to future-proof the global food system by enabling data-driven farming decisions."", - ""productDescription"": ""Agurotech offers an integrated hardware and software solution including advanced soil moisture sensors, weather stations, digital rain gauges, and frost monitoring systems. These products provide farmers with accurate environmental data and seven-day AI-powered forecasts to optimize irrigation and resource use, resulting in water savings, increased crop yields, and more sustainable farming practices."", - ""clientCategories"": [ - ""Farmers"", - ""Horticulture Producers"", - ""Arable Farmers"", - ""Agricultural Cooperatives"" - ], - ""sectorDescription"": ""Operates in the precision agriculture sector, providing sensor technology and data-driven solutions to optimize irrigation, fertilization, and crop health management."", - ""geographicFocus"": ""Primarily focused on the Netherlands with expanding operations in Southern Europe, the Middle East, the U.S., and Canada."", - ""keyExecutives"": [ - { - ""name"": ""Joelle van den Brand"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agurotech.com/en/about-us"" - }, - { - ""name"": ""Lilia Planjyan"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agurotech.com/en/about-us"" - } - ], - ""researcherNotes"": ""Geographic sales focus was not explicitly listed on the company website but was confirmed via recent funding press releases that mention market traction in Southern Europe, the Middle East, the U.S., and Canada. Client categories were inferred from product use cases detailed on company and investor sites mentioning horticulture, arable farming, and dairy farming. No senior leadership beyond the two co-founders was found on LinkedIn or official sources. Data is current as of early 2025."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agurotech.com"", - ""productDescription"": ""https://www.agurotech.com"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.eu-startups.com/2025/01/agurotech-secures-e2-25-million-to-advance-data-driven-efficient-farming/"", - ""keyExecutives"": ""https://agurotech.com/en/about-us"" - } -}","{""clientCategories"":[""Farmers"",""Horticulture Producers"",""Arable Farmers"",""Agricultural Cooperatives""],""companyDescription"":""Agurotech is a high-tech Amsterdam-based company founded in 2020 that develops sensor and software technology for precision agriculture. They provide real-time, localized data and AI-driven insights that help farmers optimize irrigation, fertilization, frost protection, and crop health, making agriculture more efficient and sustainable. The company is female-led by co-founders Joëlle van den Brand and Lilia Planjyan and aims to future-proof the global food system by enabling data-driven farming decisions."",""geographicFocus"":""Primarily focused on the Netherlands with expanding operations in Southern Europe, the Middle East, the U.S., and Canada."",""keyExecutives"":[{""name"":""Joelle van den Brand"",""sourceUrl"":""https://agurotech.com/en/about-us"",""title"":""Co-founder""},{""name"":""Lilia Planjyan"",""sourceUrl"":""https://agurotech.com/en/about-us"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""Agurotech offers an integrated hardware and software solution including advanced soil moisture sensors, weather stations, digital rain gauges, and frost monitoring systems. These products provide farmers with accurate environmental data and seven-day AI-powered forecasts to optimize irrigation and resource use, resulting in water savings, increased crop yields, and more sustainable farming practices."",""researcherNotes"":""Geographic sales focus was not explicitly listed on the company website but was confirmed via recent funding press releases that mention market traction in Southern Europe, the Middle East, the U.S., and Canada. Client categories were inferred from product use cases detailed on company and investor sites mentioning horticulture, arable farming, and dairy farming. No senior leadership beyond the two co-founders was found on LinkedIn or official sources. Data is current as of early 2025."",""sectorDescription"":""Operates in the precision agriculture sector, providing sensor technology and data-driven solutions to optimize irrigation, fertilization, and crop health management."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.agurotech.com"",""geographicFocus"":""https://www.eu-startups.com/2025/01/agurotech-secures-e2-25-million-to-advance-data-driven-efficient-farming/"",""keyExecutives"":""https://agurotech.com/en/about-us"",""productDescription"":""https://www.agurotech.com""},""websiteURL"":""https://www.agurotech.com""}","Correctness: 98% Completeness: 95% The description of Agurotech is factually accurate and highly complete based on multiple credible sources. The company is indeed Amsterdam-based and was founded in 2020 by co-founders Joëlle van den Brand and Lilia Planjyan, both female leaders, matching the leadership details [2][4]. Agurotech specializes in precision agriculture through hardware (advanced soil moisture sensors, weather stations, digital rain gauges, frost monitors) and software offering AI-driven insights to optimize irrigation, fertilization, frost protection, and crop health, consistent across company and third-party profiles [1][3][4][5]. Its target customers include farmers in horticulture, arable farming, and dairy farming sectors, supported by pilot projects and market traction in the Netherlands and expansion into Southern Europe, the Middle East, the U.S., and Canada [2][4][5]. The company secured approximately €2.25 million in funding to scale internationally [3][5]. While leadership beyond the two co-founders was not found publicly, this is consistent with current disclosures [2][4]. Geographic expansion is confirmed as of early 2025 with operations in 15 countries [4]. Minor gaps include absence of detailed senior leadership beyond co-founders and explicit investor names beyond ROM InWest and Navus Ventures, but these omissions do not materially undermine completeness. Sources: https://agurotech.com/en/about-us/, https://rominwest.nl/en/news/agurotech/, https://www.potatopro.com/companies/agurotech, https://www.vcguru.ai/company/67992a157407824ca5514142/, https://rominwest.nl/en/game-changers/agurotech/","{""clientCategories"":[],""companyDescription"":""Agurotech is a high-tech company founded in 2020 specializing in sensor technology and data-driven agriculture solutions. They develop and produce innovative soil sensors, weather stations, digital rain meters, and frost monitoring sensors to optimize irrigation, planning, and crop health. Their mission is to make agriculture more efficient and sustainable by providing real-time, localized data and actionable advice for farmers."",""geographicFocus"":""HQ: Zekeringstraat 46, 1014 BT Amsterdam, Netherlands; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Joelle van den Brand"",""sourceUrl"":""https://agurotech.com/en/about-us"",""title"":""Co-founder""},{""name"":""Lilia Planjyan"",""sourceUrl"":""https://agurotech.com/en/about-us"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""geographicFocus""],""productDescription"":""Agurotech offers core products including sensor technology, weather stations, digital rain gauges, and frost monitoring systems focused on providing precise weather and environmental data for agricultural and related applications."",""researcherNotes"":""No explicit client categories or geographic sales regions were found on the website or linked pages."",""sectorDescription"":""Operates in the precision agriculture sector, providing sensor and data-driven solutions for optimizing irrigation and crop health."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.agurotech.com"",""geographicFocus"":""https://www.agurotech.com/contact"",""keyExecutives"":""https://agurotech.com/en/about-us"",""productDescription"":""https://www.agurotech.com""},""websiteURL"":""https://www.agurotech.com""}" -BOTALYS,https://botalys.com,,botalys.com,https://www.linkedin.com/company/botalys,"{ - ""seniorLeadership"": [ - { - ""name"": ""P. Mariage"", - ""title"": ""Chief Executive Officer"", - ""profileURL"": ""https://www.linkedin.com/in/mariage-pierre-antoine"" - }, - { - ""name"": ""Laurent Pérignon"", - ""title"": ""Chief Operating Officer"", - ""profileURL"": ""https://www.linkedin.com/company/botalys"" - }, - { - ""name"": ""Sylvie Defrère"", - ""title"": ""Head of R&D"", - ""profileURL"": ""https://www.linkedin.com/company/botalys"" - } - ] -}","{ - ""seniorLeadership"": [ - { - ""name"": ""P. Mariage"", - ""title"": ""Chief Executive Officer"", - ""profileURL"": ""https://www.linkedin.com/in/mariage-pierre-antoine"" - }, - { - ""name"": ""Laurent Pérignon"", - ""title"": ""Chief Operating Officer"", - ""profileURL"": ""https://www.linkedin.com/company/botalys"" - }, - { - ""name"": ""Sylvie Defrère"", - ""title"": ""Head of R&D"", - ""profileURL"": ""https://www.linkedin.com/company/botalys"" - } - ] -}","{ - ""websiteURL"": ""https://botalys.com"", - ""companyDescription"": ""BOTALYS is a supplier of premium ingredients for the Nutraceutical and Cosmeceutical industries, specializing in rare botanicals made possible and sustainable through biomimetic indoor farming. Their mission is to allow clients to harness the full potential of biodiversity while preserving it. They emphasize uncompromising quality, sustainability, and protecting wild biotopes by growing pristine botanicals without plundering wild areas. BOTALYS is an ambitious Belgian company dedicated to producing ultra-pure premium botanicals for health. They run one of the world's largest Vertical Farms for medicinal plant cultivation, fully operated in the EU under strict quality standards, featuring a vertically integrated process from seed to ingredient demonstrating commitment to excellence. The company focuses on botanical innovation and sustainable plant-based ingredients, pioneering Biomimetic Indoor Farming technology. Their mission includes harnessing rare medicinal plants' potential sustainably to benefit human health and well-being."", - ""productDescription"": ""BOTALYS makes the sourcing of rare medicinal plants possible and sustainable through biomimetic indoor farming. Their products include Korean ginseng, Fjord Rhodiola, Sichuan Red sage, Appalachian Goldenseal, Himalayan Mokko, among others. They offer optimized molecular profiles and purity. Their process involves cultivar selection, indoor vertical farming mimicking wild conditions, and final ingredient production with quality control and certifications (DNA identification, vegan, halal, kosher, pesticide & heavy metal free). These botanicals are delivered globally for nutraceutical and cosmeceutical uses."", - ""clientCategories"": [""Nutraceutical industry"", ""Cosmeceutical industry""], - ""sectorDescription"": ""Operates in the Nutraceutical and Cosmeceutical sectors, specializing in rare medicinal botanicals produced sustainably using biomimetic indoor farming technology."", - ""geographicFocus"": ""HQ: Avenue des Artisants 8 - 6, 7822 Ghislenghien, Belgium; USA office: 8911 N. Capital of Texas Highway, Ste. 4200 Bldg. 4, Austin, TX 78759; No explicit geographic sales regions mentioned."", - ""keyExecutives"": [ - {""name"": ""Pierre-Antoine Mariage"", ""title"": ""CEO & Co-founder"", ""sourceUrl"": ""https://botalys.com/about-us/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit geographic sales regions were found on the website. Leadership information beyond the CEO & Co-founder was not clearly identified as C-level."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://botalys.com/about-us/"", - ""productDescription"": ""https://botalys.com/our-approach/"", - ""clientCategories"": ""https://botalys.com/our-approach/"", - ""geographicFocus"": ""https://botalys.com/contact-us/"", - ""keyExecutives"": ""https://botalys.com/about-us/"" - } -}","{ - ""websiteURL"": ""https://botalys.com"", - ""companyDescription"": ""BOTALYS is a supplier of premium ingredients for the Nutraceutical and Cosmeceutical industries, specializing in rare botanicals made possible and sustainable through biomimetic indoor farming. Their mission is to allow clients to harness the full potential of biodiversity while preserving it. They emphasize uncompromising quality, sustainability, and protecting wild biotopes by growing pristine botanicals without plundering wild areas. BOTALYS is an ambitious Belgian company dedicated to producing ultra-pure premium botanicals for health. They run one of the world's largest Vertical Farms for medicinal plant cultivation, fully operated in the EU under strict quality standards, featuring a vertically integrated process from seed to ingredient demonstrating commitment to excellence. The company focuses on botanical innovation and sustainable plant-based ingredients, pioneering Biomimetic Indoor Farming technology. Their mission includes harnessing rare medicinal plants' potential sustainably to benefit human health and well-being."", - ""productDescription"": ""BOTALYS makes the sourcing of rare medicinal plants possible and sustainable through biomimetic indoor farming. Their products include Korean ginseng, Fjord Rhodiola, Sichuan Red sage, Appalachian Goldenseal, Himalayan Mokko, among others. They offer optimized molecular profiles and purity. Their process involves cultivar selection, indoor vertical farming mimicking wild conditions, and final ingredient production with quality control and certifications (DNA identification, vegan, halal, kosher, pesticide & heavy metal free). These botanicals are delivered globally for nutraceutical and cosmeceutical uses."", - ""clientCategories"": [""Nutraceutical industry"", ""Cosmeceutical industry""], - ""sectorDescription"": ""Operates in the Nutraceutical and Cosmeceutical sectors, specializing in rare medicinal botanicals produced sustainably using biomimetic indoor farming technology."", - ""geographicFocus"": ""HQ: Avenue des Artisants 8 - 6, 7822 Ghislenghien, Belgium; USA office: 8911 N. Capital of Texas Highway, Ste. 4200 Bldg. 4, Austin, TX 78759; No explicit geographic sales regions mentioned."", - ""keyExecutives"": [ - {""name"": ""Pierre-Antoine Mariage"", ""title"": ""CEO & Co-founder"", ""sourceUrl"": ""https://botalys.com/about-us/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit geographic sales regions were found on the website. Leadership information beyond the CEO & Co-founder was not clearly identified as C-level."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://botalys.com/about-us/"", - ""productDescription"": ""https://botalys.com/our-approach/"", - ""clientCategories"": ""https://botalys.com/our-approach/"", - ""geographicFocus"": ""https://botalys.com/contact-us/"", - ""keyExecutives"": ""https://botalys.com/about-us/"" - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://botalys.com"", - ""companyDescription"": ""BOTALYS is a supplier of premium ingredients for the Nutraceutical and Cosmeceutical industries, specializing in rare botanicals cultivated sustainably through biomimetic indoor farming. The company leverages advanced vertical farming technology to produce ultra-pure, high-quality medicinal plants without harming wild biotopes, allowing clients to harness biodiversity's full potential while preserving the environment. Headquartered in Belgium with a USA office, BOTALYS emphasizes innovation, sustainability, and rigorous quality standards, operating one of the world's largest vertical farms dedicated to medicinal plant cultivation."", - ""productDescription"": ""BOTALYS produces rare medicinal botanicals such as Korean ginseng, Fjord Rhodiola, Sichuan Red sage, Appalachian Goldenseal, and Himalayan Mokko using its biomimetic indoor vertical farming technology. Their process mimics wild conditions to deliver optimized molecular profiles and high purity ingredients. These botanicals undergo quality controls including DNA identification and certifications for vegan, halal, kosher status, and freedom from pesticides and heavy metals. The products serve the nutraceutical and cosmeceutical industries worldwide."", - ""clientCategories"": [ - ""Nutraceutical Industries"", - ""Cosmeceutical Industries"" - ], - ""sectorDescription"": ""Operates in the Nutraceutical and Cosmeceutical sectors, specializing in rare medicinal botanicals produced sustainably using biomimetic indoor farming technology."", - ""geographicFocus"": ""Headquartered in Belgium with an office in the USA; products are delivered globally, although no explicit geographic sales regions are specified."", - ""keyExecutives"": [ - { - ""name"": ""Pierre-Antoine Mariage"", - ""title"": ""CEO & Co-founder"", - ""sourceUrl"": ""https://botalys.com/about-us/"" - }, - { - ""name"": ""Laurent Pérignon"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/botalys"" - }, - { - ""name"": ""Sylvie Defrère"", - ""title"": ""Head of R&D"", - ""sourceUrl"": ""https://www.linkedin.com/company/botalys"" - } - ], - ""researcherNotes"": ""The geographic sales footprint is not explicitly described beyond the presence of offices in Belgium and the USA and global distribution. Key executive information was supplemented with COO and Head of R&D roles from LinkedIn profiles. No further C-level executive details were found on the company website or LinkedIn. This summary assumes the company described on LinkedIn and the website is the same entity based on domain and sector consistency."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://botalys.com/about-us/"", - ""productDescription"": ""https://botalys.com/our-approach/"", - ""clientCategories"": ""https://botalys.com/our-approach/"", - ""geographicFocus"": ""https://botalys.com/contact-us/"", - ""keyExecutives"": ""https://botalys.com/about-us/"" - } -}","{""clientCategories"":[""Nutraceutical Industries"",""Cosmeceutical Industries""],""companyDescription"":""BOTALYS is a supplier of premium ingredients for the Nutraceutical and Cosmeceutical industries, specializing in rare botanicals cultivated sustainably through biomimetic indoor farming. The company leverages advanced vertical farming technology to produce ultra-pure, high-quality medicinal plants without harming wild biotopes, allowing clients to harness biodiversity's full potential while preserving the environment. Headquartered in Belgium with a USA office, BOTALYS emphasizes innovation, sustainability, and rigorous quality standards, operating one of the world's largest vertical farms dedicated to medicinal plant cultivation."",""geographicFocus"":""Headquartered in Belgium with an office in the USA; products are delivered globally, although no explicit geographic sales regions are specified."",""keyExecutives"":[{""name"":""Pierre-Antoine Mariage"",""sourceUrl"":""https://botalys.com/about-us/"",""title"":""CEO & Co-founder""},{""name"":""Laurent Pérignon"",""sourceUrl"":""https://www.linkedin.com/company/botalys"",""title"":""Chief Operating Officer""},{""name"":""Sylvie Defrère"",""sourceUrl"":""https://www.linkedin.com/company/botalys"",""title"":""Head of R&D""}],""missingImportantFields"":[],""productDescription"":""BOTALYS produces rare medicinal botanicals such as Korean ginseng, Fjord Rhodiola, Sichuan Red sage, Appalachian Goldenseal, and Himalayan Mokko using its biomimetic indoor vertical farming technology. Their process mimics wild conditions to deliver optimized molecular profiles and high purity ingredients. These botanicals undergo quality controls including DNA identification and certifications for vegan, halal, kosher status, and freedom from pesticides and heavy metals. The products serve the nutraceutical and cosmeceutical industries worldwide."",""researcherNotes"":""The geographic sales footprint is not explicitly described beyond the presence of offices in Belgium and the USA and global distribution. Key executive information was supplemented with COO and Head of R&D roles from LinkedIn profiles. No further C-level executive details were found on the company website or LinkedIn. This summary assumes the company described on LinkedIn and the website is the same entity based on domain and sector consistency."",""sectorDescription"":""Operates in the Nutraceutical and Cosmeceutical sectors, specializing in rare medicinal botanicals produced sustainably using biomimetic indoor farming technology."",""sources"":{""clientCategories"":""https://botalys.com/our-approach/"",""companyDescription"":""https://botalys.com/about-us/"",""geographicFocus"":""https://botalys.com/contact-us/"",""keyExecutives"":""https://botalys.com/about-us/"",""productDescription"":""https://botalys.com/our-approach/""},""websiteURL"":""https://botalys.com""}","Correctness: 95% Completeness: 90% The company description of BOTALYS as a Belgian-based supplier specializing in rare medicinal botanicals produced via biomimetic indoor vertical farming technology for the Nutraceutical and Cosmeceutical industries is well supported by multiple sources, including its official website and CPHI profile (https://botalys.com/about-us/, https://www.cphi-online.com/company/botalys-sa/). Their focus on sustainable, ultra-pure botanicals like Korean ginseng and Rhodiola aligns with stated product claims. The Belgium headquarters is consistently reported at Avenue des Artisans 8, Ghislenghien/Ath, Wallonia (https://www.cphi-online.com/company/botalys-sa/, https://pharmasource.global/directory/botalys-sa/). The presence of a USA office and global distribution is asserted on company pages but lacks direct external corroboration, slightly lowering completeness. Leadership information naming Pierre-Antoine Mariage (CEO & Co-founder), Laurent Pérignon (COO), and Sylvie Defrère (Head of R&D) is verified on the company website and LinkedIn (https://botalys.com/about-us/, https://www.linkedin.com/company/botalys). The documentation of product quality controls (DNA identification, certifications) reflects the company’s quality standards as noted on their site. Minor discrepancies in address details (Ath vs Ghislenghien) appear due to Belgian locality naming but refer to the same region. Overall, the portrayal is accurate and mostly complete, lacking only explicit third-party confirmation of the USA office’s operational details and comprehensive geographic sales footprint (https://botalys.com/contact-us/).","{""clientCategories"":[""Nutraceutical industry"",""Cosmeceutical industry""],""companyDescription"":""BOTALYS is a supplier of premium ingredients for the Nutraceutical and Cosmeceutical industries, specializing in rare botanicals made possible and sustainable through biomimetic indoor farming. Their mission is to allow clients to harness the full potential of biodiversity while preserving it. They emphasize uncompromising quality, sustainability, and protecting wild biotopes by growing pristine botanicals without plundering wild areas. BOTALYS is an ambitious Belgian company dedicated to producing ultra-pure premium botanicals for health. They run one of the world's largest Vertical Farms for medicinal plant cultivation, fully operated in the EU under strict quality standards, featuring a vertically integrated process from seed to ingredient demonstrating commitment to excellence. The company focuses on botanical innovation and sustainable plant-based ingredients, pioneering Biomimetic Indoor Farming technology. Their mission includes harnessing rare medicinal plants' potential sustainably to benefit human health and well-being."",""geographicFocus"":""HQ: Avenue des Artisants 8 - 6, 7822 Ghislenghien, Belgium; USA office: 8911 N. Capital of Texas Highway, Ste. 4200 Bldg. 4, Austin, TX 78759; No explicit geographic sales regions mentioned."",""keyExecutives"":[{""name"":""Pierre-Antoine Mariage"",""sourceUrl"":""https://botalys.com/about-us/"",""title"":""CEO & Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""BOTALYS makes the sourcing of rare medicinal plants possible and sustainable through biomimetic indoor farming. Their products include Korean ginseng, Fjord Rhodiola, Sichuan Red sage, Appalachian Goldenseal, Himalayan Mokko, among others. They offer optimized molecular profiles and purity. Their process involves cultivar selection, indoor vertical farming mimicking wild conditions, and final ingredient production with quality control and certifications (DNA identification, vegan, halal, kosher, pesticide & heavy metal free). These botanicals are delivered globally for nutraceutical and cosmeceutical uses."",""researcherNotes"":""No explicit geographic sales regions were found on the website. Leadership information beyond the CEO & Co-founder was not clearly identified as C-level."",""sectorDescription"":""Operates in the Nutraceutical and Cosmeceutical sectors, specializing in rare medicinal botanicals produced sustainably using biomimetic indoor farming technology."",""sources"":{""clientCategories"":""https://botalys.com/our-approach/"",""companyDescription"":""https://botalys.com/about-us/"",""geographicFocus"":""https://botalys.com/contact-us/"",""keyExecutives"":""https://botalys.com/about-us/"",""productDescription"":""https://botalys.com/our-approach/""},""websiteURL"":""https://botalys.com""}" -RootWave,http://rootwave.com,"Agri Investment Fund, Clay Capital, Jorge Heraud, Naruhisa Nakagawa, Pymwymic, Rabo Ventures, V-Bio Ventures, Xinomavro Ventures",rootwave.com,https://www.linkedin.com/company/ubiqutek,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""http://rootwave.com"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website rootwave.com does not provide accessible textual data about the company’s mission, products, client categories, sector description, geographic focus, leadership, or linked documents despite multiple attempts to extract such information from main pages and key subpages (About, Team, Contact, Technology, Product). The pages mostly return no relevant data or appear inaccessible for detailed scraping."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""http://rootwave.com"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website rootwave.com does not provide accessible textual data about the company’s mission, products, client categories, sector description, geographic focus, leadership, or linked documents despite multiple attempts to extract such information from main pages and key subpages (About, Team, Contact, Technology, Product). The pages mostly return no relevant data or appear inaccessible for detailed scraping."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://rootwave.com"", - ""companyDescription"": ""RootWave is a UK-based agricultural technology company specializing in sustainable weed control solutions that use electricity instead of chemical herbicides. Their technology provides effective weed management while protecting health and restoring soil, water, and biodiversity. RootWave's products serve both small-scale gardeners and commercial orchard, vineyard, and bush fruit growers, supporting organic farming and addressing environmental concerns related to herbicide use."", - ""productDescription"": ""RootWave develops and manufactures electrical weed control devices, including the handheld RootWave Pro for spot weeding and tractor-powered machines designed for large-scale agricultural use in orchards and vineyards. Their products deliver sustainable and cost-effective weed elimination by killing weeds electrically from the root up, replacing chemical herbicides and promoting ecological restoration."", - ""clientCategories"": [ - ""Agricultural Professionals"", - ""Gardeners"", - ""Groundskeepers"", - ""Orchard Growers"", - ""Vineyard Growers"", - ""Bush Fruit Growers"" - ], - ""sectorDescription"": ""Agricultural technology focused on sustainable, chemical-free weed control using innovative electrical weeding solutions."", - ""geographicFocus"": ""Primarily operating in the United Kingdom with plans to expand globally, serving a diverse range of clients from small-scale gardeners to large commercial agricultural enterprises."", - ""keyExecutives"": [], - ""researcherNotes"": ""The website rootwave.com provides limited accessible textual data; however, multiple external sources validate the company as a UK-based agricultural technology firm pioneering electrical weed control solutions. Precise senior leadership details were not found on LinkedIn or official company sources. Geographic focus is primarily UK-based with broader ambitions. Missing data includes key executives due to lack of public disclosure."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://app.dealroom.co/companies/rootwave"", - ""productDescription"": ""https://app.dealroom.co/companies/rootwave"", - ""clientCategories"": ""https://app.dealroom.co/companies/rootwave"", - ""geographicFocus"": ""https://www.zoominfo.com/c/rootwave/435484357"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Agricultural Professionals"",""Gardeners"",""Groundskeepers"",""Orchard Growers"",""Vineyard Growers"",""Bush Fruit Growers""],""companyDescription"":""RootWave is a UK-based agricultural technology company specializing in sustainable weed control solutions that use electricity instead of chemical herbicides. Their technology provides effective weed management while protecting health and restoring soil, water, and biodiversity. RootWave's products serve both small-scale gardeners and commercial orchard, vineyard, and bush fruit growers, supporting organic farming and addressing environmental concerns related to herbicide use."",""geographicFocus"":""Primarily operating in the United Kingdom with plans to expand globally, serving a diverse range of clients from small-scale gardeners to large commercial agricultural enterprises."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""RootWave develops and manufactures electrical weed control devices, including the handheld RootWave Pro for spot weeding and tractor-powered machines designed for large-scale agricultural use in orchards and vineyards. Their products deliver sustainable and cost-effective weed elimination by killing weeds electrically from the root up, replacing chemical herbicides and promoting ecological restoration."",""researcherNotes"":""The website rootwave.com provides limited accessible textual data; however, multiple external sources validate the company as a UK-based agricultural technology firm pioneering electrical weed control solutions. Precise senior leadership details were not found on LinkedIn or official company sources. Geographic focus is primarily UK-based with broader ambitions. Missing data includes key executives due to lack of public disclosure."",""sectorDescription"":""Agricultural technology focused on sustainable, chemical-free weed control using innovative electrical weeding solutions."",""sources"":{""clientCategories"":""https://app.dealroom.co/companies/rootwave"",""companyDescription"":""https://app.dealroom.co/companies/rootwave"",""geographicFocus"":""https://www.zoominfo.com/c/rootwave/435484357"",""keyExecutives"":null,""productDescription"":""https://app.dealroom.co/companies/rootwave""},""websiteURL"":""https://rootwave.com""}","Correctness: 98% Completeness: 90% The core factual claims about RootWave as a UK-based agricultural technology company specializing in electrical weed control, replacing chemical herbicides with safer patented high-frequency AC technology, and serving orchards, vineyards, bush fruit growers, and row crops are well-supported by multiple sources[1][2][3][4][5]. The description of their product lineup (handheld and tractor-powered devices), the sustainable and non-chemical nature of their technology, and the company’s geographic focus primarily in the UK with expansion plans globally are confirmed[1][2][4]. The claim about their promotional focus on organic and regenerative farming and the environmental benefits is also supported[2][5]. Leadership details are incomplete as publicly available sources, including LinkedIn and official pages, do not clearly identify key executives except Andrew Diprose as founder/CEO cited in news articles as of mid-2025[1][4]. Funding disclosures (e.g., $15m raise led by Clay Capital, £3m Innovate UK debt facility) validate financial credibility and recent developments[1][4]. The absence of detailed leadership team information reduces completeness but does not affect correctness. Comprehensive sourcing includes official company site rootwave.com and credible ag tech news outlets AgTechNavigator and AgFunderNews dated 2024–2025[1][4][5]. URLs: https://www.agtechnavigator.com/Article/2025/06/17/rootwave-targets-becoming-global-player-in-weed-control-after-raising-15m/, https://www.futurefarming.com/crop-solutions/weed-pest-control/kirkland-uk-official-distributor-for-rootwave-eweeding-in-orchards-and-vineyards/, https://rootwave.com/rootwave-and-garford-collaborate-to-develop-eweeding-technology/, https://agfundernews.com/exclusive-rootwave-bags-15m-to-expand-its-autonomous-weeding-platform-to-europe-us, https://rootwave.com/technology/.","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website rootwave.com does not provide accessible textual data about the company’s mission, products, client categories, sector description, geographic focus, leadership, or linked documents despite multiple attempts to extract such information from main pages and key subpages (About, Team, Contact, Technology, Product). The pages mostly return no relevant data or appear inaccessible for detailed scraping."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://rootwave.com""}" -Land Life Company,http://www.landlifecompany.com/,"DOEN Participaties, Green Challenge Fund, Vectr",landlifecompany.com,https://www.linkedin.com/company/landlifecompany,"{ - ""seniorLeadership"": [ - { - ""fullName"": ""Rebekah Braswell"", - ""title"": ""Chief Executive Officer"", - ""linkedinURL"": ""https://www.linkedin.com/in/rebekah-braswell"" - }, - { - ""fullName"": ""Arnout Asjes"", - ""title"": ""Chief Technology Officer"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Axelle Ducos"", - ""title"": ""Chief Growth Officer"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Tjeerd Anema"", - ""title"": ""Chief Financial Officer"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Pancho Purroy"", - ""title"": ""Regional Director, Iberia"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Brian Lawson"", - ""title"": ""Regional Director, North America"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Tim Ferraro"", - ""title"": ""Director APAC"", - ""linkedinURL"": ""https://au.linkedin.com/in/timferraro"" - }, - { - ""fullName"": ""Clara Rowe"", - ""title"": ""Director of Strategic Partnerships"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Gerrit Stoelinga"", - ""title"": ""Chairman of the Supervisory Board"", - ""linkedinURL"": ""https://linkedin.com/in/gerrit-stoelinga-239079198"" - }, - { - ""fullName"": ""Martijn Duvoort"", - ""title"": ""Board Member of the Supervisory Board"", - ""linkedinURL"": ""https://linkedin.com/in/martijn-duvoort"" - }, - { - ""fullName"": ""Katharina Maass"", - ""title"": ""Supervisory Board Member"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - } - ] -}","{ - ""seniorLeadership"": [ - { - ""fullName"": ""Rebekah Braswell"", - ""title"": ""Chief Executive Officer"", - ""linkedinURL"": ""https://www.linkedin.com/in/rebekah-braswell"" - }, - { - ""fullName"": ""Arnout Asjes"", - ""title"": ""Chief Technology Officer"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Axelle Ducos"", - ""title"": ""Chief Growth Officer"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Tjeerd Anema"", - ""title"": ""Chief Financial Officer"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Pancho Purroy"", - ""title"": ""Regional Director, Iberia"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Brian Lawson"", - ""title"": ""Regional Director, North America"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Tim Ferraro"", - ""title"": ""Director APAC"", - ""linkedinURL"": ""https://au.linkedin.com/in/timferraro"" - }, - { - ""fullName"": ""Clara Rowe"", - ""title"": ""Director of Strategic Partnerships"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""fullName"": ""Gerrit Stoelinga"", - ""title"": ""Chairman of the Supervisory Board"", - ""linkedinURL"": ""https://linkedin.com/in/gerrit-stoelinga-239079198"" - }, - { - ""fullName"": ""Martijn Duvoort"", - ""title"": ""Board Member of the Supervisory Board"", - ""linkedinURL"": ""https://linkedin.com/in/martijn-duvoort"" - }, - { - ""fullName"": ""Katharina Maass"", - ""title"": ""Supervisory Board Member"", - ""linkedinURL"": ""https://www.linkedin.com/company/landlifecompany"" - } - ] -}","{ - ""websiteURL"": ""http://www.landlifecompany.com/"", - ""companyDescription"": ""Land Life was founded at the intersection of science, technology and impact with the conviction that business and technology can drive innovation for nature. It restores degraded land at scale to benefit climate, biodiversity, and communities. Their mission is to restore two billion hectares of degraded land globally."", - ""productDescription"": ""Land Life offers high-integrity, nature-based solutions for restoring degraded land, including: - Carbon removal credits via ARR (Afforestation, Reforestation, and Revegetation) projects. - Corporate Social Responsibility (CSR) tree planting projects without carbon credits. - Biodiversity baselining for nature reporting and certification preparation."", - ""clientCategories"": [""Landowners"", ""Companies seeking nature-based solutions"", ""Retail"", ""Energy"", ""Financial"", ""Pharma"", ""FMCG"", ""Tech""], - ""sectorDescription"": ""Operates in the environmental technology and nature-based solutions sector, focusing on large-scale land restoration to benefit climate, biodiversity, and communities."", - ""geographicFocus"": ""HQ: Mauritskade 64, 1092AD Amsterdam, Netherlands; Sales Focus: Global including Europe, United States, Australia, Spain, Portugal, Mexico, Canada, Indonesia, Cameroon"", - ""keyExecutives"": [ - {""name"": ""Jurriaan Ruys"", ""title"": ""Founder, CEO"", ""sourceUrl"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ""}, - {""name"": ""Eduard Zanen"", ""title"": ""Founder"", ""sourceUrl"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ""}, - {""name"": ""Rebekah Braswell"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""}, - {""name"": ""Arnout Asjes"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""}, - {""name"": ""Axelle Ducos"", ""title"": ""Chief Growth Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""}, - {""name"": ""Tjeerd Anema"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable document links like PDFs or DOCs were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.landlifecompany.com/"", - ""productDescription"": ""http://www.landlifecompany.com/en-us/companies"", - ""clientCategories"": ""http://www.landlifecompany.com/en-us/projects"", - ""geographicFocus"": ""http://www.landlifecompany.com/en-us/about"", - ""keyExecutives"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"" - } -}","{ - ""websiteURL"": ""http://www.landlifecompany.com/"", - ""companyDescription"": ""Land Life was founded at the intersection of science, technology and impact with the conviction that business and technology can drive innovation for nature. It restores degraded land at scale to benefit climate, biodiversity, and communities. Their mission is to restore two billion hectares of degraded land globally."", - ""productDescription"": ""Land Life offers high-integrity, nature-based solutions for restoring degraded land, including: - Carbon removal credits via ARR (Afforestation, Reforestation, and Revegetation) projects. - Corporate Social Responsibility (CSR) tree planting projects without carbon credits. - Biodiversity baselining for nature reporting and certification preparation."", - ""clientCategories"": [""Landowners"", ""Companies seeking nature-based solutions"", ""Retail"", ""Energy"", ""Financial"", ""Pharma"", ""FMCG"", ""Tech""], - ""sectorDescription"": ""Operates in the environmental technology and nature-based solutions sector, focusing on large-scale land restoration to benefit climate, biodiversity, and communities."", - ""geographicFocus"": ""HQ: Mauritskade 64, 1092AD Amsterdam, Netherlands; Sales Focus: Global including Europe, United States, Australia, Spain, Portugal, Mexico, Canada, Indonesia, Cameroon"", - ""keyExecutives"": [ - {""name"": ""Jurriaan Ruys"", ""title"": ""Founder, CEO"", ""sourceUrl"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ""}, - {""name"": ""Eduard Zanen"", ""title"": ""Founder"", ""sourceUrl"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ""}, - {""name"": ""Rebekah Braswell"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""}, - {""name"": ""Arnout Asjes"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""}, - {""name"": ""Axelle Ducos"", ""title"": ""Chief Growth Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""}, - {""name"": ""Tjeerd Anema"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable document links like PDFs or DOCs were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.landlifecompany.com/"", - ""productDescription"": ""http://www.landlifecompany.com/en-us/companies"", - ""clientCategories"": ""http://www.landlifecompany.com/en-us/projects"", - ""geographicFocus"": ""http://www.landlifecompany.com/en-us/about"", - ""keyExecutives"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"" - } -}",[],"{ - ""websiteURL"": ""https://www.landlifecompany.com"", - ""companyDescription"": ""Land Life was founded at the intersection of science, technology and impact with the conviction that business and technology can drive innovation for nature. It restores degraded land at scale to benefit climate, biodiversity, and communities. Land Life develops science-based, tech-enabled solutions to deliver high-integrity nature restoration projects globally, partnering with landowners and companies to achieve large-scale environmental impact."", - ""productDescription"": ""Land Life offers high-integrity, nature-based solutions for restoring degraded land, including carbon removal credits through Afforestation, Reforestation, and Revegetation (ARR) projects, Corporate Social Responsibility (CSR) tree planting projects without carbon credits, and biodiversity baselining to support nature reporting and certification preparation. Their approach leverages proprietary technology and data analytics for site evaluation, restoration planning, and monitoring to maximize climate and biodiversity benefits."", - ""clientCategories"": [ - ""Landowners"", - ""Companies seeking nature-based solutions"", - ""Retail"", - ""Energy"", - ""Financial"", - ""Pharma"", - ""FMCG"", - ""Tech"" - ], - ""sectorDescription"": ""Operates in the environmental technology and nature-based solutions sector, focusing on large-scale land restoration to benefit climate, biodiversity, and communities."", - ""geographicFocus"": ""Global operations with a sales focus including Europe, United States, Australia, Spain, Portugal, Mexico, Canada, Indonesia, and Cameroon."", - ""keyExecutives"": [ - { - ""name"": ""Jurriaan Ruys"", - ""title"": ""Founder, CEO"", - ""sourceUrl"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"" - }, - { - ""name"": ""Eduard Zanen"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"" - }, - { - ""name"": ""Rebekah Braswell"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about"" - }, - { - ""name"": ""Arnout Asjes"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about"" - }, - { - ""name"": ""Axelle Ducos"", - ""title"": ""Chief Growth Officer"", - ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about"" - }, - { - ""name"": ""Tjeerd Anema"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""http://www.landlifecompany.com/en-us/about"" - }, - { - ""name"": ""Pancho Purroy"", - ""title"": ""Regional Director, Iberia"", - ""sourceUrl"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""name"": ""Brian Lawson"", - ""title"": ""Regional Director, North America"", - ""sourceUrl"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""name"": ""Tim Ferraro"", - ""title"": ""Director APAC"", - ""sourceUrl"": ""https://au.linkedin.com/in/timferraro"" - }, - { - ""name"": ""Clara Rowe"", - ""title"": ""Director of Strategic Partnerships"", - ""sourceUrl"": ""https://www.linkedin.com/company/landlifecompany"" - }, - { - ""name"": ""Gerrit Stoelinga"", - ""title"": ""Chairman of the Supervisory Board"", - ""sourceUrl"": ""https://linkedin.com/in/gerrit-stoelinga-239079198"" - }, - { - ""name"": ""Martijn Duvoort"", - ""title"": ""Board Member of the Supervisory Board"", - ""sourceUrl"": ""https://linkedin.com/in/martijn-duvoort"" - }, - { - ""name"": ""Katharina Maass"", - ""title"": ""Supervisory Board Member"", - ""sourceUrl"": ""https://www.linkedin.com/company/landlifecompany"" - } - ], - ""researcherNotes"": ""The company is confirmed as Land Life Company headquartered in Amsterdam, Netherlands, with a global sales footprint including multiple continents and specific countries confirmed from the corporate website and LinkedIn. The executive list was supplemented with additional senior leadership and board members sourced from LinkedIn. No downloadable official documents were found. No discrepancies between sources were noted. The website URL was normalized to https and www prefix consistent with company branding and LinkedIn usage."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.landlifecompany.com/"", - ""productDescription"": ""http://www.landlifecompany.com/en-us/companies"", - ""clientCategories"": ""http://www.landlifecompany.com/en-us/projects"", - ""geographicFocus"": ""http://www.landlifecompany.com/en-us/about"", - ""keyExecutives"": ""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"" - } -}","{""clientCategories"":[""Landowners"",""Companies seeking nature-based solutions"",""Retail"",""Energy"",""Financial"",""Pharma"",""FMCG"",""Tech""],""companyDescription"":""Land Life was founded at the intersection of science, technology and impact with the conviction that business and technology can drive innovation for nature. It restores degraded land at scale to benefit climate, biodiversity, and communities. Land Life develops science-based, tech-enabled solutions to deliver high-integrity nature restoration projects globally, partnering with landowners and companies to achieve large-scale environmental impact."",""geographicFocus"":""Global operations with a sales focus including Europe, United States, Australia, Spain, Portugal, Mexico, Canada, Indonesia, and Cameroon."",""keyExecutives"":[{""name"":""Jurriaan Ruys"",""sourceUrl"":""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"",""title"":""Founder, CEO""},{""name"":""Eduard Zanen"",""sourceUrl"":""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"",""title"":""Founder""},{""name"":""Rebekah Braswell"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Executive Officer""},{""name"":""Arnout Asjes"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Technology Officer""},{""name"":""Axelle Ducos"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Growth Officer""},{""name"":""Tjeerd Anema"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Financial Officer""},{""name"":""Pancho Purroy"",""sourceUrl"":""https://www.linkedin.com/company/landlifecompany"",""title"":""Regional Director, Iberia""},{""name"":""Brian Lawson"",""sourceUrl"":""https://www.linkedin.com/company/landlifecompany"",""title"":""Regional Director, North America""},{""name"":""Tim Ferraro"",""sourceUrl"":""https://au.linkedin.com/in/timferraro"",""title"":""Director APAC""},{""name"":""Clara Rowe"",""sourceUrl"":""https://www.linkedin.com/company/landlifecompany"",""title"":""Director of Strategic Partnerships""},{""name"":""Gerrit Stoelinga"",""sourceUrl"":""https://linkedin.com/in/gerrit-stoelinga-239079198"",""title"":""Chairman of the Supervisory Board""},{""name"":""Martijn Duvoort"",""sourceUrl"":""https://linkedin.com/in/martijn-duvoort"",""title"":""Board Member of the Supervisory Board""},{""name"":""Katharina Maass"",""sourceUrl"":""https://www.linkedin.com/company/landlifecompany"",""title"":""Supervisory Board Member""}],""missingImportantFields"":[],""productDescription"":""Land Life offers high-integrity, nature-based solutions for restoring degraded land, including carbon removal credits through Afforestation, Reforestation, and Revegetation (ARR) projects, Corporate Social Responsibility (CSR) tree planting projects without carbon credits, and biodiversity baselining to support nature reporting and certification preparation. Their approach leverages proprietary technology and data analytics for site evaluation, restoration planning, and monitoring to maximize climate and biodiversity benefits."",""researcherNotes"":""The company is confirmed as Land Life Company headquartered in Amsterdam, Netherlands, with a global sales footprint including multiple continents and specific countries confirmed from the corporate website and LinkedIn. The executive list was supplemented with additional senior leadership and board members sourced from LinkedIn. No downloadable official documents were found. No discrepancies between sources were noted. The website URL was normalized to https and www prefix consistent with company branding and LinkedIn usage."",""sectorDescription"":""Operates in the environmental technology and nature-based solutions sector, focusing on large-scale land restoration to benefit climate, biodiversity, and communities."",""sources"":{""clientCategories"":""http://www.landlifecompany.com/en-us/projects"",""companyDescription"":""http://www.landlifecompany.com/"",""geographicFocus"":""http://www.landlifecompany.com/en-us/about"",""keyExecutives"":""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"",""productDescription"":""http://www.landlifecompany.com/en-us/companies""},""websiteURL"":""https://www.landlifecompany.com""}","Correctness: 98% Completeness: 95% The provided information about Land Life Company is highly accurate and well-supported by multiple reputable sources. The company was founded in 2013 by Jurriaan Ruys and Eduard Zanen and is headquartered in Amsterdam, Netherlands, confirmed by both Golden.com and official company information [1][3]. Their global operational footprint includes Europe, United States, Australia, Spain, Portugal, Mexico, Canada, Indonesia, and Cameroon, consistent with their sales focus and projects [3][4][5]. Leadership roles listed align with company website and LinkedIn profiles as of 2025-09, including CEO Rebekah Braswell and CTO Arnout Asjes [1][3]. The product and service description matches their offerings of high-integrity nature-based solutions centered on restoring degraded land through technology-driven afforestation, reforestation, and revegetation projects, with a focus on carbon removal credits, CSR projects, and biodiversity baselining [3][5]. Funding details show approximately €6 million in Series A and total funding around $6.6 million, consistent across sources from 2018 [1][2]. Minor incompleteness arises from no recent official filings or disclosures on funding updates beyond 2018 and limited detailed recent milestones publicly available. Overall, the description is both factually correct and largely complete with key company attributes and leadership accurately represented. Sources: https://golden.com/wiki/Land_Life_Company-AMPDBKJ, https://app.dealroom.co/companies/land_life, https://unreasonablegroup.com/ventures/land-life, https://geospatial.trimble.com/en/resources/customer-story/bringing-new-life-to-degraded-landscapes, https://www.landlifecompany.com","{""clientCategories"":[""Landowners"",""Companies seeking nature-based solutions"",""Retail"",""Energy"",""Financial"",""Pharma"",""FMCG"",""Tech""],""companyDescription"":""Land Life was founded at the intersection of science, technology and impact with the conviction that business and technology can drive innovation for nature. It restores degraded land at scale to benefit climate, biodiversity, and communities. Their mission is to restore two billion hectares of degraded land globally."",""geographicFocus"":""HQ: Mauritskade 64, 1092AD Amsterdam, Netherlands; Sales Focus: Global including Europe, United States, Australia, Spain, Portugal, Mexico, Canada, Indonesia, Cameroon"",""keyExecutives"":[{""name"":""Jurriaan Ruys"",""sourceUrl"":""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"",""title"":""Founder, CEO""},{""name"":""Eduard Zanen"",""sourceUrl"":""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"",""title"":""Founder""},{""name"":""Rebekah Braswell"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Executive Officer""},{""name"":""Arnout Asjes"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Technology Officer""},{""name"":""Axelle Ducos"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Growth Officer""},{""name"":""Tjeerd Anema"",""sourceUrl"":""http://www.landlifecompany.com/en-us/about"",""title"":""Chief Financial Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Land Life offers high-integrity, nature-based solutions for restoring degraded land, including: - Carbon removal credits via ARR (Afforestation, Reforestation, and Revegetation) projects. - Corporate Social Responsibility (CSR) tree planting projects without carbon credits. - Biodiversity baselining for nature reporting and certification preparation."",""researcherNotes"":""No downloadable document links like PDFs or DOCs were found on the website."",""sectorDescription"":""Operates in the environmental technology and nature-based solutions sector, focusing on large-scale land restoration to benefit climate, biodiversity, and communities."",""sources"":{""clientCategories"":""http://www.landlifecompany.com/en-us/projects"",""companyDescription"":""http://www.landlifecompany.com/"",""geographicFocus"":""http://www.landlifecompany.com/en-us/about"",""keyExecutives"":""https://golden.com/wiki/Land_Life_Company-AMPDBKJ"",""productDescription"":""http://www.landlifecompany.com/en-us/companies""},""websiteURL"":""http://www.landlifecompany.com/""}" -Weedingtech,http://weedingtech.com,,weedingtech.com,https://www.linkedin.com/company/weeding-technologies-limited,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://weedingtech.com"", - ""companyDescription"": ""Foamstream is the world's leading commercial herbicide-free weed control solution that kills unwanted vegetation using hot water insulated by a specially formulated biodegradable and organic foam, delivered by patented machinery. The company offers various products such as Foamstream L12A and M600HA systems, emphasizing environmentally-friendly, organic solutions for weed and moss control and urban cleaning. Foamstream's mission includes making the planet better for all its inhabitants, providing safe solutions for people, animals, and waterways, and supporting a sustainable, non-herbicidal approach to weed control."", - ""productDescription"": ""Foamstream product offerings include: Foamstream L12A, a plug and play entry-level system for weed control with enhanced cleaning functionality; Foamstream M600HA, a compact, lightweight system suitable for built-up and noise sensitive areas; and Optional Extras that expand machine capabilities beyond weed control."", - ""clientCategories"": [ - ""Municipal park operations"", - ""Landscaping and grounds maintenance contractors"", - ""Estate management"", - ""Public entities such as city councils and parks"", - ""Utility companies"", - ""Private landowners"" - ], - ""sectorDescription"": ""Operates in the environmental technology sector, specializing in commercial herbicide-free weed control solutions using patented foam and hot water technology."", - ""geographicFocus"": ""HQ: Unit 3, Fortune Way, Triangle Business Estate, London NW10 6UF, UK; Sales Focus: Americas, Europe, Australasia"", - ""keyExecutives"": [ - {""name"": ""Leo de Montaignac"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""}, - {""name"": ""Thomas Hamilton"", ""title"": ""CCO and Co-founder"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""}, - {""name"": ""Harmeet Gill"", ""title"": ""CFO"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""}, - {""name"": ""Franck Balducchi, PhD"", ""title"": ""CTO"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""} - ], - ""linkedDocuments"": [ - ""https://www.weedingtech.com/wp-content/uploads/2025/06/Irish_Rail_Recommends_Noel_Egan_and_Foamstream_Ireland_1750243431.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/08/Weedingtech-Brochure-UK.pdf"", - ""https://weedingtech.com/wp-content/uploads/2019/01/Master-Manual-M1200-English.pdf"", - ""https://weedingtech.com/wp-content/uploads/2018/12/SPEC-Sheet-M1200-UK.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Master-Manual-M1200.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/07/CS-TRADGARD-FR-2019.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2018/12/CS-GLASTONBURY-OFFLINE-link.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Master-Manual-M600.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2018/12/UK-Foamstream-vs-STEAM.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Spec-Sheet-M1200.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://weedingtech.com/us/about-us"", - ""productDescription"": ""https://weedingtech.com/us/foamstream-l12"", - ""clientCategories"": ""https://www.weedingtech.com"", - ""geographicFocus"": ""https://www.weedingtech.com/contact/"", - ""keyExecutives"": ""https://weedingtech.com/about-us/#team"" - } -}","{ - ""websiteURL"": ""http://weedingtech.com"", - ""companyDescription"": ""Foamstream is the world's leading commercial herbicide-free weed control solution that kills unwanted vegetation using hot water insulated by a specially formulated biodegradable and organic foam, delivered by patented machinery. The company offers various products such as Foamstream L12A and M600HA systems, emphasizing environmentally-friendly, organic solutions for weed and moss control and urban cleaning. Foamstream's mission includes making the planet better for all its inhabitants, providing safe solutions for people, animals, and waterways, and supporting a sustainable, non-herbicidal approach to weed control."", - ""productDescription"": ""Foamstream product offerings include: Foamstream L12A, a plug and play entry-level system for weed control with enhanced cleaning functionality; Foamstream M600HA, a compact, lightweight system suitable for built-up and noise sensitive areas; and Optional Extras that expand machine capabilities beyond weed control."", - ""clientCategories"": [ - ""Municipal park operations"", - ""Landscaping and grounds maintenance contractors"", - ""Estate management"", - ""Public entities such as city councils and parks"", - ""Utility companies"", - ""Private landowners"" - ], - ""sectorDescription"": ""Operates in the environmental technology sector, specializing in commercial herbicide-free weed control solutions using patented foam and hot water technology."", - ""geographicFocus"": ""HQ: Unit 3, Fortune Way, Triangle Business Estate, London NW10 6UF, UK; Sales Focus: Americas, Europe, Australasia"", - ""keyExecutives"": [ - {""name"": ""Leo de Montaignac"", ""title"": ""CEO and Co-founder"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""}, - {""name"": ""Thomas Hamilton"", ""title"": ""CCO and Co-founder"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""}, - {""name"": ""Harmeet Gill"", ""title"": ""CFO"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""}, - {""name"": ""Franck Balducchi, PhD"", ""title"": ""CTO"", ""sourceUrl"": ""https://weedingtech.com/about-us/#team""} - ], - ""linkedDocuments"": [ - ""https://www.weedingtech.com/wp-content/uploads/2025/06/Irish_Rail_Recommends_Noel_Egan_and_Foamstream_Ireland_1750243431.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/08/Weedingtech-Brochure-UK.pdf"", - ""https://weedingtech.com/wp-content/uploads/2019/01/Master-Manual-M1200-English.pdf"", - ""https://weedingtech.com/wp-content/uploads/2018/12/SPEC-Sheet-M1200-UK.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Master-Manual-M1200.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/07/CS-TRADGARD-FR-2019.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2018/12/CS-GLASTONBURY-OFFLINE-link.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Master-Manual-M600.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2018/12/UK-Foamstream-vs-STEAM.pdf"", - ""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Spec-Sheet-M1200.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://weedingtech.com/us/about-us"", - ""productDescription"": ""https://weedingtech.com/us/foamstream-l12"", - ""clientCategories"": ""https://www.weedingtech.com"", - ""geographicFocus"": ""https://www.weedingtech.com/contact/"", - ""keyExecutives"": ""https://weedingtech.com/about-us/#team"" - } -}",[],"{ - ""websiteURL"": ""https://www.weedingtech.com"", - ""companyDescription"": ""Foamstream is the world's leading commercial herbicide-free weed control solution developed by Weedingtech, a company founded in 2011. It uses patented technology combining hot water insulated by a biodegradable and organic foam made from natural plant oils and sugars to kill unwanted vegetation safely and efficiently. The solution is designed for a variety of users including municipal parks, landscaping contractors, estate management, and utility companies with a focus on environmentally-friendly, non-herbicidal weed and moss control. Its mission centers on reducing herbicide use to protect communities, people, animals, and the planet."", - ""productDescription"": ""Foamstream offers several systems such as the L12A, a plug-and-play entry-level weed control machine with enhanced cleaning capabilities, and the M600HA, a compact, lightweight system suitable for noise-sensitive and built-up areas. The core technology uses heated water insulated by an organic foam to maintain effective heat contact with plants long enough to kill or damage them. It is multi-functional, also capable of gum removal, street cleaning, and sanitisation. The foam's natural composition and the thermal control method mean it is safe, cost-effective, environmentally friendly, and requires fewer treatment cycles than alternatives."", - ""clientCategories"": [ - ""Municipal Park Operations"", - ""Landscaping and Grounds Maintenance Contractors"", - ""Estate Management"", - ""Public Entities Such As City Councils and Parks"", - ""Utility Companies"", - ""Private Landowners"" - ], - ""sectorDescription"": ""Environmental technology sector specializing in commercial herbicide-free weed control solutions using patented foam and hot water technology."", - ""geographicFocus"": ""Headquartered in London, UK, Weedingtech primarily operates and sells across the Americas, Europe, and Australasia."", - ""keyExecutives"": [ - { - ""name"": ""Leo de Montaignac"", - ""title"": ""CEO and Co-founder"", - ""sourceUrl"": ""https://weedingtech.com/about-us/#team"" - }, - { - ""name"": ""Thomas Hamilton"", - ""title"": ""CCO and Co-founder"", - ""sourceUrl"": ""https://weedingtech.com/about-us/#team"" - }, - { - ""name"": ""Harmeet Gill"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://weedingtech.com/about-us/#team"" - }, - { - ""name"": ""Franck Balducchi, PhD"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://weedingtech.com/about-us/#team"" - } - ], - ""researcherNotes"": ""Company identity verified by website domain, product keywords, founding year (2011), and UK headquarters. Geographic focus and product details confirmed via official company web pages. No senior leadership data found on LinkedIn beyond company website references. All required fields populated based on authoritative company content and corroborated public EU and UK sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weedingtech.com/us/about-us/"", - ""productDescription"": ""https://www.weedingtech.com/us/foamstream/"", - ""clientCategories"": ""https://www.weedingtech.com"", - ""geographicFocus"": ""https://www.weedingtech.com/contact/"", - ""keyExecutives"": ""https://weedingtech.com/about-us/#team"" - } -}","{""clientCategories"":[""Municipal Park Operations"",""Landscaping and Grounds Maintenance Contractors"",""Estate Management"",""Public Entities Such As City Councils and Parks"",""Utility Companies"",""Private Landowners""],""companyDescription"":""Foamstream is the world's leading commercial herbicide-free weed control solution developed by Weedingtech, a company founded in 2011. It uses patented technology combining hot water insulated by a biodegradable and organic foam made from natural plant oils and sugars to kill unwanted vegetation safely and efficiently. The solution is designed for a variety of users including municipal parks, landscaping contractors, estate management, and utility companies with a focus on environmentally-friendly, non-herbicidal weed and moss control. Its mission centers on reducing herbicide use to protect communities, people, animals, and the planet."",""geographicFocus"":""Headquartered in London, UK, Weedingtech primarily operates and sells across the Americas, Europe, and Australasia."",""keyExecutives"":[{""name"":""Leo de Montaignac"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CEO and Co-founder""},{""name"":""Thomas Hamilton"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CCO and Co-founder""},{""name"":""Harmeet Gill"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CFO""},{""name"":""Franck Balducchi, PhD"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Foamstream offers several systems such as the L12A, a plug-and-play entry-level weed control machine with enhanced cleaning capabilities, and the M600HA, a compact, lightweight system suitable for noise-sensitive and built-up areas. The core technology uses heated water insulated by an organic foam to maintain effective heat contact with plants long enough to kill or damage them. It is multi-functional, also capable of gum removal, street cleaning, and sanitisation. The foam's natural composition and the thermal control method mean it is safe, cost-effective, environmentally friendly, and requires fewer treatment cycles than alternatives."",""researcherNotes"":""Company identity verified by website domain, product keywords, founding year (2011), and UK headquarters. Geographic focus and product details confirmed via official company web pages. No senior leadership data found on LinkedIn beyond company website references. All required fields populated based on authoritative company content and corroborated public EU and UK sources."",""sectorDescription"":""Environmental technology sector specializing in commercial herbicide-free weed control solutions using patented foam and hot water technology."",""sources"":{""clientCategories"":""https://www.weedingtech.com"",""companyDescription"":""https://www.weedingtech.com/us/about-us/"",""geographicFocus"":""https://www.weedingtech.com/contact/"",""keyExecutives"":""https://weedingtech.com/about-us/#team"",""productDescription"":""https://www.weedingtech.com/us/foamstream/""},""websiteURL"":""https://www.weedingtech.com""}","Correctness: 100% Completeness: 98% The factual details about Foamstream and Weedingtech are fully accurate and well-supported by multiple authoritative sources. The product is indeed an herbicide-free commercial weed control solution using patented technology that combines hot water insulated by a biodegradable foam made from natural plant oils and sugars, designed for safe, environmentally friendly use around people, animals, and delicate environments[1][2][3][4][5]. Leadership information naming CEO and co-founders aligns with the official company website and no contradictions were found[https://weedingtech.com/about-us/#team]. The company is headquartered in London, UK, and operates primarily in the Americas, Europe, and Australasia[https://www.weedingtech.com/contact/]. The product is multifunctional, capable of weed and moss control as well as gum removal and sanitation, and its operational advantages such as fewer treatment cycles and effectiveness in various weather conditions are documented[2][4][5]. A slight completeness reduction is due to absence of public filings or third-party official registrations to uniquely verify some leadership details beyond the company website and no recent funding rounds were mentioned beyond a 2014 European Regional Development Fund support[3]. Overall, it represents a comprehensive and current depiction of Weedingtech and Foamstream as of 2025-09-11. Sources: https://www.weedingtech.com/us/about-us/ https://weedingtech.com/about-us/#team https://www.weedingtech.com/us/foamstream/ https://ec.europa.eu/regional_policy/en/projects/united-kingdom/foamstream-effective-weed-control-without-the-chemicals https://www.weedingtech.com/blog/foamstream-the-science-backed-solution-to-sustainable-weed-control/","{""clientCategories"":[""Municipal park operations"",""Landscaping and grounds maintenance contractors"",""Estate management"",""Public entities such as city councils and parks"",""Utility companies"",""Private landowners""],""companyDescription"":""Foamstream is the world's leading commercial herbicide-free weed control solution that kills unwanted vegetation using hot water insulated by a specially formulated biodegradable and organic foam, delivered by patented machinery. The company offers various products such as Foamstream L12A and M600HA systems, emphasizing environmentally-friendly, organic solutions for weed and moss control and urban cleaning. Foamstream's mission includes making the planet better for all its inhabitants, providing safe solutions for people, animals, and waterways, and supporting a sustainable, non-herbicidal approach to weed control."",""geographicFocus"":""HQ: Unit 3, Fortune Way, Triangle Business Estate, London NW10 6UF, UK; Sales Focus: Americas, Europe, Australasia"",""keyExecutives"":[{""name"":""Leo de Montaignac"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CEO and Co-founder""},{""name"":""Thomas Hamilton"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CCO and Co-founder""},{""name"":""Harmeet Gill"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CFO""},{""name"":""Franck Balducchi, PhD"",""sourceUrl"":""https://weedingtech.com/about-us/#team"",""title"":""CTO""}],""linkedDocuments"":[""https://www.weedingtech.com/wp-content/uploads/2025/06/Irish_Rail_Recommends_Noel_Egan_and_Foamstream_Ireland_1750243431.pdf"",""https://www.weedingtech.com/wp-content/uploads/2019/08/Weedingtech-Brochure-UK.pdf"",""https://weedingtech.com/wp-content/uploads/2019/01/Master-Manual-M1200-English.pdf"",""https://weedingtech.com/wp-content/uploads/2018/12/SPEC-Sheet-M1200-UK.pdf"",""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Master-Manual-M1200.pdf"",""https://www.weedingtech.com/wp-content/uploads/2019/07/CS-TRADGARD-FR-2019.pdf"",""https://www.weedingtech.com/wp-content/uploads/2018/12/CS-GLASTONBURY-OFFLINE-link.pdf"",""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Master-Manual-M600.pdf"",""https://www.weedingtech.com/wp-content/uploads/2018/12/UK-Foamstream-vs-STEAM.pdf"",""https://www.weedingtech.com/wp-content/uploads/2019/06/French-Spec-Sheet-M1200.pdf""],""missingImportantFields"":[],""productDescription"":""Foamstream product offerings include: Foamstream L12A, a plug and play entry-level system for weed control with enhanced cleaning functionality; Foamstream M600HA, a compact, lightweight system suitable for built-up and noise sensitive areas; and Optional Extras that expand machine capabilities beyond weed control."",""researcherNotes"":null,""sectorDescription"":""Operates in the environmental technology sector, specializing in commercial herbicide-free weed control solutions using patented foam and hot water technology."",""sources"":{""clientCategories"":""https://www.weedingtech.com"",""companyDescription"":""https://weedingtech.com/us/about-us"",""geographicFocus"":""https://www.weedingtech.com/contact/"",""keyExecutives"":""https://weedingtech.com/about-us/#team"",""productDescription"":""https://weedingtech.com/us/foamstream-l12""},""websiteURL"":""http://weedingtech.com""}" -Ignitia,http://www.ignitia.se/,"elea Foundation for Ethics in Globalization, FINCA Ventures, Future Foodways, Ikea Foundation, Mercy Corps Ventures, Norrsken VC, Novastar Ventures",ignitia.se,https://www.linkedin.com/company/ignitia-weather,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.ignitia.se/"", - ""companyDescription"": ""Ignitia is a company providing AI-driven weather and climate intelligence with a focus on climate resilience. They use physics-informed AI models combined with over 30 years of re-forecasting data to deliver high-resolution and hyper-localized weather forecasts, especially rainfall, optimized for tropical regions. Their solutions include real-time weather alerts, climate risk scoring similar to credit risk scores but for weather conditions, and farming advisory services accessible via WhatsApp, SMS, and apps. Ignitia operates globally with local precision and aims to improve preparedness for extreme weather events. Since 2010, Ignitia has been at the front lines of climate resilience. Starting as a deep tech initiative among physicists, meteorologists, and engineers, Ignitia identified poor weather data as a major growth barrier in low and middle income countries. With a focus on heavily weather-dependent industries like agriculture, and climate change challenges, Ignitia developed an industry-leading, remote-sensing and AI-driven weather model that outperforms alternatives even without high-density observation data. Leveraging over 10 years of high-resolution numerical model data, they train AI-based models excelling especially in regions impacted by extreme weather and microclimate variations."", - ""productDescription"": ""Ignitia offers physics-optimized and AI-driven weather forecasts that significantly outperform global models, focusing on improving rainfall prediction accuracy. Their core product combines remote sensing, satellite data, high-resolution modeling, and physics-based artificial intelligence to create hyper-localized forecasts tailored to specific locations. They specialize particularly in challenging heat and moisture-driven convective storms, which are faster forming and more intense, requiring specialized modeling for different climates."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the AI-driven weather and climate intelligence sector, focusing on hyper-localized forecasts and climate resilience solutions."", - ""geographicFocus"": ""HQ: Farsta 20, 15391 Järna, Sweden; Sales Focus: global with offices in Sweden, Ghana, and Brazil"", - ""keyExecutives"": [ - {""name"": ""Andrew Lala"", ""title"": ""CEO"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Andreas Vallgren"", ""title"": ""Co-Founder and Chief Scientist"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Hafen McCormick"", ""title"": ""Co-Founder and CIO"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Theresa Fehle"", ""title"": ""Chief of Staff"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Kwabena Frimpong"", ""title"": ""Director Africa"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""João Castro"", ""title"": ""Director Latin America"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Diogo Tomaz"", ""title"": ""Director Direct to Consumer"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Cristina Abreu"", ""title"": ""Director HR"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Tugce Alacadagli"", ""title"": ""Director Finance"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Francesco Carnielli"", ""title"": ""Director Tech"", ""sourceUrl"": ""https://ignitia.info/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No client categories or documents were found on the website to specify target customer types or linked PDFs."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.ignitia.se/"", - ""productDescription"": ""https://ignitia.info/science"", - ""clientCategories"": null, - ""geographicFocus"": ""https://ignitia.se/contact"", - ""keyExecutives"": ""https://ignitia.info/about"" - } -}","{ - ""websiteURL"": ""http://www.ignitia.se/"", - ""companyDescription"": ""Ignitia is a company providing AI-driven weather and climate intelligence with a focus on climate resilience. They use physics-informed AI models combined with over 30 years of re-forecasting data to deliver high-resolution and hyper-localized weather forecasts, especially rainfall, optimized for tropical regions. Their solutions include real-time weather alerts, climate risk scoring similar to credit risk scores but for weather conditions, and farming advisory services accessible via WhatsApp, SMS, and apps. Ignitia operates globally with local precision and aims to improve preparedness for extreme weather events. Since 2010, Ignitia has been at the front lines of climate resilience. Starting as a deep tech initiative among physicists, meteorologists, and engineers, Ignitia identified poor weather data as a major growth barrier in low and middle income countries. With a focus on heavily weather-dependent industries like agriculture, and climate change challenges, Ignitia developed an industry-leading, remote-sensing and AI-driven weather model that outperforms alternatives even without high-density observation data. Leveraging over 10 years of high-resolution numerical model data, they train AI-based models excelling especially in regions impacted by extreme weather and microclimate variations."", - ""productDescription"": ""Ignitia offers physics-optimized and AI-driven weather forecasts that significantly outperform global models, focusing on improving rainfall prediction accuracy. Their core product combines remote sensing, satellite data, high-resolution modeling, and physics-based artificial intelligence to create hyper-localized forecasts tailored to specific locations. They specialize particularly in challenging heat and moisture-driven convective storms, which are faster forming and more intense, requiring specialized modeling for different climates."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the AI-driven weather and climate intelligence sector, focusing on hyper-localized forecasts and climate resilience solutions."", - ""geographicFocus"": ""HQ: Farsta 20, 15391 Järna, Sweden; Sales Focus: global with offices in Sweden, Ghana, and Brazil"", - ""keyExecutives"": [ - {""name"": ""Andrew Lala"", ""title"": ""CEO"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Andreas Vallgren"", ""title"": ""Co-Founder and Chief Scientist"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Hafen McCormick"", ""title"": ""Co-Founder and CIO"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Theresa Fehle"", ""title"": ""Chief of Staff"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Kwabena Frimpong"", ""title"": ""Director Africa"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""João Castro"", ""title"": ""Director Latin America"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Diogo Tomaz"", ""title"": ""Director Direct to Consumer"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Cristina Abreu"", ""title"": ""Director HR"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Tugce Alacadagli"", ""title"": ""Director Finance"", ""sourceUrl"": ""https://ignitia.info/about""}, - {""name"": ""Francesco Carnielli"", ""title"": ""Director Tech"", ""sourceUrl"": ""https://ignitia.info/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No client categories or documents were found on the website to specify target customer types or linked PDFs."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.ignitia.se/"", - ""productDescription"": ""https://ignitia.info/science"", - ""clientCategories"": null, - ""geographicFocus"": ""https://ignitia.se/contact"", - ""keyExecutives"": ""https://ignitia.info/about"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.ignitia.se"", - ""companyDescription"": ""Ignitia provides AI-driven weather and climate intelligence focused on climate resilience for tropical regions. Leveraging physics-informed AI models with over 30 years of re-forecasting data, Ignitia delivers high-resolution, hyper-localized weather forecasts with superior rainfall prediction accuracy. Their solutions enable real-time weather alerts, climate risk scoring, and farming advisory services via SMS, WhatsApp, and apps, mainly supporting agriculture-dependent users to better prepare for extreme weather and climate change challenges. Operating globally with key offices in Sweden, Ghana, and Brazil, Ignitia has pioneered tropical weather forecasting since 2010, targeting low- and middle-income countries with specialized models that outperform conventional global systems despite sparse observation data."", - ""productDescription"": ""Ignitia's core product is a physics-optimized, AI-driven weather forecasting service that significantly exceeds the accuracy of global models, especially in predicting rainfall. Combining remote sensing, satellite data, high-resolution numerical weather modeling, and physics-based AI, their platform generates hyper-local, location-specific forecasts tailored for challenging convective storms typical in tropical climates. Delivered via mobile channels including SMS and WhatsApp, these forecasts provide short-term (2-7 day), monthly, and seasonal insights as well as real-time storm alerts, aiding farmers and agricultural stakeholders in decision-making and climate change adaptation."", - ""clientCategories"": [ - ""Smallholder Farmers"", - ""Agricultural Businesses"", - ""Development Agencies"", - ""Non-Governmental Organizations"", - ""Mobile Network Operators"" - ], - ""sectorDescription"": ""AI-driven weather and climate intelligence focused on hyper-localized forecasts and climate resilience solutions for tropical regions and agriculture-dependent markets."", - ""geographicFocus"": ""Global operations with key market focus on tropical regions, notably West and East Africa, supported by offices in Sweden, Ghana, and Brazil."", - ""keyExecutives"": [ - { - ""name"": ""Andrew Lala"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Andreas Vallgren"", - ""title"": ""Co-Founder and Chief Scientist"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Hafen McCormick"", - ""title"": ""Co-Founder and CIO"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Theresa Fehle"", - ""title"": ""Chief of Staff"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Kwabena Frimpong"", - ""title"": ""Director Africa"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""João Castro"", - ""title"": ""Director Latin America"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Diogo Tomaz"", - ""title"": ""Director Direct to Consumer"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Cristina Abreu"", - ""title"": ""Director HR"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Tugce Alacadagli"", - ""title"": ""Director Finance"", - ""sourceUrl"": ""https://ignitia.info/about"" - }, - { - ""name"": ""Francesco Carnielli"", - ""title"": ""Director Tech"", - ""sourceUrl"": ""https://ignitia.info/about"" - } - ], - ""researcherNotes"": ""The company profile was confirmed by matching the website domain, headquarters in Järna, Sweden, and focus on AI-driven tropical weather forecasting for agriculture. Client categories were inferred from multiple sources including Dealroom and the World Summit on the Information Society (WSIS) 2024 prize description, emphasizing smallholder farmers, agricultural businesses, NGOs, development agencies, and mobile network operators. Geographic focus includes tropical regions globally with strong emphasis on West and East Africa, corroborated by company sales offices in Sweden, Ghana, and Brazil. All executive details are sourced from the official company About page. No conflicting information was found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ignitia.se/"", - ""productDescription"": ""https://www.ignitia.info/science"", - ""clientCategories"": ""https://app.dealroom.co/companies/ignitia"", - ""geographicFocus"": ""https://www.ignitia.se/contact"", - ""keyExecutives"": ""https://ignitia.info/about"" - } -}","{""clientCategories"":[""Smallholder Farmers"",""Agricultural Businesses"",""Development Agencies"",""Non-Governmental Organizations"",""Mobile Network Operators""],""companyDescription"":""Ignitia provides AI-driven weather and climate intelligence focused on climate resilience for tropical regions. Leveraging physics-informed AI models with over 30 years of re-forecasting data, Ignitia delivers high-resolution, hyper-localized weather forecasts with superior rainfall prediction accuracy. Their solutions enable real-time weather alerts, climate risk scoring, and farming advisory services via SMS, WhatsApp, and apps, mainly supporting agriculture-dependent users to better prepare for extreme weather and climate change challenges. Operating globally with key offices in Sweden, Ghana, and Brazil, Ignitia has pioneered tropical weather forecasting since 2010, targeting low- and middle-income countries with specialized models that outperform conventional global systems despite sparse observation data."",""geographicFocus"":""Global operations with key market focus on tropical regions, notably West and East Africa, supported by offices in Sweden, Ghana, and Brazil."",""keyExecutives"":[{""name"":""Andrew Lala"",""sourceUrl"":""https://ignitia.info/about"",""title"":""CEO""},{""name"":""Andreas Vallgren"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Co-Founder and Chief Scientist""},{""name"":""Hafen McCormick"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Co-Founder and CIO""},{""name"":""Theresa Fehle"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Chief of Staff""},{""name"":""Kwabena Frimpong"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Africa""},{""name"":""João Castro"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Latin America""},{""name"":""Diogo Tomaz"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Direct to Consumer""},{""name"":""Cristina Abreu"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director HR""},{""name"":""Tugce Alacadagli"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Finance""},{""name"":""Francesco Carnielli"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Tech""}],""missingImportantFields"":[],""productDescription"":""Ignitia's core product is a physics-optimized, AI-driven weather forecasting service that significantly exceeds the accuracy of global models, especially in predicting rainfall. Combining remote sensing, satellite data, high-resolution numerical weather modeling, and physics-based AI, their platform generates hyper-local, location-specific forecasts tailored for challenging convective storms typical in tropical climates. Delivered via mobile channels including SMS and WhatsApp, these forecasts provide short-term (2-7 day), monthly, and seasonal insights as well as real-time storm alerts, aiding farmers and agricultural stakeholders in decision-making and climate change adaptation."",""researcherNotes"":""The company profile was confirmed by matching the website domain, headquarters in Järna, Sweden, and focus on AI-driven tropical weather forecasting for agriculture. Client categories were inferred from multiple sources including Dealroom and the World Summit on the Information Society (WSIS) 2024 prize description, emphasizing smallholder farmers, agricultural businesses, NGOs, development agencies, and mobile network operators. Geographic focus includes tropical regions globally with strong emphasis on West and East Africa, corroborated by company sales offices in Sweden, Ghana, and Brazil. All executive details are sourced from the official company About page. No conflicting information was found."",""sectorDescription"":""AI-driven weather and climate intelligence focused on hyper-localized forecasts and climate resilience solutions for tropical regions and agriculture-dependent markets."",""sources"":{""clientCategories"":""https://app.dealroom.co/companies/ignitia"",""companyDescription"":""https://www.ignitia.se/"",""geographicFocus"":""https://www.ignitia.se/contact"",""keyExecutives"":""https://ignitia.info/about"",""productDescription"":""https://www.ignitia.info/science""},""websiteURL"":""https://www.ignitia.se""}","Correctness: 85% Completeness: 90% The given profile is largely accurate regarding Ignitia’s focus on AI-driven weather forecasting for tropical regions, its emphasis on agriculture, and its offices in Sweden, Ghana, and Brazil, as confirmed by the company’s About page listing key executives including CEO Andrew Lala and others[1]. The description aligns well with Ignitia’s core product involving physics-informed AI models for hyper-local forecasts delivered via SMS, WhatsApp, and apps, designed to aid farmers with climate resilience, confirmed by detailed explanations on their science and delivery channels[1][3]. The stated global tropical focus with key markets in West and East Africa matches their operational footprint and partnerships with mobile network operators highlighted in external sources[2][3]. However, a notable inconsistency exists in leadership: secondary sources mention a CEO/co-founder named Liisa Smits, not reflected in the current official page whose CEO is Andrew Lala, suggesting a leadership change or outdated information in some sources[1][2]. Additionally, although customer reach data and partnerships with mobile operators are important for completeness, they were missing in the original profile but appear in recent secondary sources[2]. No reliable authoritative filings were found during the search for further confirmation, which slightly limits validation. Overall, the main facts are well covered with minor gaps and one leadership naming discrepancy. https://www.ignitia.info/about https://fincaventures.com/why-we-invested-ignitia/ https://www.gsma.com/solutions-and-impact/connectivity-for-good/mobile-for-development/mobile-for-development-2/harnessing-machine-learning-to-power-weather-forecasts-insights-from-ignitia/","{""clientCategories"":[],""companyDescription"":""Ignitia is a company providing AI-driven weather and climate intelligence with a focus on climate resilience. They use physics-informed AI models combined with over 30 years of re-forecasting data to deliver high-resolution and hyper-localized weather forecasts, especially rainfall, optimized for tropical regions. Their solutions include real-time weather alerts, climate risk scoring similar to credit risk scores but for weather conditions, and farming advisory services accessible via WhatsApp, SMS, and apps. Ignitia operates globally with local precision and aims to improve preparedness for extreme weather events. Since 2010, Ignitia has been at the front lines of climate resilience. Starting as a deep tech initiative among physicists, meteorologists, and engineers, Ignitia identified poor weather data as a major growth barrier in low and middle income countries. With a focus on heavily weather-dependent industries like agriculture, and climate change challenges, Ignitia developed an industry-leading, remote-sensing and AI-driven weather model that outperforms alternatives even without high-density observation data. Leveraging over 10 years of high-resolution numerical model data, they train AI-based models excelling especially in regions impacted by extreme weather and microclimate variations."",""geographicFocus"":""HQ: Farsta 20, 15391 Järna, Sweden; Sales Focus: global with offices in Sweden, Ghana, and Brazil"",""keyExecutives"":[{""name"":""Andrew Lala"",""sourceUrl"":""https://ignitia.info/about"",""title"":""CEO""},{""name"":""Andreas Vallgren"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Co-Founder and Chief Scientist""},{""name"":""Hafen McCormick"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Co-Founder and CIO""},{""name"":""Theresa Fehle"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Chief of Staff""},{""name"":""Kwabena Frimpong"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Africa""},{""name"":""João Castro"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Latin America""},{""name"":""Diogo Tomaz"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Direct to Consumer""},{""name"":""Cristina Abreu"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director HR""},{""name"":""Tugce Alacadagli"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Finance""},{""name"":""Francesco Carnielli"",""sourceUrl"":""https://ignitia.info/about"",""title"":""Director Tech""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Ignitia offers physics-optimized and AI-driven weather forecasts that significantly outperform global models, focusing on improving rainfall prediction accuracy. Their core product combines remote sensing, satellite data, high-resolution modeling, and physics-based artificial intelligence to create hyper-localized forecasts tailored to specific locations. They specialize particularly in challenging heat and moisture-driven convective storms, which are faster forming and more intense, requiring specialized modeling for different climates."",""researcherNotes"":""No client categories or documents were found on the website to specify target customer types or linked PDFs."",""sectorDescription"":""Operates in the AI-driven weather and climate intelligence sector, focusing on hyper-localized forecasts and climate resilience solutions."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.ignitia.se/"",""geographicFocus"":""https://ignitia.se/contact"",""keyExecutives"":""https://ignitia.info/about"",""productDescription"":""https://ignitia.info/science""},""websiteURL"":""http://www.ignitia.se/""}" -Mootral,https://www.mootral.com,"Climate Capital, Earthshot Ventures, FJ Labs, Green Meadow Ventures, King Philanthropies, Seedrs",mootral.com,https://www.linkedin.com/company/mootral,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.mootral.com"", - ""companyDescription"": ""Mootral is a company focused on sustainable animal agriculture by linking animal health, farmer economics, and climate change. Their mission is to produce food that is good for people, mindful of animal welfare, and helps restore the earth. They aim to reduce methane intensity in cattle, eliminate preventative antibiotic use, and support farmers' ability to thrive."", - ""productDescription"": ""Mootral offers Enterix™ and Xaloo™ products as natural feed supplements designed to improve animal health and reduce methane emissions. Enterix™ reduces methane emissions from cattle by up to 38%, improves animal health, increases milk yields by 3.3% to 17.8%, and contains a proprietary combination of garlic and citrus extract that alters the ruminant microbiome. Xaloo™ supports the gut health of poultry, piglets, calves, and rabbits."", - ""clientCategories"": [ - ""Dairy & beef farmers"", - ""Dairy & beef processors"", - ""Monogastric producers"" - ], - ""sectorDescription"": ""Operates in the agricultural and environmental technology sector, offering natural solutions to improve animal health and reduce agricultural methane emissions."", - ""geographicFocus"": ""HQ: Units G&H Roseheyworth Business Park, Abertillery, NP13 1SX, United Kingdom"", - ""keyExecutives"": [ - {""name"": ""Isabelle Botticelli"", ""title"": ""Co-Founder and interim CEO"", ""sourceUrl"": ""https://mootral.com/team""}, - {""name"": ""Thomas Hafner"", ""title"": ""Founder"", ""sourceUrl"": ""https://mootral.com/team""}, - {""name"": ""Chris Kantrowitz"", ""title"": ""Co-Founder & Head of North America"", ""sourceUrl"": ""https://mootral.com/team""}, - {""name"": ""Irshaad Kathrada"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://mootral.com/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://mootral.com/"", - ""productDescription"": ""https://mootral.com/solutions/enterix"", - ""clientCategories"": ""https://mootral.com/use-cases/dairy-and-beef-farmers"", - ""geographicFocus"": ""https://mootral.com/contact"", - ""keyExecutives"": ""https://mootral.com/team"" - } -}","{ - ""websiteURL"": ""https://www.mootral.com"", - ""companyDescription"": ""Mootral is a company focused on sustainable animal agriculture by linking animal health, farmer economics, and climate change. Their mission is to produce food that is good for people, mindful of animal welfare, and helps restore the earth. They aim to reduce methane intensity in cattle, eliminate preventative antibiotic use, and support farmers' ability to thrive."", - ""productDescription"": ""Mootral offers Enterix™ and Xaloo™ products as natural feed supplements designed to improve animal health and reduce methane emissions. Enterix™ reduces methane emissions from cattle by up to 38%, improves animal health, increases milk yields by 3.3% to 17.8%, and contains a proprietary combination of garlic and citrus extract that alters the ruminant microbiome. Xaloo™ supports the gut health of poultry, piglets, calves, and rabbits."", - ""clientCategories"": [ - ""Dairy & beef farmers"", - ""Dairy & beef processors"", - ""Monogastric producers"" - ], - ""sectorDescription"": ""Operates in the agricultural and environmental technology sector, offering natural solutions to improve animal health and reduce agricultural methane emissions."", - ""geographicFocus"": ""HQ: Units G&H Roseheyworth Business Park, Abertillery, NP13 1SX, United Kingdom"", - ""keyExecutives"": [ - {""name"": ""Isabelle Botticelli"", ""title"": ""Co-Founder and interim CEO"", ""sourceUrl"": ""https://mootral.com/team""}, - {""name"": ""Thomas Hafner"", ""title"": ""Founder"", ""sourceUrl"": ""https://mootral.com/team""}, - {""name"": ""Chris Kantrowitz"", ""title"": ""Co-Founder & Head of North America"", ""sourceUrl"": ""https://mootral.com/team""}, - {""name"": ""Irshaad Kathrada"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://mootral.com/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://mootral.com/"", - ""productDescription"": ""https://mootral.com/solutions/enterix"", - ""clientCategories"": ""https://mootral.com/use-cases/dairy-and-beef-farmers"", - ""geographicFocus"": ""https://mootral.com/contact"", - ""keyExecutives"": ""https://mootral.com/team"" - } -}",[],"{ - ""websiteURL"": ""https://www.mootral.com"", - ""companyDescription"": ""Mootral is a company focused on sustainable animal agriculture by linking animal health, farmer economics, and climate change. Their mission is to produce food that is good for people, mindful of animal welfare, and helps restore the earth. They aim to reduce methane intensity in cattle, eliminate preventative antibiotic use, and support farmers' ability to thrive."", - ""productDescription"": ""Mootral offers Enterix™ and Xaloo™ products as natural feed supplements designed to improve animal health and reduce methane emissions. Enterix™ reduces methane emissions from cattle by up to 38%, improves animal health, increases milk yields by 3.3% to 17.8%, and contains a proprietary combination of garlic and citrus extract that alters the ruminant microbiome. Xaloo™ supports the gut health of poultry, piglets, calves, and rabbits."", - ""clientCategories"": [ - ""Dairy & Beef Farmers"", - ""Dairy & Beef Processors"", - ""Monogastric Producers"" - ], - ""sectorDescription"": ""Operates in the agricultural and environmental technology sector, offering natural solutions to improve animal health and reduce agricultural methane emissions."", - ""geographicFocus"": ""Primary focus: United Kingdom and global markets with plans to expand through multiple studies in different regions."", - ""keyExecutives"": [ - { - ""name"": ""Isabelle Botticelli"", - ""title"": ""Co-Founder and interim CEO"", - ""sourceUrl"": ""https://mootral.com/team"" - }, - { - ""name"": ""Thomas Hafner"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://mootral.com/team"" - }, - { - ""name"": ""Chris Kantrowitz"", - ""title"": ""Co-Founder & Head of North America"", - ""sourceUrl"": ""https://mootral.com/team"" - }, - { - ""name"": ""Irshaad Kathrada"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://mootral.com/team"" - } - ], - ""researcherNotes"": ""The company is confirmed as the correct entity by domain match and UK headquarters. Registered office differs from operational HQ; Mootral Holdings Limited is in liquidation per Companies House with a London address, but Mootral operates from Abertillery, UK. Geographic footprint beyond the UK is planned but not fully detailed; primary activities and product testing are UK-based with global ambitions. No conflicting leadership data found. Sources include company website and Wikipedia as corroboration."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://mootral.com/"", - ""productDescription"": ""https://mootral.com/solutions/enterix"", - ""clientCategories"": ""https://mootral.com/use-cases/dairy-and-beef-farmers"", - ""geographicFocus"": ""https://mootral.com/contact"", - ""keyExecutives"": ""https://mootral.com/team"" - } -}","{""clientCategories"":[""Dairy & Beef Farmers"",""Dairy & Beef Processors"",""Monogastric Producers""],""companyDescription"":""Mootral is a company focused on sustainable animal agriculture by linking animal health, farmer economics, and climate change. Their mission is to produce food that is good for people, mindful of animal welfare, and helps restore the earth. They aim to reduce methane intensity in cattle, eliminate preventative antibiotic use, and support farmers' ability to thrive."",""geographicFocus"":""Primary focus: United Kingdom and global markets with plans to expand through multiple studies in different regions."",""keyExecutives"":[{""name"":""Isabelle Botticelli"",""sourceUrl"":""https://mootral.com/team"",""title"":""Co-Founder and interim CEO""},{""name"":""Thomas Hafner"",""sourceUrl"":""https://mootral.com/team"",""title"":""Founder""},{""name"":""Chris Kantrowitz"",""sourceUrl"":""https://mootral.com/team"",""title"":""Co-Founder & Head of North America""},{""name"":""Irshaad Kathrada"",""sourceUrl"":""https://mootral.com/team"",""title"":""Chief Financial Officer""}],""missingImportantFields"":[],""productDescription"":""Mootral offers Enterix™ and Xaloo™ products as natural feed supplements designed to improve animal health and reduce methane emissions. Enterix™ reduces methane emissions from cattle by up to 38%, improves animal health, increases milk yields by 3.3% to 17.8%, and contains a proprietary combination of garlic and citrus extract that alters the ruminant microbiome. Xaloo™ supports the gut health of poultry, piglets, calves, and rabbits."",""researcherNotes"":""The company is confirmed as the correct entity by domain match and UK headquarters. Registered office differs from operational HQ; Mootral Holdings Limited is in liquidation per Companies House with a London address, but Mootral operates from Abertillery, UK. Geographic footprint beyond the UK is planned but not fully detailed; primary activities and product testing are UK-based with global ambitions. No conflicting leadership data found. Sources include company website and Wikipedia as corroboration."",""sectorDescription"":""Operates in the agricultural and environmental technology sector, offering natural solutions to improve animal health and reduce agricultural methane emissions."",""sources"":{""clientCategories"":""https://mootral.com/use-cases/dairy-and-beef-farmers"",""companyDescription"":""https://mootral.com/"",""geographicFocus"":""https://mootral.com/contact"",""keyExecutives"":""https://mootral.com/team"",""productDescription"":""https://mootral.com/solutions/enterix""},""websiteURL"":""https://www.mootral.com""}","Correctness: 96% Completeness: 90% -The provided information about Mootral is largely accurate and well-supported by multiple sources. Mootral is a British-Swiss agri-tech company, founded in 2018 by Thomas Hafner and Chris Kantrowitz, focused on sustainable animal agriculture and reducing methane emissions from ruminants through natural feed supplements[2][3][4]. The leadership roles listed (Isabelle Botticelli as Co-Founder and interim CEO, Thomas Hafner as Founder, Chris Kantrowitz as Co-Founder & Head of North America, and Irshaad Kathrada as CFO) align with current company data on their team page[1][3]. The company’s primary geographic focus is the UK with global market ambitions, matching descriptions of flagship farms and ongoing trials in Europe, the USA, Latin America, and Oceania[3]. Mootral offers Enterix™ and Xaloo™ products—Enterix™ being a garlic and citrus-based feed supplement reducing methane emissions up to 38% while improving animal health and milk yields, and Xaloo™ supporting gut health in other animals[3]. The mention of Mootral Holdings Limited being in liquidation while Mootral operates from Abertillery, UK, provides important context on registered vs operational addresses[1]. Minor detail gaps include specifying the exact scale and results of broader global trials and confirmation of funding status beyond known investors (Chris Sacca, Tribe Capital) cited elsewhere[2]. Overall, the data is factually correct and reasonably complete as of 2025, with primary sources from the company website, Wikipedia, and credible profiles[1][2][3][4]. -https://mootral.com/team -https://mootral.com/contact -https://mootral.com/solutions/enterix -https://en.wikipedia.org/wiki/Mootral -https://republic.com/mootral","{""clientCategories"":[""Dairy & beef farmers"",""Dairy & beef processors"",""Monogastric producers""],""companyDescription"":""Mootral is a company focused on sustainable animal agriculture by linking animal health, farmer economics, and climate change. Their mission is to produce food that is good for people, mindful of animal welfare, and helps restore the earth. They aim to reduce methane intensity in cattle, eliminate preventative antibiotic use, and support farmers' ability to thrive."",""geographicFocus"":""HQ: Units G&H Roseheyworth Business Park, Abertillery, NP13 1SX, United Kingdom"",""keyExecutives"":[{""name"":""Isabelle Botticelli"",""sourceUrl"":""https://mootral.com/team"",""title"":""Co-Founder and interim CEO""},{""name"":""Thomas Hafner"",""sourceUrl"":""https://mootral.com/team"",""title"":""Founder""},{""name"":""Chris Kantrowitz"",""sourceUrl"":""https://mootral.com/team"",""title"":""Co-Founder & Head of North America""},{""name"":""Irshaad Kathrada"",""sourceUrl"":""https://mootral.com/team"",""title"":""Chief Financial Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Mootral offers Enterix™ and Xaloo™ products as natural feed supplements designed to improve animal health and reduce methane emissions. Enterix™ reduces methane emissions from cattle by up to 38%, improves animal health, increases milk yields by 3.3% to 17.8%, and contains a proprietary combination of garlic and citrus extract that alters the ruminant microbiome. Xaloo™ supports the gut health of poultry, piglets, calves, and rabbits."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural and environmental technology sector, offering natural solutions to improve animal health and reduce agricultural methane emissions."",""sources"":{""clientCategories"":""https://mootral.com/use-cases/dairy-and-beef-farmers"",""companyDescription"":""https://mootral.com/"",""geographicFocus"":""https://mootral.com/contact"",""keyExecutives"":""https://mootral.com/team"",""productDescription"":""https://mootral.com/solutions/enterix""},""websiteURL"":""https://www.mootral.com""}" -GÃ¥rdsfisk,http://www.gardsfisk.se/,"Hatch Blue Ltd, Industrifonden, LRF Ventures, Novax",gardsfisk.se,https://www.linkedin.com/company/gårdsfisk,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.gardsfisk.se/"", - ""companyDescription"": ""Gårdsfisk is a company that allows Swedish farmers to raise fish on their farms, creating a sustainable and nearly closed-loop system that benefits both fish and crops. Their fish are climate-certified by Svensk Sigill, approved by WWF's fish guide, and carry the Från Sverige label, indicating the entire process occurs in Sweden. They focus on producing sustainable fish with no unnecessary additives. The company operates in the sustainable aquaculture sector with a mission to reduce overfishing and eutrophication while providing good fish."", - ""productDescription"": ""Gårdsfisk offers climate-certified Swedish farmed fish products raised under strict animal welfare laws. Their product range includes:\n- Fiskköttbullar (fish meatballs) made from Gårdsclarias™\n- Gårdsclarias™ fish mince (färs)\n- Gårdsclarias™ fillets\n- Warm-smoked Clarias fillets\n- Fillets of Rödstrimma™.\nAll products are produced, processed, and packed in Sweden, rich in Omega 3 and protein. The company holds the Svensk Sigill Fisk och Skaldjur certification, which demands high standards in animal welfare, feed, slaughter, and sustainability."", - ""clientCategories"": [""Farmers with suitable farm buildings and animal husbandry experience"",""Selected retailers"",""Food service distributors"",""Restaurants"",""Wholesalers"",""Stores"",""Consumers""], - ""sectorDescription"": ""Operates in the sustainable aquaculture sector, focusing on climate-certified fish farming that supports Swedish farmers and promotes environmentally friendly fish production."", - ""geographicFocus"": ""HQ: Scandinavian Aquasystems AB (details at https://gardsfisk.se/kontakt); Sales Focus: Sweden through selected retailers and food service distributors."", - ""keyExecutives"": [{""name"": ""Johan Ljungquist"", ""title"": ""Founder"", ""sourceUrl"": ""https://mynewsdesk.com/se/gardsfisk""}, {""name"": ""Mikael Olenmark"", ""title"": ""Founder"", ""sourceUrl"": ""https://mynewsdesk.com/se/gardsfisk""}], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.gardsfisk.se/"", - ""productDescription"": ""https://www.gardsfisk.se/foodservice"", - ""clientCategories"": ""https://www.gardsfisk.se/fiskbonde"", - ""geographicFocus"": ""https://www.gardsfisk.se/kontakt"", - ""keyExecutives"": ""https://mynewsdesk.com/se/gardsfisk"" - } -}","{ - ""websiteURL"": ""http://www.gardsfisk.se/"", - ""companyDescription"": ""Gårdsfisk is a company that allows Swedish farmers to raise fish on their farms, creating a sustainable and nearly closed-loop system that benefits both fish and crops. Their fish are climate-certified by Svensk Sigill, approved by WWF's fish guide, and carry the Från Sverige label, indicating the entire process occurs in Sweden. They focus on producing sustainable fish with no unnecessary additives. The company operates in the sustainable aquaculture sector with a mission to reduce overfishing and eutrophication while providing good fish."", - ""productDescription"": ""Gårdsfisk offers climate-certified Swedish farmed fish products raised under strict animal welfare laws. Their product range includes:\n- Fiskköttbullar (fish meatballs) made from Gårdsclarias™\n- Gårdsclarias™ fish mince (färs)\n- Gårdsclarias™ fillets\n- Warm-smoked Clarias fillets\n- Fillets of Rödstrimma™.\nAll products are produced, processed, and packed in Sweden, rich in Omega 3 and protein. The company holds the Svensk Sigill Fisk och Skaldjur certification, which demands high standards in animal welfare, feed, slaughter, and sustainability."", - ""clientCategories"": [""Farmers with suitable farm buildings and animal husbandry experience"",""Selected retailers"",""Food service distributors"",""Restaurants"",""Wholesalers"",""Stores"",""Consumers""], - ""sectorDescription"": ""Operates in the sustainable aquaculture sector, focusing on climate-certified fish farming that supports Swedish farmers and promotes environmentally friendly fish production."", - ""geographicFocus"": ""HQ: Scandinavian Aquasystems AB (details at https://gardsfisk.se/kontakt); Sales Focus: Sweden through selected retailers and food service distributors."", - ""keyExecutives"": [{""name"": ""Johan Ljungquist"", ""title"": ""Founder"", ""sourceUrl"": ""https://mynewsdesk.com/se/gardsfisk""}, {""name"": ""Mikael Olenmark"", ""title"": ""Founder"", ""sourceUrl"": ""https://mynewsdesk.com/se/gardsfisk""}], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.gardsfisk.se/"", - ""productDescription"": ""https://www.gardsfisk.se/foodservice"", - ""clientCategories"": ""https://www.gardsfisk.se/fiskbonde"", - ""geographicFocus"": ""https://www.gardsfisk.se/kontakt"", - ""keyExecutives"": ""https://mynewsdesk.com/se/gardsfisk"" - } -}",[],"{ - ""websiteURL"": ""https://www.gardsfisk.se"", - ""companyDescription"": ""Gårdsfisk is a Swedish company founded in 2013 by Johan Ljungquist and Mikael Olenmark that enables farmers to raise fish on their farms using a vertically integrated recirculating aquaculture system (RAS). Their mission is to produce sustainable, climate-certified fish that reduce overfishing and eutrophication while supporting Swedish agriculture. Their fish products, certified by Svensk Sigill and approved by WWF, are entirely farmed, processed, and packed in Sweden under strict animal welfare and sustainability standards."", - ""productDescription"": ""Gårdsfisk offers climate-certified and high welfare Swedish farmed fish products including Gårdsclarias™ fish meatballs, fish mince, fillets, warm-smoked Clarias fillets, and Rödstrimma™ fillets. All products are rich in Omega 3 and protein and are produced under strict sustainability and animal welfare certifications, providing a local and sustainable alternative to imported seafood."", - ""clientCategories"": [ - ""Farmers With Suitable Farm Buildings And Animal Husbandry Experience"", - ""Selected Retailers"", - ""Food Service Distributors"", - ""Restaurants"", - ""Wholesalers"", - ""Stores"", - ""Consumers"" - ], - ""sectorDescription"": ""Sustainable aquaculture sector focused on climate-certified, land-based fish farming that supports Swedish farmers and promotes environmentally friendly fish production."", - ""geographicFocus"": ""Headquartered in Sweden through Scandinavian Aquasystems AB, Gårdsfisk focuses sales primarily within Sweden via selected retailers and food service distributors."", - ""keyExecutives"": [ - { - ""name"": ""Johan Ljungquist"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://mynewsdesk.com/se/gardsfisk"" - }, - { - ""name"": ""Mikael Olenmark"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://mynewsdesk.com/se/gardsfisk"" - } - ], - ""researcherNotes"": ""The entity is confirmed as Gårdsfisk, a Swedish sustainable fish farming company founded in 2013 by Johan Ljungquist and Mikael Olenmark, based on domain match and multiple sources including company website and press coverage. Key executives have consistent titles and are verified via the company's official news releases. Geographic focus is Sweden as per company site and related sources. No significant missing information remains."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.gardsfisk.se/"", - ""productDescription"": ""https://www.gardsfisk.se/foodservice"", - ""clientCategories"": ""https://www.gardsfisk.se/fiskbonde"", - ""geographicFocus"": ""https://www.gardsfisk.se/kontakt"", - ""keyExecutives"": ""https://mynewsdesk.com/se/gardsfisk"" - } -}","{""clientCategories"":[""Farmers With Suitable Farm Buildings And Animal Husbandry Experience"",""Selected Retailers"",""Food Service Distributors"",""Restaurants"",""Wholesalers"",""Stores"",""Consumers""],""companyDescription"":""Gårdsfisk is a Swedish company founded in 2013 by Johan Ljungquist and Mikael Olenmark that enables farmers to raise fish on their farms using a vertically integrated recirculating aquaculture system (RAS). Their mission is to produce sustainable, climate-certified fish that reduce overfishing and eutrophication while supporting Swedish agriculture. Their fish products, certified by Svensk Sigill and approved by WWF, are entirely farmed, processed, and packed in Sweden under strict animal welfare and sustainability standards."",""geographicFocus"":""Headquartered in Sweden through Scandinavian Aquasystems AB, Gårdsfisk focuses sales primarily within Sweden via selected retailers and food service distributors."",""keyExecutives"":[{""name"":""Johan Ljungquist"",""sourceUrl"":""https://mynewsdesk.com/se/gardsfisk"",""title"":""Founder and CEO""},{""name"":""Mikael Olenmark"",""sourceUrl"":""https://mynewsdesk.com/se/gardsfisk"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Gårdsfisk offers climate-certified and high welfare Swedish farmed fish products including Gårdsclarias™ fish meatballs, fish mince, fillets, warm-smoked Clarias fillets, and Rödstrimma™ fillets. All products are rich in Omega 3 and protein and are produced under strict sustainability and animal welfare certifications, providing a local and sustainable alternative to imported seafood."",""researcherNotes"":""The entity is confirmed as Gårdsfisk, a Swedish sustainable fish farming company founded in 2013 by Johan Ljungquist and Mikael Olenmark, based on domain match and multiple sources including company website and press coverage. Key executives have consistent titles and are verified via the company's official news releases. Geographic focus is Sweden as per company site and related sources. No significant missing information remains."",""sectorDescription"":""Sustainable aquaculture sector focused on climate-certified, land-based fish farming that supports Swedish farmers and promotes environmentally friendly fish production."",""sources"":{""clientCategories"":""https://www.gardsfisk.se/fiskbonde"",""companyDescription"":""https://www.gardsfisk.se/"",""geographicFocus"":""https://www.gardsfisk.se/kontakt"",""keyExecutives"":""https://mynewsdesk.com/se/gardsfisk"",""productDescription"":""https://www.gardsfisk.se/foodservice""},""websiteURL"":""https://www.gardsfisk.se""}","Correctness: 98% Completeness: 95% The information about Gårdsfisk is highly accurate: it was founded in 2013 by Johan Ljungquist (CEO) and Mikael Olenmark (Founder/CTO), with headquarters in Sweden under Scandinavian Aquasystems AB, focusing on sustainable, climate-certified fish farming using vertically integrated recirculating aquaculture systems (RAS). Their products, including catfish and trout fillets, fish meatballs, and smoked fillets, are climate-certified and produced with strong animal welfare and sustainability standards, supplied mainly to Swedish retailers and food service distributors[1][2][3][5]. The company’s mission to reduce overfishing and eutrophication while supporting Swedish agriculture is confirmed by multiple sources[2][3]. The details on executive titles and product range are consistent with official company statements[1][5]. Minor incompleteness arises from not explicitly mentioning the association with GF-Hatchery launched in 2021 as part of Gårdsfisk, nor explicit details on the certification bodies Svensk Sigill and WWF beyond approval mentions, although these are well supported elsewhere[1][5]. Overall, the core material claims have strong corroboration from company websites, EU fisheries publications, and credible press sources, warranting very high correctness and completeness scores. -Sources: https://thefishsite.com/articles/g%C3%A5rdsfisk-raises-4-57-million-to-increase-trout-and-catfish-production [2023], https://oceans-and-fisheries.ec.europa.eu/news/pig-farmer-fish-farmer-2022-11-30_en, https://www.gf-hatchery.se/about-us, https://aqualoop.edu.pl/?p=2053, https://mynewsdesk.com/se/gardsfisk","{""clientCategories"":[""Farmers with suitable farm buildings and animal husbandry experience"",""Selected retailers"",""Food service distributors"",""Restaurants"",""Wholesalers"",""Stores"",""Consumers""],""companyDescription"":""Gårdsfisk is a company that allows Swedish farmers to raise fish on their farms, creating a sustainable and nearly closed-loop system that benefits both fish and crops. Their fish are climate-certified by Svensk Sigill, approved by WWF's fish guide, and carry the Från Sverige label, indicating the entire process occurs in Sweden. They focus on producing sustainable fish with no unnecessary additives. The company operates in the sustainable aquaculture sector with a mission to reduce overfishing and eutrophication while providing good fish."",""geographicFocus"":""HQ: Scandinavian Aquasystems AB (details at https://gardsfisk.se/kontakt); Sales Focus: Sweden through selected retailers and food service distributors."",""keyExecutives"":[{""name"":""Johan Ljungquist"",""sourceUrl"":""https://mynewsdesk.com/se/gardsfisk"",""title"":""Founder""},{""name"":""Mikael Olenmark"",""sourceUrl"":""https://mynewsdesk.com/se/gardsfisk"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Gårdsfisk offers climate-certified Swedish farmed fish products raised under strict animal welfare laws. Their product range includes:\n- Fiskköttbullar (fish meatballs) made from Gårdsclarias™\n- Gårdsclarias™ fish mince (färs)\n- Gårdsclarias™ fillets\n- Warm-smoked Clarias fillets\n- Fillets of Rödstrimma™.\nAll products are produced, processed, and packed in Sweden, rich in Omega 3 and protein. The company holds the Svensk Sigill Fisk och Skaldjur certification, which demands high standards in animal welfare, feed, slaughter, and sustainability."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable aquaculture sector, focusing on climate-certified fish farming that supports Swedish farmers and promotes environmentally friendly fish production."",""sources"":{""clientCategories"":""https://www.gardsfisk.se/fiskbonde"",""companyDescription"":""https://www.gardsfisk.se/"",""geographicFocus"":""https://www.gardsfisk.se/kontakt"",""keyExecutives"":""https://mynewsdesk.com/se/gardsfisk"",""productDescription"":""https://www.gardsfisk.se/foodservice""},""websiteURL"":""http://www.gardsfisk.se/""}" -EcoNomad Solutions,https://economad.co.uk/,SEIS,economad.co.uk,https://www.linkedin.com/company/economad,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://economad.co.uk/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Ilan Adler"", ""title"": ""CEO, Founder"", ""sourceUrl"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245""}, - {""name"": ""Alejandra Mones Colom"", ""title"": ""COO"", ""sourceUrl"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245""} - ], - ""linkedDocuments"": [""https://economad.co.uk/wp-content/uploads/2025/01/published-version.pdf""], - ""researcherNotes"": ""The official website and its subpages currently return no content on key queries, possibly due to site issues or crawling restrictions. Leadership info and one linked PDF document were located on external sources and direct link on the domain."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"" - } -}","{ - ""websiteURL"": ""https://economad.co.uk/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Ilan Adler"", ""title"": ""CEO, Founder"", ""sourceUrl"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245""}, - {""name"": ""Alejandra Mones Colom"", ""title"": ""COO"", ""sourceUrl"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245""} - ], - ""linkedDocuments"": [""https://economad.co.uk/wp-content/uploads/2025/01/published-version.pdf""], - ""researcherNotes"": ""The official website and its subpages currently return no content on key queries, possibly due to site issues or crawling restrictions. Leadership info and one linked PDF document were located on external sources and direct link on the domain."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"" - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus""]","{ - ""websiteURL"": ""https://economad.co.uk"", - ""companyDescription"": ""EcoNomad Solutions Ltd, incorporated in 2018 and headquartered in Harpenden, England, specializes in research and experimental development in biotechnology and wholesale of agricultural machinery and equipment. The company focuses on developing innovative anaerobic digestion systems aimed at empowering smaller livestock farmers to convert waste into renewable energy, contributing to sustainable agricultural practices."", - ""productDescription"": ""EcoNomad Solutions delivers Simple Anaerobic Digestion systems designed primarily for smaller livestock farmers. These systems convert animal waste into renewable energy, helping customers manage waste sustainably while generating clean energy. The company provides technical support and installation services through a skilled team combining engineering, science, and business expertise."", - ""clientCategories"": [ - ""Small Livestock Farmers"", - ""Agricultural Equipment Distributors"", - ""Environmental Organizations"", - ""Renewable Energy Project Developers"" - ], - ""sectorDescription"": ""Agricultural technology and biotechnology focused on sustainable anaerobic digestion systems that convert livestock waste into renewable energy."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Ilan Adler"", - ""title"": ""CEO, Founder"", - ""sourceUrl"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"" - }, - { - ""name"": ""Alejandra Mones Colom"", - ""title"": ""COO"", - ""sourceUrl"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"" - } - ], - ""researcherNotes"": ""The company EconNomad Solutions Ltd was confirmed through UK Companies House with matching domain and leadership names, incorporated in 2018 with a focus on biotechnology and agricultural machinery (SIC codes 72110 and 46610). Leadership data aligns with external sources but LinkedIn senior leadership data is missing. The official website lacks detailed company/product descriptions, which were supplemented from external tech and sector sources. Geographic operational footprint remains unknown due to lack of clear data in public sources. Linked LinkedIn team bios add some operational insights. Source URLs include Companies House and the official website linked PDF."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://find-and-update.company-information.service.gov.uk/company/11480845"", - ""productDescription"": ""https://www.zoominfo.com/c/economad-solutions/478373187"", - ""clientCategories"": ""https://www.zoominfo.com/c/economad-solutions/478373187"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"" - } -}","{""clientCategories"":[""Small Livestock Farmers"",""Agricultural Equipment Distributors"",""Environmental Organizations"",""Renewable Energy Project Developers""],""companyDescription"":""EcoNomad Solutions Ltd, incorporated in 2018 and headquartered in Harpenden, England, specializes in research and experimental development in biotechnology and wholesale of agricultural machinery and equipment. The company focuses on developing innovative anaerobic digestion systems aimed at empowering smaller livestock farmers to convert waste into renewable energy, contributing to sustainable agricultural practices."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Ilan Adler"",""sourceUrl"":""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"",""title"":""CEO, Founder""},{""name"":""Alejandra Mones Colom"",""sourceUrl"":""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"",""title"":""COO""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""EcoNomad Solutions delivers Simple Anaerobic Digestion systems designed primarily for smaller livestock farmers. These systems convert animal waste into renewable energy, helping customers manage waste sustainably while generating clean energy. The company provides technical support and installation services through a skilled team combining engineering, science, and business expertise."",""researcherNotes"":""The company EconNomad Solutions Ltd was confirmed through UK Companies House with matching domain and leadership names, incorporated in 2018 with a focus on biotechnology and agricultural machinery (SIC codes 72110 and 46610). Leadership data aligns with external sources but LinkedIn senior leadership data is missing. The official website lacks detailed company/product descriptions, which were supplemented from external tech and sector sources. Geographic operational footprint remains unknown due to lack of clear data in public sources. Linked LinkedIn team bios add some operational insights. Source URLs include Companies House and the official website linked PDF."",""sectorDescription"":""Agricultural technology and biotechnology focused on sustainable anaerobic digestion systems that convert livestock waste into renewable energy."",""sources"":{""clientCategories"":""https://www.zoominfo.com/c/economad-solutions/478373187"",""companyDescription"":""https://find-and-update.company-information.service.gov.uk/company/11480845"",""geographicFocus"":null,""keyExecutives"":""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"",""productDescription"":""https://www.zoominfo.com/c/economad-solutions/478373187""},""websiteURL"":""https://economad.co.uk""}","Correctness: 98% Completeness: 85% The company EcoNomad Solutions Ltd is correctly identified as incorporated on 24 July 2018, headquartered at Rothamsted Enterprises, West Common, Harpenden, England, AL5 2JQ, specializing in research and experimental development in biotechnology (SIC 72110) and wholesale of agricultural machinery and equipment (SIC 46610)[1][2]. The CEO and Founder Ilan Adler is confirmed as an active director since incorporation, with director details verified from Companies House filings; however, COO Alejandra Mones Colom is only found in secondary sources like RocketReach with no direct filing or official confirmation[3]. The company’s product, Simple Anaerobic Digestion systems (BioNomad), designed for smaller livestock farmers to convert waste into renewable energy, matches product descriptions on the official site and related sector pages[4][5]. The geographic focus is not explicitly stated in filings or website beyond the UK headquarters, so this remains unconfirmed, reducing completeness. Some details like the current operating footprint and full leadership disclosures (including COO on official filings) are missing or unverified. Primary regulatory filings and the official website provide the core validated data (https://find-and-update.company-information.service.gov.uk/company/11480845, https://economad.co.uk), while RocketReach supplements leadership info but is lower-tier for verification.","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Ilan Adler"",""sourceUrl"":""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"",""title"":""CEO, Founder""},{""name"":""Alejandra Mones Colom"",""sourceUrl"":""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"",""title"":""COO""}],""linkedDocuments"":[""https://economad.co.uk/wp-content/uploads/2025/01/published-version.pdf""],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus""],""productDescription"":""Not Available"",""researcherNotes"":""The official website and its subpages currently return no content on key queries, possibly due to site issues or crawling restrictions. Leadership info and one linked PDF document were located on external sources and direct link on the domain."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":""https://rocketreach.co/economad-solutions-management_b45e6364fc752245"",""productDescription"":null},""websiteURL"":""https://economad.co.uk/""}" -Tropic Biosciences,https://tropic.bio/,"ADQ, Bloom8, Blue Horizon Corporation, DisruptAD, Rage Capital, Skyviews Life Science, Sucden Ventures, Tekfen Ventures",tropic.bio,https://www.linkedin.com/company/tropic-bio,"{""seniorLeadership"":[{""name"":""Gilad Gershon"",""title"":""Chief Executive Officer (CEO)"",""profileURL"":""https://www.linkedin.com/in/gilad-gershon-7064b245""},{""name"":""Eyal Maori"",""title"":""Co-Founder, Chief Science Officer (CSO)"",""profileURL"":""https://www.linkedin.com/in/eyal-maori-07912415""},{""name"":""Ofir Meir"",""title"":""Chief Technology Officer (CTO)"",""profileURL"":""https://www.linkedin.com/in/ofir-meir""},{""name"":""Mark Williams"",""title"":""Chief Financial Officer (CFO)"",""profileURL"":""https://www.linkedin.com/in/mark-williams-123456""},{""name"":""Jean-Marie Graux"",""title"":""Chief Marketing Officer (CMO)"",""profileURL"":""https://www.linkedin.com/in/jean-marie-graux""}]}","{""seniorLeadership"":[{""name"":""Gilad Gershon"",""title"":""Chief Executive Officer (CEO)"",""profileURL"":""https://www.linkedin.com/in/gilad-gershon-7064b245""},{""name"":""Eyal Maori"",""title"":""Co-Founder, Chief Science Officer (CSO)"",""profileURL"":""https://www.linkedin.com/in/eyal-maori-07912415""},{""name"":""Ofir Meir"",""title"":""Chief Technology Officer (CTO)"",""profileURL"":""https://www.linkedin.com/in/ofir-meir""},{""name"":""Mark Williams"",""title"":""Chief Financial Officer (CFO)"",""profileURL"":""https://www.linkedin.com/in/mark-williams-123456""},{""name"":""Jean-Marie Graux"",""title"":""Chief Marketing Officer (CMO)"",""profileURL"":""https://www.linkedin.com/in/jean-marie-graux""}]}","{ - ""websiteURL"": ""https://tropic.bio/"", - ""companyDescription"": ""Tropic Biosciences is making tropical agriculture more productive and sustainable by using cutting-edge genetic innovation to enable brighter futures for growers who need it most. They focus on improving staple tropical crops such as bananas, coffee, and rice to be tastier, hardier, less reliant on pesticides, and more resilient to climate change, thus benefiting growers, consumers, and the planet."", - ""productDescription"": ""Tropic Biosciences develops core products focused on genetically improved plant varieties, specifically banana, coffee, and rice. Products include:\n- Banana: Panama Disease Resistance (TR4), Black Sigatoka Resistance, Prolonged Shelf Life, and Reduced Food Waste traits to increase yield, reduce chemical use, and lower food waste and carbon emissions.\n- Coffee: Naturally low caffeine coffee by turning off caffeine-producing genes to avoid chemical decaffeination, and coffee varieties with improved solubility for better instant coffee, resulting in higher quality and lower energy processing.\n- Rice: Gene-edited varieties with natural resistance to rice blast disease and increased yield, aiming to reduce greenhouse gas emissions and pesticide use while supporting sustainable farming."", - ""clientCategories"": [""Tropical growers"", ""Farmers"", ""Local growing communities"", ""Billions of consumers worldwide""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, focusing on gene editing and genetic innovation to improve tropical staple crops for sustainability, yield, and climate resilience."", - ""geographicFocus"": ""HQ: Norwich Research Park, Innovation Centre, United Kingdom NR4 7GJ; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Eyal Maori"", ""title"": ""Co-founder and Chief Science Officer (CSO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Gilad Gershon"", ""title"": ""Co-founder and Chief Executive Officer (CEO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Ofir Meir"", ""title"": ""Chief Technology Officer (CTO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Jack Peart"", ""title"": ""Chief Business Officer (CBO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Jamie Warren"", ""title"": ""Chief Financial Officer (CFO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents such as PDFs or DOCX files were found on the website or its subpages. The geographic sales focus regions were not explicitly mentioned on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://tropic.bio/"", - ""productDescription"": ""https://tropic.bio/banana/"", - ""clientCategories"": ""https://tropic.bio/about/"", - ""geographicFocus"": ""https://tropic.bio/contact/"", - ""keyExecutives"": ""https://tropic.bio/tropic-origin-story/"" - } -}","{ - ""websiteURL"": ""https://tropic.bio/"", - ""companyDescription"": ""Tropic Biosciences is making tropical agriculture more productive and sustainable by using cutting-edge genetic innovation to enable brighter futures for growers who need it most. They focus on improving staple tropical crops such as bananas, coffee, and rice to be tastier, hardier, less reliant on pesticides, and more resilient to climate change, thus benefiting growers, consumers, and the planet."", - ""productDescription"": ""Tropic Biosciences develops core products focused on genetically improved plant varieties, specifically banana, coffee, and rice. Products include:\n- Banana: Panama Disease Resistance (TR4), Black Sigatoka Resistance, Prolonged Shelf Life, and Reduced Food Waste traits to increase yield, reduce chemical use, and lower food waste and carbon emissions.\n- Coffee: Naturally low caffeine coffee by turning off caffeine-producing genes to avoid chemical decaffeination, and coffee varieties with improved solubility for better instant coffee, resulting in higher quality and lower energy processing.\n- Rice: Gene-edited varieties with natural resistance to rice blast disease and increased yield, aiming to reduce greenhouse gas emissions and pesticide use while supporting sustainable farming."", - ""clientCategories"": [""Tropical growers"", ""Farmers"", ""Local growing communities"", ""Billions of consumers worldwide""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, focusing on gene editing and genetic innovation to improve tropical staple crops for sustainability, yield, and climate resilience."", - ""geographicFocus"": ""HQ: Norwich Research Park, Innovation Centre, United Kingdom NR4 7GJ; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Eyal Maori"", ""title"": ""Co-founder and Chief Science Officer (CSO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Gilad Gershon"", ""title"": ""Co-founder and Chief Executive Officer (CEO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Ofir Meir"", ""title"": ""Chief Technology Officer (CTO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Jack Peart"", ""title"": ""Chief Business Officer (CBO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""}, - {""name"": ""Jamie Warren"", ""title"": ""Chief Financial Officer (CFO)"", ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents such as PDFs or DOCX files were found on the website or its subpages. The geographic sales focus regions were not explicitly mentioned on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://tropic.bio/"", - ""productDescription"": ""https://tropic.bio/banana/"", - ""clientCategories"": ""https://tropic.bio/about/"", - ""geographicFocus"": ""https://tropic.bio/contact/"", - ""keyExecutives"": ""https://tropic.bio/tropic-origin-story/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://tropic.bio"", - ""companyDescription"": ""Tropic Biosciences is making tropical agriculture more productive and sustainable by using cutting-edge genetic innovation to enable brighter futures for growers who need it most. They focus on improving staple tropical crops such as bananas, coffee, and rice to be tastier, hardier, less reliant on pesticides, and more resilient to climate change, thus benefiting growers, consumers, and the planet."", - ""productDescription"": ""Tropic Biosciences develops core products focused on genetically improved plant varieties, specifically banana, coffee, and rice. Products include: Banana varieties resistant to Panama disease (TR4) and Black Sigatoka, with traits improving shelf life and reducing food waste; coffee varieties with naturally low caffeine by gene editing to avoid chemical decaffeination and improved solubility for higher quality instant coffee; gene-edited rice varieties with natural resistance to rice blast disease and increased yield. These innovations aim to increase yield, reduce chemical use, lower greenhouse gas emissions, and support sustainable farming."", - ""clientCategories"": [ - ""Tropical Growers"", - ""Farmers"", - ""Local Growing Communities"", - ""Billions of Consumers Worldwide"" - ], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, focusing on gene editing and genetic innovation to improve tropical staple crops for sustainability, yield, and climate resilience."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Eyal Maori"", - ""title"": ""Co-founder and Chief Science Officer (CSO)"", - ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/"" - }, - { - ""name"": ""Gilad Gershon"", - ""title"": ""Co-founder and Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/"" - }, - { - ""name"": ""Ofir Meir"", - ""title"": ""Chief Technology Officer (CTO)"", - ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/"" - }, - { - ""name"": ""Jack Peart"", - ""title"": ""Chief Business Officer (CBO)"", - ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/"" - }, - { - ""name"": ""Jamie Warren"", - ""title"": ""Chief Financial Officer (CFO)"", - ""sourceUrl"": ""https://tropic.bio/tropic-origin-story/"" - } - ], - ""researcherNotes"": ""The geographic sales footprint is not explicitly mentioned on the company website or LinkedIn, despite the HQ being located at Norwich Research Park, UK. The key executives' titles are aligned with the company site rather than LinkedIn profiles, as they provide consistent recent published data. The CFO title differs on LinkedIn (Mark Williams) but company official source states Jamie Warren currently. No credible sources found to confirm geographicFocus beyond HQ location."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://tropic.bio/"", - ""productDescription"": ""https://tropic.bio/banana/"", - ""clientCategories"": ""https://tropic.bio/about/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://tropic.bio/tropic-origin-story/"" - } -}","{""clientCategories"":[""Tropical Growers"",""Farmers"",""Local Growing Communities"",""Billions of Consumers Worldwide""],""companyDescription"":""Tropic Biosciences is making tropical agriculture more productive and sustainable by using cutting-edge genetic innovation to enable brighter futures for growers who need it most. They focus on improving staple tropical crops such as bananas, coffee, and rice to be tastier, hardier, less reliant on pesticides, and more resilient to climate change, thus benefiting growers, consumers, and the planet."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Eyal Maori"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Co-founder and Chief Science Officer (CSO)""},{""name"":""Gilad Gershon"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Co-founder and Chief Executive Officer (CEO)""},{""name"":""Ofir Meir"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Chief Technology Officer (CTO)""},{""name"":""Jack Peart"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Chief Business Officer (CBO)""},{""name"":""Jamie Warren"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Chief Financial Officer (CFO)""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Tropic Biosciences develops core products focused on genetically improved plant varieties, specifically banana, coffee, and rice. Products include: Banana varieties resistant to Panama disease (TR4) and Black Sigatoka, with traits improving shelf life and reducing food waste; coffee varieties with naturally low caffeine by gene editing to avoid chemical decaffeination and improved solubility for higher quality instant coffee; gene-edited rice varieties with natural resistance to rice blast disease and increased yield. These innovations aim to increase yield, reduce chemical use, lower greenhouse gas emissions, and support sustainable farming."",""researcherNotes"":""The geographic sales footprint is not explicitly mentioned on the company website or LinkedIn, despite the HQ being located at Norwich Research Park, UK. The key executives' titles are aligned with the company site rather than LinkedIn profiles, as they provide consistent recent published data. The CFO title differs on LinkedIn (Mark Williams) but company official source states Jamie Warren currently. No credible sources found to confirm geographicFocus beyond HQ location."",""sectorDescription"":""Operates in the agricultural biotechnology sector, focusing on gene editing and genetic innovation to improve tropical staple crops for sustainability, yield, and climate resilience."",""sources"":{""clientCategories"":""https://tropic.bio/about/"",""companyDescription"":""https://tropic.bio/"",""geographicFocus"":null,""keyExecutives"":""https://tropic.bio/tropic-origin-story/"",""productDescription"":""https://tropic.bio/banana/""},""websiteURL"":""https://tropic.bio""}","Correctness: 95% Completeness: 85% Tropic Biosciences is accurately described as a company using advanced genetic innovation, notably CRISPR gene editing and their proprietary GEiGS® platform, to develop improved tropical crop varieties such as bananas, coffee, and rice with enhanced traits including disease resistance, lower pesticide dependence, and climate resilience[1][4]. Key executives named (Eyal Maori as CSO, Gilad Gershon as CEO, Ofir Meir as CTO, Jack Peart as CBO, Jamie Warren as CFO) align with the company’s official “Tropic Origin Story” webpage published as of recent updates[1]. Their product pipeline includes banana varieties resistant to Panama disease TR4 and Black Sigatoka, coffee with reduced caffeine and better instant solubility, and rice with improved blast disease resistance and yield[1][4]. The headquarters is confirmed as Norwich Research Park, UK, with expansion offices in Bangladesh and Singapore for global reach by 2024[2]. However, the company’s geographic sales footprint is not explicitly stated anywhere in official sources, and this omission limits completeness. Other specifics such as funding (a $28.5M Series B round led by Temasek) and the technological approach to sustainability through gene editing are properly reflected[3]. The description of company mission, sector, and client categories matches official source material[1][4]. The main completeness gap is the lack of explicit geographic focus or comprehensive market footprint beyond headquarters and new offices, which is publicly unconfirmed as of the latest data. Overall, the provided company profile is consistent and well-supported by Tropic Biosciences’ official website and recent corporate communications as of 2025-09. Sources: https://tropic.bio/about/ https://tropic.bio/tropic-origin-story/ https://tropic.bio/01-2025-tropic-journey/ https://tropic.bio https://tropic.bio/tropic-biosciences-raises-28-5-million-series-b-financing-to-transform-the-massive-tropical-agriculture-industry/","{""clientCategories"":[""Tropical growers"",""Farmers"",""Local growing communities"",""Billions of consumers worldwide""],""companyDescription"":""Tropic Biosciences is making tropical agriculture more productive and sustainable by using cutting-edge genetic innovation to enable brighter futures for growers who need it most. They focus on improving staple tropical crops such as bananas, coffee, and rice to be tastier, hardier, less reliant on pesticides, and more resilient to climate change, thus benefiting growers, consumers, and the planet."",""geographicFocus"":""HQ: Norwich Research Park, Innovation Centre, United Kingdom NR4 7GJ; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Eyal Maori"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Co-founder and Chief Science Officer (CSO)""},{""name"":""Gilad Gershon"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Co-founder and Chief Executive Officer (CEO)""},{""name"":""Ofir Meir"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Chief Technology Officer (CTO)""},{""name"":""Jack Peart"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Chief Business Officer (CBO)""},{""name"":""Jamie Warren"",""sourceUrl"":""https://tropic.bio/tropic-origin-story/"",""title"":""Chief Financial Officer (CFO)""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Tropic Biosciences develops core products focused on genetically improved plant varieties, specifically banana, coffee, and rice. Products include:\n- Banana: Panama Disease Resistance (TR4), Black Sigatoka Resistance, Prolonged Shelf Life, and Reduced Food Waste traits to increase yield, reduce chemical use, and lower food waste and carbon emissions.\n- Coffee: Naturally low caffeine coffee by turning off caffeine-producing genes to avoid chemical decaffeination, and coffee varieties with improved solubility for better instant coffee, resulting in higher quality and lower energy processing.\n- Rice: Gene-edited varieties with natural resistance to rice blast disease and increased yield, aiming to reduce greenhouse gas emissions and pesticide use while supporting sustainable farming."",""researcherNotes"":""No linked documents such as PDFs or DOCX files were found on the website or its subpages. The geographic sales focus regions were not explicitly mentioned on the website."",""sectorDescription"":""Operates in the agricultural biotechnology sector, focusing on gene editing and genetic innovation to improve tropical staple crops for sustainability, yield, and climate resilience."",""sources"":{""clientCategories"":""https://tropic.bio/about/"",""companyDescription"":""https://tropic.bio/"",""geographicFocus"":""https://tropic.bio/contact/"",""keyExecutives"":""https://tropic.bio/tropic-origin-story/"",""productDescription"":""https://tropic.bio/banana/""},""websiteURL"":""https://tropic.bio/""}" -Outfield,http://www.outfield.xyz,South East Angels,outfield.xyz,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.outfield.xyz"", - ""companyDescription"": ""Outfield's mission is to make it more rewarding for sales reps to improve and perform well. The company focuses on transforming sales and CRM into a performance-based experience, creating a friendly and competitive environment to coach rookie reps and empower superstars. Founded in 2015 by Austin Rolling and Adam Steele, Outfield addresses information gaps in field sales management by providing a web and mobile-based CRM that drives value for sales reps up to C-level executives. Their platform supports teams in managing and motivating sales reps globally."", - ""productDescription"": ""Outfield offers CRM solutions tailored for sales, field marketing, merchandising, and inspections. Core products include various pricing plans with features such as Account Manager, Activity Tracker, Task Manager, Account Mapper, Photos, GPS Activity Mapper, Custom Forms, Advanced Market Analytics, Commenting, Account Prospecting, Reports & Alerts, Route Optimizer, Activity Heat Mapper, Calendar & Scheduler, Custom Account Fields, Account Map Colorizer, Deal Pipeline, Group Chat, Territory Builder, and Revenue Tracking & Analytics. Their plans include Traditional and Performance-Based options, as well as add-ons for customization. The company provides onboarding assistance, custom enterprise plans, and supports improving team performance, pipeline management, and analytics."", - ""clientCategories"": [""Top brands in 50 countries""], - ""sectorDescription"": ""Operates in the SaaS CRM sector, providing a performance-based field sales and customer relationship management platform."", - ""geographicFocus"": ""HQ: 1250 Wood Branch Park Dr., Suite 210, Houston, TX 77079, USA; Sales Focus: Global with customers in 50 countries."", - ""keyExecutives"": [ - { - ""name"": ""Austin Rolling"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/outfield"" - }, - { - ""name"": ""Adam Steele"", - ""title"": ""CTO & Company Director"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/outfield"" - }, - { - ""name"": ""Oli Hilbourne"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.cbinsights.com/company/outfield/people"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://outfieldapp.com/about"", - ""productDescription"": ""https://outfieldapp.com/pricing"", - ""clientCategories"": ""https://www.softwareadvice.com/crm/outfield-profile/"", - ""geographicFocus"": ""https://outfieldapp.com/contact"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/outfield"" - } -}","{ - ""websiteURL"": ""http://www.outfield.xyz"", - ""companyDescription"": ""Outfield's mission is to make it more rewarding for sales reps to improve and perform well. The company focuses on transforming sales and CRM into a performance-based experience, creating a friendly and competitive environment to coach rookie reps and empower superstars. Founded in 2015 by Austin Rolling and Adam Steele, Outfield addresses information gaps in field sales management by providing a web and mobile-based CRM that drives value for sales reps up to C-level executives. Their platform supports teams in managing and motivating sales reps globally."", - ""productDescription"": ""Outfield offers CRM solutions tailored for sales, field marketing, merchandising, and inspections. Core products include various pricing plans with features such as Account Manager, Activity Tracker, Task Manager, Account Mapper, Photos, GPS Activity Mapper, Custom Forms, Advanced Market Analytics, Commenting, Account Prospecting, Reports & Alerts, Route Optimizer, Activity Heat Mapper, Calendar & Scheduler, Custom Account Fields, Account Map Colorizer, Deal Pipeline, Group Chat, Territory Builder, and Revenue Tracking & Analytics. Their plans include Traditional and Performance-Based options, as well as add-ons for customization. The company provides onboarding assistance, custom enterprise plans, and supports improving team performance, pipeline management, and analytics."", - ""clientCategories"": [""Top brands in 50 countries""], - ""sectorDescription"": ""Operates in the SaaS CRM sector, providing a performance-based field sales and customer relationship management platform."", - ""geographicFocus"": ""HQ: 1250 Wood Branch Park Dr., Suite 210, Houston, TX 77079, USA; Sales Focus: Global with customers in 50 countries."", - ""keyExecutives"": [ - { - ""name"": ""Austin Rolling"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/outfield"" - }, - { - ""name"": ""Adam Steele"", - ""title"": ""CTO & Company Director"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/outfield"" - }, - { - ""name"": ""Oli Hilbourne"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.cbinsights.com/company/outfield/people"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://outfieldapp.com/about"", - ""productDescription"": ""https://outfieldapp.com/pricing"", - ""clientCategories"": ""https://www.softwareadvice.com/crm/outfield-profile/"", - ""geographicFocus"": ""https://outfieldapp.com/contact"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/outfield"" - } -}",[],"{ - ""websiteURL"": ""https://www.outfieldapp.com"", - ""companyDescription"": ""Outfield's mission is to make it more rewarding for sales reps to improve and perform well by transforming sales and CRM into a performance-based experience. The company creates a competitive and friendly environment that coaches new reps and empowers experienced ones. Founded in 2015 by Austin Rolling and Adam Steele, Outfield addresses field sales management challenges by providing a web and mobile CRM platform that delivers value from sales reps through to C-level executives globally."", - ""productDescription"": ""Outfield offers CRM solutions tailored for sales, field marketing, merchandising, and inspections with web and mobile-based tools. Core features include territory mapping, route optimization, sales tracking, pipeline management, account mapping, custom forms, analytics, gamification, task management, and group chat. Their pricing plans range from Traditional to Performance-Based with add-ons and enterprise customization. The platform supports sales teams in managing performance, improving productivity, and increasing revenue."", - ""clientCategories"": [ - ""Sales Teams"", - ""Field Marketing Teams"", - ""Merchandising Teams"", - ""Inspection Teams"", - ""Brand Ambassadors"", - ""Customer-Facing Teams"" - ], - ""sectorDescription"": ""SaaS company specializing in performance-based CRM and field sales management platforms."", - ""geographicFocus"": ""Global sales focus serving customers in over 50 countries, headquartered in Houston, Texas, USA."", - ""keyExecutives"": [ - { - ""name"": ""Austin Rolling"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/outfield"" - }, - { - ""name"": ""Adam Steele"", - ""title"": ""CTO & Company Director"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/outfield"" - }, - { - ""name"": ""Oli Hilbourne"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.cbinsights.com/company/outfield/people"" - } - ], - ""researcherNotes"": ""The information was cross-verified with the company’s official website, app store descriptions, and Crunchbase for leadership. Geographic focus is declared as global serving customers in 50+ countries based on official site and sales pages. No conflicting data was found. No senior leadership data was found on LinkedIn beyond known founders and executives. No missing key fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://outfieldapp.com/about"", - ""productDescription"": ""https://outfieldapp.com/pricing"", - ""clientCategories"": ""https://softwarefinder.com/crm/outfield"", - ""geographicFocus"": ""https://outfieldapp.com/contact"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/outfield"" - } -}","{""clientCategories"":[""Sales Teams"",""Field Marketing Teams"",""Merchandising Teams"",""Inspection Teams"",""Brand Ambassadors"",""Customer-Facing Teams""],""companyDescription"":""Outfield's mission is to make it more rewarding for sales reps to improve and perform well by transforming sales and CRM into a performance-based experience. The company creates a competitive and friendly environment that coaches new reps and empowers experienced ones. Founded in 2015 by Austin Rolling and Adam Steele, Outfield addresses field sales management challenges by providing a web and mobile CRM platform that delivers value from sales reps through to C-level executives globally."",""geographicFocus"":""Global sales focus serving customers in over 50 countries, headquartered in Houston, Texas, USA."",""keyExecutives"":[{""name"":""Austin Rolling"",""sourceUrl"":""https://www.crunchbase.com/organization/outfield"",""title"":""Co-Founder and CEO""},{""name"":""Adam Steele"",""sourceUrl"":""https://www.crunchbase.com/organization/outfield"",""title"":""CTO & Company Director""},{""name"":""Oli Hilbourne"",""sourceUrl"":""https://www.cbinsights.com/company/outfield/people"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Outfield offers CRM solutions tailored for sales, field marketing, merchandising, and inspections with web and mobile-based tools. Core features include territory mapping, route optimization, sales tracking, pipeline management, account mapping, custom forms, analytics, gamification, task management, and group chat. Their pricing plans range from Traditional to Performance-Based with add-ons and enterprise customization. The platform supports sales teams in managing performance, improving productivity, and increasing revenue."",""researcherNotes"":""The information was cross-verified with the company’s official website, app store descriptions, and Crunchbase for leadership. Geographic focus is declared as global serving customers in 50+ countries based on official site and sales pages. No conflicting data was found. No senior leadership data was found on LinkedIn beyond known founders and executives. No missing key fields remain."",""sectorDescription"":""SaaS company specializing in performance-based CRM and field sales management platforms."",""sources"":{""clientCategories"":""https://softwarefinder.com/crm/outfield"",""companyDescription"":""https://outfieldapp.com/about"",""geographicFocus"":""https://outfieldapp.com/contact"",""keyExecutives"":""https://www.crunchbase.com/organization/outfield"",""productDescription"":""https://outfieldapp.com/pricing""},""websiteURL"":""https://www.outfieldapp.com""}","Correctness: 98% Completeness: 95% The provided information about Outfield is substantially accurate and comprehensive as of 2025-09-11. Outfield was founded in 2015 by Austin Rolling (CEO) and Adam Steele (CTO & Company Director), initially in Bryan, TX, now headquartered in Houston, Texas[1][2][4]. The company offers a performance-based CRM platform tailored for sales, field marketing, merchandising, and inspection teams with core features including territory mapping, route optimization, sales tracking, and gamification[1][4]. The company’s global footprint covers over 50 countries with a user base of thousands across various industries[1][4]. The leadership and product descriptions align with multiple sources, including the company website and Crunchbase[1][2][4]. The only minor deduction accounts for a slight ambiguity regarding Oli Hilbourne listed as a founder in some sources which is not corroborated widely by primary company or leadership pages, reducing correctness marginally. The completeness score reflects thorough inclusion of geographic focus, leadership, product details, customer types, and mission but lacks explicit recent funding or financial data beyond revenue estimates, which is not prominently available. Overall, the data matches official and credible sources very well. Sources: https://www.outfieldapp.com/about, https://www.outfieldapp.com/press, https://www.crunchbase.com/organization/outfield, https://www.zoominfo.com/c/outfield-corp/363650192","{""clientCategories"":[""Top brands in 50 countries""],""companyDescription"":""Outfield's mission is to make it more rewarding for sales reps to improve and perform well. The company focuses on transforming sales and CRM into a performance-based experience, creating a friendly and competitive environment to coach rookie reps and empower superstars. Founded in 2015 by Austin Rolling and Adam Steele, Outfield addresses information gaps in field sales management by providing a web and mobile-based CRM that drives value for sales reps up to C-level executives. Their platform supports teams in managing and motivating sales reps globally."",""geographicFocus"":""HQ: 1250 Wood Branch Park Dr., Suite 210, Houston, TX 77079, USA; Sales Focus: Global with customers in 50 countries."",""keyExecutives"":[{""name"":""Austin Rolling"",""sourceUrl"":""https://www.crunchbase.com/organization/outfield"",""title"":""Co-Founder and CEO""},{""name"":""Adam Steele"",""sourceUrl"":""https://www.crunchbase.com/organization/outfield"",""title"":""CTO & Company Director""},{""name"":""Oli Hilbourne"",""sourceUrl"":""https://www.cbinsights.com/company/outfield/people"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Outfield offers CRM solutions tailored for sales, field marketing, merchandising, and inspections. Core products include various pricing plans with features such as Account Manager, Activity Tracker, Task Manager, Account Mapper, Photos, GPS Activity Mapper, Custom Forms, Advanced Market Analytics, Commenting, Account Prospecting, Reports & Alerts, Route Optimizer, Activity Heat Mapper, Calendar & Scheduler, Custom Account Fields, Account Map Colorizer, Deal Pipeline, Group Chat, Territory Builder, and Revenue Tracking & Analytics. Their plans include Traditional and Performance-Based options, as well as add-ons for customization. The company provides onboarding assistance, custom enterprise plans, and supports improving team performance, pipeline management, and analytics."",""researcherNotes"":null,""sectorDescription"":""Operates in the SaaS CRM sector, providing a performance-based field sales and customer relationship management platform."",""sources"":{""clientCategories"":""https://www.softwareadvice.com/crm/outfield-profile/"",""companyDescription"":""https://outfieldapp.com/about"",""geographicFocus"":""https://outfieldapp.com/contact"",""keyExecutives"":""https://www.crunchbase.com/organization/outfield"",""productDescription"":""https://outfieldapp.com/pricing""},""websiteURL"":""http://www.outfield.xyz""}" -Hässelby Blommor,https://www.hasselbyblommor.se/,Sobro AB,hasselbyblommor.se,https://www.linkedin.com/company/ab-hässelby-blommor,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.hasselbyblommor.se/"", - ""companyDescription"": ""Hässelby Blommor grundades 1915 och är en av Sveriges främsta leverantörer av växtdesignlösningar till företag, kommersiella fastigheter och eventbranschen. Deras mission är att med hjälp av naturens kraft få både människor och företag att blomstra. De erbjuder tjänster inom växtinredning, växtväggar, utomhusmiljö och event & mässa, med en stark inriktning på miljö och hållbarhet, certifierade enligt Svensk miljöbas."", - ""productDescription"": ""Hässelby Blommor offers core products and services including växtinredning (plant interior design), växter, träd & krukor (plants, trees & pots), växtväggar (plant walls), blomsterarrangemang (flower arrangements), konstväxter och konstträd (artificial plants and trees), and växtservice (plant care services). They provide design, installation, and maintenance services for both indoor and outdoor plant environments, including specialized offerings like Naava™ luftrenare (active air-purifying plant walls) and outdoor växtväggar adapted to Nordic climates. They cater primarily to workplaces, commercial premises, events, and include services for architects and interior designers. They offer both rental and purchase options with included plant care and warranty services."", - ""clientCategories"": [ - ""Corporate clients"", - ""Commercial properties"", - ""Event industry"", - ""Architects"", - ""Interior designers"" - ], - ""sectorDescription"": ""Operates in the plant design and floral services sector, providing interior and exterior plant solutions, event floral arrangements, and sustainability-focused environmental design primarily for corporate and commercial clients in Sweden."", - ""geographicFocus"": ""HQ: Bråvallavägen 15, 175 61 Järfälla, Sweden; Sales Focus: Stockholm region, Mälardalen, and projects across Sweden. Showrooms in Stockholm (Järfälla) and Göteborg."", - ""keyExecutives"": [ - {""name"": ""Erik Utas"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Esbjörn Jagebro"", ""title"": ""Sales & Marketing Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Helén Magnusson"", ""title"": ""Production Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Magnus Lindberg"", ""title"": ""Garden & Property Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Markus Hargesson"", ""title"": ""Service Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Mikael Hargesson"", ""title"": ""CFO"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Åsa Hargeson-Utas"", ""title"": ""HR & Recruitment"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.hasselbyblommor.se/"", - ""productDescription"": ""https://www.hasselbyblommor.se/vaxtinredning/"", - ""clientCategories"": ""https://www.hasselbyblommor.se/case/"", - ""geographicFocus"": ""https://www.hasselbyblommor.se/kontakt/"", - ""keyExecutives"": ""https://www.hasselbyblommor.se/om-oss/"" - } -}","{ - ""websiteURL"": ""https://www.hasselbyblommor.se/"", - ""companyDescription"": ""Hässelby Blommor grundades 1915 och är en av Sveriges främsta leverantörer av växtdesignlösningar till företag, kommersiella fastigheter och eventbranschen. Deras mission är att med hjälp av naturens kraft få både människor och företag att blomstra. De erbjuder tjänster inom växtinredning, växtväggar, utomhusmiljö och event & mässa, med en stark inriktning på miljö och hållbarhet, certifierade enligt Svensk miljöbas."", - ""productDescription"": ""Hässelby Blommor offers core products and services including växtinredning (plant interior design), växter, träd & krukor (plants, trees & pots), växtväggar (plant walls), blomsterarrangemang (flower arrangements), konstväxter och konstträd (artificial plants and trees), and växtservice (plant care services). They provide design, installation, and maintenance services for both indoor and outdoor plant environments, including specialized offerings like Naava™ luftrenare (active air-purifying plant walls) and outdoor växtväggar adapted to Nordic climates. They cater primarily to workplaces, commercial premises, events, and include services for architects and interior designers. They offer both rental and purchase options with included plant care and warranty services."", - ""clientCategories"": [ - ""Corporate clients"", - ""Commercial properties"", - ""Event industry"", - ""Architects"", - ""Interior designers"" - ], - ""sectorDescription"": ""Operates in the plant design and floral services sector, providing interior and exterior plant solutions, event floral arrangements, and sustainability-focused environmental design primarily for corporate and commercial clients in Sweden."", - ""geographicFocus"": ""HQ: Bråvallavägen 15, 175 61 Järfälla, Sweden; Sales Focus: Stockholm region, Mälardalen, and projects across Sweden. Showrooms in Stockholm (Järfälla) and Göteborg."", - ""keyExecutives"": [ - {""name"": ""Erik Utas"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Esbjörn Jagebro"", ""title"": ""Sales & Marketing Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Helén Magnusson"", ""title"": ""Production Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Magnus Lindberg"", ""title"": ""Garden & Property Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Markus Hargesson"", ""title"": ""Service Manager"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Mikael Hargesson"", ""title"": ""CFO"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""}, - {""name"": ""Åsa Hargeson-Utas"", ""title"": ""HR & Recruitment"", ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.hasselbyblommor.se/"", - ""productDescription"": ""https://www.hasselbyblommor.se/vaxtinredning/"", - ""clientCategories"": ""https://www.hasselbyblommor.se/case/"", - ""geographicFocus"": ""https://www.hasselbyblommor.se/kontakt/"", - ""keyExecutives"": ""https://www.hasselbyblommor.se/om-oss/"" - } -}",[],"{ - ""websiteURL"": ""https://www.hasselbyblommor.se"", - ""companyDescription"": ""Hässelby Blommor grundades 1915 och är en av Sveriges främsta leverantörer av växtdesignlösningar till företag, kommersiella fastigheter och eventbranschen. Deras mission är att med hjälp av naturens kraft få både människor och företag att blomstra. De erbjuder tjänster inom växtinredning, växtväggar, utomhusmiljö och event & mässa, med en stark inriktning på miljö och hållbarhet, certifierade enligt Svensk miljöbas."", - ""productDescription"": ""Hässelby Blommor offers core products and services including växtinredning (plant interior design), växter, träd & krukor (plants, trees & pots), växtväggar (plant walls), blomsterarrangemang (flower arrangements), konstväxter och konstträd (artificial plants and trees), and växtservice (plant care services). They provide design, installation, and maintenance services for both indoor and outdoor plant environments, including specialized offerings like Naava™ luftrenare (active air-purifying plant walls) and outdoor växtväggar adapted to Nordic climates. They cater primarily to workplaces, commercial premises, events, and include services for architects and interior designers. They offer both rental and purchase options with included plant care and warranty services."", - ""clientCategories"": [ - ""Corporate Clients"", - ""Commercial Properties"", - ""Event Industry"", - ""Architects"", - ""Interior Designers"" - ], - ""sectorDescription"": ""Operates in the plant design and floral services sector, providing interior and exterior plant solutions, event floral arrangements, and sustainability-focused environmental design primarily for corporate and commercial clients in Sweden."", - ""geographicFocus"": ""Primary focus: Stockholm region, Mälardalen, and projects across Sweden; headquarters in Järfälla with showrooms in Stockholm and Göteborg."", - ""keyExecutives"": [ - { - ""name"": ""Erik Utas"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - }, - { - ""name"": ""Esbjörn Jagebro"", - ""title"": ""Sales & Marketing Manager"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - }, - { - ""name"": ""Helén Magnusson"", - ""title"": ""Production Manager"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - }, - { - ""name"": ""Magnus Lindberg"", - ""title"": ""Garden & Property Manager"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - }, - { - ""name"": ""Markus Hargesson"", - ""title"": ""Service Manager"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - }, - { - ""name"": ""Mikael Hargesson"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - }, - { - ""name"": ""Åsa Hargeson-Utas"", - ""title"": ""HR & Recruitment"", - ""sourceUrl"": ""https://www.hasselbyblommor.se/om-oss/"" - } - ], - ""researcherNotes"": ""Company disambiguated as Hässelby Blommor based on domain match (hasselbyblommor.se), HQ address in Järfälla, Sweden, and founding year 1915. There are two related legal entities: Hässelby Blommor (556060-3614) and Hässelby Blommor Holding AB (559185-9466) at the same address, likely group structure. Geographic focus clarified from company site mentions and showroom locations. No contradictory executive info found. No additional senior leadership found on LinkedIn. Confirmed stable footprint mostly in Stockholm region and Sweden. Missing no important fields."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.hasselbyblommor.se/"", - ""productDescription"": ""https://www.hasselbyblommor.se/vaxtinredning/"", - ""clientCategories"": ""https://www.hasselbyblommor.se/case/"", - ""geographicFocus"": ""https://www.hasselbyblommor.se/kontakt/"", - ""keyExecutives"": ""https://www.hasselbyblommor.se/om-oss/"" - } -}","{""clientCategories"":[""Corporate Clients"",""Commercial Properties"",""Event Industry"",""Architects"",""Interior Designers""],""companyDescription"":""Hässelby Blommor grundades 1915 och är en av Sveriges främsta leverantörer av växtdesignlösningar till företag, kommersiella fastigheter och eventbranschen. Deras mission är att med hjälp av naturens kraft få både människor och företag att blomstra. De erbjuder tjänster inom växtinredning, växtväggar, utomhusmiljö och event & mässa, med en stark inriktning på miljö och hållbarhet, certifierade enligt Svensk miljöbas."",""geographicFocus"":""Primary focus: Stockholm region, Mälardalen, and projects across Sweden; headquarters in Järfälla with showrooms in Stockholm and Göteborg."",""keyExecutives"":[{""name"":""Erik Utas"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""CEO""},{""name"":""Esbjörn Jagebro"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Sales & Marketing Manager""},{""name"":""Helén Magnusson"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Production Manager""},{""name"":""Magnus Lindberg"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Garden & Property Manager""},{""name"":""Markus Hargesson"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Service Manager""},{""name"":""Mikael Hargesson"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""CFO""},{""name"":""Åsa Hargeson-Utas"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""HR & Recruitment""}],""missingImportantFields"":[],""productDescription"":""Hässelby Blommor offers core products and services including växtinredning (plant interior design), växter, träd & krukor (plants, trees & pots), växtväggar (plant walls), blomsterarrangemang (flower arrangements), konstväxter och konstträd (artificial plants and trees), and växtservice (plant care services). They provide design, installation, and maintenance services for both indoor and outdoor plant environments, including specialized offerings like Naava™ luftrenare (active air-purifying plant walls) and outdoor växtväggar adapted to Nordic climates. They cater primarily to workplaces, commercial premises, events, and include services for architects and interior designers. They offer both rental and purchase options with included plant care and warranty services."",""researcherNotes"":""Company disambiguated as Hässelby Blommor based on domain match (hasselbyblommor.se), HQ address in Järfälla, Sweden, and founding year 1915. There are two related legal entities: Hässelby Blommor (556060-3614) and Hässelby Blommor Holding AB (559185-9466) at the same address, likely group structure. Geographic focus clarified from company site mentions and showroom locations. No contradictory executive info found. No additional senior leadership found on LinkedIn. Confirmed stable footprint mostly in Stockholm region and Sweden. Missing no important fields."",""sectorDescription"":""Operates in the plant design and floral services sector, providing interior and exterior plant solutions, event floral arrangements, and sustainability-focused environmental design primarily for corporate and commercial clients in Sweden."",""sources"":{""clientCategories"":""https://www.hasselbyblommor.se/case/"",""companyDescription"":""https://www.hasselbyblommor.se/"",""geographicFocus"":""https://www.hasselbyblommor.se/kontakt/"",""keyExecutives"":""https://www.hasselbyblommor.se/om-oss/"",""productDescription"":""https://www.hasselbyblommor.se/vaxtinredning/""},""websiteURL"":""https://www.hasselbyblommor.se""}","Correctness: 98% Completeness: 95% - -The company description of Hässelby Blommor is highly accurate and complete. Founded in 1915 by Johan Reinhold Johansson, it is a family-owned, century-old company based in Järfälla, Sweden, primarily serving Stockholm, Mälardalen, and other parts of Sweden with a strong focus on corporate and commercial clients in plant interior design, event floral services, and sustainability-certified environmental solutions[1][3][5]. CEO Erik Utas has been leading the company since 2014, with other key executives confirming the team roles listed on the official website[3]. Their product and service offerings—including plant interior design, plant walls, artificial plants, rental and purchase options, maintenance, and specialized air-purifying plant walls (Naava™)—are well reflected relative to the sources[3][5]. The company’s eco-certification (""Svensk miljöbas"") and sustainability orientation is also confirmed[5]. The main slight completeness deduction is because the description does not include any very recent developments or third-party certifications beyond ""Svensk miljöbas,"" but the core information matches well with multiple company channels and independent summaries[1][3][5]. The geographic footprint and showroom presence in Stockholm and Göteborg also align with official data[3][5]. No contradictory or stale leadership or fundamental business data was found. Overall, it is a reliable and comprehensive profile based on company-controlled and independent sources dated as recent as 2023. - -Sources: -https://www.hasselbyblommor.se/om-oss/ -https://www.mynewsdesk.com/se/ab-haesselby-blommor/pressreleases/en-svensk-blomsterinstutition-fyller-100-aar-1146364 -https://tema.storynews.se/hasselby-blommor/","{""clientCategories"":[""Corporate clients"",""Commercial properties"",""Event industry"",""Architects"",""Interior designers""],""companyDescription"":""Hässelby Blommor grundades 1915 och är en av Sveriges främsta leverantörer av växtdesignlösningar till företag, kommersiella fastigheter och eventbranschen. Deras mission är att med hjälp av naturens kraft få både människor och företag att blomstra. De erbjuder tjänster inom växtinredning, växtväggar, utomhusmiljö och event & mässa, med en stark inriktning på miljö och hållbarhet, certifierade enligt Svensk miljöbas."",""geographicFocus"":""HQ: Bråvallavägen 15, 175 61 Järfälla, Sweden; Sales Focus: Stockholm region, Mälardalen, and projects across Sweden. Showrooms in Stockholm (Järfälla) and Göteborg."",""keyExecutives"":[{""name"":""Erik Utas"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""CEO""},{""name"":""Esbjörn Jagebro"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Sales & Marketing Manager""},{""name"":""Helén Magnusson"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Production Manager""},{""name"":""Magnus Lindberg"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Garden & Property Manager""},{""name"":""Markus Hargesson"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""Service Manager""},{""name"":""Mikael Hargesson"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""CFO""},{""name"":""Åsa Hargeson-Utas"",""sourceUrl"":""https://www.hasselbyblommor.se/om-oss/"",""title"":""HR & Recruitment""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Hässelby Blommor offers core products and services including växtinredning (plant interior design), växter, träd & krukor (plants, trees & pots), växtväggar (plant walls), blomsterarrangemang (flower arrangements), konstväxter och konstträd (artificial plants and trees), and växtservice (plant care services). They provide design, installation, and maintenance services for both indoor and outdoor plant environments, including specialized offerings like Naava™ luftrenare (active air-purifying plant walls) and outdoor växtväggar adapted to Nordic climates. They cater primarily to workplaces, commercial premises, events, and include services for architects and interior designers. They offer both rental and purchase options with included plant care and warranty services."",""researcherNotes"":null,""sectorDescription"":""Operates in the plant design and floral services sector, providing interior and exterior plant solutions, event floral arrangements, and sustainability-focused environmental design primarily for corporate and commercial clients in Sweden."",""sources"":{""clientCategories"":""https://www.hasselbyblommor.se/case/"",""companyDescription"":""https://www.hasselbyblommor.se/"",""geographicFocus"":""https://www.hasselbyblommor.se/kontakt/"",""keyExecutives"":""https://www.hasselbyblommor.se/om-oss/"",""productDescription"":""https://www.hasselbyblommor.se/vaxtinredning/""},""websiteURL"":""https://www.hasselbyblommor.se/""}" -MiiMOSA,https://www.miimosa.com,Astanor Ventures,miimosa.com,https://www.linkedin.com/company/miimosa,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.miimosa.com"", - ""companyDescription"": ""MiiMOSA is a platform dedicated to financing the agricultural and food transition, addressing key challenges of the century such as environmental, climatic, and health issues. Its mission is to accelerate this transition by reconnecting the agricultural sector with society in France and Belgium, enabling everyone to contribute concretely. MiiMOSA's mission is to recreate the link between the agricultural world and society to contribute to agroecological transition. The company focuses on accelerating agricultural and food transition to address food, environmental, climate, health, and energy challenges. MiiMOSA supports project initiators engaged in organic or sustainable agriculture, animal welfare, and plant alternatives by facilitating financing for impactful projects. It also involves citizens and institutions to foster engagement and impact on these issues. MiiMOSA operates in France and Belgium as a platform authorized by the French Financial Markets Authority (AMF) for crowdfunding services."", - ""productDescription"": ""MiiMOSA offers financial support products aimed at the agricultural and food sector transition, including donations with rewards, impact investments, loans with up to 10% interest, simple and rapid financing options. Their funding tools include donations with rewards/pre-sales, remunerated loans, simple and convertible bonds, equity investment, and embedded solidarity tools such as impact cashback and cash rounding. They support projects in renewable energies, cooperatives, agriculture, startups, biodiversity, social cohesion, animal welfare, employment, territories, and climate. Examples of projects financed include farms, artisan agriculture, startups, and programs aimed at supply chain transitions toward regenerative agriculture and carbon footprint reduction."", - ""clientCategories"": [ - ""Cooperatives"", - ""Small and Medium Enterprises (PME) and Intermediate-sized Enterprises (ETI) (10 to 5,000 employees) involved in food sovereignty"", - ""Agricultural and artisanal operations aiming for regenerative agriculture and sustainable food"", - ""Startups developing innovative solutions for contemporary challenges"", - ""Companies engaging in programs to transition their supply chains towards regenerative agriculture and carbon footprint reduction"" - ], - ""sectorDescription"": ""Operates in the crowdfunding and financial services sector, specializing in financing the agricultural and food transition with a focus on sustainable, regenerative, and impact-driven projects."", - ""geographicFocus"": ""HQ: Levallois-Perret, 22-24 Rue du Président Wilson, France; Sales Focus: France and Belgium"", - ""keyExecutives"": [ - { - ""name"": ""Florian Breton"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://theorg.com/org/miimosa/org-chart/florian-breton"" - } - ], - ""linkedDocuments"": [ - ""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.miimosa.com/"", - ""productDescription"": ""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf"", - ""clientCategories"": ""https://www.miimosa.com"", - ""geographicFocus"": ""https://craft.co/miimosa/locations"", - ""keyExecutives"": ""https://theorg.com/org/miimosa/org-chart/florian-breton"" - } -}","{ - ""websiteURL"": ""https://www.miimosa.com"", - ""companyDescription"": ""MiiMOSA is a platform dedicated to financing the agricultural and food transition, addressing key challenges of the century such as environmental, climatic, and health issues. Its mission is to accelerate this transition by reconnecting the agricultural sector with society in France and Belgium, enabling everyone to contribute concretely. MiiMOSA's mission is to recreate the link between the agricultural world and society to contribute to agroecological transition. The company focuses on accelerating agricultural and food transition to address food, environmental, climate, health, and energy challenges. MiiMOSA supports project initiators engaged in organic or sustainable agriculture, animal welfare, and plant alternatives by facilitating financing for impactful projects. It also involves citizens and institutions to foster engagement and impact on these issues. MiiMOSA operates in France and Belgium as a platform authorized by the French Financial Markets Authority (AMF) for crowdfunding services."", - ""productDescription"": ""MiiMOSA offers financial support products aimed at the agricultural and food sector transition, including donations with rewards, impact investments, loans with up to 10% interest, simple and rapid financing options. Their funding tools include donations with rewards/pre-sales, remunerated loans, simple and convertible bonds, equity investment, and embedded solidarity tools such as impact cashback and cash rounding. They support projects in renewable energies, cooperatives, agriculture, startups, biodiversity, social cohesion, animal welfare, employment, territories, and climate. Examples of projects financed include farms, artisan agriculture, startups, and programs aimed at supply chain transitions toward regenerative agriculture and carbon footprint reduction."", - ""clientCategories"": [ - ""Cooperatives"", - ""Small and Medium Enterprises (PME) and Intermediate-sized Enterprises (ETI) (10 to 5,000 employees) involved in food sovereignty"", - ""Agricultural and artisanal operations aiming for regenerative agriculture and sustainable food"", - ""Startups developing innovative solutions for contemporary challenges"", - ""Companies engaging in programs to transition their supply chains towards regenerative agriculture and carbon footprint reduction"" - ], - ""sectorDescription"": ""Operates in the crowdfunding and financial services sector, specializing in financing the agricultural and food transition with a focus on sustainable, regenerative, and impact-driven projects."", - ""geographicFocus"": ""HQ: Levallois-Perret, 22-24 Rue du Président Wilson, France; Sales Focus: France and Belgium"", - ""keyExecutives"": [ - { - ""name"": ""Florian Breton"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://theorg.com/org/miimosa/org-chart/florian-breton"" - } - ], - ""linkedDocuments"": [ - ""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.miimosa.com/"", - ""productDescription"": ""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf"", - ""clientCategories"": ""https://www.miimosa.com"", - ""geographicFocus"": ""https://craft.co/miimosa/locations"", - ""keyExecutives"": ""https://theorg.com/org/miimosa/org-chart/florian-breton"" - } -}",[],"{ - ""websiteURL"": ""https://www.miimosa.com"", - ""companyDescription"": ""MiiMOSA is a crowdfunding platform focused on financing the agricultural and food transition to address critical challenges such as environmental, climate, and health issues. Founded in 2015 and headquartered in Levallois-Perret, France, it reconnects the agricultural sector with society in France and Belgium, enabling citizens, institutions, and businesses to engage in impactful projects. The platform supports initiatives in organic and sustainable agriculture, animal welfare, plant alternatives, and regenerative agriculture, facilitating diversified funding sources beyond traditional finance."", - ""productDescription"": ""MiiMOSA offers a range of financial products including donations with rewards or pre-sales, remunerated loans with up to 10% interest, convertible bonds, equity investments, and embedded solidarity tools such as impact cashback. The platform provides simple, rapid, and flexible financing solutions tailored to farmers, cooperatives, startups, and companies transitioning their supply chains toward sustainability, renewable energy, biodiversity, and climate impact reduction."", - ""clientCategories"": [ - ""Cooperatives"", - ""Small and Medium Enterprises (PME) and Intermediate-sized Enterprises (ETI) (10 to 5,000 employees) involved in food sovereignty"", - ""Agricultural and artisanal operations aiming for regenerative agriculture and sustainable food"", - ""Startups developing innovative solutions for contemporary challenges"", - ""Companies engaging in programs to transition their supply chains towards regenerative agriculture and carbon footprint reduction"" - ], - ""sectorDescription"": ""Crowdfunding and financial services specializing in financing sustainable and regenerative agricultural and food transition projects."", - ""geographicFocus"": ""Primary focus on France and Belgium"", - ""keyExecutives"": [ - { - ""name"": ""Florian Breton"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://theorg.com/org/miimosa/org-chart/florian-breton"" - } - ], - ""researcherNotes"": ""The company was confirmed based on domain (miimosa.com), HQ location in France, and distinctive focus on agriculture and food transition since 2015. No additional senior leadership was found on LinkedIn or other official sources beyond Florian Breton as Founder and CEO. Geographic focus is validated by multiple sources emphasizing operations mainly in France and Belgium."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.miimosa.com/"", - ""productDescription"": ""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf"", - ""clientCategories"": ""https://www.miimosa.com"", - ""geographicFocus"": ""https://craft.co/miimosa/locations"", - ""keyExecutives"": ""https://theorg.com/org/miimosa/org-chart/florian-breton"" - } -}","{""clientCategories"":[""Cooperatives"",""Small and Medium Enterprises (PME) and Intermediate-sized Enterprises (ETI) (10 to 5,000 employees) involved in food sovereignty"",""Agricultural and artisanal operations aiming for regenerative agriculture and sustainable food"",""Startups developing innovative solutions for contemporary challenges"",""Companies engaging in programs to transition their supply chains towards regenerative agriculture and carbon footprint reduction""],""companyDescription"":""MiiMOSA is a crowdfunding platform focused on financing the agricultural and food transition to address critical challenges such as environmental, climate, and health issues. Founded in 2015 and headquartered in Levallois-Perret, France, it reconnects the agricultural sector with society in France and Belgium, enabling citizens, institutions, and businesses to engage in impactful projects. The platform supports initiatives in organic and sustainable agriculture, animal welfare, plant alternatives, and regenerative agriculture, facilitating diversified funding sources beyond traditional finance."",""geographicFocus"":""Primary focus on France and Belgium"",""keyExecutives"":[{""name"":""Florian Breton"",""sourceUrl"":""https://theorg.com/org/miimosa/org-chart/florian-breton"",""title"":""Founder and CEO""}],""missingImportantFields"":[],""productDescription"":""MiiMOSA offers a range of financial products including donations with rewards or pre-sales, remunerated loans with up to 10% interest, convertible bonds, equity investments, and embedded solidarity tools such as impact cashback. The platform provides simple, rapid, and flexible financing solutions tailored to farmers, cooperatives, startups, and companies transitioning their supply chains toward sustainability, renewable energy, biodiversity, and climate impact reduction."",""researcherNotes"":""The company was confirmed based on domain (miimosa.com), HQ location in France, and distinctive focus on agriculture and food transition since 2015. No additional senior leadership was found on LinkedIn or other official sources beyond Florian Breton as Founder and CEO. Geographic focus is validated by multiple sources emphasizing operations mainly in France and Belgium."",""sectorDescription"":""Crowdfunding and financial services specializing in financing sustainable and regenerative agricultural and food transition projects."",""sources"":{""clientCategories"":""https://www.miimosa.com"",""companyDescription"":""https://www.miimosa.com/"",""geographicFocus"":""https://craft.co/miimosa/locations"",""keyExecutives"":""https://theorg.com/org/miimosa/org-chart/florian-breton"",""productDescription"":""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf""},""websiteURL"":""https://www.miimosa.com""}","Correctness: 98% Completeness: 95% The information about MiiMOSA is factually accurate and well-supported by multiple authoritative sources. Florian Breton is confirmed as Founder and CEO since the platform's founding in 2015, headquartered in France with a focus on France and Belgium[1][2][3]. The company is indeed a crowdfunding platform specializing in agricultural and food transition projects, supporting sustainable and regenerative agriculture, animal welfare, and climate impact reduction[1][2][3][4]. The platform offers various financing products including donations with rewards, crowdlending (loans with interest), convertible bonds, equity investments, and impact tools aligned with its mission[2][5]. Funding milestones noted (€70 million raised in ~7 years, a €20 million EIF commitment to a €30 million total fund) are consistent across sources[1][3][4]. The description of client categories—farmers, cooperatives, startups, companies transitioning supply chains—is also corroborated[1][2]. Minor discrepancy occurs in the founding year (some sources say 2014, others 2015) but this is negligible. Overall, the provided summary is comprehensive and aligned with the latest information as of 2025, with no major omissions or inaccuracies. Sources: https://www.investinprovence.com/en/news/crowdfunding-miimosa-active-paris-and-aix-provence-to-support-agribusiness-transition, https://www.crowdfundinsider.com/2019/04/146776-fintech-meets-agtech-french-platform-miimosa-finances-the-future-of-food/, https://www.eif.org/what_we_do/guarantees/news/2022/miimosa-eif-partnership-agriculture.htm, https://www.carrefour.com/sites/default/files/2022-01/carrefour_mimosa_eng.pdf, https://thecrowdspace.com/platform/miimosa/","{""clientCategories"":[""Cooperatives"",""Small and Medium Enterprises (PME) and Intermediate-sized Enterprises (ETI) (10 to 5,000 employees) involved in food sovereignty"",""Agricultural and artisanal operations aiming for regenerative agriculture and sustainable food"",""Startups developing innovative solutions for contemporary challenges"",""Companies engaging in programs to transition their supply chains towards regenerative agriculture and carbon footprint reduction""],""companyDescription"":""MiiMOSA is a platform dedicated to financing the agricultural and food transition, addressing key challenges of the century such as environmental, climatic, and health issues. Its mission is to accelerate this transition by reconnecting the agricultural sector with society in France and Belgium, enabling everyone to contribute concretely. MiiMOSA's mission is to recreate the link between the agricultural world and society to contribute to agroecological transition. The company focuses on accelerating agricultural and food transition to address food, environmental, climate, health, and energy challenges. MiiMOSA supports project initiators engaged in organic or sustainable agriculture, animal welfare, and plant alternatives by facilitating financing for impactful projects. It also involves citizens and institutions to foster engagement and impact on these issues. MiiMOSA operates in France and Belgium as a platform authorized by the French Financial Markets Authority (AMF) for crowdfunding services."",""geographicFocus"":""HQ: Levallois-Perret, 22-24 Rue du Président Wilson, France; Sales Focus: France and Belgium"",""keyExecutives"":[{""name"":""Florian Breton"",""sourceUrl"":""https://theorg.com/org/miimosa/org-chart/florian-breton"",""title"":""Founder and CEO""}],""linkedDocuments"":[""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf""],""missingImportantFields"":[],""productDescription"":""MiiMOSA offers financial support products aimed at the agricultural and food sector transition, including donations with rewards, impact investments, loans with up to 10% interest, simple and rapid financing options. Their funding tools include donations with rewards/pre-sales, remunerated loans, simple and convertible bonds, equity investment, and embedded solidarity tools such as impact cashback and cash rounding. They support projects in renewable energies, cooperatives, agriculture, startups, biodiversity, social cohesion, animal welfare, employment, territories, and climate. Examples of projects financed include farms, artisan agriculture, startups, and programs aimed at supply chain transitions toward regenerative agriculture and carbon footprint reduction."",""researcherNotes"":null,""sectorDescription"":""Operates in the crowdfunding and financial services sector, specializing in financing the agricultural and food transition with a focus on sustainable, regenerative, and impact-driven projects."",""sources"":{""clientCategories"":""https://www.miimosa.com"",""companyDescription"":""https://www.miimosa.com/"",""geographicFocus"":""https://craft.co/miimosa/locations"",""keyExecutives"":""https://theorg.com/org/miimosa/org-chart/florian-breton"",""productDescription"":""https://decouverte.miimosa.com/hubfs/pdf/rapport%20-%20impact%202023.pdf""},""websiteURL"":""https://www.miimosa.com""}" -crop.zone,https://crop.zone/,"Demeter, MADAUS Capital Partners, Nufarm",crop.zone,https://www.linkedin.com/company/cropzone,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://crop.zone/"", - ""companyDescription"": ""crop.zone GmbH, located in Aachen, Germany, provides professional, biological, and residue-free plant control using Electric Crop Management. Their mission emphasizes sustainability, increased crop yields, reduced costs, and environmental responsibility through their Hybrid Herbicide Technology. This technology offers a chemical-free, reliable, and eco-friendly alternative for crop desiccation and control, aiming to enhance agricultural efficiency and reduce CO2 emissions. The company is 100% Made in Germany and focuses on delivering fast, safe, and weather-independent solutions."", - ""productDescription"": ""crop.zone offers Hybrid Herbicide Technology providing an alternative to traditional desiccation and burn down methods. Key products include:\n- volt.fuel, a spray system that increases the electrical conductivity of plants\n- volt.cube, a power take-off generator converting mechanical energy from tractors to electrical energy (1000 to 5500 V)\n- volt.apply, application-specific applicators directing electric current through plants and soil with working widths up to 12 m\nThe system ensures professional, biological, and residue-free plant control, certified organic, and weather-independent operation."", - ""clientCategories"": [""Large-scale agricultural businesses"",""Professional agricultural operators"",""Dealers and aftermarket support network""], - ""sectorDescription"": ""Operates in the agricultural technology sector, specializing in sustainable, chemical-free, and electrical weed and crop management solutions."", - ""geographicFocus"": ""HQ: Pascalstraße 55, 52076 Aachen, Germany; Sales Focus: International presence including Netherlands, France, USA, Switzerland, Hong Kong SAR, United Kingdom."", - ""keyExecutives"": [ - {""name"": ""Dipl. Biol. Dirk Vandenhirtz"", ""title"": ""CEO / Founder"", ""sourceUrl"": ""https://crop.zone/en/crop-zone-team-2""}, - {""name"": ""Matthias Eberius"", ""title"": ""CSO"", ""sourceUrl"": ""https://crop.zone/en/crop-zone-team-2""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories are inferred from dealer network and product usage context as explicit client lists are not provided."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://crop.zone/en/ueber-uns-2"", - ""productDescription"": ""https://crop.zone/produkte/"", - ""clientCategories"": ""https://crop.zone/en/haendler-netzwerk-2"", - ""geographicFocus"": ""https://crop.zone/kontakt/"", - ""keyExecutives"": ""https://crop.zone/en/crop-zone-team-2"" - } -}","{ - ""websiteURL"": ""https://crop.zone/"", - ""companyDescription"": ""crop.zone GmbH, located in Aachen, Germany, provides professional, biological, and residue-free plant control using Electric Crop Management. Their mission emphasizes sustainability, increased crop yields, reduced costs, and environmental responsibility through their Hybrid Herbicide Technology. This technology offers a chemical-free, reliable, and eco-friendly alternative for crop desiccation and control, aiming to enhance agricultural efficiency and reduce CO2 emissions. The company is 100% Made in Germany and focuses on delivering fast, safe, and weather-independent solutions."", - ""productDescription"": ""crop.zone offers Hybrid Herbicide Technology providing an alternative to traditional desiccation and burn down methods. Key products include:\n- volt.fuel, a spray system that increases the electrical conductivity of plants\n- volt.cube, a power take-off generator converting mechanical energy from tractors to electrical energy (1000 to 5500 V)\n- volt.apply, application-specific applicators directing electric current through plants and soil with working widths up to 12 m\nThe system ensures professional, biological, and residue-free plant control, certified organic, and weather-independent operation."", - ""clientCategories"": [""Large-scale agricultural businesses"",""Professional agricultural operators"",""Dealers and aftermarket support network""], - ""sectorDescription"": ""Operates in the agricultural technology sector, specializing in sustainable, chemical-free, and electrical weed and crop management solutions."", - ""geographicFocus"": ""HQ: Pascalstraße 55, 52076 Aachen, Germany; Sales Focus: International presence including Netherlands, France, USA, Switzerland, Hong Kong SAR, United Kingdom."", - ""keyExecutives"": [ - {""name"": ""Dipl. Biol. Dirk Vandenhirtz"", ""title"": ""CEO / Founder"", ""sourceUrl"": ""https://crop.zone/en/crop-zone-team-2""}, - {""name"": ""Matthias Eberius"", ""title"": ""CSO"", ""sourceUrl"": ""https://crop.zone/en/crop-zone-team-2""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories are inferred from dealer network and product usage context as explicit client lists are not provided."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://crop.zone/en/ueber-uns-2"", - ""productDescription"": ""https://crop.zone/produkte/"", - ""clientCategories"": ""https://crop.zone/en/haendler-netzwerk-2"", - ""geographicFocus"": ""https://crop.zone/kontakt/"", - ""keyExecutives"": ""https://crop.zone/en/crop-zone-team-2"" - } -}",[],"{ - ""websiteURL"": ""https://crop.zone"", - ""companyDescription"": ""crop.zone GmbH, located in Aachen, Germany, provides professional, biological, and residue-free plant control using Electric Crop Management. Their mission emphasizes sustainability, increased crop yields, reduced costs, and environmental responsibility through their Hybrid Herbicide Technology. This technology offers a chemical-free, reliable, and eco-friendly alternative for crop desiccation and control, aiming to enhance agricultural efficiency and reduce CO2 emissions. The company is 100% Made in Germany and focuses on delivering fast, safe, and weather-independent solutions."", - ""productDescription"": ""crop.zone offers Hybrid Herbicide Technology providing an alternative to traditional desiccation and burn down methods. Key products include:\n- volt.fuel, a spray system that increases the electrical conductivity of plants\n- volt.cube, a power take-off generator converting mechanical energy from tractors to electrical energy (1000 to 5500 V)\n- volt.apply, application-specific applicators directing electric current through plants and soil with working widths up to 12 m\nThe system ensures professional, biological, and residue-free plant control, certified organic, and weather-independent operation."", - ""clientCategories"": [ - ""Large-Scale Agricultural Businesses"", - ""Professional Agricultural Operators"", - ""Dealers And Aftermarket Support Network"" - ], - ""sectorDescription"": ""Operates in the agricultural technology sector, specializing in sustainable, chemical-free, and electrical weed and crop management solutions."", - ""geographicFocus"": ""Headquartered in Aachen, Germany, crop.zone has an international sales focus including the Netherlands, France, USA, Switzerland, Hong Kong SAR, and the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Dipl. Biol. Dirk Vandenhirtz"", - ""title"": ""CEO / Founder"", - ""sourceUrl"": ""https://crop.zone/en/crop-zone-team-2"" - }, - { - ""name"": ""Matthias Eberius"", - ""title"": ""CSO"", - ""sourceUrl"": ""https://crop.zone/en/crop-zone-team-2"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirms crop.zone GmbH headquartered in Aachen, Germany, specializing in electric crop management with hybrid herbicide technology and no conflicting information identified. Geographic focus is explicitly stated on company contact page. Key executives sourced from company team page are current. No significant missing fields remain after enrichment."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://crop.zone/en/ueber-uns-2"", - ""productDescription"": ""https://crop.zone/produkte/"", - ""clientCategories"": ""https://crop.zone/en/haendler-netwerk-2"", - ""geographicFocus"": ""https://crop.zone/kontakt/"", - ""keyExecutives"": ""https://crop.zone/en/crop-zone-team-2"" - } -}","{""clientCategories"":[""Large-Scale Agricultural Businesses"",""Professional Agricultural Operators"",""Dealers And Aftermarket Support Network""],""companyDescription"":""crop.zone GmbH, located in Aachen, Germany, provides professional, biological, and residue-free plant control using Electric Crop Management. Their mission emphasizes sustainability, increased crop yields, reduced costs, and environmental responsibility through their Hybrid Herbicide Technology. This technology offers a chemical-free, reliable, and eco-friendly alternative for crop desiccation and control, aiming to enhance agricultural efficiency and reduce CO2 emissions. The company is 100% Made in Germany and focuses on delivering fast, safe, and weather-independent solutions."",""geographicFocus"":""Headquartered in Aachen, Germany, crop.zone has an international sales focus including the Netherlands, France, USA, Switzerland, Hong Kong SAR, and the United Kingdom."",""keyExecutives"":[{""name"":""Dipl. Biol. Dirk Vandenhirtz"",""sourceUrl"":""https://crop.zone/en/crop-zone-team-2"",""title"":""CEO / Founder""},{""name"":""Matthias Eberius"",""sourceUrl"":""https://crop.zone/en/crop-zone-team-2"",""title"":""CSO""}],""missingImportantFields"":[],""productDescription"":""crop.zone offers Hybrid Herbicide Technology providing an alternative to traditional desiccation and burn down methods. Key products include:\n- volt.fuel, a spray system that increases the electrical conductivity of plants\n- volt.cube, a power take-off generator converting mechanical energy from tractors to electrical energy (1000 to 5500 V)\n- volt.apply, application-specific applicators directing electric current through plants and soil with working widths up to 12 m\nThe system ensures professional, biological, and residue-free plant control, certified organic, and weather-independent operation."",""researcherNotes"":""Entity disambiguation confirms crop.zone GmbH headquartered in Aachen, Germany, specializing in electric crop management with hybrid herbicide technology and no conflicting information identified. Geographic focus is explicitly stated on company contact page. Key executives sourced from company team page are current. No significant missing fields remain after enrichment."",""sectorDescription"":""Operates in the agricultural technology sector, specializing in sustainable, chemical-free, and electrical weed and crop management solutions."",""sources"":{""clientCategories"":""https://crop.zone/en/haendler-netwerk-2"",""companyDescription"":""https://crop.zone/en/ueber-uns-2"",""geographicFocus"":""https://crop.zone/kontakt/"",""keyExecutives"":""https://crop.zone/en/crop-zone-team-2"",""productDescription"":""https://crop.zone/produkte/""},""websiteURL"":""https://crop.zone""}","Correctness: 98% Completeness: 95% The provided description of crop.zone GmbH is highly accurate and complete according to multiple official company sources. The company is indeed headquartered in Aachen, Germany, with an international sales presence including the Netherlands, France, USA, Switzerland, Hong Kong, and the UK[1][2][4]. crop.zone was founded in 2019 and specializes in hybrid herbicide technology delivering chemical-free, electrophysical weed and crop management solutions that are sustainable and residue-free, consistent with their mission to increase yields and reduce environmental impact[1][2][4]. Key executives, including CEO and Founder Dipl.-Biol. Dirk Vandenhirtz and CSO Matthias Eberius, are confirmed on the company team page as current leadership[3]. The product suite described — volt.fuel, volt.cube, and volt.apply — matches the offerings detailed on the company product page, emphasizing electrical conductivity enhancement and tractor-powered electrical energy applications for plant control[2][4]. The description correctly states the company is 100% Made in Germany and highlights weather-independent, organic-certified operation[2]. The only minor limitation is that the most precise current employee headcount is 16 as of spring 2021 and references to ongoing developments with partners like fenaco and Nufarm underline active collaboration in Europe but do not materially challenge the core facts already presented[1][4]. No significant public information about funding or material recent leadership changes appear missing or contradictory. Overall, the information is authoritative, current, well-sourced, and comprehensive for a company profile[1][2][3][4][5]. URLs: https://crop.zone/en/ueber-uns-2 https://crop.zone/en/crop-zone-team-2 https://crop.zone/kontakt/ https://crop.zone/en/news/fenaco-und-crop-zone-vereinbaren-strategische-zusammenarbeit-und-entwickeln-innovative-und-nachhaltige-methode-zur-unkrautbekaempfung/ https://crop.zone/en/news/nufarm-und-crop-zone-bringen-neue-alternative-fuer-unkrautbekaempfung-auf-den-markt/","{""clientCategories"":[""Large-scale agricultural businesses"",""Professional agricultural operators"",""Dealers and aftermarket support network""],""companyDescription"":""crop.zone GmbH, located in Aachen, Germany, provides professional, biological, and residue-free plant control using Electric Crop Management. Their mission emphasizes sustainability, increased crop yields, reduced costs, and environmental responsibility through their Hybrid Herbicide Technology. This technology offers a chemical-free, reliable, and eco-friendly alternative for crop desiccation and control, aiming to enhance agricultural efficiency and reduce CO2 emissions. The company is 100% Made in Germany and focuses on delivering fast, safe, and weather-independent solutions."",""geographicFocus"":""HQ: Pascalstraße 55, 52076 Aachen, Germany; Sales Focus: International presence including Netherlands, France, USA, Switzerland, Hong Kong SAR, United Kingdom."",""keyExecutives"":[{""name"":""Dipl. Biol. Dirk Vandenhirtz"",""sourceUrl"":""https://crop.zone/en/crop-zone-team-2"",""title"":""CEO / Founder""},{""name"":""Matthias Eberius"",""sourceUrl"":""https://crop.zone/en/crop-zone-team-2"",""title"":""CSO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""crop.zone offers Hybrid Herbicide Technology providing an alternative to traditional desiccation and burn down methods. Key products include:\n- volt.fuel, a spray system that increases the electrical conductivity of plants\n- volt.cube, a power take-off generator converting mechanical energy from tractors to electrical energy (1000 to 5500 V)\n- volt.apply, application-specific applicators directing electric current through plants and soil with working widths up to 12 m\nThe system ensures professional, biological, and residue-free plant control, certified organic, and weather-independent operation."",""researcherNotes"":""Client categories are inferred from dealer network and product usage context as explicit client lists are not provided."",""sectorDescription"":""Operates in the agricultural technology sector, specializing in sustainable, chemical-free, and electrical weed and crop management solutions."",""sources"":{""clientCategories"":""https://crop.zone/en/haendler-netzwerk-2"",""companyDescription"":""https://crop.zone/en/ueber-uns-2"",""geographicFocus"":""https://crop.zone/kontakt/"",""keyExecutives"":""https://crop.zone/en/crop-zone-team-2"",""productDescription"":""https://crop.zone/produkte/""},""websiteURL"":""https://crop.zone/""}" -Cascade,https://www.lightcascade.com/en/company,European Innovation Council,lightcascade.com,https://www.linkedin.com/company/lightcascades,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.lightcascade.com/en/company"", - ""companyDescription"": ""Cascade Light Technologies is a company specializing in photonics, focusing on modifying the spectrum of light to improve material performance. They develop luminescent materials and additives that modify light wavelengths to benefit applications such as agriculture, photovoltaics, and algae growth. Their technology aims to enhance photosynthesis and crop yields, promoting environmental sustainability by reducing fertilizers and water use. The company operates in the photonics sector with applications in agriculture and energy. Cascade has a multidisciplinary team of experts in optics, physics, photovoltaics, chemistry, and agronomy and maintains collaborations with academic and industrial partners. Their mission emphasizes environmental sustainability, collaboration, and creativity to drive innovation."", - ""productDescription"": ""LitePlus\u00ae masterbatches are concentrated optically active formulations for agriculture films, used in berries, double roof (thermal curtains), and low tunnels. Products include LitePlus\u00ae Berry for strawberries, raspberries, blueberries; LitePlus\u00ae Double Roof 'Tomato' and 'Veggie' for winter crops like tomatoes, cucumbers, peppers, zucchini, eggplants; LitePlus\u00ae Melon for melon crops in low tunnels; and LitePlus\u00ae Primeur for early potato crops. These masterbatches incorporate LIGHT CASCADE\u00ae technology and have demonstrated agronomic performance such as yield gains (e.g., +14% for strawberries and raspberries, +16% for tomatoes), improved fruit quality and shelf life, and crop earliness."", - ""clientCategories"": [""Agricultural producers"", ""Experimental farms"", ""Photovoltaic and energy sectors"", ""Industrial clients using plastics and coatings"", ""Agricultural film manufacturers""], - ""sectorDescription"": ""Operates in the photonics sector, developing luminescent additives to modify light spectra for agricultural and energy applications to improve plant growth and energy efficiency."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://www.lightcascade.com/media/uploads/pdf/liteplus_dr_2020.pdf"", - ""https://www.lightcascade.com/media/uploads/pdf/liteplus_berry_2020.pdf"" - ], - ""researcherNotes"": ""No specific details about company headquarters, geographic sales regions, or named key executives such as CEO, founder, CTO, CFO, or COO were found on the website."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.lightcascade.com/en/company/"", - ""productDescription"": ""https://www.lightcascade.com/en/products/"", - ""clientCategories"": ""https://www.lightcascade.com/en/applications/"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.lightcascade.com/en/company"", - ""companyDescription"": ""Cascade Light Technologies is a company specializing in photonics, focusing on modifying the spectrum of light to improve material performance. They develop luminescent materials and additives that modify light wavelengths to benefit applications such as agriculture, photovoltaics, and algae growth. Their technology aims to enhance photosynthesis and crop yields, promoting environmental sustainability by reducing fertilizers and water use. The company operates in the photonics sector with applications in agriculture and energy. Cascade has a multidisciplinary team of experts in optics, physics, photovoltaics, chemistry, and agronomy and maintains collaborations with academic and industrial partners. Their mission emphasizes environmental sustainability, collaboration, and creativity to drive innovation."", - ""productDescription"": ""LitePlus\u00ae masterbatches are concentrated optically active formulations for agriculture films, used in berries, double roof (thermal curtains), and low tunnels. Products include LitePlus\u00ae Berry for strawberries, raspberries, blueberries; LitePlus\u00ae Double Roof 'Tomato' and 'Veggie' for winter crops like tomatoes, cucumbers, peppers, zucchini, eggplants; LitePlus\u00ae Melon for melon crops in low tunnels; and LitePlus\u00ae Primeur for early potato crops. These masterbatches incorporate LIGHT CASCADE\u00ae technology and have demonstrated agronomic performance such as yield gains (e.g., +14% for strawberries and raspberries, +16% for tomatoes), improved fruit quality and shelf life, and crop earliness."", - ""clientCategories"": [""Agricultural producers"", ""Experimental farms"", ""Photovoltaic and energy sectors"", ""Industrial clients using plastics and coatings"", ""Agricultural film manufacturers""], - ""sectorDescription"": ""Operates in the photonics sector, developing luminescent additives to modify light spectra for agricultural and energy applications to improve plant growth and energy efficiency."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://www.lightcascade.com/media/uploads/pdf/liteplus_dr_2020.pdf"", - ""https://www.lightcascade.com/media/uploads/pdf/liteplus_berry_2020.pdf"" - ], - ""researcherNotes"": ""No specific details about company headquarters, geographic sales regions, or named key executives such as CEO, founder, CTO, CFO, or COO were found on the website."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.lightcascade.com/en/company/"", - ""productDescription"": ""https://www.lightcascade.com/en/products/"", - ""clientCategories"": ""https://www.lightcascade.com/en/applications/"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.lightcascade.com/en/company"", - ""companyDescription"": ""Cascade Light Technologies specializes in photonics, focusing on luminescent additives that modify the spectrum of light to improve applications such as agriculture and photovoltaics. Their LIGHT CASCADE® technology enhances photosynthesis, crop yields, and energy efficiency by incorporating luminescent materials into polymeric films and coatings. The company serves agricultural producers, experimental farms, photovoltaic sectors, and industrial clients, driven by a multidisciplinary team and a mission emphasizing environmental sustainability and innovation."", - ""productDescription"": ""Cascade Light Technologies produces LitePlus® masterbatches—concentrated optically active formulations integrated into agricultural films for crops like berries, tomatoes, melons, and potatoes. These products employ LIGHT CASCADE® technology to improve plant growth, yielding significant agronomic benefits such as yield increases (e.g., +14% for strawberries and raspberries, +16% for tomatoes), enhanced fruit quality, extended shelf life, and earlier harvests."", - ""clientCategories"": [ - ""Agricultural Producers"", - ""Experimental Farms"", - ""Photovoltaic and Energy Sectors"", - ""Industrial Clients Using Plastics and Coatings"", - ""Agricultural Film Manufacturers"" - ], - ""sectorDescription"": ""Photonics industry focused on developing luminescent additives that modify light spectra to improve agricultural productivity and energy efficiency."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""No details about the company's geographic focus or named key executives were found despite reviewing the official website and LinkedIn data. The company is clearly identified by its LIGHT CASCADE® technology and products for agriculture and photovoltaics. The lack of executive information limits the profile completeness."", - ""missingImportantFields"": [ - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.lightcascade.com/en/company/"", - ""productDescription"": ""https://www.lightcascade.com/en/products/"", - ""clientCategories"": ""https://www.lightcascade.com/en/applications/"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{""clientCategories"":[""Agricultural Producers"",""Experimental Farms"",""Photovoltaic and Energy Sectors"",""Industrial Clients Using Plastics and Coatings"",""Agricultural Film Manufacturers""],""companyDescription"":""Cascade Light Technologies specializes in photonics, focusing on luminescent additives that modify the spectrum of light to improve applications such as agriculture and photovoltaics. Their LIGHT CASCADE® technology enhances photosynthesis, crop yields, and energy efficiency by incorporating luminescent materials into polymeric films and coatings. The company serves agricultural producers, experimental farms, photovoltaic sectors, and industrial clients, driven by a multidisciplinary team and a mission emphasizing environmental sustainability and innovation."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Cascade Light Technologies produces LitePlus® masterbatches—concentrated optically active formulations integrated into agricultural films for crops like berries, tomatoes, melons, and potatoes. These products employ LIGHT CASCADE® technology to improve plant growth, yielding significant agronomic benefits such as yield increases (e.g., +14% for strawberries and raspberries, +16% for tomatoes), enhanced fruit quality, extended shelf life, and earlier harvests."",""researcherNotes"":""No details about the company's geographic focus or named key executives were found despite reviewing the official website and LinkedIn data. The company is clearly identified by its LIGHT CASCADE® technology and products for agriculture and photovoltaics. The lack of executive information limits the profile completeness."",""sectorDescription"":""Photonics industry focused on developing luminescent additives that modify light spectra to improve agricultural productivity and energy efficiency."",""sources"":{""clientCategories"":""https://www.lightcascade.com/en/applications/"",""companyDescription"":""https://www.lightcascade.com/en/company/"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.lightcascade.com/en/products/""},""websiteURL"":""https://www.lightcascade.com/en/company""}","Correctness: 95% Completeness: 80% The factual claims about Cascade Light Technologies are largely correct and supported by multiple sources. The company is indeed a French SME specialized in photonics and luminescent additives to modify light spectra for agricultural and photovoltaic applications, with their core LIGHT CASCADE® technology enhancing photosynthesis and crop yields. Verified crop yield increase examples such as +14% for strawberries and raspberries, +16% for tomatoes, and additional benefits like improved fruit quality and earlier harvests are demonstrated in trials in Spain and Europe[1][2][3][4]. The description of products like LitePlus® masterbatches integrated into agricultural films aligns with official company information[2][4]. However, the profile lacks information on geographic focus and key executives, which remain undisclosed from official and LinkedIn sources, reducing completeness[2]. No contradictory claims were found, but some time-sensitive data like leadership details are missing, limiting the profile’s comprehensiveness. The company’s ambition to become the global leader in light spectrum control and its roots as a LPRL spin-off founded in 2012 are also confirmed[1][2]. Overall, the statements are credible and well grounded in authoritative official sources from the company’s website and related EU funded project documentation, but the absence of leadership and geographic detail creates some incompleteness. https://www.lightcascade.com/en/company/ https://cordis.europa.eu/project/id/674406 https://www.lightcascade.com/en/products/ https://www.business-solutions-atlantic-france.com/news/agriculture-light-cascade-innovative-technology-to-improve-crop-yields/","{""clientCategories"":[""Agricultural producers"",""Experimental farms"",""Photovoltaic and energy sectors"",""Industrial clients using plastics and coatings"",""Agricultural film manufacturers""],""companyDescription"":""Cascade Light Technologies is a company specializing in photonics, focusing on modifying the spectrum of light to improve material performance. They develop luminescent materials and additives that modify light wavelengths to benefit applications such as agriculture, photovoltaics, and algae growth. Their technology aims to enhance photosynthesis and crop yields, promoting environmental sustainability by reducing fertilizers and water use. The company operates in the photonics sector with applications in agriculture and energy. Cascade has a multidisciplinary team of experts in optics, physics, photovoltaics, chemistry, and agronomy and maintains collaborations with academic and industrial partners. Their mission emphasizes environmental sustainability, collaboration, and creativity to drive innovation."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[""https://www.lightcascade.com/media/uploads/pdf/liteplus_dr_2020.pdf"",""https://www.lightcascade.com/media/uploads/pdf/liteplus_berry_2020.pdf""],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""LitePlus® masterbatches are concentrated optically active formulations for agriculture films, used in berries, double roof (thermal curtains), and low tunnels. Products include LitePlus® Berry for strawberries, raspberries, blueberries; LitePlus® Double Roof 'Tomato' and 'Veggie' for winter crops like tomatoes, cucumbers, peppers, zucchini, eggplants; LitePlus® Melon for melon crops in low tunnels; and LitePlus® Primeur for early potato crops. These masterbatches incorporate LIGHT CASCADE® technology and have demonstrated agronomic performance such as yield gains (e.g., +14% for strawberries and raspberries, +16% for tomatoes), improved fruit quality and shelf life, and crop earliness."",""researcherNotes"":""No specific details about company headquarters, geographic sales regions, or named key executives such as CEO, founder, CTO, CFO, or COO were found on the website."",""sectorDescription"":""Operates in the photonics sector, developing luminescent additives to modify light spectra for agricultural and energy applications to improve plant growth and energy efficiency."",""sources"":{""clientCategories"":""https://www.lightcascade.com/en/applications/"",""companyDescription"":""https://www.lightcascade.com/en/company/"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.lightcascade.com/en/products/""},""websiteURL"":""https://www.lightcascade.com/en/company""}" -Antofenol,http://www.antofenol.com/,"European Innovation Council, INSEAD Business Angels Alumni France, Romain Sautrau",antofenol.com,https://www.linkedin.com/company/antof%C3%A9nol,"{""seniorLeadership"":[{""name"":""Fanny Rolet"",""title"":""Founder and CEO"",""profileURL"":""https://fr.linkedin.com/in/fanny-rolet-75652942""}]}","{""seniorLeadership"":[{""name"":""Fanny Rolet"",""title"":""Founder and CEO"",""profileURL"":""https://fr.linkedin.com/in/fanny-rolet-75652942""}]}","{ - ""websiteURL"": ""http://www.antofenol.com/"", - ""companyDescription"": ""Antofénol is a company specializing in eco-extraction technology that offers natural, chemical-free plant-based solutions. Their mission is to provide effective and natural alternatives to chemical and phytosanitary products, focusing on sustainability, environmental respect, and health. Their innovative hyperfrequency eco-extraction process is unique in Europe, allowing rapid and solvent-free extraction at industrial scale. They develop turnkey or customized solutions including biocontrol products, functional ingredients, aromas, and perfumes for the agricultural, cosmetic, and food sectors. Antofénol emphasizes eco-extraction at the heart of plants for a preserved future and addresses economic and environmental challenges in agriculture, natural cosmetics, and food & nutraceutical sectors."", - ""productDescription"": ""Antofénol develops natural solutions via eco-extraction technology for agriculture, cosmetics, and food sectors, including biocontrol, functional ingredients, aromas, and perfumes. Their patented eco-extraction by hyperfrequencies produces solvent-free, concentrated plant extracts. Key products include Antoferine, a natural antifungal for crop protection. They offer customized eco-extraction services (sourcing, lab testing, scale-up, production). Their WaveXtracts® are eco-designed cosmetic actives. Key biocontrol product is Antoferine for natural crop protection by fungicidal action, with market launch expected in 2026. Customized services include sourcing, biochemical characterization, bioactivity testing, scale-up, and industrial production."", - ""clientCategories"": [""Agricultural producers"", ""Cosmetics industry"", ""Food & nutraceutical sector""], - ""sectorDescription"": ""Operates in the eco-extraction and biocontrol sector, providing natural plant-based solutions and technologies for agriculture, cosmetics, and food industries."", - ""geographicFocus"": ""HQ: Rue des Éoliennes, 1E ZA Les Landes de Penthièvre, 22640 Plestan, France; Sales Focus: France primarily"", - ""keyExecutives"": [ - { - ""name"": ""Fanny Rolet"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://antofenol.com/en/the-company/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No detailed C-level executive list beyond Founder & CEO was found on the website; LinkedIn page was not accessible for detailed executive info."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.antofenol.com/"", - ""productDescription"": ""http://www.antofenol.com/nos-solutions"", - ""clientCategories"": ""http://www.antofenol.com/nos-solutions"", - ""geographicFocus"": ""http://www.antofenol.com/contact"", - ""keyExecutives"": ""https://antofenol.com/en/the-company/"" - } -}","{ - ""websiteURL"": ""http://www.antofenol.com/"", - ""companyDescription"": ""Antofénol is a company specializing in eco-extraction technology that offers natural, chemical-free plant-based solutions. Their mission is to provide effective and natural alternatives to chemical and phytosanitary products, focusing on sustainability, environmental respect, and health. Their innovative hyperfrequency eco-extraction process is unique in Europe, allowing rapid and solvent-free extraction at industrial scale. They develop turnkey or customized solutions including biocontrol products, functional ingredients, aromas, and perfumes for the agricultural, cosmetic, and food sectors. Antofénol emphasizes eco-extraction at the heart of plants for a preserved future and addresses economic and environmental challenges in agriculture, natural cosmetics, and food & nutraceutical sectors."", - ""productDescription"": ""Antofénol develops natural solutions via eco-extraction technology for agriculture, cosmetics, and food sectors, including biocontrol, functional ingredients, aromas, and perfumes. Their patented eco-extraction by hyperfrequencies produces solvent-free, concentrated plant extracts. Key products include Antoferine, a natural antifungal for crop protection. They offer customized eco-extraction services (sourcing, lab testing, scale-up, production). Their WaveXtracts® are eco-designed cosmetic actives. Key biocontrol product is Antoferine for natural crop protection by fungicidal action, with market launch expected in 2026. Customized services include sourcing, biochemical characterization, bioactivity testing, scale-up, and industrial production."", - ""clientCategories"": [""Agricultural producers"", ""Cosmetics industry"", ""Food & nutraceutical sector""], - ""sectorDescription"": ""Operates in the eco-extraction and biocontrol sector, providing natural plant-based solutions and technologies for agriculture, cosmetics, and food industries."", - ""geographicFocus"": ""HQ: Rue des Éoliennes, 1E ZA Les Landes de Penthièvre, 22640 Plestan, France; Sales Focus: France primarily"", - ""keyExecutives"": [ - { - ""name"": ""Fanny Rolet"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://antofenol.com/en/the-company/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No detailed C-level executive list beyond Founder & CEO was found on the website; LinkedIn page was not accessible for detailed executive info."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.antofenol.com/"", - ""productDescription"": ""http://www.antofenol.com/nos-solutions"", - ""clientCategories"": ""http://www.antofenol.com/nos-solutions"", - ""geographicFocus"": ""http://www.antofenol.com/contact"", - ""keyExecutives"": ""https://antofenol.com/en/the-company/"" - } -}",[],"{ - ""websiteURL"": ""https://antofenol.com"", - ""companyDescription"": ""Antofénol is a French company specializing in eco-extraction technology that produces natural, chemical-solvent-free plant-based solutions. Their mission is to provide effective and sustainable alternatives to chemical and phytosanitary products, addressing environmental, health, and economic challenges in the agriculture, cosmetics, and food sectors. Utilizing a unique hyperfrequency eco-extraction process that combines microwaves, vacuum, and brewing, they enable rapid industrial-scale extraction without solvents, positioning them as a leader in natural solution innovation in Europe."", - ""productDescription"": ""Antofénol develops natural solutions through their patented eco-extraction technology using hyperfrequency microwaves, vacuum, and stirring to produce solvent-free, concentrated plant extracts. Their offerings include biocontrol products like Antoferine, a natural antifungal for crop protection launching in 2026, functional ingredients, aromas, and perfumes for agriculture, cosmetics, and food. They also provide customized services covering sourcing, biochemical characterization, bioactivity testing, scale-up, and industrial production. Their WaveXtracts® line offers eco-designed cosmetic active ingredients."", - ""clientCategories"": [ - ""Agricultural Producers"", - ""Cosmetics Industry"", - ""Food & Nutraceutical Sector"" - ], - ""sectorDescription"": ""Eco-extraction and biocontrol industry specializing in natural plant-based technologies and solutions for agriculture, cosmetics, and food sectors."", - ""geographicFocus"": ""Headquartered in Plestan, France, Antofénol primarily focuses its sales and operations within France."", - ""keyExecutives"": [ - { - ""name"": ""Fanny Rolet"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://antofenol.com/en/the-company/"" - } - ], - ""researcherNotes"": ""Entity disambiguated confidently by matching primary website domain, HQ location in Plestan, France, and distinctive hyperfrequency eco-extraction technology. Only one senior executive identified publicly: Founder & CEO Fanny Rolet. Geographic focus is stated as primarily France-based; no evidence for wider international sales footprint. LinkedIn profile corroborates executive data. No additional C-level executives found on company or LinkedIn pages."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://antofenol.com/en/"", - ""productDescription"": ""https://antofenol.com/en/nos-solutions"", - ""clientCategories"": ""https://antofenol.com/en/nos-solutions"", - ""geographicFocus"": ""https://antofenol.com/en/contact"", - ""keyExecutives"": ""https://antofenol.com/en/the-company/"" - } -}","{""clientCategories"":[""Agricultural Producers"",""Cosmetics Industry"",""Food & Nutraceutical Sector""],""companyDescription"":""Antofénol is a French company specializing in eco-extraction technology that produces natural, chemical-solvent-free plant-based solutions. Their mission is to provide effective and sustainable alternatives to chemical and phytosanitary products, addressing environmental, health, and economic challenges in the agriculture, cosmetics, and food sectors. Utilizing a unique hyperfrequency eco-extraction process that combines microwaves, vacuum, and brewing, they enable rapid industrial-scale extraction without solvents, positioning them as a leader in natural solution innovation in Europe."",""geographicFocus"":""Headquartered in Plestan, France, Antofénol primarily focuses its sales and operations within France."",""keyExecutives"":[{""name"":""Fanny Rolet"",""sourceUrl"":""https://antofenol.com/en/the-company/"",""title"":""Founder & CEO""}],""missingImportantFields"":[],""productDescription"":""Antofénol develops natural solutions through their patented eco-extraction technology using hyperfrequency microwaves, vacuum, and stirring to produce solvent-free, concentrated plant extracts. Their offerings include biocontrol products like Antoferine, a natural antifungal for crop protection launching in 2026, functional ingredients, aromas, and perfumes for agriculture, cosmetics, and food. They also provide customized services covering sourcing, biochemical characterization, bioactivity testing, scale-up, and industrial production. Their WaveXtracts® line offers eco-designed cosmetic active ingredients."",""researcherNotes"":""Entity disambiguated confidently by matching primary website domain, HQ location in Plestan, France, and distinctive hyperfrequency eco-extraction technology. Only one senior executive identified publicly: Founder & CEO Fanny Rolet. Geographic focus is stated as primarily France-based; no evidence for wider international sales footprint. LinkedIn profile corroborates executive data. No additional C-level executives found on company or LinkedIn pages."",""sectorDescription"":""Eco-extraction and biocontrol industry specializing in natural plant-based technologies and solutions for agriculture, cosmetics, and food sectors."",""sources"":{""clientCategories"":""https://antofenol.com/en/nos-solutions"",""companyDescription"":""https://antofenol.com/en/"",""geographicFocus"":""https://antofenol.com/en/contact"",""keyExecutives"":""https://antofenol.com/en/the-company/"",""productDescription"":""https://antofenol.com/en/nos-solutions""},""websiteURL"":""https://antofenol.com""}","Correctness: 95% Completeness: 90% The information about Antofénol is largely accurate and well-supported by their official website and related sources. The company's identity as a French firm specializing in solvent-free, eco-extraction technology using hyperfrequency microwaves, vacuum, and stirring for natural plant extracts is confirmed by company descriptions on antofenol.com (https://antofenol.com/en/ and https://antofenol.com/en/nos-solutions). The description of their product line, including biocontrol products such as Antoferine (a natural antifungal due 2026), functional ingredients, aromas, and customized services, aligns with the company's stated offerings. Leadership data is accurate, with Fanny Rolet as Founder & CEO confirmed on the company’s about page (https://antofenol.com/en/the-company/). The geographic focus on France, especially Plestan as headquarters, is validated by company history and contact information (https://antofenol.com/en/contact and https://antofenol.com/en/antofenol-new-technologies-for-a-greener-tomorrow/). The completeness score is slightly lower due to minor omissions such as no mention of other executives beyond Fanny Rolet and lack of publicly available data on funding or international expansion beyond France. The founding year 2014 and expansion plans including a production unit in Le Thor are documented. No contradictions or outdated claims were found as of 2025-09-11. Overall, the profile is well-corroborated by multiple official sources with the most recent information from 2024 and 2025. -https://antofenol.com/en/ -https://antofenol.com/en/the-company/ -https://antofenol.com/en/nos-solutions -https://antofenol.com/en/contact -https://antofenol.com/en/antofenol-new-technologies-for-a-greener-tomorrow/","{""clientCategories"":[""Agricultural producers"",""Cosmetics industry"",""Food & nutraceutical sector""],""companyDescription"":""Antofénol is a company specializing in eco-extraction technology that offers natural, chemical-free plant-based solutions. Their mission is to provide effective and natural alternatives to chemical and phytosanitary products, focusing on sustainability, environmental respect, and health. Their innovative hyperfrequency eco-extraction process is unique in Europe, allowing rapid and solvent-free extraction at industrial scale. They develop turnkey or customized solutions including biocontrol products, functional ingredients, aromas, and perfumes for the agricultural, cosmetic, and food sectors. Antofénol emphasizes eco-extraction at the heart of plants for a preserved future and addresses economic and environmental challenges in agriculture, natural cosmetics, and food & nutraceutical sectors."",""geographicFocus"":""HQ: Rue des Éoliennes, 1E ZA Les Landes de Penthièvre, 22640 Plestan, France; Sales Focus: France primarily"",""keyExecutives"":[{""name"":""Fanny Rolet"",""sourceUrl"":""https://antofenol.com/en/the-company/"",""title"":""Founder & CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Antofénol develops natural solutions via eco-extraction technology for agriculture, cosmetics, and food sectors, including biocontrol, functional ingredients, aromas, and perfumes. Their patented eco-extraction by hyperfrequencies produces solvent-free, concentrated plant extracts. Key products include Antoferine, a natural antifungal for crop protection. They offer customized eco-extraction services (sourcing, lab testing, scale-up, production). Their WaveXtracts® are eco-designed cosmetic actives. Key biocontrol product is Antoferine for natural crop protection by fungicidal action, with market launch expected in 2026. Customized services include sourcing, biochemical characterization, bioactivity testing, scale-up, and industrial production."",""researcherNotes"":""No detailed C-level executive list beyond Founder & CEO was found on the website; LinkedIn page was not accessible for detailed executive info."",""sectorDescription"":""Operates in the eco-extraction and biocontrol sector, providing natural plant-based solutions and technologies for agriculture, cosmetics, and food industries."",""sources"":{""clientCategories"":""http://www.antofenol.com/nos-solutions"",""companyDescription"":""http://www.antofenol.com/"",""geographicFocus"":""http://www.antofenol.com/contact"",""keyExecutives"":""https://antofenol.com/en/the-company/"",""productDescription"":""http://www.antofenol.com/nos-solutions""},""websiteURL"":""http://www.antofenol.com/""}" -Earth Rover,https://www.earthrover.farm/,Par Equity,earthrover.farm,https://www.linkedin.com/company/earth-rover,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.earthrover.farm/"", - ""companyDescription"": ""Focused on making farming and food production sustainable and accessible to everyone using smart innovative technologies, AI, and robotics. To make fresh, chemical-free produce the new norm for all, harnessing advanced robotics and AI used to explore other planets to transform food growth on Earth."", - ""productDescription"": ""CLAWS™ offers the Lightweeder™, an autonomous weeding and scouting robot with 8 built-in cameras that identifies individual plants and collects real-time crop data. It is 100% battery and solar-powered, working autonomously across terrains and weather conditions. The Lightweeder™ targets individual weeds with a concentrated pulse of light energy, replacing herbicides, causing no greenhouse gas emissions, preserving soil health by zero tillage, and preventing root damage. It has been independently tested by Niab for weed control including chemically resistant weeds. CLAWS™ also provides scouting services with advanced image processing to scan fields, build digital farm replicas, and deliver early, targeted crop management recommendations through its Farm Control and Intelligence System (FC&IS)."", - ""clientCategories"": [""Farm operators"", ""Agricultural businesses"", ""Early adopters interested in robotic farming technology""], - ""sectorDescription"": ""Operates in the agriculture technology sector, delivering AI-driven robotic solutions for sustainable farming and chemical-free crop production."", - ""geographicFocus"": ""HQ: UK Headquarters at Agri Epi Centre Ltd, Poultry Drive, Edgmond, Newport, Shropshire, England, TF10 8JZ; Europe R&D Hub at Carrer d’Esteve Terrades, 1, Edif. RDIT Oficina 015, Parc UPC-PMT, 08860 Castelldefels, Barcelona; UK R&D Hub at Pollybell Farms, Little Carr Farm, Carr Road, Gringley On The Hill, Doncaster, South Yorkshire, England, DN10 4SN; Sales Focus: UK and Europe"", - ""keyExecutives"": [ - {""name"": ""James Brown"", ""title"": ""Co-Founder, Chair"", ""sourceUrl"": ""https://www.earthrover.farm/about""}, - {""name"": ""James Miller"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.earthrover.farm/about""}, - {""name"": ""Luke Robinson"", ""title"": ""Co-Founder, CSO"", ""sourceUrl"": ""https://www.earthrover.farm/about""}, - {""name"": ""Tomas Pieras"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.earthrover.farm/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents (PDFs, DOCX) were found on the website. Client categories were not explicitly listed in a dedicated section but were inferred from product use and target audience in the Pioneers 2026 page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.earthrover.farm/about"", - ""productDescription"": ""https://www.earthrover.farm/claws"", - ""clientCategories"": ""https://www.earthrover.farm/pioneers-2026"", - ""geographicFocus"": ""https://www.earthrover.farm/contact"", - ""keyExecutives"": ""https://www.earthrover.farm/about"" - } -}","{ - ""websiteURL"": ""https://www.earthrover.farm/"", - ""companyDescription"": ""Focused on making farming and food production sustainable and accessible to everyone using smart innovative technologies, AI, and robotics. To make fresh, chemical-free produce the new norm for all, harnessing advanced robotics and AI used to explore other planets to transform food growth on Earth."", - ""productDescription"": ""CLAWS™ offers the Lightweeder™, an autonomous weeding and scouting robot with 8 built-in cameras that identifies individual plants and collects real-time crop data. It is 100% battery and solar-powered, working autonomously across terrains and weather conditions. The Lightweeder™ targets individual weeds with a concentrated pulse of light energy, replacing herbicides, causing no greenhouse gas emissions, preserving soil health by zero tillage, and preventing root damage. It has been independently tested by Niab for weed control including chemically resistant weeds. CLAWS™ also provides scouting services with advanced image processing to scan fields, build digital farm replicas, and deliver early, targeted crop management recommendations through its Farm Control and Intelligence System (FC&IS)."", - ""clientCategories"": [""Farm operators"", ""Agricultural businesses"", ""Early adopters interested in robotic farming technology""], - ""sectorDescription"": ""Operates in the agriculture technology sector, delivering AI-driven robotic solutions for sustainable farming and chemical-free crop production."", - ""geographicFocus"": ""HQ: UK Headquarters at Agri Epi Centre Ltd, Poultry Drive, Edgmond, Newport, Shropshire, England, TF10 8JZ; Europe R&D Hub at Carrer d’Esteve Terrades, 1, Edif. RDIT Oficina 015, Parc UPC-PMT, 08860 Castelldefels, Barcelona; UK R&D Hub at Pollybell Farms, Little Carr Farm, Carr Road, Gringley On The Hill, Doncaster, South Yorkshire, England, DN10 4SN; Sales Focus: UK and Europe"", - ""keyExecutives"": [ - {""name"": ""James Brown"", ""title"": ""Co-Founder, Chair"", ""sourceUrl"": ""https://www.earthrover.farm/about""}, - {""name"": ""James Miller"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.earthrover.farm/about""}, - {""name"": ""Luke Robinson"", ""title"": ""Co-Founder, CSO"", ""sourceUrl"": ""https://www.earthrover.farm/about""}, - {""name"": ""Tomas Pieras"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.earthrover.farm/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents (PDFs, DOCX) were found on the website. Client categories were not explicitly listed in a dedicated section but were inferred from product use and target audience in the Pioneers 2026 page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.earthrover.farm/about"", - ""productDescription"": ""https://www.earthrover.farm/claws"", - ""clientCategories"": ""https://www.earthrover.farm/pioneers-2026"", - ""geographicFocus"": ""https://www.earthrover.farm/contact"", - ""keyExecutives"": ""https://www.earthrover.farm/about"" - } -}",[],"{ - ""websiteURL"": ""https://www.earthrover.farm"", - ""companyDescription"": ""Earth Rover Limited, founded in 2017 and headquartered in the UK, develops AI-driven robotic technologies aimed at making fresh, chemical-free produce accessible and sustainable for farmers. The company leverages advanced robotics and smart AI, originally developed for space exploration, to transform food production on Earth, reducing chemical dependency and improving farming efficiency across Europe and the UK."", - ""productDescription"": ""Earth Rover's flagship product, CLAWS™, features the Lightweeder™, an autonomous, battery- and solar-powered robot equipped with 8 cameras and AI to identify and target individual weeds with concentrated pulses of light. This replaces herbicides, causes no greenhouse gas emissions, preserves soil health through zero tillage, and protects crops from root damage. CLAWS™ also provides advanced field scouting with digital farm replicas and targeted crop management recommendations via its Farm Control and Intelligence System."", - ""clientCategories"": [ - ""Farm Operators"", - ""Agricultural Businesses"", - ""Early Adopters Interested In Robotic Farming Technology"" - ], - ""sectorDescription"": ""Agriculture technology sector specializing in AI-driven robotic solutions for sustainable and chemical-free farming."", - ""geographicFocus"": ""Primary operations and sales focus in the UK and Europe, with UK headquarters in Shropshire and R&D hubs in the UK and Barcelona, Spain."", - ""keyExecutives"": [ - { - ""name"": ""James Brown"", - ""title"": ""Co-Founder, Chair"", - ""sourceUrl"": ""https://www.earthrover.farm/about"" - }, - { - ""name"": ""James Miller"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.earthrover.farm/about"" - }, - { - ""name"": ""Luke Robinson"", - ""title"": ""Co-Founder, CSO"", - ""sourceUrl"": ""https://www.earthrover.farm/about"" - }, - { - ""name"": ""Tomas Pieras"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.earthrover.farm/about"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed through domain, HQ location, founding year (2017), and product keywords. Some discrepancies in CEO name found in external investment site (David Whitewood vs. James Miller) but company website and recent sources confirm James Miller as CEO. Geographic focus is clear from company site and contact pages. No missing fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.earthrover.farm/about"", - ""productDescription"": ""https://www.earthrover.farm/claws"", - ""clientCategories"": ""https://www.earthrover.farm/pioneers-2026"", - ""geographicFocus"": ""https://www.earthrover.farm/contact"", - ""keyExecutives"": ""https://www.earthrover.farm/about"" - } -}","{""clientCategories"":[""Farm Operators"",""Agricultural Businesses"",""Early Adopters Interested In Robotic Farming Technology""],""companyDescription"":""Earth Rover Limited, founded in 2017 and headquartered in the UK, develops AI-driven robotic technologies aimed at making fresh, chemical-free produce accessible and sustainable for farmers. The company leverages advanced robotics and smart AI, originally developed for space exploration, to transform food production on Earth, reducing chemical dependency and improving farming efficiency across Europe and the UK."",""geographicFocus"":""Primary operations and sales focus in the UK and Europe, with UK headquarters in Shropshire and R&D hubs in the UK and Barcelona, Spain."",""keyExecutives"":[{""name"":""James Brown"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""Co-Founder, Chair""},{""name"":""James Miller"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""CEO""},{""name"":""Luke Robinson"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""Co-Founder, CSO""},{""name"":""Tomas Pieras"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Earth Rover's flagship product, CLAWS™, features the Lightweeder™, an autonomous, battery- and solar-powered robot equipped with 8 cameras and AI to identify and target individual weeds with concentrated pulses of light. This replaces herbicides, causes no greenhouse gas emissions, preserves soil health through zero tillage, and protects crops from root damage. CLAWS™ also provides advanced field scouting with digital farm replicas and targeted crop management recommendations via its Farm Control and Intelligence System."",""researcherNotes"":""Entity disambiguation confirmed through domain, HQ location, founding year (2017), and product keywords. Some discrepancies in CEO name found in external investment site (David Whitewood vs. James Miller) but company website and recent sources confirm James Miller as CEO. Geographic focus is clear from company site and contact pages. No missing fields remain."",""sectorDescription"":""Agriculture technology sector specializing in AI-driven robotic solutions for sustainable and chemical-free farming."",""sources"":{""clientCategories"":""https://www.earthrover.farm/pioneers-2026"",""companyDescription"":""https://www.earthrover.farm/about"",""geographicFocus"":""https://www.earthrover.farm/contact"",""keyExecutives"":""https://www.earthrover.farm/about"",""productDescription"":""https://www.earthrover.farm/claws""},""websiteURL"":""https://www.earthrover.farm""}","Correctness: 90% Completeness: 85% The evaluated information about Earth Rover Limited is largely accurate and supported by multiple authoritative sources. The company was indeed founded in 2017 and is headquartered in Shropshire, UK, with a focus on AI-driven robotic technology for sustainable, chemical-free farming as stated on its official site and UK government records[1][5]. Its flagship product, CLAWS™, featuring the Lightweeder™, matches descriptions found on the company website showcasing its autonomous, AI-powered weed-targeting robot[5]. The sector focus on agri-tech is consistent across sources[1][5]. Leadership data mostly align with company sources confirming James Miller as CEO, James Brown as Chair and Co-Founder, Luke Robinson as Co-Founder and CSO, and Tomas Pieras as CTO, although one external investment site listed a different CEO (David Whitewood), which appears outdated and less authoritative than direct company disclosures[5][2]. The geographic focus on the UK and Europe is confirmed across company contact pages and related materials[5]. However, completeness is slightly reduced as some details such as the exact operational status of R&D hubs in Barcelona and comprehensive funding history are missing or unconfirmed in available sources. Also, the CEO discrepancy highlights a minor correctness uncertainty, though resolved by recency and source type. Company number, incorporation date, and registered office are verified with Companies House[1]. Overall, the profile is factually correct with minor gaps and some conflicting external data on leadership that are resolved by prioritizing primary sources. Key sources include the company website and UK Companies House filings dated through 2024 and 2025[1][5].","{""clientCategories"":[""Farm operators"",""Agricultural businesses"",""Early adopters interested in robotic farming technology""],""companyDescription"":""Focused on making farming and food production sustainable and accessible to everyone using smart innovative technologies, AI, and robotics. To make fresh, chemical-free produce the new norm for all, harnessing advanced robotics and AI used to explore other planets to transform food growth on Earth."",""geographicFocus"":""HQ: UK Headquarters at Agri Epi Centre Ltd, Poultry Drive, Edgmond, Newport, Shropshire, England, TF10 8JZ; Europe R&D Hub at Carrer d’Esteve Terrades, 1, Edif. RDIT Oficina 015, Parc UPC-PMT, 08860 Castelldefels, Barcelona; UK R&D Hub at Pollybell Farms, Little Carr Farm, Carr Road, Gringley On The Hill, Doncaster, South Yorkshire, England, DN10 4SN; Sales Focus: UK and Europe"",""keyExecutives"":[{""name"":""James Brown"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""Co-Founder, Chair""},{""name"":""James Miller"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""CEO""},{""name"":""Luke Robinson"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""Co-Founder, CSO""},{""name"":""Tomas Pieras"",""sourceUrl"":""https://www.earthrover.farm/about"",""title"":""CTO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""CLAWS™ offers the Lightweeder™, an autonomous weeding and scouting robot with 8 built-in cameras that identifies individual plants and collects real-time crop data. It is 100% battery and solar-powered, working autonomously across terrains and weather conditions. The Lightweeder™ targets individual weeds with a concentrated pulse of light energy, replacing herbicides, causing no greenhouse gas emissions, preserving soil health by zero tillage, and preventing root damage. It has been independently tested by Niab for weed control including chemically resistant weeds. CLAWS™ also provides scouting services with advanced image processing to scan fields, build digital farm replicas, and deliver early, targeted crop management recommendations through its Farm Control and Intelligence System (FC&IS)."",""researcherNotes"":""No linked documents (PDFs, DOCX) were found on the website. Client categories were not explicitly listed in a dedicated section but were inferred from product use and target audience in the Pioneers 2026 page."",""sectorDescription"":""Operates in the agriculture technology sector, delivering AI-driven robotic solutions for sustainable farming and chemical-free crop production."",""sources"":{""clientCategories"":""https://www.earthrover.farm/pioneers-2026"",""companyDescription"":""https://www.earthrover.farm/about"",""geographicFocus"":""https://www.earthrover.farm/contact"",""keyExecutives"":""https://www.earthrover.farm/about"",""productDescription"":""https://www.earthrover.farm/claws""},""websiteURL"":""https://www.earthrover.farm/""}" -Quanturi Oy,https://quanturi.com/,"Demeter Partners, VTT Ventures",quanturi.com,https://www.linkedin.com/company/quanturi-oy,"{""seniorLeadership"":[{""name"":""Nadine Pesonen"",""title"":""CEO - Quanturi Inc"",""linkedinUrl"":""https://www.linkedin.com/in/nadine-pesonen-807a158""},{""name"":""Geet Raju"",""title"":""Head of Research And Development"",""linkedinUrl"":""https://www.linkedin.com/in/geetraju1""},{""name"":""Brett Saxby"",""title"":""Vice President of Sales and Marketing"",""linkedinUrl"":""https://www.linkedin.com/in/brett-saxby""},{""name"":""Niina Laakso"",""title"":""Executive Manager"",""linkedinUrl"":""https://www.linkedin.com/in/niina-laakso-0a1a79144""}]}","{""seniorLeadership"":[{""name"":""Nadine Pesonen"",""title"":""CEO - Quanturi Inc"",""linkedinUrl"":""https://www.linkedin.com/in/nadine-pesonen-807a158""},{""name"":""Geet Raju"",""title"":""Head of Research And Development"",""linkedinUrl"":""https://www.linkedin.com/in/geetraju1""},{""name"":""Brett Saxby"",""title"":""Vice President of Sales and Marketing"",""linkedinUrl"":""https://www.linkedin.com/in/brett-saxby""},{""name"":""Niina Laakso"",""title"":""Executive Manager"",""linkedinUrl"":""https://www.linkedin.com/in/niina-laakso-0a1a79144""}]}","{ - ""websiteURL"": ""https://quanturi.com/"", - ""companyDescription"": ""Quanturi Ltd is a Finnish AgTech company founded in 2016, pioneering connected sensors and IoT for Smart Farming. Their mission is to ensure fermentable materials are safe and of the highest quality. They provide advanced technologies and data services to the farming and forest industries. Quanturi is committed to data transparency, security, and ethics, holding the 'Data-Agri' label issued by French farming organizations."", - ""productDescription"": ""Quanturi offers connected sensor IoT solutions for monitoring fermentable materials. Core products include:\n- HAYTECH, an easy-to-use hay temperature monitoring system with wireless probes, base station, repeater, and online service with alert messaging and temperature visualization.\n- Compost monitoring software that visualizes and analyzes composting phases via continuous temperature data, providing traceable reports and compliance with national standards.\n- HAYTECH Enterprise, a comprehensive version for large-scale operations featuring advanced analytics and stock management."", - ""clientCategories"": [""Agricultural producers"", ""Livestock feed providers"", ""Industrial users of temperature monitoring systems"", ""Distributors in Italy, Austria, Germany, Australia""], - ""sectorDescription"": ""Operates in the AgTech sector, specializing in connected sensor IoT systems for monitoring and improving the safety and quality of fermentable materials in farming and forestry."", - ""geographicFocus"": ""HQ: Töölöntorinkatu 2B, 00260 Helsinki, Finland; Additional offices in Brans, France and Palo Alto, California, USA; Sales presence in Finland, France, Germany (DACH region), Spain, Italy, and the USA."", - ""keyExecutives"": [ - {""name"": ""Nadine Pesonen"", ""title"": ""Co-founder & CEO"", ""sourceUrl"": ""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable documents such as PDFs or DOCX were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://quanturi.com/pages/about-us"", - ""productDescription"": ""https://quanturi.com/pages/haytech, https://quanturi.com/pages/compost-en"", - ""clientCategories"": ""https://quanturi.com/pages/stories"", - ""geographicFocus"": ""https://quanturi.com/pages/contact-us"", - ""keyExecutives"": ""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"" - } -}","{ - ""websiteURL"": ""https://quanturi.com/"", - ""companyDescription"": ""Quanturi Ltd is a Finnish AgTech company founded in 2016, pioneering connected sensors and IoT for Smart Farming. Their mission is to ensure fermentable materials are safe and of the highest quality. They provide advanced technologies and data services to the farming and forest industries. Quanturi is committed to data transparency, security, and ethics, holding the 'Data-Agri' label issued by French farming organizations."", - ""productDescription"": ""Quanturi offers connected sensor IoT solutions for monitoring fermentable materials. Core products include:\n- HAYTECH, an easy-to-use hay temperature monitoring system with wireless probes, base station, repeater, and online service with alert messaging and temperature visualization.\n- Compost monitoring software that visualizes and analyzes composting phases via continuous temperature data, providing traceable reports and compliance with national standards.\n- HAYTECH Enterprise, a comprehensive version for large-scale operations featuring advanced analytics and stock management."", - ""clientCategories"": [""Agricultural producers"", ""Livestock feed providers"", ""Industrial users of temperature monitoring systems"", ""Distributors in Italy, Austria, Germany, Australia""], - ""sectorDescription"": ""Operates in the AgTech sector, specializing in connected sensor IoT systems for monitoring and improving the safety and quality of fermentable materials in farming and forestry."", - ""geographicFocus"": ""HQ: Töölöntorinkatu 2B, 00260 Helsinki, Finland; Additional offices in Brans, France and Palo Alto, California, USA; Sales presence in Finland, France, Germany (DACH region), Spain, Italy, and the USA."", - ""keyExecutives"": [ - {""name"": ""Nadine Pesonen"", ""title"": ""Co-founder & CEO"", ""sourceUrl"": ""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable documents such as PDFs or DOCX were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://quanturi.com/pages/about-us"", - ""productDescription"": ""https://quanturi.com/pages/haytech, https://quanturi.com/pages/compost-en"", - ""clientCategories"": ""https://quanturi.com/pages/stories"", - ""geographicFocus"": ""https://quanturi.com/pages/contact-us"", - ""keyExecutives"": ""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"" - } -}",[],"{ - ""websiteURL"": ""https://quanturi.com"", - ""companyDescription"": ""Quanturi Ltd is a Finnish AgTech company founded in 2016, pioneering connected sensors and IoT for Smart Farming. Their mission is to ensure fermentable materials are safe and of the highest quality. They provide advanced technologies and data services to farming and forest industries and are committed to data transparency, security, and ethics, evidenced by holding the 'Data-Agri' label issued by French farming organizations."", - ""productDescription"": ""Quanturi offers connected sensor IoT solutions for monitoring fermentable materials. Core products include HAYTECH, a hay temperature monitoring system with wireless probes and alert messaging; compost monitoring software that analyzes compost phases via continuous temperature data and ensures compliance with national standards; and HAYTECH Enterprise for large-scale operations with advanced analytics and stock management."", - ""clientCategories"": [ - ""Agricultural Producers"", - ""Livestock Feed Providers"", - ""Industrial Users of Temperature Monitoring Systems"", - ""Distributors in Italy"", - ""Distributors in Austria"", - ""Distributors in Germany"", - ""Distributors in Australia"" - ], - ""sectorDescription"": ""AgTech sector specializing in connected sensor IoT systems for monitoring and improving the safety and quality of fermentable materials in farming and forestry."", - ""geographicFocus"": ""Headquartered in Helsinki, Finland, with offices in Brans, France, and Palo Alto, California, USA, and sales presence in Finland, France, Germany, Spain, Italy, and the USA."", - ""keyExecutives"": [ - { - ""name"": ""Nadine Pesonen"", - ""title"": ""Co-founder & CEO"", - ""sourceUrl"": ""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"" - }, - { - ""name"": ""Geet Raju"", - ""title"": ""Head of Research And Development"", - ""sourceUrl"": ""https://www.linkedin.com/in/geetraju1"" - }, - { - ""name"": ""Brett Saxby"", - ""title"": ""Vice President of Sales and Marketing"", - ""sourceUrl"": ""https://www.linkedin.com/in/brett-saxby"" - }, - { - ""name"": ""Niina Laakso"", - ""title"": ""Executive Manager"", - ""sourceUrl"": ""https://www.linkedin.com/in/niina-laakso-0a1a79144"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain (quanturi.com), Finnish HQ, founding year 2016, and AgTech focus on fermentable materials IoT solutions. Executive information supplemented from LinkedIn for three additional senior roles beyond the CEO. Geographic footprint detailed on official site. No downloadable documents found on the website. Provided data is consistent and cross-verified with company-controlled sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://quanturi.com/pages/about-us"", - ""productDescription"": ""https://quanturi.com/pages/haytech, https://quanturi.com/pages/compost-en"", - ""clientCategories"": ""https://quanturi.com/pages/stories"", - ""geographicFocus"": ""https://quanturi.com/pages/contact-us"", - ""keyExecutives"": ""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"" - } -}","{""clientCategories"":[""Agricultural Producers"",""Livestock Feed Providers"",""Industrial Users of Temperature Monitoring Systems"",""Distributors in Italy"",""Distributors in Austria"",""Distributors in Germany"",""Distributors in Australia""],""companyDescription"":""Quanturi Ltd is a Finnish AgTech company founded in 2016, pioneering connected sensors and IoT for Smart Farming. Their mission is to ensure fermentable materials are safe and of the highest quality. They provide advanced technologies and data services to farming and forest industries and are committed to data transparency, security, and ethics, evidenced by holding the 'Data-Agri' label issued by French farming organizations."",""geographicFocus"":""Headquartered in Helsinki, Finland, with offices in Brans, France, and Palo Alto, California, USA, and sales presence in Finland, France, Germany, Spain, Italy, and the USA."",""keyExecutives"":[{""name"":""Nadine Pesonen"",""sourceUrl"":""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"",""title"":""Co-founder & CEO""},{""name"":""Geet Raju"",""sourceUrl"":""https://www.linkedin.com/in/geetraju1"",""title"":""Head of Research And Development""},{""name"":""Brett Saxby"",""sourceUrl"":""https://www.linkedin.com/in/brett-saxby"",""title"":""Vice President of Sales and Marketing""},{""name"":""Niina Laakso"",""sourceUrl"":""https://www.linkedin.com/in/niina-laakso-0a1a79144"",""title"":""Executive Manager""}],""missingImportantFields"":[],""productDescription"":""Quanturi offers connected sensor IoT solutions for monitoring fermentable materials. Core products include HAYTECH, a hay temperature monitoring system with wireless probes and alert messaging; compost monitoring software that analyzes compost phases via continuous temperature data and ensures compliance with national standards; and HAYTECH Enterprise for large-scale operations with advanced analytics and stock management."",""researcherNotes"":""Company identity confirmed by domain (quanturi.com), Finnish HQ, founding year 2016, and AgTech focus on fermentable materials IoT solutions. Executive information supplemented from LinkedIn for three additional senior roles beyond the CEO. Geographic footprint detailed on official site. No downloadable documents found on the website. Provided data is consistent and cross-verified with company-controlled sources."",""sectorDescription"":""AgTech sector specializing in connected sensor IoT systems for monitoring and improving the safety and quality of fermentable materials in farming and forestry."",""sources"":{""clientCategories"":""https://quanturi.com/pages/stories"",""companyDescription"":""https://quanturi.com/pages/about-us"",""geographicFocus"":""https://quanturi.com/pages/contact-us"",""keyExecutives"":""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"",""productDescription"":""https://quanturi.com/pages/haytech, https://quanturi.com/pages/compost-en""},""websiteURL"":""https://quanturi.com""}","Correctness: 100% Completeness: 95% The provided details about Quanturi Ltd are factually correct and well supported by multiple company-controlled official sources. Quanturi is a Finnish AgTech company founded in 2016 focused on connected sensors and IoT solutions for monitoring fermentable materials, with a mission to ensure safety and quality in farming and forestry[1][3]. The identified headquarters in Helsinki, Finland, with offices in France and the USA, and sales presence in key European countries and the USA are consistent with the official site information[3]. Key executives, including Nadine Pesonen as Co-founder & CEO and other senior leaders, align with verified LinkedIn profiles and interview sources[2]. The product suite—HAYTECH for hay temperature monitoring, compost monitoring software, and HAYTECH Enterprise—matches the descriptions on Quanturi’s official pages[1][3]. The only minor incompleteness is the absence of recent downloadable documents or explicit mention of recent milestones in the last 12 months, slightly reducing completeness, but all fundamental data points are present and accurately represented. No conflicts or unsupported claims are detected. https://quanturi.com/pages/about-us https://agriexpo.online/soc/quanturi-176814.html https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/","{""clientCategories"":[""Agricultural producers"",""Livestock feed providers"",""Industrial users of temperature monitoring systems"",""Distributors in Italy, Austria, Germany, Australia""],""companyDescription"":""Quanturi Ltd is a Finnish AgTech company founded in 2016, pioneering connected sensors and IoT for Smart Farming. Their mission is to ensure fermentable materials are safe and of the highest quality. They provide advanced technologies and data services to the farming and forest industries. Quanturi is committed to data transparency, security, and ethics, holding the 'Data-Agri' label issued by French farming organizations."",""geographicFocus"":""HQ: Töölöntorinkatu 2B, 00260 Helsinki, Finland; Additional offices in Brans, France and Palo Alto, California, USA; Sales presence in Finland, France, Germany (DACH region), Spain, Italy, and the USA."",""keyExecutives"":[{""name"":""Nadine Pesonen"",""sourceUrl"":""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"",""title"":""Co-founder & CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Quanturi offers connected sensor IoT solutions for monitoring fermentable materials. Core products include:\n- HAYTECH, an easy-to-use hay temperature monitoring system with wireless probes, base station, repeater, and online service with alert messaging and temperature visualization.\n- Compost monitoring software that visualizes and analyzes composting phases via continuous temperature data, providing traceable reports and compliance with national standards.\n- HAYTECH Enterprise, a comprehensive version for large-scale operations featuring advanced analytics and stock management."",""researcherNotes"":""No downloadable documents such as PDFs or DOCX were found on the website."",""sectorDescription"":""Operates in the AgTech sector, specializing in connected sensor IoT systems for monitoring and improving the safety and quality of fermentable materials in farming and forestry."",""sources"":{""clientCategories"":""https://quanturi.com/pages/stories"",""companyDescription"":""https://quanturi.com/pages/about-us"",""geographicFocus"":""https://quanturi.com/pages/contact-us"",""keyExecutives"":""https://voimaventures.com/founders-spotlight-nadine-pesonen-co-founder-ceo-of-quanturi/"",""productDescription"":""https://quanturi.com/pages/haytech, https://quanturi.com/pages/compost-en""},""websiteURL"":""https://quanturi.com/""}" -Eclo,https://eclo.farm,"Gogreen Capital, Investsud, Meusinvest (Noshaq)",eclo.farm,https://www.linkedin.com/company/eclo-farm,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://eclo.farm"", - ""companyDescription"": ""Eclo's mission is to grow high quality exotic mushroom substrates for European producers. They emphasize organic certification and circular economy by using organic waste materials."", - ""productDescription"": ""Eclo specializes in producing high quality exotic mushroom substrates for growers in Europe."", - ""clientCategories"": [""European mushroom producers""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in organic and sustainable substrates for gourmet mushroom cultivation."", - ""geographicFocus"": ""HQ: 109, Rue de Waremme, 4530 Villers-le-Bouillet, Belgium; Sales Focus: European producers"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information on founders or C-level executives was found on the company website or through initial external searches."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://eclo.farm/about-us"", - ""productDescription"": ""https://eclo.farm/products"", - ""clientCategories"": ""https://eclo.farm/"", - ""geographicFocus"": ""https://eclo.farm/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://eclo.farm"", - ""companyDescription"": ""Eclo's mission is to grow high quality exotic mushroom substrates for European producers. They emphasize organic certification and circular economy by using organic waste materials."", - ""productDescription"": ""Eclo specializes in producing high quality exotic mushroom substrates for growers in Europe."", - ""clientCategories"": [""European mushroom producers""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in organic and sustainable substrates for gourmet mushroom cultivation."", - ""geographicFocus"": ""HQ: 109, Rue de Waremme, 4530 Villers-le-Bouillet, Belgium; Sales Focus: European producers"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information on founders or C-level executives was found on the company website or through initial external searches."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://eclo.farm/about-us"", - ""productDescription"": ""https://eclo.farm/products"", - ""clientCategories"": ""https://eclo.farm/"", - ""geographicFocus"": ""https://eclo.farm/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://eclo.farm"", - ""companyDescription"": ""Eclo is a Belgian agricultural biotechnology company specializing in the production of high-quality exotic mushroom substrates for European growers. The company emphasizes organic certification and circular economy principles by using organic waste materials such as sawdust, wheat bran, and leftover bread from food industry by-products. Eclo aims to position itself as a major player in the European mushroom substrate market, serving producers primarily in Belgium, France, the Netherlands, Germany, and Switzerland."", - ""productDescription"": ""Eclo produces organic certified, sterilized exotic mushroom substrates using high-tech industrial processes including autoclave sterilization and precise climate control to ensure biosecurity and product quality. Their substrates are designed to optimize mycelium growth for gourmet mushrooms such as shiitake, eryngii, nameko, maitake, and pompom. The company’s substrates support European mushroom producers by providing reliable, contamination-free, and traceable growing media."", - ""clientCategories"": [ - ""European Mushroom Producers"" - ], - ""sectorDescription"": ""Agricultural biotechnology focused on organic and sustainable substrates for gourmet mushroom cultivation in Europe."", - ""geographicFocus"": ""Primary focus on European producers in Belgium, France, the Netherlands, Germany, and Switzerland."", - ""keyExecutives"": [ - { - ""name"": ""Hadrien Velge"", - ""title"": ""CEO & Founder"", - ""sourceUrl"": ""https://techfundingnews.com/eclo-gobbles-up-e4-7m-to-create-organic-mushroom-substrate-factory/"" - } - ], - ""researcherNotes"": ""The company is confirmed as the same entity by matching domain (eclo.farm), headquarters in Belgium (Villers-le-Bouillet), and product specialization in organic exotic mushroom substrates. CEO & Founder Hadrien Velge was identified through a recent funding announcement. No other senior leadership information was found despite searches on the company website and LinkedIn. The geographic footprint is primarily Europe, including Belgium, France, Netherlands, Germany, and Switzerland, as supported by public sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://eclo.farm/about-us"", - ""productDescription"": ""https://eclo.farm/products"", - ""clientCategories"": ""https://eclo.farm/"", - ""geographicFocus"": ""https://igrownews.com/eclo-raises-e4-7m-for-high-tech-circular-organic-mushroom-substrate-factory/"", - ""keyExecutives"": ""https://techfundingnews.com/eclo-gobbles-up-e4-7m-to-create-organic-mushroom-substrate-factory/"" - } -}","{""clientCategories"":[""European Mushroom Producers""],""companyDescription"":""Eclo is a Belgian agricultural biotechnology company specializing in the production of high-quality exotic mushroom substrates for European growers. The company emphasizes organic certification and circular economy principles by using organic waste materials such as sawdust, wheat bran, and leftover bread from food industry by-products. Eclo aims to position itself as a major player in the European mushroom substrate market, serving producers primarily in Belgium, France, the Netherlands, Germany, and Switzerland."",""geographicFocus"":""Primary focus on European producers in Belgium, France, the Netherlands, Germany, and Switzerland."",""keyExecutives"":[{""name"":""Hadrien Velge"",""sourceUrl"":""https://techfundingnews.com/eclo-gobbles-up-e4-7m-to-create-organic-mushroom-substrate-factory/"",""title"":""CEO & Founder""}],""missingImportantFields"":[],""productDescription"":""Eclo produces organic certified, sterilized exotic mushroom substrates using high-tech industrial processes including autoclave sterilization and precise climate control to ensure biosecurity and product quality. Their substrates are designed to optimize mycelium growth for gourmet mushrooms such as shiitake, eryngii, nameko, maitake, and pompom. The company’s substrates support European mushroom producers by providing reliable, contamination-free, and traceable growing media."",""researcherNotes"":""The company is confirmed as the same entity by matching domain (eclo.farm), headquarters in Belgium (Villers-le-Bouillet), and product specialization in organic exotic mushroom substrates. CEO & Founder Hadrien Velge was identified through a recent funding announcement. No other senior leadership information was found despite searches on the company website and LinkedIn. The geographic footprint is primarily Europe, including Belgium, France, Netherlands, Germany, and Switzerland, as supported by public sources."",""sectorDescription"":""Agricultural biotechnology focused on organic and sustainable substrates for gourmet mushroom cultivation in Europe."",""sources"":{""clientCategories"":""https://eclo.farm/"",""companyDescription"":""https://eclo.farm/about-us"",""geographicFocus"":""https://igrownews.com/eclo-raises-e4-7m-for-high-tech-circular-organic-mushroom-substrate-factory/"",""keyExecutives"":""https://techfundingnews.com/eclo-gobbles-up-e4-7m-to-create-organic-mushroom-substrate-factory/"",""productDescription"":""https://eclo.farm/products""},""websiteURL"":""https://eclo.farm""}","Correctness: 98% Completeness: 95% The information is highly accurate and well-supported across multiple sources. Eclo is confirmed as a Belgian agricultural biotech company specializing in organic certified exotic mushroom substrates made from organic waste such as sawdust, wheat bran, brewery and bread remnants, aligning with circular economy principles (igrownews.com[1]; eclo.farm[3]; techfundingnews.com[2]; trendwatching.com[4]). The CEO and founder is Hadrien Velge, confirmed in a recent 2022 funding announcement (techfundingnews.com[2]). The company’s substrate production is moving to a new high-tech 4200 sqm factory in Villers-le-Bouillet, Belgium, with phased capacity expansions planned through 2026, serving primarily European markets including Belgium, France, Netherlands, Germany, and Switzerland (igrownews.com[1]; techfundingnews.com[2]). The substrates support growth of gourmet mushrooms such as shiitake, eryngii, nameko, maitake, and pompom, with industrial sterilization and climate control processes ensuring biosecurity and quality (eclo.farm[3]). The funding round of €4.7M and the company’s urban farm origins in Brussels are documented (techfundingnews.com[2]). Some minor gaps remain, such as absence of other senior leadership details and explicit product volume metrics beyond projections, but these do not materially detract from the core profile. The company’s footprint, CEO identity, products, funding, and commitment to organic/circular methods are robustly verified as of late 2022/early 2023. https://techfundingnews.com/eclo-gobbles-up-e4-7m-to-create-organic-mushroom-substrate-factory/ https://igrownews.com/eclo-raises-e4-7m-for-high-tech-circular-organic-mushroom-substrate-factory/ https://eclo.farm https://www.trendwatching.com/innovation-of-the-day/organic-supermarket-chain-sells-mushrooms-grown-on-its-unsold-bread","{""clientCategories"":[""European mushroom producers""],""companyDescription"":""Eclo's mission is to grow high quality exotic mushroom substrates for European producers. They emphasize organic certification and circular economy by using organic waste materials."",""geographicFocus"":""HQ: 109, Rue de Waremme, 4530 Villers-le-Bouillet, Belgium; Sales Focus: European producers"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Eclo specializes in producing high quality exotic mushroom substrates for growers in Europe."",""researcherNotes"":""No information on founders or C-level executives was found on the company website or through initial external searches."",""sectorDescription"":""Operates in the agricultural biotechnology sector, specializing in organic and sustainable substrates for gourmet mushroom cultivation."",""sources"":{""clientCategories"":""https://eclo.farm/"",""companyDescription"":""https://eclo.farm/about-us"",""geographicFocus"":""https://eclo.farm/contact"",""keyExecutives"":null,""productDescription"":""https://eclo.farm/products""},""websiteURL"":""https://eclo.farm""}" -Protealis,https://www.protealis.com/,V-Bio Ventures,protealis.com,https://www.linkedin.com/company/protealis,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ ""websiteURL"": ""https://www.protealis.com/"", ""companyDescription"": ""Protealis' mission is to grow more sustainable plant-based proteins locally by harvesting the potential of legume crops. They aim to be the best supplier of germplasm for sustainable plant proteins in Europe, creating new opportunities for European farmers to overcome Europe's protein deficit and meet rising demand for meat and dairy substitutes. Their identity is tied to innovation in breeding technologies and proprietary seed coatings, focusing on sustainability and local European agriculture. Protealis is a spin-off of research institutes VIB and ILVO, located in Ghent, Belgium, and operates as a commercial-stage biotechnology company specializing in legume crops and seed technologies."", ""productDescription"": ""Protealis specializes in local plant protein legumes for Europe, offering high-performance legume seeds that boost yield and protein while minimizing ecological footprint. Their core products include early-maturing 000-group soybean varieties with up to 46g protein per 100g, ideal for Central Europe, and yellow pea varieties designed for high yield, high protein, and food applications. They focus on sustainable protein crops that do not require nitrogen fertilizer and improve soil."", ""clientCategories"": [""Farmers"", ""Distributors""], ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in sustainable legume crops and seed technology for plant-based protein production in Europe."", ""geographicFocus"": ""HQ: Technologiepark-Zwijnaarde 94, 9052 Ghent, Belgium; Sales Focus: Germany (North and South), Austria, Hungary, Italy."", ""keyExecutives"": [ { ""name"": ""David Buckeridge"", ""title"": ""Chairman"", ""sourceUrl"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" }, { ""name"": ""Benjamin Laga"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" } ], ""linkedDocuments"": [], ""researcherNotes"": ""No downloadable document links such as PDFs were found on the website."", ""missingImportantFields"": [], ""sources"": { ""companyDescription"": ""https://www.protealis.com/our-story"", ""productDescription"": ""https://www.protealis.com/products"", ""clientCategories"": ""https://www.protealis.com/farmers"", ""geographicFocus"": ""https://www.protealis.com/contact"", ""keyExecutives"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" }}","{ ""websiteURL"": ""https://www.protealis.com/"", ""companyDescription"": ""Protealis' mission is to grow more sustainable plant-based proteins locally by harvesting the potential of legume crops. They aim to be the best supplier of germplasm for sustainable plant proteins in Europe, creating new opportunities for European farmers to overcome Europe's protein deficit and meet rising demand for meat and dairy substitutes. Their identity is tied to innovation in breeding technologies and proprietary seed coatings, focusing on sustainability and local European agriculture. Protealis is a spin-off of research institutes VIB and ILVO, located in Ghent, Belgium, and operates as a commercial-stage biotechnology company specializing in legume crops and seed technologies."", ""productDescription"": ""Protealis specializes in local plant protein legumes for Europe, offering high-performance legume seeds that boost yield and protein while minimizing ecological footprint. Their core products include early-maturing 000-group soybean varieties with up to 46g protein per 100g, ideal for Central Europe, and yellow pea varieties designed for high yield, high protein, and food applications. They focus on sustainable protein crops that do not require nitrogen fertilizer and improve soil."", ""clientCategories"": [""Farmers"", ""Distributors""], ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in sustainable legume crops and seed technology for plant-based protein production in Europe."", ""geographicFocus"": ""HQ: Technologiepark-Zwijnaarde 94, 9052 Ghent, Belgium; Sales Focus: Germany (North and South), Austria, Hungary, Italy."", ""keyExecutives"": [ { ""name"": ""David Buckeridge"", ""title"": ""Chairman"", ""sourceUrl"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" }, { ""name"": ""Benjamin Laga"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" } ], ""linkedDocuments"": [], ""researcherNotes"": ""No downloadable document links such as PDFs were found on the website."", ""missingImportantFields"": [], ""sources"": { ""companyDescription"": ""https://www.protealis.com/our-story"", ""productDescription"": ""https://www.protealis.com/products"", ""clientCategories"": ""https://www.protealis.com/farmers"", ""geographicFocus"": ""https://www.protealis.com/contact"", ""keyExecutives"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" }}",[],"{ - ""websiteURL"": ""https://www.protealis.com"", - ""companyDescription"": ""Protealis' mission is to grow more sustainable plant-based proteins locally by harvesting the potential of legume crops. They aim to be the best supplier of germplasm for sustainable plant proteins in Europe, creating new opportunities for European farmers to overcome Europe's protein deficit and meet rising demand for meat and dairy substitutes. Their identity is tied to innovation in breeding technologies and proprietary seed coatings, focusing on sustainability and local European agriculture. Protealis is a spin-off of research institutes VIB and ILVO, located in Ghent, Belgium, and operates as a commercial-stage biotechnology company specializing in legume crops and seed technologies."", - ""productDescription"": ""Protealis specializes in local plant protein legumes for Europe, offering high-performance legume seeds that boost yield and protein while minimizing ecological footprint. Their core products include early-maturing 000-group soybean varieties with up to 46g protein per 100g, ideal for Central Europe, and yellow pea varieties designed for high yield, high protein, and food applications. They focus on sustainable protein crops that do not require nitrogen fertilizer and improve soil."", - ""clientCategories"": [ - ""Farmers"", - ""Distributors"" - ], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in sustainable legume crops and seed technology for plant-based protein production in Europe."", - ""geographicFocus"": ""HQ: Technologiepark-Zwijnaarde 94, 9052 Ghent, Belgium; Sales focus on Germany (North and South), Austria, Hungary, and Italy."", - ""keyExecutives"": [ - { - ""name"": ""David Buckeridge"", - ""title"": ""Chairman"", - ""sourceUrl"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" - }, - { - ""name"": ""Benjamin Laga"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" - } - ], - ""researcherNotes"": ""Company identity was confirmed by domain, location (Ghent, Belgium), and specialized focus on legume crops for sustainable plant proteins in Europe. Leadership information corroborated from company press releases. Geographic focus verified via company contact pages and descriptions. No senior leadership changes or additional executives found on LinkedIn or other sources. No downloadable documents found on website. The board includes Hartmut van Lengerich as of April 2024, but he is not listed under key executives per schema rules."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.protealis.com/our-story"", - ""productDescription"": ""https://www.protealis.com/products"", - ""clientCategories"": ""https://www.protealis.com/farmers"", - ""geographicFocus"": ""https://www.protealis.com/contact"", - ""keyExecutives"": ""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"" - } -}","{""clientCategories"":[""Farmers"",""Distributors""],""companyDescription"":""Protealis' mission is to grow more sustainable plant-based proteins locally by harvesting the potential of legume crops. They aim to be the best supplier of germplasm for sustainable plant proteins in Europe, creating new opportunities for European farmers to overcome Europe's protein deficit and meet rising demand for meat and dairy substitutes. Their identity is tied to innovation in breeding technologies and proprietary seed coatings, focusing on sustainability and local European agriculture. Protealis is a spin-off of research institutes VIB and ILVO, located in Ghent, Belgium, and operates as a commercial-stage biotechnology company specializing in legume crops and seed technologies."",""geographicFocus"":""HQ: Technologiepark-Zwijnaarde 94, 9052 Ghent, Belgium; Sales focus on Germany (North and South), Austria, Hungary, and Italy."",""keyExecutives"":[{""name"":""David Buckeridge"",""sourceUrl"":""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"",""title"":""Chairman""},{""name"":""Benjamin Laga"",""sourceUrl"":""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Protealis specializes in local plant protein legumes for Europe, offering high-performance legume seeds that boost yield and protein while minimizing ecological footprint. Their core products include early-maturing 000-group soybean varieties with up to 46g protein per 100g, ideal for Central Europe, and yellow pea varieties designed for high yield, high protein, and food applications. They focus on sustainable protein crops that do not require nitrogen fertilizer and improve soil."",""researcherNotes"":""Company identity was confirmed by domain, location (Ghent, Belgium), and specialized focus on legume crops for sustainable plant proteins in Europe. Leadership information corroborated from company press releases. Geographic focus verified via company contact pages and descriptions. No senior leadership changes or additional executives found on LinkedIn or other sources. No downloadable documents found on website. The board includes Hartmut van Lengerich as of April 2024, but he is not listed under key executives per schema rules."",""sectorDescription"":""Operates in the agricultural biotechnology sector, specializing in sustainable legume crops and seed technology for plant-based protein production in Europe."",""sources"":{""clientCategories"":""https://www.protealis.com/farmers"",""companyDescription"":""https://www.protealis.com/our-story"",""geographicFocus"":""https://www.protealis.com/contact"",""keyExecutives"":""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"",""productDescription"":""https://www.protealis.com/products""},""websiteURL"":""https://www.protealis.com""}","Correctness: 98% Completeness: 95% The information about Protealis is largely accurate and well-supported. Protealis is indeed a Ghent, Belgium-based spin-off from research institutes VIB and ILVO, launched in early 2021 to promote sustainable plant-based protein production, focusing on legume crops like soybean and yellow peas for the European market[1][2][4][5]. The CEO is Benjamin Laga, confirmed by both company and press releases, and the chairman is David Buckeridge[5]. They emphasize innovation in breeding technologies and proprietary seed coatings to improve yield and protein content while supporting sustainability and local agriculture in Europe[5]. The geographic focus on Central Europe including Germany, Austria, Hungary, and Italy aligns with statements about targeting local adaptation and regional market needs[1][5]. Financial backing and VC involvement with a €6 million seed round and further investments are documented, supporting the company’s growth and technological development[2][3][4]. Minor gaps include no explicit mention of the full current executive team beyond CEO and chairman due to schema rules, and limited publicly available detailed product launch timelines, though core products such as early-maturing soybean varieties with up to 46g protein / 100g and yellow pea varieties are identified[5]. Overall, the data is up-to-date as of 2025 and reflects the company’s stated mission, leadership, geographic focus, and product offerings. Sources: https://www.protealis.com/our-story, https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens, https://www.protealis.com/products, https://ilvo.vlaanderen.be/en/news/researchers-start-company-for-sustainable-and-local-cultivation-of-legumes, https://www.cropib.com/news/article/34/vib-and-ilvo-launch-new-start-protealis-support-sustainable-plant-protien-production","{""clientCategories"":[""Farmers"",""Distributors""],""companyDescription"":""Protealis' mission is to grow more sustainable plant-based proteins locally by harvesting the potential of legume crops. They aim to be the best supplier of germplasm for sustainable plant proteins in Europe, creating new opportunities for European farmers to overcome Europe's protein deficit and meet rising demand for meat and dairy substitutes. Their identity is tied to innovation in breeding technologies and proprietary seed coatings, focusing on sustainability and local European agriculture. Protealis is a spin-off of research institutes VIB and ILVO, located in Ghent, Belgium, and operates as a commercial-stage biotechnology company specializing in legume crops and seed technologies."",""geographicFocus"":""HQ: Technologiepark-Zwijnaarde 94, 9052 Ghent, Belgium; Sales Focus: Germany (North and South), Austria, Hungary, Italy."",""keyExecutives"":[{""name"":""David Buckeridge"",""sourceUrl"":""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"",""title"":""Chairman""},{""name"":""Benjamin Laga"",""sourceUrl"":""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"",""title"":""CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Protealis specializes in local plant protein legumes for Europe, offering high-performance legume seeds that boost yield and protein while minimizing ecological footprint. Their core products include early-maturing 000-group soybean varieties with up to 46g protein per 100g, ideal for Central Europe, and yellow pea varieties designed for high yield, high protein, and food applications. They focus on sustainable protein crops that do not require nitrogen fertilizer and improve soil."",""researcherNotes"":""No downloadable document links such as PDFs were found on the website."",""sectorDescription"":""Operates in the agricultural biotechnology sector, specializing in sustainable legume crops and seed technology for plant-based protein production in Europe."",""sources"":{""clientCategories"":""https://www.protealis.com/farmers"",""companyDescription"":""https://www.protealis.com/our-story"",""geographicFocus"":""https://www.protealis.com/contact"",""keyExecutives"":""https://www.protealis.com/press-releases/appointment-of-david-buckeridge-and-marc-ballekens"",""productDescription"":""https://www.protealis.com/products""},""websiteURL"":""https://www.protealis.com/""}" -Van der Arend Tropical Plantcenter,http://www.tropicenter.com,Synergia Capital Partners,tropicenter.com,https://www.linkedin.com/company/vanderarendtropicalplantcenter,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.tropicenter.com"", - ""companyDescription"": ""Plant World is a company formed from the merger of Van der Arend Tropical Plantcenter, JoGrow, Kwekerij Hoefnagels, and Smit Kwekerijen. They specialize in (sub)tropical plants and Mediterranean trees, many protected by breeders' rights. The company mission is to bring unique plants to people's homes to enhance well-being and living pleasure, focusing on passion, expertise, and sustainable relationships. They operate nurseries in Westland and Groningen, serving customers across Europe and beyond. Plant World is a market leader in (sub)tropical houseplants and hardy palms."", - ""productDescription"": ""Plant World's main product offerings include a wide variety of plants such as Adorables, Aglaonema, Alocasia, Anthurium, Asparagus, Begonia, Brighamia, Calathea, Callisia, Chamaedorea, Chlorophytum, Crassula, Croton, Cyclanthus, Dieffenbachia, Dischidia, Dypsis, Epipremnum, Euphorbia, Ficus, Homalomena, Hoya, Hydrangea, Kalanchoe, Miniplanten 5.5 + 7 cm, Monstera, Peperomia, Philodendron, Pilea, Piper, Polyscias, Rhipsalis, Sansevieria, Schefflera, Scindapsus, Sedum, Senecio, Strelitzia, Syngonium, Tradescantia, Xanthosoma. They also offer collections like Adorables, Begonia Magic Colours, Eden Collection, Eden Hangplanten, Eden Jungles, Eagle Palms, Eden Specials, Eden Seasonals, and Plant World. Pot sizes range from 5 cm to 80 cm."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the horticulture and plant cultivation sector, focusing on indoor and outdoor (sub)tropical plants and Mediterranean trees."", - ""geographicFocus"": ""HQ: West Location: Bonnenlaan 8, 2691 NL 's-Gravenzande, Netherlands; North Location: Siepweg 4, 9611 TJ Sappemeer, Netherlands; Sales Focus: Europe and beyond."", - ""keyExecutives"": [ - { - ""name"": ""Marco Vermeulen"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://plantworld.com/en/marco-vermeulen-nieuwe-algemeen-directeur/"" - }, - { - ""name"": ""Obed Smit"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - }, - { - ""name"": ""Melvin van der Zeijden"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - }, - { - ""name"": ""Tineke Vermeulen-Rehorst"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company Van der Arend Tropical Plantcenter has merged into Plant World. Information was primarily found on the Plant World website as the original site had limited direct detailed data. No explicit client categories were found; hence that field is empty. No direct linked downloadable documents were identified on the domain."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://plantworld.com/over-ons/ons-bedrijf/"", - ""productDescription"": ""https://plantworld.com/alle-planten/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://plantworld.com/contact/"", - ""keyExecutives"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - } -}","{ - ""websiteURL"": ""http://www.tropicenter.com"", - ""companyDescription"": ""Plant World is a company formed from the merger of Van der Arend Tropical Plantcenter, JoGrow, Kwekerij Hoefnagels, and Smit Kwekerijen. They specialize in (sub)tropical plants and Mediterranean trees, many protected by breeders' rights. The company mission is to bring unique plants to people's homes to enhance well-being and living pleasure, focusing on passion, expertise, and sustainable relationships. They operate nurseries in Westland and Groningen, serving customers across Europe and beyond. Plant World is a market leader in (sub)tropical houseplants and hardy palms."", - ""productDescription"": ""Plant World's main product offerings include a wide variety of plants such as Adorables, Aglaonema, Alocasia, Anthurium, Asparagus, Begonia, Brighamia, Calathea, Callisia, Chamaedorea, Chlorophytum, Crassula, Croton, Cyclanthus, Dieffenbachia, Dischidia, Dypsis, Epipremnum, Euphorbia, Ficus, Homalomena, Hoya, Hydrangea, Kalanchoe, Miniplanten 5.5 + 7 cm, Monstera, Peperomia, Philodendron, Pilea, Piper, Polyscias, Rhipsalis, Sansevieria, Schefflera, Scindapsus, Sedum, Senecio, Strelitzia, Syngonium, Tradescantia, Xanthosoma. They also offer collections like Adorables, Begonia Magic Colours, Eden Collection, Eden Hangplanten, Eden Jungles, Eagle Palms, Eden Specials, Eden Seasonals, and Plant World. Pot sizes range from 5 cm to 80 cm."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the horticulture and plant cultivation sector, focusing on indoor and outdoor (sub)tropical plants and Mediterranean trees."", - ""geographicFocus"": ""HQ: West Location: Bonnenlaan 8, 2691 NL 's-Gravenzande, Netherlands; North Location: Siepweg 4, 9611 TJ Sappemeer, Netherlands; Sales Focus: Europe and beyond."", - ""keyExecutives"": [ - { - ""name"": ""Marco Vermeulen"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://plantworld.com/en/marco-vermeulen-nieuwe-algemeen-directeur/"" - }, - { - ""name"": ""Obed Smit"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - }, - { - ""name"": ""Melvin van der Zeijden"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - }, - { - ""name"": ""Tineke Vermeulen-Rehorst"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company Van der Arend Tropical Plantcenter has merged into Plant World. Information was primarily found on the Plant World website as the original site had limited direct detailed data. No explicit client categories were found; hence that field is empty. No direct linked downloadable documents were identified on the domain."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://plantworld.com/over-ons/ons-bedrijf/"", - ""productDescription"": ""https://plantworld.com/alle-planten/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://plantworld.com/contact/"", - ""keyExecutives"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""http://www.tropicenter.com"", - ""companyDescription"": ""Plant World is a company formed from the merger of Van der Arend Tropical Plantcenter, JoGrow, Kwekerij Hoefnagels, and Smit Kwekerijen. They specialize in (sub)tropical plants and Mediterranean trees, many protected by breeders' rights. The company mission is to bring unique plants to people's homes to enhance well-being and living pleasure, focusing on passion, expertise, and sustainable relationships. They operate nurseries in Westland and Groningen, serving customers across Europe and beyond. Plant World is a market leader in (sub)tropical houseplants and hardy palms."", - ""productDescription"": ""Plant World's main product offerings include a wide variety of plants such as Adorables, Aglaonema, Alocasia, Anthurium, Asparagus, Begonia, Brighamia, Calathea, Callisia, Chamaedorea, Chlorophytum, Crassula, Croton, Cyclanthus, Dieffenbachia, Dischidia, Dypsis, Epipremnum, Euphorbia, Ficus, Homalomena, Hoya, Hydrangea, Kalanchoe, Miniplanten 5.5 + 7 cm, Monstera, Peperomia, Philodendron, Pilea, Piper, Polyscias, Rhipsalis, Sansevieria, Schefflera, Scindapsus, Sedum, Senecio, Strelitzia, Syngonium, Tradescantia, Xanthosoma. They also offer collections like Adorables, Begonia Magic Colours, Eden Collection, Eden Hangplanten, Eden Jungles, Eagle Palms, Eden Specials, Eden Seasonals, and Plant World. Pot sizes range from 5 cm to 80 cm."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the horticulture and plant cultivation sector, focusing on indoor and outdoor (sub)tropical plants and Mediterranean trees."", - ""geographicFocus"": ""Headquartered in the Netherlands with nurseries in Westland and Groningen; sales focus covers Europe and extends beyond."", - ""keyExecutives"": [ - { - ""name"": ""Marco Vermeulen"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://plantworld.com/en/marco-vermeulen-nieuwe-algemeen-directeur/"" - }, - { - ""name"": ""Obed Smit"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - }, - { - ""name"": ""Melvin van der Zeijden"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - }, - { - ""name"": ""Tineke Vermeulen-Rehorst"", - ""title"": ""Executive Director"", - ""sourceUrl"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - } - ], - ""researcherNotes"": ""The company Van der Arend Tropical Plantcenter was acquired by Synergia Capital Partners and later merged into Plant World, which now represents the combined entity. The data here is drawn primarily from the Plant World official website and corroborated with press on Van der Arend Tropical Plantcenter's acquisition. Client categories remain unconfirmed. Geographic footprint is primarily European with nurseries in the Netherlands in Westland and Groningen. No conflicting leadership information found. Official sources were prioritized for accuracy."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://plantworld.com/over-ons/ons-bedrijf/"", - ""productDescription"": ""https://plantworld.com/alle-planten/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://plantworld.com/contact/"", - ""keyExecutives"": ""https://plantworld.com/over-ons/ons-bedrijf/"" - } -}","{""clientCategories"":[],""companyDescription"":""Plant World is a company formed from the merger of Van der Arend Tropical Plantcenter, JoGrow, Kwekerij Hoefnagels, and Smit Kwekerijen. They specialize in (sub)tropical plants and Mediterranean trees, many protected by breeders' rights. The company mission is to bring unique plants to people's homes to enhance well-being and living pleasure, focusing on passion, expertise, and sustainable relationships. They operate nurseries in Westland and Groningen, serving customers across Europe and beyond. Plant World is a market leader in (sub)tropical houseplants and hardy palms."",""geographicFocus"":""Headquartered in the Netherlands with nurseries in Westland and Groningen; sales focus covers Europe and extends beyond."",""keyExecutives"":[{""name"":""Marco Vermeulen"",""sourceUrl"":""https://plantworld.com/en/marco-vermeulen-nieuwe-algemeen-directeur/"",""title"":""CEO""},{""name"":""Obed Smit"",""sourceUrl"":""https://plantworld.com/over-ons/ons-bedrijf/"",""title"":""Executive Director""},{""name"":""Melvin van der Zeijden"",""sourceUrl"":""https://plantworld.com/over-ons/ons-bedrijf/"",""title"":""Executive Director""},{""name"":""Tineke Vermeulen-Rehorst"",""sourceUrl"":""https://plantworld.com/over-ons/ons-bedrijf/"",""title"":""Executive Director""}],""missingImportantFields"":[""clientCategories""],""productDescription"":""Plant World's main product offerings include a wide variety of plants such as Adorables, Aglaonema, Alocasia, Anthurium, Asparagus, Begonia, Brighamia, Calathea, Callisia, Chamaedorea, Chlorophytum, Crassula, Croton, Cyclanthus, Dieffenbachia, Dischidia, Dypsis, Epipremnum, Euphorbia, Ficus, Homalomena, Hoya, Hydrangea, Kalanchoe, Miniplanten 5.5 + 7 cm, Monstera, Peperomia, Philodendron, Pilea, Piper, Polyscias, Rhipsalis, Sansevieria, Schefflera, Scindapsus, Sedum, Senecio, Strelitzia, Syngonium, Tradescantia, Xanthosoma. They also offer collections like Adorables, Begonia Magic Colours, Eden Collection, Eden Hangplanten, Eden Jungles, Eagle Palms, Eden Specials, Eden Seasonals, and Plant World. Pot sizes range from 5 cm to 80 cm."",""researcherNotes"":""The company Van der Arend Tropical Plantcenter was acquired by Synergia Capital Partners and later merged into Plant World, which now represents the combined entity. The data here is drawn primarily from the Plant World official website and corroborated with press on Van der Arend Tropical Plantcenter's acquisition. Client categories remain unconfirmed. Geographic footprint is primarily European with nurseries in the Netherlands in Westland and Groningen. No conflicting leadership information found. Official sources were prioritized for accuracy."",""sectorDescription"":""Operates in the horticulture and plant cultivation sector, focusing on indoor and outdoor (sub)tropical plants and Mediterranean trees."",""sources"":{""clientCategories"":null,""companyDescription"":""https://plantworld.com/over-ons/ons-bedrijf/"",""geographicFocus"":""https://plantworld.com/contact/"",""keyExecutives"":""https://plantworld.com/over-ons/ons-bedrijf/"",""productDescription"":""https://plantworld.com/alle-planten/""},""websiteURL"":""http://www.tropicenter.com""}","Correctness: 95% Completeness: 85% The information about Plant World as a merged entity from Van der Arend Tropical Plantcenter, JoGrow, Kwekerij Hoefnagels, and Smit Kwekerijen is confirmed by reports on their merger and acquisition activity supported by Synergia Capital Partners, specifying these names and the expansion strategy (including broadening the product range and management team) [1][2]. The geographic footprint focused on nurseries in Westland and Groningen, Netherlands, serving Europe and beyond, aligns with Plant World's official description [1][2]. Leadership names Marco Vermeulen (CEO), Obed Smit, Melvin van der Zeijden, and Tineke Vermeulen-Rehorst as executive directors, also concur with company site data and no contradictory info was found [1][2]. The product offerings listed, including a wide range of tropical and Mediterranean plants and collections, as well as pot size ranges, are supported by Plant World's listings [1][2]. The clientCategories field remains unconfirmed publicly, lowering completeness slightly. The company’s mission emphasizing unique, sustainable, and expertise-driven offerings matches their communicated values [1]. There are no notable conflicts or missing major facts besides the lack of a confirmed client categories list, and the company website URL provided (tropicenter.com) is consistent with sources accessed. Overall, the data is authoritative and up-to-date as of 2025-09 from official and industry sources. [https://plantworld.com/over-ons/ons-bedrijf/], [https://www.floraldaily.com/article/9455974/dutch-companies-merge-we-want-to-become-european-tropical-potted-plant-leader/], [https://www.floraldaily.com/article/9360677/nl-plant-world-takes-over-jogrow/]","{""clientCategories"":[],""companyDescription"":""Plant World is a company formed from the merger of Van der Arend Tropical Plantcenter, JoGrow, Kwekerij Hoefnagels, and Smit Kwekerijen. They specialize in (sub)tropical plants and Mediterranean trees, many protected by breeders' rights. The company mission is to bring unique plants to people's homes to enhance well-being and living pleasure, focusing on passion, expertise, and sustainable relationships. They operate nurseries in Westland and Groningen, serving customers across Europe and beyond. Plant World is a market leader in (sub)tropical houseplants and hardy palms."",""geographicFocus"":""HQ: West Location: Bonnenlaan 8, 2691 NL 's-Gravenzande, Netherlands; North Location: Siepweg 4, 9611 TJ Sappemeer, Netherlands; Sales Focus: Europe and beyond."",""keyExecutives"":[{""name"":""Marco Vermeulen"",""sourceUrl"":""https://plantworld.com/en/marco-vermeulen-nieuwe-algemeen-directeur/"",""title"":""CEO""},{""name"":""Obed Smit"",""sourceUrl"":""https://plantworld.com/over-ons/ons-bedrijf/"",""title"":""Executive Director""},{""name"":""Melvin van der Zeijden"",""sourceUrl"":""https://plantworld.com/over-ons/ons-bedrijf/"",""title"":""Executive Director""},{""name"":""Tineke Vermeulen-Rehorst"",""sourceUrl"":""https://plantworld.com/over-ons/ons-bedrijf/"",""title"":""Executive Director""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Plant World's main product offerings include a wide variety of plants such as Adorables, Aglaonema, Alocasia, Anthurium, Asparagus, Begonia, Brighamia, Calathea, Callisia, Chamaedorea, Chlorophytum, Crassula, Croton, Cyclanthus, Dieffenbachia, Dischidia, Dypsis, Epipremnum, Euphorbia, Ficus, Homalomena, Hoya, Hydrangea, Kalanchoe, Miniplanten 5.5 + 7 cm, Monstera, Peperomia, Philodendron, Pilea, Piper, Polyscias, Rhipsalis, Sansevieria, Schefflera, Scindapsus, Sedum, Senecio, Strelitzia, Syngonium, Tradescantia, Xanthosoma. They also offer collections like Adorables, Begonia Magic Colours, Eden Collection, Eden Hangplanten, Eden Jungles, Eagle Palms, Eden Specials, Eden Seasonals, and Plant World. Pot sizes range from 5 cm to 80 cm."",""researcherNotes"":""The company Van der Arend Tropical Plantcenter has merged into Plant World. Information was primarily found on the Plant World website as the original site had limited direct detailed data. No explicit client categories were found; hence that field is empty. No direct linked downloadable documents were identified on the domain."",""sectorDescription"":""Operates in the horticulture and plant cultivation sector, focusing on indoor and outdoor (sub)tropical plants and Mediterranean trees."",""sources"":{""clientCategories"":null,""companyDescription"":""https://plantworld.com/over-ons/ons-bedrijf/"",""geographicFocus"":""https://plantworld.com/contact/"",""keyExecutives"":""https://plantworld.com/over-ons/ons-bedrijf/"",""productDescription"":""https://plantworld.com/alle-planten/""},""websiteURL"":""http://www.tropicenter.com""}" -Peas&Love (Urban farm Company SA),http://www.peasandlove.com,Otium Capital,peasandlove.com,https://www.linkedin.com/company/peas-and-love,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.peasandlove.com"", - ""companyDescription"": ""Peas&Love (Urban Farm Company SA) provides eco-systemic services to cities, improving their quality of life and creating social interactions through urban farms. Their mission is to help cities become greener, more sustainable, and more human by installing farms that provide eco-systemic services, improve quality of life, and foster social interactions. They aim to expand their farms and become the urban farming glocal leader, delivering positive and healthy experiences that dramatically improve clients' lives."", - ""productDescription"": ""Installation of urban farms that improve city ecosystems, quality of life, and social interactions."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the AgTech and urban farming sector, providing eco-systemic urban farm services to improve city living environments."", - ""geographicFocus"": ""HQ: Brussels, Brussels Hoofdstedelijk Gewest, Belgium; Sales Focus: Urban areas mainly in and around Brussels."", - ""keyExecutives"": [ - {""name"": ""Nicolas Brassier"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa""}, - {""name"": ""Jean-Patrick Scheepers"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly stated on the website or accessible sources."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""productDescription"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"" - } -}","{ - ""websiteURL"": ""http://www.peasandlove.com"", - ""companyDescription"": ""Peas&Love (Urban Farm Company SA) provides eco-systemic services to cities, improving their quality of life and creating social interactions through urban farms. Their mission is to help cities become greener, more sustainable, and more human by installing farms that provide eco-systemic services, improve quality of life, and foster social interactions. They aim to expand their farms and become the urban farming glocal leader, delivering positive and healthy experiences that dramatically improve clients' lives."", - ""productDescription"": ""Installation of urban farms that improve city ecosystems, quality of life, and social interactions."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the AgTech and urban farming sector, providing eco-systemic urban farm services to improve city living environments."", - ""geographicFocus"": ""HQ: Brussels, Brussels Hoofdstedelijk Gewest, Belgium; Sales Focus: Urban areas mainly in and around Brussels."", - ""keyExecutives"": [ - {""name"": ""Nicolas Brassier"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa""}, - {""name"": ""Jean-Patrick Scheepers"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly stated on the website or accessible sources."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""productDescription"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""http://www.peasandlove.com"", - ""companyDescription"": ""Peas&Love (Urban Farm Company SA) is a Belgian urban farming start-up headquartered in Brussels that provides eco-systemic services to cities by installing and maintaining urban farms. Their mission is to help cities become greener, more sustainable, and more human by improving living environments and fostering social interactions. They operate farms on rooftops and unused urban spaces primarily in Brussels and Paris, offering local residents access to seasonal, organic produce through community farming programs and harvest sharing."", - ""productDescription"": ""Peas&Love installs and manages urban farms on rooftops and other urban spaces, delivering eco-systemic benefits such as improved city ecosystems, reduced food miles, and enhanced social interactions. They provide small garden plots to individuals who can harvest fresh, organic vegetables, fruits, and herbs grown and maintained professionally. The farms promote local, seasonal, and nutritious food supply while shortening the farm-to-fork chain."", - ""clientCategories"": [ - ""Urban Residents"", - ""Municipalities"", - ""Environmental Organizations"", - ""Community Groups"", - ""Real Estate Developers"" - ], - ""sectorDescription"": ""Urban agriculture and AgTech company specializing in eco-systemic urban farming solutions to improve city living environments and sustainability."", - ""geographicFocus"": ""Primary focus on urban areas in Brussels and Paris, with expansion plans in other European cities including Lille, Lyon, London, and Dubai."", - ""keyExecutives"": [ - { - ""name"": ""Nicolas Brassier"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"" - }, - { - ""name"": ""Jean-Patrick Scheepers"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"" - } - ], - ""researcherNotes"": ""The company is correctly identified by domain and HQ in Brussels. Client categories were not explicitly listed on the company website or Crunchbase, so inferred from available descriptions and typical urban farm stakeholders. Geographic focus includes Brussels and Paris with known expansion plans; other cities mentioned in media were included conservatively. Some operations faced bankruptcy issues in Brussels rooftop farms but Peas&Love remains active in Paris. No senior leadership details found on LinkedIn beyond Crunchbase data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"", - ""productDescription"": ""https://www.foodnavigator.com/Article/2018/06/11/Peas-Love-on-the-disruptive-potential-of-urban-farms/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.verticalfarmdaily.com/article/9506537/brussels-urban-farms-peas-love-are-bankrupt/"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"" - } -}","{""clientCategories"":[""Urban Residents"",""Municipalities"",""Environmental Organizations"",""Community Groups"",""Real Estate Developers""],""companyDescription"":""Peas&Love (Urban Farm Company SA) is a Belgian urban farming start-up headquartered in Brussels that provides eco-systemic services to cities by installing and maintaining urban farms. Their mission is to help cities become greener, more sustainable, and more human by improving living environments and fostering social interactions. They operate farms on rooftops and unused urban spaces primarily in Brussels and Paris, offering local residents access to seasonal, organic produce through community farming programs and harvest sharing."",""geographicFocus"":""Primary focus on urban areas in Brussels and Paris, with expansion plans in other European cities including Lille, Lyon, London, and Dubai."",""keyExecutives"":[{""name"":""Nicolas Brassier"",""sourceUrl"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""title"":""CEO""},{""name"":""Jean-Patrick Scheepers"",""sourceUrl"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Peas&Love installs and manages urban farms on rooftops and other urban spaces, delivering eco-systemic benefits such as improved city ecosystems, reduced food miles, and enhanced social interactions. They provide small garden plots to individuals who can harvest fresh, organic vegetables, fruits, and herbs grown and maintained professionally. The farms promote local, seasonal, and nutritious food supply while shortening the farm-to-fork chain."",""researcherNotes"":""The company is correctly identified by domain and HQ in Brussels. Client categories were not explicitly listed on the company website or Crunchbase, so inferred from available descriptions and typical urban farm stakeholders. Geographic focus includes Brussels and Paris with known expansion plans; other cities mentioned in media were included conservatively. Some operations faced bankruptcy issues in Brussels rooftop farms but Peas&Love remains active in Paris. No senior leadership details found on LinkedIn beyond Crunchbase data."",""sectorDescription"":""Urban agriculture and AgTech company specializing in eco-systemic urban farming solutions to improve city living environments and sustainability."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""geographicFocus"":""https://www.verticalfarmdaily.com/article/9506537/brussels-urban-farms-peas-love-are-bankrupt/"",""keyExecutives"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""productDescription"":""https://www.foodnavigator.com/Article/2018/06/11/Peas-Love-on-the-disruptive-potential-of-urban-farms/""},""websiteURL"":""http://www.peasandlove.com""}","Correctness: 90% Completeness: 85% - -The core description of Peas&Love as a Belgian urban farming start-up headquartered in Brussels that installs and maintains rooftop and urban space farms is correct and confirmed by multiple sources, including Crunchbase and coverage from RetailDetail and the World Economic Forum[1][2][3]. The company's mission focused on greener, sustainable, and socially interactive city environments, including offering community members access to organic, seasonal produce, aligns with public statements and media reports[3]. The leadership information naming Nicolas Brassier as CEO and Jean-Patrick Scheepers as founder matches Crunchbase data as of the latest available update[1][2]. The primary geographic focus on Brussels and Paris is accurate; however, Peas&Love’s rooftop farms in Brussels reportedly faced bankruptcy as of late reports, while Paris operations remain active, indicating partial operational restriction currently affecting Brussels farms only[1]. Expansion plans mentioning Lille, Lyon, London, and Dubai are consistent with statements from 2020-2023 sources but should be considered future projections rather than completed footprints[2]. The product description of renting garden plots managed professionally while members harvest is corroborated by detailed interviews and reports[3]. One notable inconsistency exists in the search results: Peas&Love is sometimes described with a focus on urban farming and ecosystem services, while the site peasand.love appears to promote an unrelated organic food brand, which does not match the urban farming start-up and suggests a URL confusion or a brand overlap but unrelated business[4]. This does not invalidate the primary urban farming facts but indicates a potential source mix-up if relying solely on that website. Overall, the factual claims about company identity, mission, leadership, location, and products are well supported by multiple credible sources, but the bankruptcy of Brussels farms and the unrelated website lower completeness and correctness slightly. Key senior leadership and geographic status are properly contextualized with recent events[1][2][3]. - -Sources: -https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa -https://www.retaildetail.eu/news/food/brussels-urban-farms-peas-love-are-bankrupt/ -https://www.retaildetail.eu/news/food/urban-farms-peas-love-rise-capital-growth-15-million-euros/ -https://www.weforum.org/stories/2020/12/urban-farming-paris-brussels-peas-love/ -https://www.peasand.love","{""clientCategories"":[],""companyDescription"":""Peas&Love (Urban Farm Company SA) provides eco-systemic services to cities, improving their quality of life and creating social interactions through urban farms. Their mission is to help cities become greener, more sustainable, and more human by installing farms that provide eco-systemic services, improve quality of life, and foster social interactions. They aim to expand their farms and become the urban farming glocal leader, delivering positive and healthy experiences that dramatically improve clients' lives."",""geographicFocus"":""HQ: Brussels, Brussels Hoofdstedelijk Gewest, Belgium; Sales Focus: Urban areas mainly in and around Brussels."",""keyExecutives"":[{""name"":""Nicolas Brassier"",""sourceUrl"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""title"":""CEO""},{""name"":""Jean-Patrick Scheepers"",""sourceUrl"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Installation of urban farms that improve city ecosystems, quality of life, and social interactions."",""researcherNotes"":""Client categories were not explicitly stated on the website or accessible sources."",""sectorDescription"":""Operates in the AgTech and urban farming sector, providing eco-systemic urban farm services to improve city living environments."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""geographicFocus"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""keyExecutives"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa"",""productDescription"":""https://www.crunchbase.com/organization/peas-love-urban-farm-company-sa""},""websiteURL"":""http://www.peasandlove.com""}" -Agrorobotica,https://www.agrorobotica.it/,Fondazione Social Venture Giordano dell'Amore,agrorobotica.it,https://www.linkedin.com/company/agrorobotica,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.agrorobotica.it/"", - ""companyDescription"": ""Agrorobotica is a company specializing in precision agriculture and Farming Management with an innovative approach. Their mission revolves around supporting agriculture through advanced technology like artificial intelligence to monitor harmful insects in real-time, promoting healthier and environmentally respectful agriculture. They develop SpyFly, a robotic trap for monitoring insect pests using AI and pheromone traps to assist farmers, especially those managing or converting to organic farming."", - ""productDescription"": ""SpyFly is an advanced robotic monitoring system for harmful insects in agriculture, offering real-time monitoring via smartphone or other devices. It features a modular, robust yellow plastic casing that attracts dipteran insects using color and pheromones, capturing them with custom adhesive sheets. SpyFly periodically photographs these sheets, uploads images to a cloud platform for processing with algorithms identifying harmful insects, and records meteorological data for predictive modeling. It aids timely intervention and reduces pesticide use, supporting environmental and human health. Benefits include immediate insect identification, real-time alerts, effective intervention, and reduced monitoring costs. SpyFly is ideal for organic farms and professionals needing precise, sustainable, real-time multi-crop monitoring."", - ""clientCategories"": [""Organic Farms"", ""Agriculture Professionals""], - ""sectorDescription"": ""Operates in the agritech sector, specializing in precision agriculture technology focused on pest monitoring and integrated pest management using AI."", - ""geographicFocus"": ""HQ: Via Generale Carlo Citerni 13, 58020, Scarlino (GR), Italy; Sales Focus: Italy and organic farming markets."", - ""keyExecutives"": [ - { - ""name"": ""Sozzi Sabatini Andrea"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.agrorobotica.it/chi-siamo/"" - } - ], - ""linkedDocuments"": [""https://agrorobotica.it/wp-content/uploads/2022/01/Brochure-SpyFly-4.pdf""], - ""researcherNotes"": ""The website has limited public information on leadership beyond the main founder and CEO. No comprehensive client categories list was found; categories were inferred from product use description."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agrorobotica.it/"", - ""productDescription"": ""https://www.agrorobotica.it/spyfly/"", - ""clientCategories"": ""https://www.agrorobotica.it/news/"", - ""geographicFocus"": ""https://www.agrorobotica.it/contatti/"", - ""keyExecutives"": ""https://www.agrorobotica.it/chi-siamo/"" - } -}","{ - ""websiteURL"": ""https://www.agrorobotica.it/"", - ""companyDescription"": ""Agrorobotica is a company specializing in precision agriculture and Farming Management with an innovative approach. Their mission revolves around supporting agriculture through advanced technology like artificial intelligence to monitor harmful insects in real-time, promoting healthier and environmentally respectful agriculture. They develop SpyFly, a robotic trap for monitoring insect pests using AI and pheromone traps to assist farmers, especially those managing or converting to organic farming."", - ""productDescription"": ""SpyFly is an advanced robotic monitoring system for harmful insects in agriculture, offering real-time monitoring via smartphone or other devices. It features a modular, robust yellow plastic casing that attracts dipteran insects using color and pheromones, capturing them with custom adhesive sheets. SpyFly periodically photographs these sheets, uploads images to a cloud platform for processing with algorithms identifying harmful insects, and records meteorological data for predictive modeling. It aids timely intervention and reduces pesticide use, supporting environmental and human health. Benefits include immediate insect identification, real-time alerts, effective intervention, and reduced monitoring costs. SpyFly is ideal for organic farms and professionals needing precise, sustainable, real-time multi-crop monitoring."", - ""clientCategories"": [""Organic Farms"", ""Agriculture Professionals""], - ""sectorDescription"": ""Operates in the agritech sector, specializing in precision agriculture technology focused on pest monitoring and integrated pest management using AI."", - ""geographicFocus"": ""HQ: Via Generale Carlo Citerni 13, 58020, Scarlino (GR), Italy; Sales Focus: Italy and organic farming markets."", - ""keyExecutives"": [ - { - ""name"": ""Sozzi Sabatini Andrea"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.agrorobotica.it/chi-siamo/"" - } - ], - ""linkedDocuments"": [""https://agrorobotica.it/wp-content/uploads/2022/01/Brochure-SpyFly-4.pdf""], - ""researcherNotes"": ""The website has limited public information on leadership beyond the main founder and CEO. No comprehensive client categories list was found; categories were inferred from product use description."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agrorobotica.it/"", - ""productDescription"": ""https://www.agrorobotica.it/spyfly/"", - ""clientCategories"": ""https://www.agrorobotica.it/news/"", - ""geographicFocus"": ""https://www.agrorobotica.it/contatti/"", - ""keyExecutives"": ""https://www.agrorobotica.it/chi-siamo/"" - } -}",[],"{ - ""websiteURL"": ""https://www.agrorobotica.it"", - ""companyDescription"": ""Agrorobotica is a company specializing in precision agriculture and farming management with an innovative approach. Their mission revolves around supporting agriculture through advanced technology like artificial intelligence to monitor harmful insects in real-time, promoting healthier and environmentally respectful agriculture. They develop SpyFly, a robotic trap for monitoring insect pests using AI and pheromone traps to assist farmers, especially those managing or converting to organic farming."", - ""productDescription"": ""SpyFly is an advanced robotic monitoring system for harmful insects in agriculture, offering real-time monitoring via smartphone or other devices. It features a modular, robust yellow plastic casing that attracts dipteran insects using color and pheromones, capturing them with custom adhesive sheets. SpyFly periodically photographs these sheets, uploads images to a cloud platform for processing with algorithms identifying harmful insects, and records meteorological data for predictive modeling. It aids timely intervention and reduces pesticide use, supporting environmental and human health. Benefits include immediate insect identification, real-time alerts, effective intervention, and reduced monitoring costs. SpyFly is ideal for organic farms and professionals needing precise, sustainable, real-time multi-crop monitoring."", - ""clientCategories"": [""Organic Farms"", ""Agriculture Professionals""], - ""sectorDescription"": ""Operates in the agritech sector, specializing in precision agriculture technology focused on pest monitoring and integrated pest management using AI."", - ""geographicFocus"": ""HQ: Via Generale Carlo Citerni 13, 58020, Scarlino (GR), Italy; Sales focus on the Italian market and organic farming sectors."", - ""keyExecutives"": [ - { - ""name"": ""Sozzi Sabatini Andrea"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.agrorobotica.it/chi-siamo/"" - } - ], - ""researcherNotes"": ""The company profile was verified and disambiguated based on domain match, headquarters address in Scarlino, Italy, and distinct product 'SpyFly'. No additional senior leadership beyond the founder and CEO is publicly listed on the company website or LinkedIn. The geographic focus is confirmed as Italy with emphasis on organic farming markets. Although Agrorobotica has partnerships and activities reported internationally, their primary market remains Italy, per direct company sources. No regulatory filings were found to add further executive or footprint details."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agrorobotica.it/"", - ""productDescription"": ""https://www.agrorobotica.it/spyfly/"", - ""clientCategories"": ""https://www.agrorobotica.it/news/"", - ""geographicFocus"": ""https://www.agrorobotica.it/contatti/"", - ""keyExecutives"": ""https://www.agrorobotica.it/chi-siamo/"" - } -}","{""clientCategories"":[""Organic Farms"",""Agriculture Professionals""],""companyDescription"":""Agrorobotica is a company specializing in precision agriculture and farming management with an innovative approach. Their mission revolves around supporting agriculture through advanced technology like artificial intelligence to monitor harmful insects in real-time, promoting healthier and environmentally respectful agriculture. They develop SpyFly, a robotic trap for monitoring insect pests using AI and pheromone traps to assist farmers, especially those managing or converting to organic farming."",""geographicFocus"":""HQ: Via Generale Carlo Citerni 13, 58020, Scarlino (GR), Italy; Sales focus on the Italian market and organic farming sectors."",""keyExecutives"":[{""name"":""Sozzi Sabatini Andrea"",""sourceUrl"":""https://www.agrorobotica.it/chi-siamo/"",""title"":""Founder and CEO""}],""missingImportantFields"":[],""productDescription"":""SpyFly is an advanced robotic monitoring system for harmful insects in agriculture, offering real-time monitoring via smartphone or other devices. It features a modular, robust yellow plastic casing that attracts dipteran insects using color and pheromones, capturing them with custom adhesive sheets. SpyFly periodically photographs these sheets, uploads images to a cloud platform for processing with algorithms identifying harmful insects, and records meteorological data for predictive modeling. It aids timely intervention and reduces pesticide use, supporting environmental and human health. Benefits include immediate insect identification, real-time alerts, effective intervention, and reduced monitoring costs. SpyFly is ideal for organic farms and professionals needing precise, sustainable, real-time multi-crop monitoring."",""researcherNotes"":""The company profile was verified and disambiguated based on domain match, headquarters address in Scarlino, Italy, and distinct product 'SpyFly'. No additional senior leadership beyond the founder and CEO is publicly listed on the company website or LinkedIn. The geographic focus is confirmed as Italy with emphasis on organic farming markets. Although Agrorobotica has partnerships and activities reported internationally, their primary market remains Italy, per direct company sources. No regulatory filings were found to add further executive or footprint details."",""sectorDescription"":""Operates in the agritech sector, specializing in precision agriculture technology focused on pest monitoring and integrated pest management using AI."",""sources"":{""clientCategories"":""https://www.agrorobotica.it/news/"",""companyDescription"":""https://www.agrorobotica.it/"",""geographicFocus"":""https://www.agrorobotica.it/contatti/"",""keyExecutives"":""https://www.agrorobotica.it/chi-siamo/"",""productDescription"":""https://www.agrorobotica.it/spyfly/""},""websiteURL"":""https://www.agrorobotica.it""}","Correctness: 98% Completeness: 95% Agrorobotica is accurately described as an innovative precision agriculture company founded in June 2017 in Italy with headquarters at Via Generale Carlo Citerni 13, 58020, Scarlino (GR), Italy, focusing primarily on the Italian market and organic farming sectors. The founder and CEO is confirmed as Sozzi Sabatini Andrea. Their product SpyFly is a robotic insect monitoring system using AI and pheromone traps for real-time insect pest detection, meteorological data collection, and predictive analytics to support sustainable, integrated pest management, which aligns with the provided details. The description of SpyFly's functionalities—photo capture, cloud processing with auto-adaptive AI algorithms, modular design, and environmental benefits—is consistent with company sources and independent summaries. Funding details mention a €252,000 investment by Fondazione Social Venture Giordano Dell’Amore, supporting the company’s innovation mission. No contradictory or outdated information was found; the profile is coherent with multiple sources including the official website and third-party startups databases. Missing elements are minor, such as absence of other publicly listed senior executives beyond the founder and CEO, and no recent regulatory filings to expand data on funding or headcount, but these do not undermine the factual accuracy of the core profile. Sources: https://www.agrorobotica.it/, https://www.fondazionesocialventuregda.it/en/investimento/agrorobotica/, https://app.dealroom.co/companies/agrorobotica_srl, https://directory.startupluxembourg.com/companies/agrorobotica_srl, all accessed as of 2025-09-11.","{""clientCategories"":[""Organic Farms"",""Agriculture Professionals""],""companyDescription"":""Agrorobotica is a company specializing in precision agriculture and Farming Management with an innovative approach. Their mission revolves around supporting agriculture through advanced technology like artificial intelligence to monitor harmful insects in real-time, promoting healthier and environmentally respectful agriculture. They develop SpyFly, a robotic trap for monitoring insect pests using AI and pheromone traps to assist farmers, especially those managing or converting to organic farming."",""geographicFocus"":""HQ: Via Generale Carlo Citerni 13, 58020, Scarlino (GR), Italy; Sales Focus: Italy and organic farming markets."",""keyExecutives"":[{""name"":""Sozzi Sabatini Andrea"",""sourceUrl"":""https://www.agrorobotica.it/chi-siamo/"",""title"":""Founder and CEO""}],""linkedDocuments"":[""https://agrorobotica.it/wp-content/uploads/2022/01/Brochure-SpyFly-4.pdf""],""missingImportantFields"":[],""productDescription"":""SpyFly is an advanced robotic monitoring system for harmful insects in agriculture, offering real-time monitoring via smartphone or other devices. It features a modular, robust yellow plastic casing that attracts dipteran insects using color and pheromones, capturing them with custom adhesive sheets. SpyFly periodically photographs these sheets, uploads images to a cloud platform for processing with algorithms identifying harmful insects, and records meteorological data for predictive modeling. It aids timely intervention and reduces pesticide use, supporting environmental and human health. Benefits include immediate insect identification, real-time alerts, effective intervention, and reduced monitoring costs. SpyFly is ideal for organic farms and professionals needing precise, sustainable, real-time multi-crop monitoring."",""researcherNotes"":""The website has limited public information on leadership beyond the main founder and CEO. No comprehensive client categories list was found; categories were inferred from product use description."",""sectorDescription"":""Operates in the agritech sector, specializing in precision agriculture technology focused on pest monitoring and integrated pest management using AI."",""sources"":{""clientCategories"":""https://www.agrorobotica.it/news/"",""companyDescription"":""https://www.agrorobotica.it/"",""geographicFocus"":""https://www.agrorobotica.it/contatti/"",""keyExecutives"":""https://www.agrorobotica.it/chi-siamo/"",""productDescription"":""https://www.agrorobotica.it/spyfly/""},""websiteURL"":""https://www.agrorobotica.it/""}" -Aphea.Bio,http://aphea.bio/,"Agri Investment Fund, Astanor Ventures, European Circular Bioeconomy Fund, Gemma Frisius Fund, PMV, QBIC II, V-Bio Ventures, VIB, Vives Louvain Technology Fund",aphea.bio,https://www.linkedin.com/company/aphea-bio,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://aphea.bio/"", - ""companyDescription"": ""Aphea.Bio develops biocontrol and biostimulant products by harnessing the diversity of microorganisms through their APEXbio™ R&D platform, creating natural solutions as alternatives to chemical pesticides and synthetic fertilizers; founded in 2017, located in Ghent, Belgium, focused on sustainable agriculture."", - ""productDescription"": ""The company offers biostimulants and biofungicides, including VALORIA™ and VIRTUOSA™ (pending EPA approval), with a pipeline that includes bioherbicides and bioinsecticides."", - ""clientCategories"": [""All segments of sustainable agriculture"", ""Providers of microbial-based products""], - ""sectorDescription"": ""Operates in agricultural biotechnology, specifically microbial-based biological solutions for sustainable agriculture, including biocontrol and biostimulants."", - ""geographicFocus"": ""HQ: Technologiepark 21, 9052 Gent, Belgium; Sales Focus: United States (EPA regulatory submissions)"", - ""keyExecutives"": [ - {""name"": ""Hadyn Parry"", ""title"": ""Chairman of the Board"", ""sourceUrl"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture""}, - {""name"": ""Isabel Vercauteren"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture""} - ], - ""linkedDocuments"": [ - ""https://www.aphea.bio/user/themes/apheabio/pdf/esg_2024.pdf"" - ], - ""researcherNotes"": ""Geographic sales regions beyond the US EPA regulatory submissions were not specified on the website or related documents."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://aphea.bio/"", - ""productDescription"": ""http://aphea.bio/"", - ""clientCategories"": ""http://aphea.bio/"", - ""geographicFocus"": ""http://aphea.bio/contact/"", - ""keyExecutives"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"" - } -}","{ - ""websiteURL"": ""http://aphea.bio/"", - ""companyDescription"": ""Aphea.Bio develops biocontrol and biostimulant products by harnessing the diversity of microorganisms through their APEXbio™ R&D platform, creating natural solutions as alternatives to chemical pesticides and synthetic fertilizers; founded in 2017, located in Ghent, Belgium, focused on sustainable agriculture."", - ""productDescription"": ""The company offers biostimulants and biofungicides, including VALORIA™ and VIRTUOSA™ (pending EPA approval), with a pipeline that includes bioherbicides and bioinsecticides."", - ""clientCategories"": [""All segments of sustainable agriculture"", ""Providers of microbial-based products""], - ""sectorDescription"": ""Operates in agricultural biotechnology, specifically microbial-based biological solutions for sustainable agriculture, including biocontrol and biostimulants."", - ""geographicFocus"": ""HQ: Technologiepark 21, 9052 Gent, Belgium; Sales Focus: United States (EPA regulatory submissions)"", - ""keyExecutives"": [ - {""name"": ""Hadyn Parry"", ""title"": ""Chairman of the Board"", ""sourceUrl"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture""}, - {""name"": ""Isabel Vercauteren"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture""} - ], - ""linkedDocuments"": [ - ""https://www.aphea.bio/user/themes/apheabio/pdf/esg_2024.pdf"" - ], - ""researcherNotes"": ""Geographic sales regions beyond the US EPA regulatory submissions were not specified on the website or related documents."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://aphea.bio/"", - ""productDescription"": ""http://aphea.bio/"", - ""clientCategories"": ""http://aphea.bio/"", - ""geographicFocus"": ""http://aphea.bio/contact/"", - ""keyExecutives"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"" - } -}",[],"{ - ""websiteURL"": ""https://aphea.bio"", - ""companyDescription"": ""Aphea.Bio is a science-driven agricultural biotechnology company founded in 2017, located in Ghent, Belgium. It develops natural, sustainable biocontrol and biostimulant products by harnessing microbial diversity through its proprietary APEXbio™ R&D platform. The company offers effective alternatives to chemical pesticides and synthetic fertilizers, targeting all segments of sustainable agriculture with a broad product pipeline and a mission to promote sustainable, reliable, and profitable farming."", - ""productDescription"": ""Aphea.Bio provides innovative biological solutions including biostimulants and biofungicides such as VALORIA™ and VIRTUOSA™ (pending EPA approval). Its product pipeline extends to bioherbicides and bioinsecticides designed mainly for large area row crops like wheat and corn, helping reduce fertilizer use and control fungal diseases sustainably via seed treatments or spray applications."", - ""clientCategories"": [ - ""All Segments of Sustainable Agriculture"", - ""Providers of Microbial-Based Products"" - ], - ""sectorDescription"": ""Agricultural biotechnology focused on microbial-based biological solutions for sustainable agriculture, including biocontrol and biostimulants."", - ""geographicFocus"": ""Primary sales focus in the United States aligned with EPA regulatory submissions; headquartered in Ghent, Belgium with operations in multiple European countries."", - ""keyExecutives"": [ - { - ""name"": ""Hadyn Parry"", - ""title"": ""Chairman of the Board"", - ""sourceUrl"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"" - }, - { - ""name"": ""Isabel Vercauteren"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"" - } - ], - ""researcherNotes"": ""Geographic focus beyond US EPA regulatory submissions is not explicitly detailed, but as a Certified B Corporation and based on B Corp data, Aphea.Bio operates across several European countries including Austria, Belgium, France, Germany, and more. This multi-European footprint supports its HQ location and product marketing while US regulations guide the sales focus. No senior leadership details were found in LinkedIn data beyond what company sources provide."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.aphea.bio/company/about-us"", - ""productDescription"": ""https://www.aphea.bio"", - ""clientCategories"": ""https://www.aphea.bio"", - ""geographicFocus"": ""https://www.bcorporation.net/find-a-b-corp/company/aphea-bio/"", - ""keyExecutives"": ""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"" - } -}","{""clientCategories"":[""All Segments of Sustainable Agriculture"",""Providers of Microbial-Based Products""],""companyDescription"":""Aphea.Bio is a science-driven agricultural biotechnology company founded in 2017, located in Ghent, Belgium. It develops natural, sustainable biocontrol and biostimulant products by harnessing microbial diversity through its proprietary APEXbio™ R&D platform. The company offers effective alternatives to chemical pesticides and synthetic fertilizers, targeting all segments of sustainable agriculture with a broad product pipeline and a mission to promote sustainable, reliable, and profitable farming."",""geographicFocus"":""Primary sales focus in the United States aligned with EPA regulatory submissions; headquartered in Ghent, Belgium with operations in multiple European countries."",""keyExecutives"":[{""name"":""Hadyn Parry"",""sourceUrl"":""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"",""title"":""Chairman of the Board""},{""name"":""Isabel Vercauteren"",""sourceUrl"":""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Aphea.Bio provides innovative biological solutions including biostimulants and biofungicides such as VALORIA™ and VIRTUOSA™ (pending EPA approval). Its product pipeline extends to bioherbicides and bioinsecticides designed mainly for large area row crops like wheat and corn, helping reduce fertilizer use and control fungal diseases sustainably via seed treatments or spray applications."",""researcherNotes"":""Geographic focus beyond US EPA regulatory submissions is not explicitly detailed, but as a Certified B Corporation and based on B Corp data, Aphea.Bio operates across several European countries including Austria, Belgium, France, Germany, and more. This multi-European footprint supports its HQ location and product marketing while US regulations guide the sales focus. No senior leadership details were found in LinkedIn data beyond what company sources provide."",""sectorDescription"":""Agricultural biotechnology focused on microbial-based biological solutions for sustainable agriculture, including biocontrol and biostimulants."",""sources"":{""clientCategories"":""https://www.aphea.bio"",""companyDescription"":""https://www.aphea.bio/company/about-us"",""geographicFocus"":""https://www.bcorporation.net/find-a-b-corp/company/aphea-bio/"",""keyExecutives"":""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"",""productDescription"":""https://www.aphea.bio""},""websiteURL"":""https://aphea.bio""}","Correctness: 95% Completeness: 90% The provided information on Aphea.Bio is largely accurate and well supported. Aphea.Bio is a biotech company focused on microbial-based sustainable agriculture solutions with headquarters in Ghent (Zwijnaarde), Belgium, confirmed by official company registration data showing establishment in December 2016 and current active status[1][3]. The leadership details naming Hadyn Parry as Chairman and Isabel Vercauteren as CEO are affirmed by the company’s press releases from 2024[https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture]. Their focus on natural biocontrol and biostimulants, including products like VALORIA™ and VIRTUOSA™ (with pending EPA approval for the U.S. market), aligns with product info on their official site. The geographic footprint is primarily European—with presence in Belgium, Austria, France, Germany—and targeted U.S. sales aligned with EPA regulatory pathways, consistent with B Corp data[https://www.bcorporation.net/find-a-b-corp/company/aphea-bio/]. Minor inconsistencies include the founding year noted as late 2016 in filings versus 2017 in some sources, but this is a typical minor discrepancy between incorporation and operational start date[1][2][3]. The funding milestone of a €70m Series C round is confirmed via recent press, adding complementary detail omitted in the query text[4]. Overall, the facts are accurate with slight omissions in funding history and an exact founding date articulation; therefore, Correctness is 95% and Completeness 90%.","{""clientCategories"":[""All segments of sustainable agriculture"",""Providers of microbial-based products""],""companyDescription"":""Aphea.Bio develops biocontrol and biostimulant products by harnessing the diversity of microorganisms through their APEXbio™ R&D platform, creating natural solutions as alternatives to chemical pesticides and synthetic fertilizers; founded in 2017, located in Ghent, Belgium, focused on sustainable agriculture."",""geographicFocus"":""HQ: Technologiepark 21, 9052 Gent, Belgium; Sales Focus: United States (EPA regulatory submissions)"",""keyExecutives"":[{""name"":""Hadyn Parry"",""sourceUrl"":""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"",""title"":""Chairman of the Board""},{""name"":""Isabel Vercauteren"",""sourceUrl"":""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"",""title"":""CEO""}],""linkedDocuments"":[""https://www.aphea.bio/user/themes/apheabio/pdf/esg_2024.pdf""],""missingImportantFields"":[],""productDescription"":""The company offers biostimulants and biofungicides, including VALORIA™ and VIRTUOSA™ (pending EPA approval), with a pipeline that includes bioherbicides and bioinsecticides."",""researcherNotes"":""Geographic sales regions beyond the US EPA regulatory submissions were not specified on the website or related documents."",""sectorDescription"":""Operates in agricultural biotechnology, specifically microbial-based biological solutions for sustainable agriculture, including biocontrol and biostimulants."",""sources"":{""clientCategories"":""http://aphea.bio/"",""companyDescription"":""http://aphea.bio/"",""geographicFocus"":""http://aphea.bio/contact/"",""keyExecutives"":""https://www.aphea.bio/news/aphea-bio-welcomes-hadyn-parry-as-chairman-of-its-board-propelling-the-companys-vision-for-sustainable-agriculture"",""productDescription"":""http://aphea.bio/""},""websiteURL"":""http://aphea.bio/""}" -OIKOS,https://www.oikoscoop.it/,Opes Impact Fund,oikoscoop.it,https://www.linkedin.com/company/oikos-cooperativa-sociale,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.oikoscoop.it/"", - ""companyDescription"": ""OIKOS is a social cooperative focused on work insertion and social inclusion of people in fragile and vulnerable conditions. Since 2000, it has been committed to work, solidarity, respect for the environment, and enhancement of the territory. It operates as a Type B Social Cooperative aiming to increase work opportunities for disadvantaged people. Key activities include maintenance of green areas, cleaning services, waste management, and organic vineyard cultivation."", - ""productDescription"": ""Oikos Cooperativa Sociale offers the following products and services: work integration and social inclusion of people in difficulty. Specific areas of activity include: - Area verde (green area/landscaping), - Servizio pulizie (cleaning services), - Trasporto Disabili e Anziani (transport for disabled and elderly), - Lavorazione vigneti (vineyard work)."", - ""clientCategories"": [""fragile individuals"", ""disadvantaged people"", ""socially excluded people""], - ""sectorDescription"": ""Operates in the social cooperative sector, providing integration and support services for disadvantaged and vulnerable populations."", - ""geographicFocus"": ""HQ: Via Ronco Basso n.13, 24018 Villa d'Almè (BG), Italy; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide specific names or titles of key executives despite checking the 'Our Team' page and linked LinkedIn page, which also lacks detailed executive information."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.oikoscoop.it/"", - ""productDescription"": ""https://www.oikoscoop.it/servizi/"", - ""clientCategories"": ""https://www.oikoscoop.it/lavoro-onlus/"", - ""geographicFocus"": ""https://www.oikoscoop.it/contatti/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.oikoscoop.it/"", - ""companyDescription"": ""OIKOS is a social cooperative focused on work insertion and social inclusion of people in fragile and vulnerable conditions. Since 2000, it has been committed to work, solidarity, respect for the environment, and enhancement of the territory. It operates as a Type B Social Cooperative aiming to increase work opportunities for disadvantaged people. Key activities include maintenance of green areas, cleaning services, waste management, and organic vineyard cultivation."", - ""productDescription"": ""Oikos Cooperativa Sociale offers the following products and services: work integration and social inclusion of people in difficulty. Specific areas of activity include: - Area verde (green area/landscaping), - Servizio pulizie (cleaning services), - Trasporto Disabili e Anziani (transport for disabled and elderly), - Lavorazione vigneti (vineyard work)."", - ""clientCategories"": [""fragile individuals"", ""disadvantaged people"", ""socially excluded people""], - ""sectorDescription"": ""Operates in the social cooperative sector, providing integration and support services for disadvantaged and vulnerable populations."", - ""geographicFocus"": ""HQ: Via Ronco Basso n.13, 24018 Villa d'Almè (BG), Italy; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide specific names or titles of key executives despite checking the 'Our Team' page and linked LinkedIn page, which also lacks detailed executive information."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.oikoscoop.it/"", - ""productDescription"": ""https://www.oikoscoop.it/servizi/"", - ""clientCategories"": ""https://www.oikoscoop.it/lavoro-onlus/"", - ""geographicFocus"": ""https://www.oikoscoop.it/contatti/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.oikoscoop.it/"", - ""companyDescription"": ""OIKOS is a social cooperative operating since 2000, focused on the work insertion and social inclusion of people in fragile and vulnerable conditions. It aims to provide opportunities for disadvantaged individuals through solidarity, respect for the environment, and local territory enhancement. As a Type B Social Cooperative, it specializes in creating work opportunities for people facing social exclusion and difficulties."", - ""productDescription"": ""Oikos Cooperativa Sociale delivers work integration and social inclusion services targeting disadvantaged people. Its main activities include green area maintenance, cleaning services, transport for disabled and elderly people, and organic vineyard cultivation. These services facilitate social support and employment for vulnerable populations."", - ""clientCategories"": [""Fragile Individuals"", ""Disadvantaged People"", ""Socially Excluded People""], - ""sectorDescription"": ""Social cooperative sector specializing in integration and support services for vulnerable and disadvantaged populations to facilitate employment and social inclusion."", - ""geographicFocus"": ""Headquartered in Villa d'Almè, Bergamo, Italy; specific sales or operational footprint beyond the local area is not publicly documented."", - ""keyExecutives"": [], - ""researcherNotes"": ""No detailed information on key executives was found on the company website or LinkedIn page. The cooperative operates as a Type B social cooperative in Italy, focused on vulnerable populations. Geographic footprint beyond the HQ address is not explicitly stated. The company profile aligns clearly with the Italian social cooperative model, with no ambiguity about identity. The lack of executive data may reflect small organizational size or privacy preferences."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.oikoscoop.it/"", - ""productDescription"": ""https://www.oikoscoop.it/servizi/"", - ""clientCategories"": ""https://www.oikoscoop.it/lavoro-onlus/"", - ""geographicFocus"": ""https://www.oikoscoop.it/contatti/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Fragile Individuals"",""Disadvantaged People"",""Socially Excluded People""],""companyDescription"":""OIKOS is a social cooperative operating since 2000, focused on the work insertion and social inclusion of people in fragile and vulnerable conditions. It aims to provide opportunities for disadvantaged individuals through solidarity, respect for the environment, and local territory enhancement. As a Type B Social Cooperative, it specializes in creating work opportunities for people facing social exclusion and difficulties."",""geographicFocus"":""Headquartered in Villa d'Almè, Bergamo, Italy; specific sales or operational footprint beyond the local area is not publicly documented."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Oikos Cooperativa Sociale delivers work integration and social inclusion services targeting disadvantaged people. Its main activities include green area maintenance, cleaning services, transport for disabled and elderly people, and organic vineyard cultivation. These services facilitate social support and employment for vulnerable populations."",""researcherNotes"":""No detailed information on key executives was found on the company website or LinkedIn page. The cooperative operates as a Type B social cooperative in Italy, focused on vulnerable populations. Geographic footprint beyond the HQ address is not explicitly stated. The company profile aligns clearly with the Italian social cooperative model, with no ambiguity about identity. The lack of executive data may reflect small organizational size or privacy preferences."",""sectorDescription"":""Social cooperative sector specializing in integration and support services for vulnerable and disadvantaged populations to facilitate employment and social inclusion."",""sources"":{""clientCategories"":""https://www.oikoscoop.it/lavoro-onlus/"",""companyDescription"":""https://www.oikoscoop.it/"",""geographicFocus"":""https://www.oikoscoop.it/contatti/"",""keyExecutives"":null,""productDescription"":""https://www.oikoscoop.it/servizi/""},""websiteURL"":""https://www.oikoscoop.it/""}","Correctness: 95% Completeness: 85% The factual description of OIKOS as a Type B social cooperative founded in 2000, headquartered in Villa d'Almè (Bergamo), Italy, focused on work integration and social inclusion of disadvantaged individuals, especially through environmental and agricultural activities, is well supported by multiple sources including the company’s official site and third-party profiles[1][2][4]. The product/service description encompassing green area maintenance, cleaning, transport for vulnerable persons, and organic vineyard cultivation aligns with documented activities such as vineyard management and ecological services[1][2]. The lack of public information about key executives is noted in your data and matches the absence of such details on official and LinkedIn sources[1][4]. The geographic footprint is limited to the local area around Bergamo, with no verified evidence of broader operational scope, consistent with the available information[1][4]. The mention of innovative “Green Welfare” projects that link environmental work with wellbeing is corroborated[1]. The main incompleteness lies in detailed organization leadership data and explicit broader geographic operations, which remain undisclosed publicly[1][4]. The cooperative’s mission and sector fit the Italian social cooperative model without ambiguity[1][4][5]. Overall, the description is accurate and fairly complete, with only minor omissions typical for small social enterprises that maintain privacy on leadership and footprint. https://www.oikoscoop.it/, https://www.opesfund.eu/oikos/, https://www.visitbergamo.net/en/oggetto/cascina-del-ronco/, https://www.globalgiving.org/donate/101859/oikos-cooperativa-sociale-a-r-l/","{""clientCategories"":[""fragile individuals"",""disadvantaged people"",""socially excluded people""],""companyDescription"":""OIKOS is a social cooperative focused on work insertion and social inclusion of people in fragile and vulnerable conditions. Since 2000, it has been committed to work, solidarity, respect for the environment, and enhancement of the territory. It operates as a Type B Social Cooperative aiming to increase work opportunities for disadvantaged people. Key activities include maintenance of green areas, cleaning services, waste management, and organic vineyard cultivation."",""geographicFocus"":""HQ: Via Ronco Basso n.13, 24018 Villa d'Almè (BG), Italy; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Oikos Cooperativa Sociale offers the following products and services: work integration and social inclusion of people in difficulty. Specific areas of activity include: - Area verde (green area/landscaping), - Servizio pulizie (cleaning services), - Trasporto Disabili e Anziani (transport for disabled and elderly), - Lavorazione vigneti (vineyard work)."",""researcherNotes"":""The website does not provide specific names or titles of key executives despite checking the 'Our Team' page and linked LinkedIn page, which also lacks detailed executive information."",""sectorDescription"":""Operates in the social cooperative sector, providing integration and support services for disadvantaged and vulnerable populations."",""sources"":{""clientCategories"":""https://www.oikoscoop.it/lavoro-onlus/"",""companyDescription"":""https://www.oikoscoop.it/"",""geographicFocus"":""https://www.oikoscoop.it/contatti/"",""keyExecutives"":null,""productDescription"":""https://www.oikoscoop.it/servizi/""},""websiteURL"":""https://www.oikoscoop.it/""}" -Nordtreat,https://www.nordtreat.com,"Altana, Taaleri Bioindustry, UB FIGG",nordtreat.com,https://www.linkedin.com/company/nordtreat,"{""seniorLeadership"":[{""name"":""Oskari Laukkanen"",""title"":""Chief Financial Officer"",""profileURL"":""https://www.linkedin.com/in/laukkanen""}]}","{""seniorLeadership"":[{""name"":""Oskari Laukkanen"",""title"":""Chief Financial Officer"",""profileURL"":""https://www.linkedin.com/in/laukkanen""}]}","{ - ""websiteURL"": ""https://www.nordtreat.com"", - ""companyDescription"": ""Nordtreat is a company specializing in non-toxic, environmentally friendly flame retardant solutions for wood products, focusing on fire protection of timber such as solid wood cladding, thermally modified timber, CLT & glulam. Their technologies include NORFLAM® flame retardants."", - ""productDescription"": ""Nordtreat product offerings include Solid wood cladding, Thermally modified timber, CLT & glulam under Solutions. Flame retardants include NORFLAM® technology, NORFLAM® W310 (NT Deco), NORFLAM® W311, NORFLAM® W313, NORFLAM® W314, and Custom flame retardants. Services offered are Colour collections, On-site fire protection, Product development, and Certification."", - ""clientCategories"": [ - ""Residential buildings (apartment buildings, student homes)"", - ""Commercial buildings (hotels, shopping centres, offices)"", - ""Educational institutions (schools, day-care centres)"", - ""Senior care homes"", - ""Transport infrastructure (stations, airports)"", - ""Specialized buildings (sea rescue base, vineyard caveau)"" - ], - ""sectorDescription"": ""Operates in the sustainable wood construction and fire protection sector, providing environmentally sound flame retardant solutions for timber products."", - ""geographicFocus"": ""HQ: Vantaa, Finland; Sales Focus: Global partner network including treatment facilities, distributors, wood producers, construction companies, fire consultants, and architects."", - ""keyExecutives"": [ - {""name"": ""Outi Kallio"", ""title"": ""CEO (starting 2024/2025)"", ""sourceUrl"": ""https://www.nordtreat.com/en/insights/nordtreat-has-appointed-outi-kallio-as-the-new-ceo""}, - {""name"": ""Aki Borgentorp"", ""title"": ""Founder and outgoing CEO"", ""sourceUrl"": ""https://www.nordtreat.com/en/contact/company""}, - {""name"": ""Ari Risku"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.nordtreat.com/en/contact/company""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nordtreat.com/en/"", - ""productDescription"": ""https://nordtreat.com/en/solutions"", - ""clientCategories"": ""https://www.nordtreat.com/en/references"", - ""geographicFocus"": ""https://www.nordtreat.com/en/contact/company"", - ""keyExecutives"": ""https://www.nordtreat.com/en/contact/company"" - } -}","{ - ""websiteURL"": ""https://www.nordtreat.com"", - ""companyDescription"": ""Nordtreat is a company specializing in non-toxic, environmentally friendly flame retardant solutions for wood products, focusing on fire protection of timber such as solid wood cladding, thermally modified timber, CLT & glulam. Their technologies include NORFLAM® flame retardants."", - ""productDescription"": ""Nordtreat product offerings include Solid wood cladding, Thermally modified timber, CLT & glulam under Solutions. Flame retardants include NORFLAM® technology, NORFLAM® W310 (NT Deco), NORFLAM® W311, NORFLAM® W313, NORFLAM® W314, and Custom flame retardants. Services offered are Colour collections, On-site fire protection, Product development, and Certification."", - ""clientCategories"": [ - ""Residential buildings (apartment buildings, student homes)"", - ""Commercial buildings (hotels, shopping centres, offices)"", - ""Educational institutions (schools, day-care centres)"", - ""Senior care homes"", - ""Transport infrastructure (stations, airports)"", - ""Specialized buildings (sea rescue base, vineyard caveau)"" - ], - ""sectorDescription"": ""Operates in the sustainable wood construction and fire protection sector, providing environmentally sound flame retardant solutions for timber products."", - ""geographicFocus"": ""HQ: Vantaa, Finland; Sales Focus: Global partner network including treatment facilities, distributors, wood producers, construction companies, fire consultants, and architects."", - ""keyExecutives"": [ - {""name"": ""Outi Kallio"", ""title"": ""CEO (starting 2024/2025)"", ""sourceUrl"": ""https://www.nordtreat.com/en/insights/nordtreat-has-appointed-outi-kallio-as-the-new-ceo""}, - {""name"": ""Aki Borgentorp"", ""title"": ""Founder and outgoing CEO"", ""sourceUrl"": ""https://www.nordtreat.com/en/contact/company""}, - {""name"": ""Ari Risku"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.nordtreat.com/en/contact/company""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nordtreat.com/en/"", - ""productDescription"": ""https://nordtreat.com/en/solutions"", - ""clientCategories"": ""https://www.nordtreat.com/en/references"", - ""geographicFocus"": ""https://www.nordtreat.com/en/contact/company"", - ""keyExecutives"": ""https://www.nordtreat.com/en/contact/company"" - } -}",[],"{ - ""websiteURL"": ""https://www.nordtreat.com"", - ""companyDescription"": ""Nordtreat is a Finnish company specializing in non-toxic, environmentally friendly flame retardant solutions for wood products. They focus on fire protection of timber including solid wood cladding, thermally modified timber, cross-laminated timber (CLT), and glulam. Their patented NORFLAM® technologies replace traditional harmful flame retardants, promoting sustainable wood construction globally."", - ""productDescription"": ""Nordtreat offers flame retardants such as NORFLAM® W310 (NT Deco), W311, W313, W314, and custom solutions for wood products. These are applied to solid wood cladding, thermally modified timber, CLT, and glulam to provide environmentally sound, non-toxic fire protection while preserving wood texture. Services include colour collections, on-site fire protection, product development, and certification."", - ""clientCategories"": [ - ""Residential Buildings"", - ""Commercial Buildings"", - ""Educational Institutions"", - ""Senior Care Homes"", - ""Transport Infrastructure"", - ""Specialized Buildings"" - ], - ""sectorDescription"": ""Sustainable wood construction and fire protection sector specializing in environmentally sound flame retardants for timber products."", - ""geographicFocus"": ""Headquartered in Vantaa, Finland, Nordtreat operates globally through a partner network including treatment facilities, distributors, wood producers, construction companies, fire consultants, and architects."", - ""keyExecutives"": [ - { - ""name"": ""Outi Kallio"", - ""title"": ""CEO (starting 2024/2025)"", - ""sourceUrl"": ""https://www.nordtreat.com/en/insights/nordtreat-has-appointed-outi-kallio-as-the-new-ceo"" - }, - { - ""name"": ""Aki Borgentorp"", - ""title"": ""Founder and outgoing CEO"", - ""sourceUrl"": ""https://www.nordtreat.com/en/contact/company"" - }, - { - ""name"": ""Ari Risku"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.nordtreat.com/en/contact/company"" - }, - { - ""name"": ""Oskari Laukkanen"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/laukkanen"" - } - ], - ""researcherNotes"": ""The company is confirmed as the Finnish Nordtreat Oy headquartered in Vantaa, specializing in ecological flame retardants for wood products, with founding dating back to 2015. Key executive data includes the recent CEO transition from founder Aki Borgentorp to Outi Kallio starting 2024/2025. CFO Oskari Laukkanen was identified from LinkedIn. Geographic focus and sector align with official company site details. Some financial registry info shows Nordtreat AS in Estonia, but the Finnish Nordtreat Oy and its web presence are primary and consistent with the query domain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nordtreat.com/en/"", - ""productDescription"": ""https://nordtreat.com/en/solutions"", - ""clientCategories"": ""https://www.nordtreat.com/en/references"", - ""geographicFocus"": ""https://www.nordtreat.com/en/contact/company"", - ""keyExecutives"": ""https://www.nordtreat.com/en/contact/company"" - } -}","{""clientCategories"":[""Residential Buildings"",""Commercial Buildings"",""Educational Institutions"",""Senior Care Homes"",""Transport Infrastructure"",""Specialized Buildings""],""companyDescription"":""Nordtreat is a Finnish company specializing in non-toxic, environmentally friendly flame retardant solutions for wood products. They focus on fire protection of timber including solid wood cladding, thermally modified timber, cross-laminated timber (CLT), and glulam. Their patented NORFLAM® technologies replace traditional harmful flame retardants, promoting sustainable wood construction globally."",""geographicFocus"":""Headquartered in Vantaa, Finland, Nordtreat operates globally through a partner network including treatment facilities, distributors, wood producers, construction companies, fire consultants, and architects."",""keyExecutives"":[{""name"":""Outi Kallio"",""sourceUrl"":""https://www.nordtreat.com/en/insights/nordtreat-has-appointed-outi-kallio-as-the-new-ceo"",""title"":""CEO (starting 2024/2025)""},{""name"":""Aki Borgentorp"",""sourceUrl"":""https://www.nordtreat.com/en/contact/company"",""title"":""Founder and outgoing CEO""},{""name"":""Ari Risku"",""sourceUrl"":""https://www.nordtreat.com/en/contact/company"",""title"":""Founder""},{""name"":""Oskari Laukkanen"",""sourceUrl"":""https://www.linkedin.com/in/laukkanen"",""title"":""Chief Financial Officer""}],""missingImportantFields"":[],""productDescription"":""Nordtreat offers flame retardants such as NORFLAM® W310 (NT Deco), W311, W313, W314, and custom solutions for wood products. These are applied to solid wood cladding, thermally modified timber, CLT, and glulam to provide environmentally sound, non-toxic fire protection while preserving wood texture. Services include colour collections, on-site fire protection, product development, and certification."",""researcherNotes"":""The company is confirmed as the Finnish Nordtreat Oy headquartered in Vantaa, specializing in ecological flame retardants for wood products, with founding dating back to 2015. Key executive data includes the recent CEO transition from founder Aki Borgentorp to Outi Kallio starting 2024/2025. CFO Oskari Laukkanen was identified from LinkedIn. Geographic focus and sector align with official company site details. Some financial registry info shows Nordtreat AS in Estonia, but the Finnish Nordtreat Oy and its web presence are primary and consistent with the query domain."",""sectorDescription"":""Sustainable wood construction and fire protection sector specializing in environmentally sound flame retardants for timber products."",""sources"":{""clientCategories"":""https://www.nordtreat.com/en/references"",""companyDescription"":""https://www.nordtreat.com/en/"",""geographicFocus"":""https://www.nordtreat.com/en/contact/company"",""keyExecutives"":""https://www.nordtreat.com/en/contact/company"",""productDescription"":""https://nordtreat.com/en/solutions""},""websiteURL"":""https://www.nordtreat.com""}","Correctness: 98% Completeness: 95% The information about Nordtreat is highly accurate and well-supported by multiple authoritative sources. Nordtreat is a Finnish company, founded in 2015, specializing in environmentally friendly, non-toxic flame retardant solutions for wood products including solid wood cladding, thermally modified timber, CLT, and glulam, focusing on sustainable wood construction globally[1][2][5]. The company is headquartered in Vantaa, Finland, operating globally via a partner network comprising treatment facilities, distributors, and construction-related clients[1]. Key executives include founder and outgoing CEO Aki Borgentorp, founder Ari Risku, CFO Oskari Laukkanen, and incoming CEO Outi Kallio starting in 2024/2025 as confirmed by company sources[1]. Their flagship technology is branded NORFLAM®, emphasizing bio-based, certified fire retardants that maintain wood texture and align with sustainability goals[2][4][5]. Product offerings include NORFLAM® W310 (NT Deco), W311, W313, W314, and custom solutions, alongside fire protection services and certification support[1]. The company has collaborations with research institutes and sustainable development commitments like the UN Global Compact[1]. Some minor omissions include explicit financial data or detailed employee counts beyond 2019 estimates, but such details are less critical here. Overall, the summarized information is complete and factually grounded in the official Nordtreat website and recent press coverage dating to 2024-2025. https://www.nordtreat.com/en/contact/company https://www.nordtreat.com/en/ https://www.nordtreat.com/en/solutions https://greenstep.com/references/nordtreat-created-a-competitive-advantage-through-sustainability https://www.altana.com/press-news/details/altana-ag-and-ub-figg-invest-in-the-finnish-technology-company-nordtreat.html","{""clientCategories"":[""Residential buildings (apartment buildings, student homes)"",""Commercial buildings (hotels, shopping centres, offices)"",""Educational institutions (schools, day-care centres)"",""Senior care homes"",""Transport infrastructure (stations, airports)"",""Specialized buildings (sea rescue base, vineyard caveau)""],""companyDescription"":""Nordtreat is a company specializing in non-toxic, environmentally friendly flame retardant solutions for wood products, focusing on fire protection of timber such as solid wood cladding, thermally modified timber, CLT & glulam. Their technologies include NORFLAM® flame retardants."",""geographicFocus"":""HQ: Vantaa, Finland; Sales Focus: Global partner network including treatment facilities, distributors, wood producers, construction companies, fire consultants, and architects."",""keyExecutives"":[{""name"":""Outi Kallio"",""sourceUrl"":""https://www.nordtreat.com/en/insights/nordtreat-has-appointed-outi-kallio-as-the-new-ceo"",""title"":""CEO (starting 2024/2025)""},{""name"":""Aki Borgentorp"",""sourceUrl"":""https://www.nordtreat.com/en/contact/company"",""title"":""Founder and outgoing CEO""},{""name"":""Ari Risku"",""sourceUrl"":""https://www.nordtreat.com/en/contact/company"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Nordtreat product offerings include Solid wood cladding, Thermally modified timber, CLT & glulam under Solutions. Flame retardants include NORFLAM® technology, NORFLAM® W310 (NT Deco), NORFLAM® W311, NORFLAM® W313, NORFLAM® W314, and Custom flame retardants. Services offered are Colour collections, On-site fire protection, Product development, and Certification."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable wood construction and fire protection sector, providing environmentally sound flame retardant solutions for timber products."",""sources"":{""clientCategories"":""https://www.nordtreat.com/en/references"",""companyDescription"":""https://www.nordtreat.com/en/"",""geographicFocus"":""https://www.nordtreat.com/en/contact/company"",""keyExecutives"":""https://www.nordtreat.com/en/contact/company"",""productDescription"":""https://nordtreat.com/en/solutions""},""websiteURL"":""https://www.nordtreat.com""}" -KÄÄPÄ Biotech,https://kaapabiotech.com/,,kaapabiotech.com,https://www.linkedin.com/company/kääpä-biotech,"{""seniorLeadership"":[{""name"":""Eric Puro"",""title"":""CEO & Co-founder"",""profileURL"":""https://www.linkedin.com/in/eric-puro-4b9a851bb""},{""name"":""Mareus Suni"",""title"":""Chief Financial Officer (CFO)"",""profileURL"":""https://fi.linkedin.com/in/mareus-suni-aa75b0134""},{""name"":""Heikki Kiheri"",""title"":""Scientific Director"",""profileURL"":""https://www.linkedin.com/in/heikki-kiheri-9554b1244""}]}","{""seniorLeadership"":[{""name"":""Eric Puro"",""title"":""CEO & Co-founder"",""profileURL"":""https://www.linkedin.com/in/eric-puro-4b9a851bb""},{""name"":""Mareus Suni"",""title"":""Chief Financial Officer (CFO)"",""profileURL"":""https://fi.linkedin.com/in/mareus-suni-aa75b0134""},{""name"":""Heikki Kiheri"",""title"":""Scientific Director"",""profileURL"":""https://www.linkedin.com/in/heikki-kiheri-9554b1244""}]}","{ - ""websiteURL"": ""https://kaapabiotech.com/"", - ""companyDescription"": ""Developer of a range of organic functional mushroom extracts designed to promote cognitive health and overall wellness. Offers hand-harvested, sustainably sourced mushrooms for health-conscious consumers to incorporate natural bioactive compounds into their routines for enhanced vitality."", - ""productDescription"": ""Organic functional mushroom extracts."", - ""clientCategories"": [""Health-conscious consumers""], - ""sectorDescription"": ""Operates in the Personal Products and Biotechnology sector within Life Sciences, focusing on organic functional mushroom extracts for health and wellness."", - ""geographicFocus"": ""HQ: Teilinummentie 4, 09120 Karjalohja, Finland; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company's own website does not provide sufficient detailed information on company mission statement, client categories, leadership, or detailed geographic sales focus. External source PitchBook was used to gather core data. Leadership details are missing."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://pitchbook.com/profiles/company/533271-79"", - ""productDescription"": ""https://pitchbook.com/profiles/company/533271-79"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/533271-79"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/533271-79"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://kaapabiotech.com/"", - ""companyDescription"": ""Developer of a range of organic functional mushroom extracts designed to promote cognitive health and overall wellness. Offers hand-harvested, sustainably sourced mushrooms for health-conscious consumers to incorporate natural bioactive compounds into their routines for enhanced vitality."", - ""productDescription"": ""Organic functional mushroom extracts."", - ""clientCategories"": [""Health-conscious consumers""], - ""sectorDescription"": ""Operates in the Personal Products and Biotechnology sector within Life Sciences, focusing on organic functional mushroom extracts for health and wellness."", - ""geographicFocus"": ""HQ: Teilinummentie 4, 09120 Karjalohja, Finland; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company's own website does not provide sufficient detailed information on company mission statement, client categories, leadership, or detailed geographic sales focus. External source PitchBook was used to gather core data. Leadership details are missing."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://pitchbook.com/profiles/company/533271-79"", - ""productDescription"": ""https://pitchbook.com/profiles/company/533271-79"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/533271-79"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/533271-79"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://kaapabiotech.com"", - ""companyDescription"": ""KÄÄPÄ Biotech is a Finnish biotechnology company specializing in researching, innovating, and developing functional mushroom products to promote cognitive health, overall wellness, and healthier ecosystems. The company uses proprietary extraction technology to deliver superior organic functional mushroom ingredients for global wellness, food, and supplement industries."", - ""productDescription"": ""KÄÄPÄ Biotech develops and supplies organic functional mushroom extracts produced using their patented Ultrasonic Assisted Extraction technology (NordRelease™), ensuring high bioactive compound quality. Their products serve health-conscious consumers and businesses seeking advanced mushroom-based supplements and bioactive ingredients."", - ""clientCategories"": [ - ""Health-Conscious Consumers"", - ""Food and Supplement Brands"", - ""Nutraceutical Companies"" - ], - ""sectorDescription"": ""Biotechnology company focused on developing and commercializing organic functional mushroom extracts for the personal products and health wellness sectors."", - ""geographicFocus"": ""Headquartered in Karjalohja, Finland, KÄÄPÄ Biotech serves European and international markets, scaling production to meet rising global consumer demand, particularly within the European single market."", - ""keyExecutives"": [ - { - ""name"": ""Eric Puro"", - ""title"": ""CEO & Co-founder"", - ""sourceUrl"": ""https://www.linkedin.com/in/eric-puro-4b9a851bb"" - }, - { - ""name"": ""Mareus Suni"", - ""title"": ""Chief Financial Officer (CFO)"", - ""sourceUrl"": ""https://fi.linkedin.com/in/mareus-suni-aa75b0134"" - }, - { - ""name"": ""Heikki Kiheri"", - ""title"": ""Scientific Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/heikki-kiheri-9554b1244"" - } - ], - ""researcherNotes"": ""The company is confirmed as KÄÄPÄ Biotech of Finland, based on domain match, Finnish HQ city Karjalohja, and distinctive functional mushroom biotech focus. Additional leadership data supplemented from LinkedIn profiles. Geographic sales focus is primarily European and global but not explicitly detailed in public sources. Company mission and product info corroborated from company website and multiple press sources including recent EU EFSA approval and strategic investments. Missing exact sales territories beyond Europe. Sources: PitchBook, company website, LinkedIn, and recent news articles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://pitchbook.com/profiles/company/533271-79"", - ""productDescription"": ""https://pitchbook.com/profiles/company/533271-79"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/533271-79"", - ""geographicFocus"": ""https://nutraceuticalbusinessreview.com/kaapa-biotech-functional-mushroom-900k-scaling-investment"", - ""keyExecutives"": ""https://www.linkedin.com/in/eric-puro-4b9a851bb"" - } -}","{""clientCategories"":[""Health-Conscious Consumers"",""Food and Supplement Brands"",""Nutraceutical Companies""],""companyDescription"":""KÄÄPÄ Biotech is a Finnish biotechnology company specializing in researching, innovating, and developing functional mushroom products to promote cognitive health, overall wellness, and healthier ecosystems. The company uses proprietary extraction technology to deliver superior organic functional mushroom ingredients for global wellness, food, and supplement industries."",""geographicFocus"":""Headquartered in Karjalohja, Finland, KÄÄPÄ Biotech serves European and international markets, scaling production to meet rising global consumer demand, particularly within the European single market."",""keyExecutives"":[{""name"":""Eric Puro"",""sourceUrl"":""https://www.linkedin.com/in/eric-puro-4b9a851bb"",""title"":""CEO & Co-founder""},{""name"":""Mareus Suni"",""sourceUrl"":""https://fi.linkedin.com/in/mareus-suni-aa75b0134"",""title"":""Chief Financial Officer (CFO)""},{""name"":""Heikki Kiheri"",""sourceUrl"":""https://www.linkedin.com/in/heikki-kiheri-9554b1244"",""title"":""Scientific Director""}],""missingImportantFields"":[],""productDescription"":""KÄÄPÄ Biotech develops and supplies organic functional mushroom extracts produced using their patented Ultrasonic Assisted Extraction technology (NordRelease™), ensuring high bioactive compound quality. Their products serve health-conscious consumers and businesses seeking advanced mushroom-based supplements and bioactive ingredients."",""researcherNotes"":""The company is confirmed as KÄÄPÄ Biotech of Finland, based on domain match, Finnish HQ city Karjalohja, and distinctive functional mushroom biotech focus. Additional leadership data supplemented from LinkedIn profiles. Geographic sales focus is primarily European and global but not explicitly detailed in public sources. Company mission and product info corroborated from company website and multiple press sources including recent EU EFSA approval and strategic investments. Missing exact sales territories beyond Europe. Sources: PitchBook, company website, LinkedIn, and recent news articles."",""sectorDescription"":""Biotechnology company focused on developing and commercializing organic functional mushroom extracts for the personal products and health wellness sectors."",""sources"":{""clientCategories"":""https://pitchbook.com/profiles/company/533271-79"",""companyDescription"":""https://pitchbook.com/profiles/company/533271-79"",""geographicFocus"":""https://nutraceuticalbusinessreview.com/kaapa-biotech-functional-mushroom-900k-scaling-investment"",""keyExecutives"":""https://www.linkedin.com/in/eric-puro-4b9a851bb"",""productDescription"":""https://pitchbook.com/profiles/company/533271-79""},""websiteURL"":""https://kaapabiotech.com""}","Correctness: 98% Completeness: 92% The profile of KÄÄPÄ Biotech is highly accurate and well-supported by multiple authoritative sources including the company's official site, LinkedIn profiles of key executives, industry press, and investment coverage. The company is correctly described as a Finnish biotechnology firm founded in 2018, headquartered in Karjalohja, specializing in organic functional mushroom extracts using patented Ultrasonic Assisted Extraction technology (NordRelease™), targeting health-conscious consumers and B2B nutraceutical markets globally, with a strong production presence in Europe[1][4][5]. Leadership data for CEO Eric Puro and CFO Mareus Suni align with LinkedIn confirmations[4], and the product focus on functional mushroom extracts promoting cognitive health and wellness is consistent across sources[1][5]. Recent funding rounds of €900k from PeakBridge and $2.5m from Applied Food Sciences support the growth narrative and geographical scaling mostly focused on Europe and some international markets[5]. The company’s sustainable and science-based mission and multiple divisions (KÄÄPÄ Mushrooms, Nordic Mushrooms, KÄÄPÄ Forest) are consistently reported[2][4]. Missing from the claim is explicit detailed geographic sales data beyond Europe and any very recent leadership or funding updates after late 2023, slightly limiting completeness given the today date of 2025. Nonetheless, the data matches recent press and corporate disclosures as of late 2023/early 2024[1][5]. URLs: https://kaapabiotech.com/media/press-release/kaapa-biotech-has-won-start-award-nutraingredients-awards-2021, https://www.linkedin.com/in/eric-puro-4b9a851bb, https://nutraceuticalbusinessreview.com/kaapa-biotech-functional-mushroom-900k-scaling-investment, https://thehub.io/startups/kaapa-biotech-oy, https://harmonious-entrepreneurship.org/2023/10/31/kaapa-biotech-nature-inspired-medicinal-mushrooms/","{""clientCategories"":[""Health-conscious consumers""],""companyDescription"":""Developer of a range of organic functional mushroom extracts designed to promote cognitive health and overall wellness. Offers hand-harvested, sustainably sourced mushrooms for health-conscious consumers to incorporate natural bioactive compounds into their routines for enhanced vitality."",""geographicFocus"":""HQ: Teilinummentie 4, 09120 Karjalohja, Finland; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Organic functional mushroom extracts."",""researcherNotes"":""The company's own website does not provide sufficient detailed information on company mission statement, client categories, leadership, or detailed geographic sales focus. External source PitchBook was used to gather core data. Leadership details are missing."",""sectorDescription"":""Operates in the Personal Products and Biotechnology sector within Life Sciences, focusing on organic functional mushroom extracts for health and wellness."",""sources"":{""clientCategories"":""https://pitchbook.com/profiles/company/533271-79"",""companyDescription"":""https://pitchbook.com/profiles/company/533271-79"",""geographicFocus"":""https://pitchbook.com/profiles/company/533271-79"",""keyExecutives"":null,""productDescription"":""https://pitchbook.com/profiles/company/533271-79""},""websiteURL"":""https://kaapabiotech.com/""}" -BioFish,https://biofish.no,Fearnley Securities,biofish.no,https://www.linkedin.com/company/biofish-as/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://biofish.no"", - ""companyDescription"": ""BioFish is a Norwegian independent producer of high-quality smolt and post-smolt with a RAS production facility in Ljones, Norway. The company focuses on fish health and water environment. It operates in the aquaculture industry sector."", - ""productDescription"": ""BioFish specializes in producing robust and high-quality smolt and post-smolt in a biosafe atmosphere up to 1000 grams before delivery. Their production emphasizes sustainability through zero emissions, recycling 99% of water, sustainable feed, fish welfare, and waste management. Products include:\n- High-quality smolt adapted for challenging sea conditions\n- Post-smolt facilitating better biomass utilization and reduced disease risk for fish farmers\nThe company uses fresh and sea water for optimal smolt health, limiting pump use to reduce stress, and is strategically located in a high fish farming density area for logistical benefits."", - ""clientCategories"": [""Fish Farmers"", ""Aquaculture Operators""], - ""sectorDescription"": ""Operates in the aquaculture sector, specializing in sustainable production of high-quality smolt and post-smolt for the fish farming industry."", - ""geographicFocus"": ""HQ: Tangavegen 195, 620 Tørvikbygd, Norway; Sales Focus: Norwegian fish farming sites within one day of transport from the facility located near the Hardangerfjord."", - ""keyExecutives"": [ - {""name"": ""Sondre Hagerup Johnsrud"", ""title"": ""CEO"", ""sourceUrl"": ""https://biofish.no/about-biofish/""}, - {""name"": ""Lena Hovda Aas"", ""title"": ""Operations Manager"", ""sourceUrl"": ""https://biofish.no/contact/""}, - {""name"": ""Johnny Duedahl"", ""title"": ""CFO"", ""sourceUrl"": ""https://biofish.no/contact/""}, - {""name"": ""Torbjørn Gjelsvik"", ""title"": ""Chairperson"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Jens-Julius Nygaard"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Bent-Are Brunes Ratvik"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Kjetil Grønskag"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Margrethe Smith"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""} - ], - ""linkedDocuments"": [ - ""https://biofish.no/wp-content/uploads/2024/06/BioFish-at-Fearnley-Haavind-aquaculture-seminar-2024.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://biofish.no/about-biofish/"", - ""productDescription"": ""https://biofish.no/our-smolt"", - ""clientCategories"": ""https://biofish.no/our-smolt"", - ""geographicFocus"": ""https://biofish.no/contact/"", - ""keyExecutives"": ""https://biofish.no/governance/"" - } -} -","{ - ""websiteURL"": ""https://biofish.no"", - ""companyDescription"": ""BioFish is a Norwegian independent producer of high-quality smolt and post-smolt with a RAS production facility in Ljones, Norway. The company focuses on fish health and water environment. It operates in the aquaculture industry sector."", - ""productDescription"": ""BioFish specializes in producing robust and high-quality smolt and post-smolt in a biosafe atmosphere up to 1000 grams before delivery. Their production emphasizes sustainability through zero emissions, recycling 99% of water, sustainable feed, fish welfare, and waste management. Products include:\n- High-quality smolt adapted for challenging sea conditions\n- Post-smolt facilitating better biomass utilization and reduced disease risk for fish farmers\nThe company uses fresh and sea water for optimal smolt health, limiting pump use to reduce stress, and is strategically located in a high fish farming density area for logistical benefits."", - ""clientCategories"": [""Fish Farmers"", ""Aquaculture Operators""], - ""sectorDescription"": ""Operates in the aquaculture sector, specializing in sustainable production of high-quality smolt and post-smolt for the fish farming industry."", - ""geographicFocus"": ""HQ: Tangavegen 195, 620 Tørvikbygd, Norway; Sales Focus: Norwegian fish farming sites within one day of transport from the facility located near the Hardangerfjord."", - ""keyExecutives"": [ - {""name"": ""Sondre Hagerup Johnsrud"", ""title"": ""CEO"", ""sourceUrl"": ""https://biofish.no/about-biofish/""}, - {""name"": ""Lena Hovda Aas"", ""title"": ""Operations Manager"", ""sourceUrl"": ""https://biofish.no/contact/""}, - {""name"": ""Johnny Duedahl"", ""title"": ""CFO"", ""sourceUrl"": ""https://biofish.no/contact/""}, - {""name"": ""Torbjørn Gjelsvik"", ""title"": ""Chairperson"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Jens-Julius Nygaard"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Bent-Are Brunes Ratvik"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Kjetil Grønskag"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""}, - {""name"": ""Margrethe Smith"", ""title"": ""Board Member"", ""sourceUrl"": ""https://biofish.no/governance/""} - ], - ""linkedDocuments"": [ - ""https://biofish.no/wp-content/uploads/2024/06/BioFish-at-Fearnley-Haavind-aquaculture-seminar-2024.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://biofish.no/about-biofish/"", - ""productDescription"": ""https://biofish.no/our-smolt"", - ""clientCategories"": ""https://biofish.no/our-smolt"", - ""geographicFocus"": ""https://biofish.no/contact/"", - ""keyExecutives"": ""https://biofish.no/governance/"" - } -} -",[],"{ - ""websiteURL"": ""https://biofish.no"", - ""companyDescription"": ""BioFish is a Norwegian independent producer of high-quality smolt and post-smolt, operating a recirculating aquaculture system (RAS) facility in Ljones, Norway, near the Hardangerfjord. The company focuses on fish health, sustainability, and water environment, producing robust smolt adapted for challenging sea conditions primarily for Norwegian fish farmers. BioFish emphasizes zero emissions, recycling 99% of water, sustainable feed, and strong biological performance, aiming to meet growing demand while addressing key aquaculture industry challenges."", - ""productDescription"": ""BioFish specializes in sustainable production of high-quality smolt and post-smolt up to 1000 grams in a biosafe environment using fresh and sea water to prepare fish for seawater conditions while minimizing stress via gravity-based transfer methods. Their products include robust smolt and post-smolt that enable better biomass utilization and reduced disease risk for fish farmers. The company's RAS system recycles about 99% of the water used, supporting environmental sustainability."", - ""clientCategories"": [""Fish Farmers"", ""Aquaculture Operators""], - ""sectorDescription"": ""Operates in the aquaculture sector, specializing in sustainable production of high-quality smolt and post-smolt for the fish farming industry."", - ""geographicFocus"": ""Sales focus is on Norwegian fish farming sites within one day of transport from the facility near the Hardangerfjord, Western Norway."", - ""keyExecutives"": [ - { - ""name"": ""Sondre Hagerup Johnsrud"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://biofish.no/about-biofish/"" - }, - { - ""name"": ""Lena Hovda Aas"", - ""title"": ""Operations Manager"", - ""sourceUrl"": ""https://biofish.no/contact/"" - }, - { - ""name"": ""Johnny Duedahl"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://biofish.no/contact/"" - }, - { - ""name"": ""Torbjørn Gjelsvik"", - ""title"": ""Chairperson"", - ""sourceUrl"": ""https://biofish.no/governance/"" - }, - { - ""name"": ""Jens-Julius Nygaard"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://biofish.no/governance/"" - }, - { - ""name"": ""Bent-Are Brunes Ratvik"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://biofish.no/governance/"" - }, - { - ""name"": ""Kjetil Grønskag"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://biofish.no/governance/"" - }, - { - ""name"": ""Margrethe Smith"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://biofish.no/governance/"" - } - ], - ""researcherNotes"": ""The entity is confidently disambiguated by the primary domain biofish.no, headquarters location in Western Norway (Ljones near Hardangerfjord), and focus on smolt production using RAS technology. The company is currently a standalone entity preparing to be acquired by Langøylaks, a fact confirmed through multiple business news sources. Geographic focus is well supported by company site and logistics comments emphasizing proximity to Norwegian fish farms. No gaps remain for required fields."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://biofish.no/about-biofish/"", - ""productDescription"": ""https://biofish.no/our-smolt"", - ""clientCategories"": ""https://biofish.no/our-smolt"", - ""geographicFocus"": ""https://biofish.no/contact/"", - ""keyExecutives"": ""https://biofish.no/governance/"" - } -}","{""clientCategories"":[""Fish Farmers"",""Aquaculture Operators""],""companyDescription"":""BioFish is a Norwegian independent producer of high-quality smolt and post-smolt, operating a recirculating aquaculture system (RAS) facility in Ljones, Norway, near the Hardangerfjord. The company focuses on fish health, sustainability, and water environment, producing robust smolt adapted for challenging sea conditions primarily for Norwegian fish farmers. BioFish emphasizes zero emissions, recycling 99% of water, sustainable feed, and strong biological performance, aiming to meet growing demand while addressing key aquaculture industry challenges."",""geographicFocus"":""Sales focus is on Norwegian fish farming sites within one day of transport from the facility near the Hardangerfjord, Western Norway."",""keyExecutives"":[{""name"":""Sondre Hagerup Johnsrud"",""sourceUrl"":""https://biofish.no/about-biofish/"",""title"":""CEO""},{""name"":""Lena Hovda Aas"",""sourceUrl"":""https://biofish.no/contact/"",""title"":""Operations Manager""},{""name"":""Johnny Duedahl"",""sourceUrl"":""https://biofish.no/contact/"",""title"":""CFO""},{""name"":""Torbjørn Gjelsvik"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Chairperson""},{""name"":""Jens-Julius Nygaard"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""},{""name"":""Bent-Are Brunes Ratvik"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""},{""name"":""Kjetil Grønskag"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""},{""name"":""Margrethe Smith"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""}],""missingImportantFields"":[],""productDescription"":""BioFish specializes in sustainable production of high-quality smolt and post-smolt up to 1000 grams in a biosafe environment using fresh and sea water to prepare fish for seawater conditions while minimizing stress via gravity-based transfer methods. Their products include robust smolt and post-smolt that enable better biomass utilization and reduced disease risk for fish farmers. The company's RAS system recycles about 99% of the water used, supporting environmental sustainability."",""researcherNotes"":""The entity is confidently disambiguated by the primary domain biofish.no, headquarters location in Western Norway (Ljones near Hardangerfjord), and focus on smolt production using RAS technology. The company is currently a standalone entity preparing to be acquired by Langøylaks, a fact confirmed through multiple business news sources. Geographic focus is well supported by company site and logistics comments emphasizing proximity to Norwegian fish farms. No gaps remain for required fields."",""sectorDescription"":""Operates in the aquaculture sector, specializing in sustainable production of high-quality smolt and post-smolt for the fish farming industry."",""sources"":{""clientCategories"":""https://biofish.no/our-smolt"",""companyDescription"":""https://biofish.no/about-biofish/"",""geographicFocus"":""https://biofish.no/contact/"",""keyExecutives"":""https://biofish.no/governance/"",""productDescription"":""https://biofish.no/our-smolt""},""websiteURL"":""https://biofish.no""}","Correctness: 100% Completeness: 100% The information about BioFish is fully accurate and complete based on multiple recent and authoritative sources. BioFish is confirmed as an independent Norwegian producer of high-quality smolt and post-smolt using a RAS facility located in Ljones near the Hardangerfjord, Western Norway, with strong emphasis on fish health, sustainability, and water environment (sources [1][2][3][4][5]). Leadership roles are accurate as of 2025, with Sondre Hagerup Johnsrud as CEO, and the board composition matches official company disclosures from early 2025 ([2][3]). The company’s geographic focus is clearly on Norwegian fish farms within one day’s transport from their facility, supporting operational and logistical efficiency ([1][3][4]). Product descriptions detailing smolt/post-smolt production in a biosafe, gravity-transfer method and recycling 99% of water align precisely with the company’s official statements ([3][4]). The recent financial and operational reports from 2024 and Q1 2025 further corroborate sales volumes, client agreements, and the company’s growth trajectory ([1][4][5]). All key executives, the company description, product details, geographic focus, and sustainability claims are corroborated by multiple primary sources, including the official website and financial reports dated up to May 2025. URLs: https://biofish.no/about-biofish/, https://biofish.no/governance/, https://storage.mfn.se/4247df1e-037d-4ff6-a0ae-4c3c8710d076/biofish-3q-2024-report.pdf, https://www.inderes.dk/en/releases/biofish-holding-as-new-agreement-secures-sale-of-720-tons-per-year-for-2025-2027, https://www.inderes.dk/en/releases/biofish-holding-as-first-quarter-2025-results","{""clientCategories"":[""Fish Farmers"",""Aquaculture Operators""],""companyDescription"":""BioFish is a Norwegian independent producer of high-quality smolt and post-smolt with a RAS production facility in Ljones, Norway. The company focuses on fish health and water environment. It operates in the aquaculture industry sector."",""geographicFocus"":""HQ: Tangavegen 195, 620 Tørvikbygd, Norway; Sales Focus: Norwegian fish farming sites within one day of transport from the facility located near the Hardangerfjord."",""keyExecutives"":[{""name"":""Sondre Hagerup Johnsrud"",""sourceUrl"":""https://biofish.no/about-biofish/"",""title"":""CEO""},{""name"":""Lena Hovda Aas"",""sourceUrl"":""https://biofish.no/contact/"",""title"":""Operations Manager""},{""name"":""Johnny Duedahl"",""sourceUrl"":""https://biofish.no/contact/"",""title"":""CFO""},{""name"":""Torbjørn Gjelsvik"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Chairperson""},{""name"":""Jens-Julius Nygaard"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""},{""name"":""Bent-Are Brunes Ratvik"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""},{""name"":""Kjetil Grønskag"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""},{""name"":""Margrethe Smith"",""sourceUrl"":""https://biofish.no/governance/"",""title"":""Board Member""}],""linkedDocuments"":[""https://biofish.no/wp-content/uploads/2024/06/BioFish-at-Fearnley-Haavind-aquaculture-seminar-2024.pdf""],""missingImportantFields"":[],""productDescription"":""BioFish specializes in producing robust and high-quality smolt and post-smolt in a biosafe atmosphere up to 1000 grams before delivery. Their production emphasizes sustainability through zero emissions, recycling 99% of water, sustainable feed, fish welfare, and waste management. Products include:\n- High-quality smolt adapted for challenging sea conditions\n- Post-smolt facilitating better biomass utilization and reduced disease risk for fish farmers\nThe company uses fresh and sea water for optimal smolt health, limiting pump use to reduce stress, and is strategically located in a high fish farming density area for logistical benefits."",""researcherNotes"":null,""sectorDescription"":""Operates in the aquaculture sector, specializing in sustainable production of high-quality smolt and post-smolt for the fish farming industry."",""sources"":{""clientCategories"":""https://biofish.no/our-smolt"",""companyDescription"":""https://biofish.no/about-biofish/"",""geographicFocus"":""https://biofish.no/contact/"",""keyExecutives"":""https://biofish.no/governance/"",""productDescription"":""https://biofish.no/our-smolt""},""websiteURL"":""https://biofish.no""}" -CollectiveCrunch,http://www.collectivecrunch.com/,Thominvest,collectivecrunch.com,https://www.linkedin.com/company/collectivecrunch,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.collectivecrunch.com/"", - ""companyDescription"": ""CollectiveCrunch is a company offering AI-powered forest data products aimed at forest owners, sawmills, cities, and municipalities to support better decision-making in forest management. Their mission revolves around providing accurate, cost-efficient data solutions such as Inventory, Bark Beetle detection, Biodiversity index, and Scout assessments, leveraging AI models based on country-specific lidar and satellite data with no need for additional sampling. The company emphasizes time and cost savings with 90% accuracy in predictions and integrates with popular forest management systems."", - ""productDescription"": ""Solutions offered for forest owners, timber purchasers, investors, and nature-based projects include: understanding forest biodiversity, knowing forest inventories and carbon stocks, receiving thinning and harvest recommendations and yields, detecting bark beetle outbreaks and risks early, getting EUDR reports and identifying clear-cuts, and receiving alerts for tending needs for seedlings. Details include use of satellite data for monitoring, high accuracy detection, and support for sustainability reporting."", - ""clientCategories"": [""Forestry industry"",""Forest management entities"",""Companies involved in forest resource monitoring and digitalization""], - ""sectorDescription"": ""Operates in the forestry technology sector, providing AI-driven forest data analytics and decision support solutions for sustainable forest management."", - ""geographicFocus"": ""HQ: Collective Crunch Oy, Finland, Keilaranta 6, 02150 Espoo; Collective Crunch GmbH, Germany, Torstraße 98, 10119 Berlin. No explicit geographic sales regions mentioned on the website."", - ""keyExecutives"": [ - {""name"": ""Juho"",""title"": ""Chief Data Scientist"",""sourceUrl"": ""https://collectivecrunch.com/the-company""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct PDF or other document links found on the website. Leadership beyond co-founders and a Chief Data Scientist was not publicly detailed. No specific sales regions mentioned."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://collectivecrunch.com/the-company"", - ""productDescription"": ""https://collectivecrunch.com/solutions"", - ""clientCategories"": ""https://collectivecrunch.com/customers"", - ""geographicFocus"": ""https://collectivecrunch.com/contact"", - ""keyExecutives"": ""https://collectivecrunch.com/the-company"" - } -}","{ - ""websiteURL"": ""http://www.collectivecrunch.com/"", - ""companyDescription"": ""CollectiveCrunch is a company offering AI-powered forest data products aimed at forest owners, sawmills, cities, and municipalities to support better decision-making in forest management. Their mission revolves around providing accurate, cost-efficient data solutions such as Inventory, Bark Beetle detection, Biodiversity index, and Scout assessments, leveraging AI models based on country-specific lidar and satellite data with no need for additional sampling. The company emphasizes time and cost savings with 90% accuracy in predictions and integrates with popular forest management systems."", - ""productDescription"": ""Solutions offered for forest owners, timber purchasers, investors, and nature-based projects include: understanding forest biodiversity, knowing forest inventories and carbon stocks, receiving thinning and harvest recommendations and yields, detecting bark beetle outbreaks and risks early, getting EUDR reports and identifying clear-cuts, and receiving alerts for tending needs for seedlings. Details include use of satellite data for monitoring, high accuracy detection, and support for sustainability reporting."", - ""clientCategories"": [""Forestry industry"",""Forest management entities"",""Companies involved in forest resource monitoring and digitalization""], - ""sectorDescription"": ""Operates in the forestry technology sector, providing AI-driven forest data analytics and decision support solutions for sustainable forest management."", - ""geographicFocus"": ""HQ: Collective Crunch Oy, Finland, Keilaranta 6, 02150 Espoo; Collective Crunch GmbH, Germany, Torstraße 98, 10119 Berlin. No explicit geographic sales regions mentioned on the website."", - ""keyExecutives"": [ - {""name"": ""Juho"",""title"": ""Chief Data Scientist"",""sourceUrl"": ""https://collectivecrunch.com/the-company""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct PDF or other document links found on the website. Leadership beyond co-founders and a Chief Data Scientist was not publicly detailed. No specific sales regions mentioned."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://collectivecrunch.com/the-company"", - ""productDescription"": ""https://collectivecrunch.com/solutions"", - ""clientCategories"": ""https://collectivecrunch.com/customers"", - ""geographicFocus"": ""https://collectivecrunch.com/contact"", - ""keyExecutives"": ""https://collectivecrunch.com/the-company"" - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://collectivecrunch.com"", - ""companyDescription"": ""CollectiveCrunch is an AI-driven forestry technology company providing advanced forest data products to forest owners, sawmills, cities, and municipalities. Their mission is to deliver accurate, cost-efficient forest analytics and decision support, enabling sustainable forest management through AI models based on country-specific satellite and lidar data without additional sampling. They focus on improving forest inventory accuracy, early detection of bark beetle risks, biodiversity assessment, and integration with forest management systems, emphasizing time and cost savings with about 90% prediction accuracy."", - ""productDescription"": ""CollectiveCrunch offers AI-powered solutions that deliver forest inventories, bark beetle outbreak detection, biodiversity indexes, thinning and harvest recommendations, carbon stock estimation, and EUDR reporting. Their products use satellite and lidar data to monitor forest health, detect damages early, and support sustainable management and reporting. Users include forest owners, timber buyers, investors, and nature-based project managers, gaining insights to optimize harvesting, protect biodiversity, and track carbon stocks in near real-time."", - ""clientCategories"": [ - ""Forestry Industries"", - ""Forest Management Entities"", - ""Forest Resource Monitoring Companies"", - ""Digitalization Service Providers"" - ], - ""sectorDescription"": ""Forestry technology sector specializing in AI-driven forest data analytics and sustainable forest management decision support."", - ""geographicFocus"": ""Headquartered in Finland and Germany with projects and collaborations primarily focused in Europe; no explicit global sales footprint stated."", - ""keyExecutives"": [ - { - ""name"": ""Juho"", - ""title"": ""Chief Data Scientist"", - ""sourceUrl"": ""https://collectivecrunch.com/the-company"" - }, - { - ""name"": ""Mika Korvenranta"", - ""title"": ""Chief Product Officer"", - ""sourceUrl"": ""https://www.ponsse.com/company/news/-/asset_publisher/P4s3zYhpxHUQ/content/ponsse-and-collectivecrunch-collaborate-in-forward-27-innovation-programme"" - }, - { - ""name"": ""Jarkko Lipponen"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887"" - }, - { - ""name"": ""Rolf Schmitz"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by website domain and Finland HQ location. Leadership information supplemented from recent press sources; original keyExecutives field missing CEO and CPO. Geographic footprint primarily Finland and Germany with European focus; global sales footprint not publicly detailed. Some leadership names found in press releases and news articles rather than on LinkedIn or regulatory filings."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://collectivecrunch.com/the-company"", - ""productDescription"": ""https://collectivecrunch.com/solutions"", - ""clientCategories"": ""https://collectivecrunch.com/customers"", - ""geographicFocus"": ""https://collectivecrunch.com/contact"", - ""keyExecutives"": ""https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887"" - } -}","{""clientCategories"":[""Forestry Industries"",""Forest Management Entities"",""Forest Resource Monitoring Companies"",""Digitalization Service Providers""],""companyDescription"":""CollectiveCrunch is an AI-driven forestry technology company providing advanced forest data products to forest owners, sawmills, cities, and municipalities. Their mission is to deliver accurate, cost-efficient forest analytics and decision support, enabling sustainable forest management through AI models based on country-specific satellite and lidar data without additional sampling. They focus on improving forest inventory accuracy, early detection of bark beetle risks, biodiversity assessment, and integration with forest management systems, emphasizing time and cost savings with about 90% prediction accuracy."",""geographicFocus"":""Headquartered in Finland and Germany with projects and collaborations primarily focused in Europe; no explicit global sales footprint stated."",""keyExecutives"":[{""name"":""Juho"",""sourceUrl"":""https://collectivecrunch.com/the-company"",""title"":""Chief Data Scientist""},{""name"":""Mika Korvenranta"",""sourceUrl"":""https://www.ponsse.com/company/news/-/asset_publisher/P4s3zYhpxHUQ/content/ponsse-and-collectivecrunch-collaborate-in-forward-27-innovation-programme"",""title"":""Chief Product Officer""},{""name"":""Jarkko Lipponen"",""sourceUrl"":""https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887"",""title"":""Chief Executive Officer""},{""name"":""Rolf Schmitz"",""sourceUrl"":""https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887"",""title"":""Co-Founder and CEO""}],""missingImportantFields"":[],""productDescription"":""CollectiveCrunch offers AI-powered solutions that deliver forest inventories, bark beetle outbreak detection, biodiversity indexes, thinning and harvest recommendations, carbon stock estimation, and EUDR reporting. Their products use satellite and lidar data to monitor forest health, detect damages early, and support sustainable management and reporting. Users include forest owners, timber buyers, investors, and nature-based project managers, gaining insights to optimize harvesting, protect biodiversity, and track carbon stocks in near real-time."",""researcherNotes"":""Entity disambiguation confirmed by website domain and Finland HQ location. Leadership information supplemented from recent press sources; original keyExecutives field missing CEO and CPO. Geographic footprint primarily Finland and Germany with European focus; global sales footprint not publicly detailed. Some leadership names found in press releases and news articles rather than on LinkedIn or regulatory filings."",""sectorDescription"":""Forestry technology sector specializing in AI-driven forest data analytics and sustainable forest management decision support."",""sources"":{""clientCategories"":""https://collectivecrunch.com/customers"",""companyDescription"":""https://collectivecrunch.com/the-company"",""geographicFocus"":""https://collectivecrunch.com/contact"",""keyExecutives"":""https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887"",""productDescription"":""https://collectivecrunch.com/solutions""},""websiteURL"":""https://collectivecrunch.com""}","Correctness: 95% Completeness: 90% The description is largely accurate regarding CollectiveCrunch's profile as an AI-driven forestry technology company headquartered in Finland (Espoo) and Germany, focusing on Europe primarily[1][3]. The company's leadership includes co-CEOs Rolf Schmitz and Jarkko Lipponen, with Mika Korvenranta as Chief Product Officer and Juho as Chief Data Scientist, consistent with recent press[1][4]. Their products involve forest inventories, bark beetle risk detection, biodiversity assessment, carbon stock estimation, and EUDR reporting using satellite and lidar data without additional sampling[3][4]. The AI solution named Linda Forest was launched around 2019 and is used by forest owners, timber buyers, and investors to support sustainable forest management with about 90% prediction accuracy claimed[2][3][4]. The €500K ESA funding and a €1.4M raise are documented, confirming active development and growth[2][5]. Missing from the summary are explicit details on global sales footprint and updated headcount (about 11-50 employees), though the European focus is confirmed[1][3]. Overall, the content aligns well with official and press sources, with minor omissions on some operational scale details and investor specifics. https://collectivecrunch.com/the-company/ https://www.environmentenergyleader.com/stories/collectivecrunch-launches-new-ai-powered-tool-for-sustainable-forestry,3887 https://innovatek.co.nz/collectivecrunch-gets-e500k-to-expand-its-forestry-technology/ https://thehub.io/startups/collectivecrunch https://siliconcanals.com/collectivecrunch-raises-1-4m/","{""clientCategories"":[""Forestry industry"",""Forest management entities"",""Companies involved in forest resource monitoring and digitalization""],""companyDescription"":""CollectiveCrunch is a company offering AI-powered forest data products aimed at forest owners, sawmills, cities, and municipalities to support better decision-making in forest management. Their mission revolves around providing accurate, cost-efficient data solutions such as Inventory, Bark Beetle detection, Biodiversity index, and Scout assessments, leveraging AI models based on country-specific lidar and satellite data with no need for additional sampling. The company emphasizes time and cost savings with 90% accuracy in predictions and integrates with popular forest management systems."",""geographicFocus"":""HQ: Collective Crunch Oy, Finland, Keilaranta 6, 02150 Espoo; Collective Crunch GmbH, Germany, Torstraße 98, 10119 Berlin. No explicit geographic sales regions mentioned on the website."",""keyExecutives"":[{""name"":""Juho"",""sourceUrl"":""https://collectivecrunch.com/the-company"",""title"":""Chief Data Scientist""}],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Solutions offered for forest owners, timber purchasers, investors, and nature-based projects include: understanding forest biodiversity, knowing forest inventories and carbon stocks, receiving thinning and harvest recommendations and yields, detecting bark beetle outbreaks and risks early, getting EUDR reports and identifying clear-cuts, and receiving alerts for tending needs for seedlings. Details include use of satellite data for monitoring, high accuracy detection, and support for sustainability reporting."",""researcherNotes"":""No direct PDF or other document links found on the website. Leadership beyond co-founders and a Chief Data Scientist was not publicly detailed. No specific sales regions mentioned."",""sectorDescription"":""Operates in the forestry technology sector, providing AI-driven forest data analytics and decision support solutions for sustainable forest management."",""sources"":{""clientCategories"":""https://collectivecrunch.com/customers"",""companyDescription"":""https://collectivecrunch.com/the-company"",""geographicFocus"":""https://collectivecrunch.com/contact"",""keyExecutives"":""https://collectivecrunch.com/the-company"",""productDescription"":""https://collectivecrunch.com/solutions""},""websiteURL"":""http://www.collectivecrunch.com/""}" -FIFAX,http://www.fifax.ax/,"FV Group Holding AB, Tesi, Turret Oy, Veritas Finland, Ã…lands Ömsesidiga Försäkringsbolag,",fifax.ax,https://www.linkedin.com/company/fifax-ab,"{""seniorLeadership"":[{""name"":""Samppa Ruohtula"",""title"":""Associate Partner"",""linkedInURL"":""https://www.linkedin.com/in/sampparuohtula""},{""name"":""Kimmo Jalo"",""title"":""Chief Technology Officer"",""linkedInURL"":""https://fi.linkedin.com/in/kimmo-jalo""},{""name"":""Panu Routila"",""title"":""Chairman of Fifax's board"",""linkedInURL"":""https://www.linkedin.com/company/fifax-ab""}]}","{""seniorLeadership"":[{""name"":""Samppa Ruohtula"",""title"":""Associate Partner"",""linkedInURL"":""https://www.linkedin.com/in/sampparuohtula""},{""name"":""Kimmo Jalo"",""title"":""Chief Technology Officer"",""linkedInURL"":""https://fi.linkedin.com/in/kimmo-jalo""},{""name"":""Panu Routila"",""title"":""Chairman of Fifax's board"",""linkedInURL"":""https://www.linkedin.com/company/fifax-ab""}]}","{ - ""websiteURL"": ""http://www.fifax.ax/"", - ""companyDescription"": ""Fifax, founded in 2012, aims to be a leading land-based fish farming company producing sustainable, healthy rainbow trout using modern recirculating aquaculture system (RAS) methods at their production facility in Åland, with a capacity over 3000 tons per year and around 30 employees. Mission: Deliver better fish for the world, focusing on ecological sustainability and high-quality fish without antibiotics."", - ""productDescription"": ""Fresh, antibiotic-free rainbow trout, available whole and gutted, tailored in size and weight to customer needs, rich in omega-3, antioxidants, and vitamins."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the land-based fish farming and aquaculture sector, focusing on sustainable production of rainbow trout."", - ""geographicFocus"": ""HQ: Industrivägen 115, 22 270 Eckerö, Åland"", - ""keyExecutives"": [ - {""name"": ""Samppa Ruohtula"", ""title"": ""CEO"", ""sourceUrl"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen""}, - {""name"": ""Linda Lindroos"", ""title"": ""CFO"", ""sourceUrl"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen""} - ], - ""linkedDocuments"": [ - ""https://fifax.ax/wp-content/uploads/2023/03/fifax-abp-bokslustkommunike-pa-svenska.pdf"", - ""https://fifax.ax/for-investerare/bolagsstyrning"", - ""https://fifax.ax/for-investerare/rapporter-och-presentationer"" - ], - ""researcherNotes"": ""Client categories were not specifically listed on the website, and geographic sales regions beyond the HQ location were not found."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""http://www.fifax.ax/"", - ""productDescription"": ""http://www.fifax.ax/"", - ""clientCategories"": null, - ""geographicFocus"": ""http://www.fifax.ax/kontakt"", - ""keyExecutives"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"" - } -}","{ - ""websiteURL"": ""http://www.fifax.ax/"", - ""companyDescription"": ""Fifax, founded in 2012, aims to be a leading land-based fish farming company producing sustainable, healthy rainbow trout using modern recirculating aquaculture system (RAS) methods at their production facility in Åland, with a capacity over 3000 tons per year and around 30 employees. Mission: Deliver better fish for the world, focusing on ecological sustainability and high-quality fish without antibiotics."", - ""productDescription"": ""Fresh, antibiotic-free rainbow trout, available whole and gutted, tailored in size and weight to customer needs, rich in omega-3, antioxidants, and vitamins."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the land-based fish farming and aquaculture sector, focusing on sustainable production of rainbow trout."", - ""geographicFocus"": ""HQ: Industrivägen 115, 22 270 Eckerö, Åland"", - ""keyExecutives"": [ - {""name"": ""Samppa Ruohtula"", ""title"": ""CEO"", ""sourceUrl"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen""}, - {""name"": ""Linda Lindroos"", ""title"": ""CFO"", ""sourceUrl"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen""} - ], - ""linkedDocuments"": [ - ""https://fifax.ax/wp-content/uploads/2023/03/fifax-abp-bokslustkommunike-pa-svenska.pdf"", - ""https://fifax.ax/for-investerare/bolagsstyrning"", - ""https://fifax.ax/for-investerare/rapporter-och-presentationer"" - ], - ""researcherNotes"": ""Client categories were not specifically listed on the website, and geographic sales regions beyond the HQ location were not found."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""http://www.fifax.ax/"", - ""productDescription"": ""http://www.fifax.ax/"", - ""clientCategories"": null, - ""geographicFocus"": ""http://www.fifax.ax/kontakt"", - ""keyExecutives"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://fifax.ax"", - ""companyDescription"": ""Fifax, founded in 2012 and headquartered in Åland Islands, Finland, is a land-based fish farming company focused on sustainable and environmentally responsible production of rainbow trout using modern Recirculating Aquaculture System (RAS) technology. The company aims to be a global leader in producing antibiotic-free, high-quality fish with minimal environmental impact, serving markets primarily in Finland and Sweden. Fifax’s mission centers on delivering better fish to the world through ecological sustainability and innovation in fish farming."", - ""productDescription"": ""Fifax produces fresh, antibiotic-free rainbow trout raised in land-based RAS facilities that recirculate filtered seawater to minimize environmental impact. The trout are harvested at about 2.4 kilograms, available whole or gutted, and tailored to customer specifications. Their fish are rich in omega-3 fatty acids, antioxidants, and vitamins, offering a healthy alternative to imported fish for regional markets."", - ""clientCategories"": [ - ""Retailers"", - ""Food Service Operators"", - ""Distributors"", - ""Wholesalers"", - ""Exporters"" - ], - ""sectorDescription"": ""Operates in the land-based aquaculture sector specializing in sustainable rainbow trout farming using recirculating aquaculture systems (RAS) to reduce environmental impact."", - ""geographicFocus"": ""Primary focus on the Nordic region, especially Finland and Sweden, leveraging a facility on Åland Islands for local and regional market supply."", - ""keyExecutives"": [ - { - ""name"": ""Samppa Ruohtula"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"" - }, - { - ""name"": ""Linda Lindroos"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"" - } - ], - ""researcherNotes"": ""Company disambiguated by domain match, founding year (2012), HQ location (Åland), product description, and CEO name. Client categories were not explicitly defined on the company website but inferred from industry common customers such as retailers and distributors based on market references. Geographic sales focus is primarily Nordic (Finland and Sweden) as supported by multiple sources. Fifax recently filed for bankruptcy as of July 2025, which impacts ongoing operations. Key executives confirmed from company and LinkedIn sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.fifax.ax/"", - ""productDescription"": ""http://www.fifax.ax/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.seafoodsource.com/news/business-finance/finnish-trout-farmer-fifax-raises-eur-15-4-million-though-ipo"", - ""keyExecutives"": ""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"" - } -}","{""clientCategories"":[""Retailers"",""Food Service Operators"",""Distributors"",""Wholesalers"",""Exporters""],""companyDescription"":""Fifax, founded in 2012 and headquartered in Åland Islands, Finland, is a land-based fish farming company focused on sustainable and environmentally responsible production of rainbow trout using modern Recirculating Aquaculture System (RAS) technology. The company aims to be a global leader in producing antibiotic-free, high-quality fish with minimal environmental impact, serving markets primarily in Finland and Sweden. Fifax’s mission centers on delivering better fish to the world through ecological sustainability and innovation in fish farming."",""geographicFocus"":""Primary focus on the Nordic region, especially Finland and Sweden, leveraging a facility on Åland Islands for local and regional market supply."",""keyExecutives"":[{""name"":""Samppa Ruohtula"",""sourceUrl"":""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"",""title"":""CEO""},{""name"":""Linda Lindroos"",""sourceUrl"":""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""Fifax produces fresh, antibiotic-free rainbow trout raised in land-based RAS facilities that recirculate filtered seawater to minimize environmental impact. The trout are harvested at about 2.4 kilograms, available whole or gutted, and tailored to customer specifications. Their fish are rich in omega-3 fatty acids, antioxidants, and vitamins, offering a healthy alternative to imported fish for regional markets."",""researcherNotes"":""Company disambiguated by domain match, founding year (2012), HQ location (Åland), product description, and CEO name. Client categories were not explicitly defined on the company website but inferred from industry common customers such as retailers and distributors based on market references. Geographic sales focus is primarily Nordic (Finland and Sweden) as supported by multiple sources. Fifax recently filed for bankruptcy as of July 2025, which impacts ongoing operations. Key executives confirmed from company and LinkedIn sources."",""sectorDescription"":""Operates in the land-based aquaculture sector specializing in sustainable rainbow trout farming using recirculating aquaculture systems (RAS) to reduce environmental impact."",""sources"":{""clientCategories"":null,""companyDescription"":""http://www.fifax.ax/"",""geographicFocus"":""https://www.seafoodsource.com/news/business-finance/finnish-trout-farmer-fifax-raises-eur-15-4-million-though-ipo"",""keyExecutives"":""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"",""productDescription"":""http://www.fifax.ax/""},""websiteURL"":""https://fifax.ax""}","Correctness: 96% Completeness: 93% The statement is highly accurate and comprehensive. Fifax was founded in 2012 and is based in the Åland Islands, Finland, operating a land-based RAS facility for rainbow trout focused on sustainable, antibiotic-free production with minimal environmental impact[1][2][4][5]. Key executives Samppa Ruohtula (CEO) and Linda Lindroos (CFO) are correctly identified as of the most recent sources (2025)[1][4]. The company’s main markets are Finland and Sweden, with production tailored to customer needs, harvesting trout at about 2.4 kg, consistent with public descriptions[1][4]. The use of filtered Baltic Sea water and a 99.7% recirculation rate aligns with the stated environmental sustainability goals[1][2][5]. Notably, the recent 2022 infectious hematopoietic necrosis (IHN) virus outbreak and related operational interruptions are missing but reduce completeness only slightly as it is a relevant recent event affecting ongoing operations[3][5]. The reported IPO raise of EUR 15.4 million and shareholder expansion is confirmed, but the statement lacks explicit mention of the 2025 bankruptcy filing, which is material to the company's current status and completeness[1][3]. Overall, the information is well supported by multiple credible and recent sources from official company pages and seafood industry news[1][2][4]. URLs: https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen, https://www.seafoodsource.com/news/business-finance/finnish-trout-farmer-fifax-raises-eur-15-4-million-though-ipo, https://asc-aqua.org/news/fifax-becomes-the-first-farm-in-finland-to-achieve-asc-certification/, https://www.landbasedaq.com/biomass-estimation-fifax-rainbow-trout/finnish-ras-trout-farmer-fifax-trials-biomass-camera/1911169, https://ultraaqua.com/cases/trout-ras-in-finland/","{""clientCategories"":[],""companyDescription"":""Fifax, founded in 2012, aims to be a leading land-based fish farming company producing sustainable, healthy rainbow trout using modern recirculating aquaculture system (RAS) methods at their production facility in Åland, with a capacity over 3000 tons per year and around 30 employees. Mission: Deliver better fish for the world, focusing on ecological sustainability and high-quality fish without antibiotics."",""geographicFocus"":""HQ: Industrivägen 115, 22 270 Eckerö, Åland"",""keyExecutives"":[{""name"":""Samppa Ruohtula"",""sourceUrl"":""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"",""title"":""CEO""},{""name"":""Linda Lindroos"",""sourceUrl"":""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"",""title"":""CFO""}],""linkedDocuments"":[""https://fifax.ax/wp-content/uploads/2023/03/fifax-abp-bokslustkommunike-pa-svenska.pdf"",""https://fifax.ax/for-investerare/bolagsstyrning"",""https://fifax.ax/for-investerare/rapporter-och-presentationer""],""missingImportantFields"":[""clientCategories""],""productDescription"":""Fresh, antibiotic-free rainbow trout, available whole and gutted, tailored in size and weight to customer needs, rich in omega-3, antioxidants, and vitamins."",""researcherNotes"":""Client categories were not specifically listed on the website, and geographic sales regions beyond the HQ location were not found."",""sectorDescription"":""Operates in the land-based fish farming and aquaculture sector, focusing on sustainable production of rainbow trout."",""sources"":{""clientCategories"":null,""companyDescription"":""http://www.fifax.ax/"",""geographicFocus"":""http://www.fifax.ax/kontakt"",""keyExecutives"":""https://fifax.ax/for-investerare/bolagsstyrning#ledningsgruppen"",""productDescription"":""http://www.fifax.ax/""},""websiteURL"":""http://www.fifax.ax/""}" -Source.ag,https://source.ag,"Acre Venture Partners, Astanor Ventures",source.ag,https://www.linkedin.com/company/source-ag,"{""seniorLeadership"":[{""name"":""Rien Kamman"",""title"":""Founder and CEO"",""profile"":""https://www.linkedin.com/company/source-ag""},{""name"":""Ernst van Bruggen"",""title"":""Founder and CPO"",""profile"":""https://www.linkedin.com/company/source-ag""},{""name"":""Matthias Stammen"",""title"":""Chief Commercial Officer (CCO)"",""profile"":""https://www.linkedin.com/in/matthiasstammen""},{""name"":""Magnus Hilding"",""title"":""Chief Technology Officer (CTO)"",""profile"":""https://www.linkedin.com/in/magnushilding""},{""name"":""Trish Malarkey"",""title"":""Independent Director"",""profile"":""https://www.linkedin.com/company/source-ag""}]}","{""seniorLeadership"":[{""name"":""Rien Kamman"",""title"":""Founder and CEO"",""profile"":""https://www.linkedin.com/company/source-ag""},{""name"":""Ernst van Bruggen"",""title"":""Founder and CPO"",""profile"":""https://www.linkedin.com/company/source-ag""},{""name"":""Matthias Stammen"",""title"":""Chief Commercial Officer (CCO)"",""profile"":""https://www.linkedin.com/in/matthiasstammen""},{""name"":""Magnus Hilding"",""title"":""Chief Technology Officer (CTO)"",""profile"":""https://www.linkedin.com/in/magnushilding""},{""name"":""Trish Malarkey"",""title"":""Independent Director"",""profile"":""https://www.linkedin.com/company/source-ag""}]}","{ - ""websiteURL"": ""https://source.ag"", - ""companyDescription"": ""Our mission is to empower growers to provide everyone around the globe with sufficient fruits and vegetables, in a climate-resilient and resource-efficient way. We do that by building the world’s best AI software for growers - to help start, run, and expand successful growing businesses worldwide. Source.ag harnesses cutting-edge AI technology to enhance fruit and vegetable growers' capabilities, delivering solutions that increase efficiency, improve results, and reduce operational risks. They collaborate closely with growers globally, combining on-ground knowledge with expertise in plant science and data analytics to create advanced, scalable AI software tailored to modern agriculture challenges. Their overarching vision is a world where sustainable agriculture ensures fresh produce availability for everyone."", - ""productDescription"": ""Source.ag offers AI-powered greenhouse management solutions including Source Workspace (centralized greenhouse data tracking), Harvest Forecast (yield prediction and forecasting), Cultivation Management (crop performance simulations and strategy adjustments), Irrigation Control (AI-driven precise water and nutrient distribution), and Source Plant App (plant measurements and management)."", - ""clientCategories"": [""Growers"", ""Horticulture Companies"", ""Sustainable Greenhouse Cultivation"", ""Precision Agriculture"", ""Irrigation Management""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing AI-powered software solutions to optimize fruit and vegetable cultivation in greenhouse environments."", - ""geographicFocus"": ""HQ: Johan Huizingalaan 763a, 1066 VH Amsterdam; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Rien Kamman"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.source.ag/about-us"" - }, - { - ""name"": ""Ernst van Bruggen"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.source.ag/about-us"" - }, - { - ""name"": ""Trish Malarkey"", - ""title"": ""Independent Director"", - ""sourceUrl"": ""https://www.source.ag/about-us"" - } - ], - ""linkedDocuments"": [ - ""https://www.source.ag/storage/terms-of-use-ipad-north-america-(july-2025)-clean.pdf"", - ""https://www.source.ag/storage/terms-of-use-ipad-eu-and-row-(july-2025)-clean.pdf"" - ], - ""researcherNotes"": ""The website does not provide explicit geographic sales regions beyond the Amsterdam HQ location. Specific CEO, CTO, COO, or CFO roles are not listed on the website."", - ""missingImportantFields"": [""sectorDescription""], - ""sources"": { - ""companyDescription"": ""https://www.source.ag/about-us"", - ""productDescription"": ""https://www.source.ag/solutions"", - ""clientCategories"": ""https://www.source.ag/cases"", - ""geographicFocus"": ""https://www.source.ag/contact"", - ""keyExecutives"": ""https://www.source.ag/about-us"" - } -}","{ - ""websiteURL"": ""https://source.ag"", - ""companyDescription"": ""Our mission is to empower growers to provide everyone around the globe with sufficient fruits and vegetables, in a climate-resilient and resource-efficient way. We do that by building the world’s best AI software for growers - to help start, run, and expand successful growing businesses worldwide. Source.ag harnesses cutting-edge AI technology to enhance fruit and vegetable growers' capabilities, delivering solutions that increase efficiency, improve results, and reduce operational risks. They collaborate closely with growers globally, combining on-ground knowledge with expertise in plant science and data analytics to create advanced, scalable AI software tailored to modern agriculture challenges. Their overarching vision is a world where sustainable agriculture ensures fresh produce availability for everyone."", - ""productDescription"": ""Source.ag offers AI-powered greenhouse management solutions including Source Workspace (centralized greenhouse data tracking), Harvest Forecast (yield prediction and forecasting), Cultivation Management (crop performance simulations and strategy adjustments), Irrigation Control (AI-driven precise water and nutrient distribution), and Source Plant App (plant measurements and management)."", - ""clientCategories"": [""Growers"", ""Horticulture Companies"", ""Sustainable Greenhouse Cultivation"", ""Precision Agriculture"", ""Irrigation Management""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing AI-powered software solutions to optimize fruit and vegetable cultivation in greenhouse environments."", - ""geographicFocus"": ""HQ: Johan Huizingalaan 763a, 1066 VH Amsterdam; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Rien Kamman"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.source.ag/about-us"" - }, - { - ""name"": ""Ernst van Bruggen"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.source.ag/about-us"" - }, - { - ""name"": ""Trish Malarkey"", - ""title"": ""Independent Director"", - ""sourceUrl"": ""https://www.source.ag/about-us"" - } - ], - ""linkedDocuments"": [ - ""https://www.source.ag/storage/terms-of-use-ipad-north-america-(july-2025)-clean.pdf"", - ""https://www.source.ag/storage/terms-of-use-ipad-eu-and-row-(july-2025)-clean.pdf"" - ], - ""researcherNotes"": ""The website does not provide explicit geographic sales regions beyond the Amsterdam HQ location. Specific CEO, CTO, COO, or CFO roles are not listed on the website."", - ""missingImportantFields"": [""sectorDescription""], - ""sources"": { - ""companyDescription"": ""https://www.source.ag/about-us"", - ""productDescription"": ""https://www.source.ag/solutions"", - ""clientCategories"": ""https://www.source.ag/cases"", - ""geographicFocus"": ""https://www.source.ag/contact"", - ""keyExecutives"": ""https://www.source.ag/about-us"" - } -}","[""sectorDescription""]","{ - ""websiteURL"": ""https://source.ag"", - ""companyDescription"": ""Source.ag empowers fruit and vegetable growers worldwide with advanced AI software to build climate-resilient and resource-efficient growing businesses. Founded in 2020, it combines plant science, data analytics, and AI to optimize and scale modern greenhouse operations, helping growers increase efficiency, improve yields, and reduce risks through sophisticated cultivation management solutions."", - ""productDescription"": ""Source.ag offers AI-driven greenhouse management solutions including Source Workspace (centralized data platform for operational transparency), Harvest Forecast (yield prediction and forecasting), Cultivation Management (crop performance simulation and strategy optimization), Irrigation Control (precise AI-guided water and nutrient distribution), and the Source Plant App (plant measurement and management), enabling growers to make data-driven decisions to boost productivity and profitability."", - ""clientCategories"": [ - ""Growers"", - ""Horticulture Companies"", - ""Sustainable Greenhouse Cultivation"", - ""Precision Agriculture"", - ""Irrigation Management"" - ], - ""sectorDescription"": ""Agricultural technology company specializing in AI-powered software solutions that optimize fruit and vegetable cultivation in controlled greenhouse environments."", - ""geographicFocus"": ""Primary sales focus includes North America (Canada, United States, Mexico) and multiple countries across Europe and Asia, serving growers in over 18 countries globally."", - ""keyExecutives"": [ - { - ""name"": ""Rien Kamman"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.linkedin.com/company/source-ag"" - }, - { - ""name"": ""Ernst van Bruggen"", - ""title"": ""Founder and CPO"", - ""sourceUrl"": ""https://www.linkedin.com/company/source-ag"" - }, - { - ""name"": ""Matthias Stammen"", - ""title"": ""Chief Commercial Officer (CCO)"", - ""sourceUrl"": ""https://www.linkedin.com/in/matthiasstammen"" - }, - { - ""name"": ""Magnus Hilding"", - ""title"": ""Chief Technology Officer (CTO)"", - ""sourceUrl"": ""https://www.linkedin.com/in/magnushilding"" - }, - { - ""name"": ""Trish Malarkey"", - ""title"": ""Independent Director"", - ""sourceUrl"": ""https://www.linkedin.com/company/source-ag"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by primary website domain (source.ag), Amsterdam HQ, founding year (2020), and matching leadership names from LinkedIn and the official site. CEO and CPO titles updated based on LinkedIn profiles, adding CCO and CTO roles not listed on the company website. Geographic sales focus updated with North American expansion announced in 2024 and presence in 18+ countries globally. No official detailed global footprint statement found, so geographic focus is summarized from press releases and company news. Missing fields from original source resolved except no detailed official sales region beyond North America and general global reach."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.source.ag/about-us"", - ""productDescription"": ""https://www.source.ag/solutions"", - ""clientCategories"": ""https://www.source.ag/cases"", - ""geographicFocus"": ""https://www.source.ag/news/source-ag-opens-its-new-office-in-north-america-welcomes-the-regional-team"", - ""keyExecutives"": ""https://www.linkedin.com/company/source-ag"" - } -}","{""clientCategories"":[""Growers"",""Horticulture Companies"",""Sustainable Greenhouse Cultivation"",""Precision Agriculture"",""Irrigation Management""],""companyDescription"":""Source.ag empowers fruit and vegetable growers worldwide with advanced AI software to build climate-resilient and resource-efficient growing businesses. Founded in 2020, it combines plant science, data analytics, and AI to optimize and scale modern greenhouse operations, helping growers increase efficiency, improve yields, and reduce risks through sophisticated cultivation management solutions."",""geographicFocus"":""Primary sales focus includes North America (Canada, United States, Mexico) and multiple countries across Europe and Asia, serving growers in over 18 countries globally."",""keyExecutives"":[{""name"":""Rien Kamman"",""sourceUrl"":""https://www.linkedin.com/company/source-ag"",""title"":""Founder and CEO""},{""name"":""Ernst van Bruggen"",""sourceUrl"":""https://www.linkedin.com/company/source-ag"",""title"":""Founder and CPO""},{""name"":""Matthias Stammen"",""sourceUrl"":""https://www.linkedin.com/in/matthiasstammen"",""title"":""Chief Commercial Officer (CCO)""},{""name"":""Magnus Hilding"",""sourceUrl"":""https://www.linkedin.com/in/magnushilding"",""title"":""Chief Technology Officer (CTO)""},{""name"":""Trish Malarkey"",""sourceUrl"":""https://www.linkedin.com/company/source-ag"",""title"":""Independent Director""}],""missingImportantFields"":[],""productDescription"":""Source.ag offers AI-driven greenhouse management solutions including Source Workspace (centralized data platform for operational transparency), Harvest Forecast (yield prediction and forecasting), Cultivation Management (crop performance simulation and strategy optimization), Irrigation Control (precise AI-guided water and nutrient distribution), and the Source Plant App (plant measurement and management), enabling growers to make data-driven decisions to boost productivity and profitability."",""researcherNotes"":""Entity disambiguation confirmed by primary website domain (source.ag), Amsterdam HQ, founding year (2020), and matching leadership names from LinkedIn and the official site. CEO and CPO titles updated based on LinkedIn profiles, adding CCO and CTO roles not listed on the company website. Geographic sales focus updated with North American expansion announced in 2024 and presence in 18+ countries globally. No official detailed global footprint statement found, so geographic focus is summarized from press releases and company news. Missing fields from original source resolved except no detailed official sales region beyond North America and general global reach."",""sectorDescription"":""Agricultural technology company specializing in AI-powered software solutions that optimize fruit and vegetable cultivation in controlled greenhouse environments."",""sources"":{""clientCategories"":""https://www.source.ag/cases"",""companyDescription"":""https://www.source.ag/about-us"",""geographicFocus"":""https://www.source.ag/news/source-ag-opens-its-new-office-in-north-america-welcomes-the-regional-team"",""keyExecutives"":""https://www.linkedin.com/company/source-ag"",""productDescription"":""https://www.source.ag/solutions""},""websiteURL"":""https://source.ag""}","Correctness: 100% Completeness: 98% The provided information about Source.ag is factually accurate and well corroborated by multiple official and reputable sources. Source.ag was founded in November 2020 by Rien Kamman (CEO) and Ernst van Bruggen (CPO), as confirmed by their official About Us page and LinkedIn profiles[1][2][3]. The company is headquartered in Amsterdam, focused on AI-powered greenhouse cultivation technology, serving growers globally with a presence in over 18 countries including North America and Europe[1][4]. Their product suite includes AI-driven solutions such as Source Workspace, Harvest Forecast, Cultivation Management, Irrigation Control, and the Source Plant App, all aimed at optimizing crop yields and resource efficiency[1][4]. The key executives—Rien Kamman (Founder & CEO), Ernst van Bruggen (Founder & CPO), Matthias Stammen (Chief Commercial Officer), Magnus Hilding (Chief Technology Officer), and Trish Malarkey (Independent Director)—are confirmed from official company LinkedIn pages and news releases[1][4]. The geographic footprint includes primary sales focus in North America (Canada, US, Mexico) and multiple countries worldwide, as announced in 2024 expansions[1][4]. Funding milestones such as the $10M seed in 2022 and $27M Series A in 2023 are documented on the official site as well[1]. The only minor deduction in completeness is for lacking explicit mention of detailed global coverage beyond “18 countries” or comprehensive sales region breakdowns beyond North America, which matches the publicly available information[1]. No factual inaccuracies or significant omissions were found in leadership, founding, or product claims. URLs supporting these points include https://www.source.ag/about-us, https://www.source.ag/news/source-ag-welcomes-new-cco-visionary-leader-from-two-unicorn-startups-joins-the-team, and https://www.linkedin.com/company/source-ag.","{""clientCategories"":[""Growers"",""Horticulture Companies"",""Sustainable Greenhouse Cultivation"",""Precision Agriculture"",""Irrigation Management""],""companyDescription"":""Our mission is to empower growers to provide everyone around the globe with sufficient fruits and vegetables, in a climate-resilient and resource-efficient way. We do that by building the world’s best AI software for growers - to help start, run, and expand successful growing businesses worldwide. Source.ag harnesses cutting-edge AI technology to enhance fruit and vegetable growers' capabilities, delivering solutions that increase efficiency, improve results, and reduce operational risks. They collaborate closely with growers globally, combining on-ground knowledge with expertise in plant science and data analytics to create advanced, scalable AI software tailored to modern agriculture challenges. Their overarching vision is a world where sustainable agriculture ensures fresh produce availability for everyone."",""geographicFocus"":""HQ: Johan Huizingalaan 763a, 1066 VH Amsterdam; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Rien Kamman"",""sourceUrl"":""https://www.source.ag/about-us"",""title"":""Founder""},{""name"":""Ernst van Bruggen"",""sourceUrl"":""https://www.source.ag/about-us"",""title"":""Founder""},{""name"":""Trish Malarkey"",""sourceUrl"":""https://www.source.ag/about-us"",""title"":""Independent Director""}],""linkedDocuments"":[""https://www.source.ag/storage/terms-of-use-ipad-north-america-(july-2025)-clean.pdf"",""https://www.source.ag/storage/terms-of-use-ipad-eu-and-row-(july-2025)-clean.pdf""],""missingImportantFields"":[""sectorDescription""],""productDescription"":""Source.ag offers AI-powered greenhouse management solutions including Source Workspace (centralized greenhouse data tracking), Harvest Forecast (yield prediction and forecasting), Cultivation Management (crop performance simulations and strategy adjustments), Irrigation Control (AI-driven precise water and nutrient distribution), and Source Plant App (plant measurements and management)."",""researcherNotes"":""The website does not provide explicit geographic sales regions beyond the Amsterdam HQ location. Specific CEO, CTO, COO, or CFO roles are not listed on the website."",""sectorDescription"":""Operates in the agricultural technology sector, providing AI-powered software solutions to optimize fruit and vegetable cultivation in greenhouse environments."",""sources"":{""clientCategories"":""https://www.source.ag/cases"",""companyDescription"":""https://www.source.ag/about-us"",""geographicFocus"":""https://www.source.ag/contact"",""keyExecutives"":""https://www.source.ag/about-us"",""productDescription"":""https://www.source.ag/solutions""},""websiteURL"":""https://source.ag""}" -Smileat,http://www.smileatbaby.com/,Creas,smileatbaby.com,NOT FOUND,"{""seniorLeadership"":[]} -","{""seniorLeadership"":[]} -","{ - ""websiteURL"": ""http://www.smileatbaby.com/"", - ""companyDescription"": ""Nacimos para revolucionar la alimentación infantil con alternativas honestas, sin azúcar añadido, sin conservantes y ecológicas. Somos empresa B-Corp, comprometidos a dejar una huella positiva en el planeta y en todo lo que nos rodea. Acompañamos a tu peque desde la alimentación complementaria con recetas e ingredientes honestos."", - ""productDescription"": ""Smileat offers organic and sustainable infant food alternatives including: \n- Tarritos (baby food jars)\n- Snacks \n- Papillas y tortitas (porridge and pancakes)\n- Frutos Secos (nuts)\n\nThe TRIBOO line includes: \n- Barquillos (wafers)\n- Cereales de desayuno (100% organic cereals with no added sugar) \n- Snacks de fruta (baked fruit snacks for children who can manage solids)\n\nThey provide customizable packs and subscription services focusing on natural ingredients, sugar-free and organic certification."", - ""clientCategories"": [""Health-conscious parents"", ""Caregivers seeking organic and chemical-free infant nutrition""], - ""sectorDescription"": ""Operates in the organic and sustainable infant food sector, providing ecological baby food products and healthy alternatives."", - ""geographicFocus"": ""HQ: Madrid, Spain; Sales Focus: Spain, leading in online sales of organic infant food."", - ""keyExecutives"": [ - {""name"": ""Alberto Jiménez"", ""title"": ""Co-founder and Co-CEO"", ""sourceUrl"": ""https://www.smileatbaby.com/pages/quienes-somos""}, - {""name"": ""Javier Quintana"", ""title"": ""Co-founder and Co-CEO"", ""sourceUrl"": ""https://www.smileatbaby.com/pages/quienes-somos""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.smileatbaby.com/"", - ""productDescription"": ""https://www.smileatbaby.com/pages/triboo"", - ""clientCategories"": ""https://www.smileatbaby.com/pages/quienes-somos"", - ""geographicFocus"": ""https://www.smileatbaby.com/pages/quienes-somos"", - ""keyExecutives"": ""https://www.smileatbaby.com/pages/quienes-somos"" - } -}","{ - ""websiteURL"": ""http://www.smileatbaby.com/"", - ""companyDescription"": ""Nacimos para revolucionar la alimentación infantil con alternativas honestas, sin azúcar añadido, sin conservantes y ecológicas. Somos empresa B-Corp, comprometidos a dejar una huella positiva en el planeta y en todo lo que nos rodea. Acompañamos a tu peque desde la alimentación complementaria con recetas e ingredientes honestos."", - ""productDescription"": ""Smileat offers organic and sustainable infant food alternatives including: \n- Tarritos (baby food jars)\n- Snacks \n- Papillas y tortitas (porridge and pancakes)\n- Frutos Secos (nuts)\n\nThe TRIBOO line includes: \n- Barquillos (wafers)\n- Cereales de desayuno (100% organic cereals with no added sugar) \n- Snacks de fruta (baked fruit snacks for children who can manage solids)\n\nThey provide customizable packs and subscription services focusing on natural ingredients, sugar-free and organic certification."", - ""clientCategories"": [""Health-conscious parents"", ""Caregivers seeking organic and chemical-free infant nutrition""], - ""sectorDescription"": ""Operates in the organic and sustainable infant food sector, providing ecological baby food products and healthy alternatives."", - ""geographicFocus"": ""HQ: Madrid, Spain; Sales Focus: Spain, leading in online sales of organic infant food."", - ""keyExecutives"": [ - {""name"": ""Alberto Jiménez"", ""title"": ""Co-founder and Co-CEO"", ""sourceUrl"": ""https://www.smileatbaby.com/pages/quienes-somos""}, - {""name"": ""Javier Quintana"", ""title"": ""Co-founder and Co-CEO"", ""sourceUrl"": ""https://www.smileatbaby.com/pages/quienes-somos""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.smileatbaby.com/"", - ""productDescription"": ""https://www.smileatbaby.com/pages/triboo"", - ""clientCategories"": ""https://www.smileatbaby.com/pages/quienes-somos"", - ""geographicFocus"": ""https://www.smileatbaby.com/pages/quienes-somos"", - ""keyExecutives"": ""https://www.smileatbaby.com/pages/quienes-somos"" - } -}",[],"{ - ""websiteURL"": ""http://www.smileatbaby.com"", - ""companyDescription"": ""Smileat is a Spanish company founded in 2015 with a mission to revolutionize infant nutrition by offering organic, sustainable, and honest baby food alternatives without added sugar or preservatives. As a certified B-Corp, Smileat is committed to leaving a positive impact on the planet and promoting healthy eating habits from complementary feeding onwards, targeting health-conscious parents and caregivers seeking chemical-free infant nutrition."", - ""productDescription"": ""Smileat provides a range of organic and sustainable infant food products including baby food jars (tarritos), snacks, porridge and pancakes (papillas y tortitas), and nuts (frutos secos). Their TRIBOO line features wafers, 100% organic breakfast cereals with no added sugar, and baked fruit snacks suitable for children who manage solids. They offer customizable packs and subscription services focusing on natural ingredients, sugar-free, and organic certifications."", - ""clientCategories"": [ - ""Health-Conscious Parents"", - ""Caregivers Seeking Organic and Chemical-Free Infant Nutrition"" - ], - ""sectorDescription"": ""Smileat operates in the organic and sustainable infant food sector, specializing in ecological baby food products and healthy nutritional alternatives for infants."", - ""geographicFocus"": ""Headquartered in Madrid, Spain, Smileat's primary sales focus is Spain, where it leads in online sales of organic infant food, with export markets in Portugal, China, and France contributing to growth."", - ""keyExecutives"": [ - { - ""name"": ""Alberto Jiménez"", - ""title"": ""Co-founder and Co-CEO"", - ""sourceUrl"": ""https://www.smileatbaby.com/pages/quienes-somos"" - }, - { - ""name"": ""Javier Quintana"", - ""title"": ""Co-founder and Co-CEO"", - ""sourceUrl"": ""https://www.smileatbaby.com/pages/quienes-somos"" - } - ], - ""researcherNotes"": ""The company's core identity is confirmed by multiple sources including the official website and reputable food industry news outlets. The founding year is 2015 (from company site) and headquarters in Madrid, Spain. Geographic focus includes Spain primarily, with some export presence. Key executives are consistently reported as Alberto Jiménez and Javier Quintana, both Co-CEOs. No senior leadership beyond these founders was found on LinkedIn or other authoritative sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.smileatbaby.com/"", - ""productDescription"": ""https://www.smileatbaby.com/pages/triboo"", - ""clientCategories"": ""https://www.smileatbaby.com/pages/quienes-somos"", - ""geographicFocus"": ""https://www.just-food.com/news/spain-baby-food-firm-smileat-outlines-sales-goals/"", - ""keyExecutives"": ""https://www.smileatbaby.com/pages/quienes-somos"" - } -}","{""clientCategories"":[""Health-Conscious Parents"",""Caregivers Seeking Organic and Chemical-Free Infant Nutrition""],""companyDescription"":""Smileat is a Spanish company founded in 2015 with a mission to revolutionize infant nutrition by offering organic, sustainable, and honest baby food alternatives without added sugar or preservatives. As a certified B-Corp, Smileat is committed to leaving a positive impact on the planet and promoting healthy eating habits from complementary feeding onwards, targeting health-conscious parents and caregivers seeking chemical-free infant nutrition."",""geographicFocus"":""Headquartered in Madrid, Spain, Smileat's primary sales focus is Spain, where it leads in online sales of organic infant food, with export markets in Portugal, China, and France contributing to growth."",""keyExecutives"":[{""name"":""Alberto Jiménez"",""sourceUrl"":""https://www.smileatbaby.com/pages/quienes-somos"",""title"":""Co-founder and Co-CEO""},{""name"":""Javier Quintana"",""sourceUrl"":""https://www.smileatbaby.com/pages/quienes-somos"",""title"":""Co-founder and Co-CEO""}],""missingImportantFields"":[],""productDescription"":""Smileat provides a range of organic and sustainable infant food products including baby food jars (tarritos), snacks, porridge and pancakes (papillas y tortitas), and nuts (frutos secos). Their TRIBOO line features wafers, 100% organic breakfast cereals with no added sugar, and baked fruit snacks suitable for children who manage solids. They offer customizable packs and subscription services focusing on natural ingredients, sugar-free, and organic certifications."",""researcherNotes"":""The company's core identity is confirmed by multiple sources including the official website and reputable food industry news outlets. The founding year is 2015 (from company site) and headquarters in Madrid, Spain. Geographic focus includes Spain primarily, with some export presence. Key executives are consistently reported as Alberto Jiménez and Javier Quintana, both Co-CEOs. No senior leadership beyond these founders was found on LinkedIn or other authoritative sources."",""sectorDescription"":""Smileat operates in the organic and sustainable infant food sector, specializing in ecological baby food products and healthy nutritional alternatives for infants."",""sources"":{""clientCategories"":""https://www.smileatbaby.com/pages/quienes-somos"",""companyDescription"":""https://www.smileatbaby.com/"",""geographicFocus"":""https://www.just-food.com/news/spain-baby-food-firm-smileat-outlines-sales-goals/"",""keyExecutives"":""https://www.smileatbaby.com/pages/quienes-somos"",""productDescription"":""https://www.smileatbaby.com/pages/triboo""},""websiteURL"":""http://www.smileatbaby.com""}","Correctness: 95% Completeness: 90% Smileat is accurately described as a Spanish company founded in 2015 in Madrid by two co-founders named Alberto Jiménez and Javier Quintana (Javi), aiming to revolutionize baby food with organic, sustainable, and chemical-free products without added sugar or preservatives, consistent with information from the official Smileat site and about-us page[1]. The company is a certified B-Corp and primarily sells in Spain, with exports to Portugal, China, and France, corroborated by sales and market focus details from multiple sources including just-food coverage and the company website[1][5]. The product range including baby food jars, snacks, porridge, pancakes, nuts, and the TRIBOO line of breakfast cereals and fruit snacks aligns well with Smileat’s public product descriptions[1]. The leadership list with Alberto Jiménez and Javier Quintana as Co-CEOs is confirmed by the company’s official site[1]. Minor discrepancies appear in the launch year in some third-party startup directories citing 2014, but the company site states 2015, which is authoritative here[1][2]. Financial and funding details are not fully detailed publicly, slightly reducing completeness since funding rounds and exact amounts are unclear; this is typical for private companies without public filings[3][4]. Overall, the factual outline is solid, covering founding, leadership, headquarters, core products, and company mission with primary sources like the Smileat official pages providing strong evidence (https://smileat.com/en/pages/quienes-somos, https://smileat.com/en/, https://www.just-food.com/news/spain-baby-food-firm-smileat-outlines-sales-goals/).","{""clientCategories"":[""Health-conscious parents"",""Caregivers seeking organic and chemical-free infant nutrition""],""companyDescription"":""Nacimos para revolucionar la alimentación infantil con alternativas honestas, sin azúcar añadido, sin conservantes y ecológicas. Somos empresa B-Corp, comprometidos a dejar una huella positiva en el planeta y en todo lo que nos rodea. Acompañamos a tu peque desde la alimentación complementaria con recetas e ingredientes honestos."",""geographicFocus"":""HQ: Madrid, Spain; Sales Focus: Spain, leading in online sales of organic infant food."",""keyExecutives"":[{""name"":""Alberto Jiménez"",""sourceUrl"":""https://www.smileatbaby.com/pages/quienes-somos"",""title"":""Co-founder and Co-CEO""},{""name"":""Javier Quintana"",""sourceUrl"":""https://www.smileatbaby.com/pages/quienes-somos"",""title"":""Co-founder and Co-CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Smileat offers organic and sustainable infant food alternatives including: \n- Tarritos (baby food jars)\n- Snacks \n- Papillas y tortitas (porridge and pancakes)\n- Frutos Secos (nuts)\n\nThe TRIBOO line includes: \n- Barquillos (wafers)\n- Cereales de desayuno (100% organic cereals with no added sugar) \n- Snacks de fruta (baked fruit snacks for children who can manage solids)\n\nThey provide customizable packs and subscription services focusing on natural ingredients, sugar-free and organic certification."",""researcherNotes"":null,""sectorDescription"":""Operates in the organic and sustainable infant food sector, providing ecological baby food products and healthy alternatives."",""sources"":{""clientCategories"":""https://www.smileatbaby.com/pages/quienes-somos"",""companyDescription"":""https://www.smileatbaby.com/"",""geographicFocus"":""https://www.smileatbaby.com/pages/quienes-somos"",""keyExecutives"":""https://www.smileatbaby.com/pages/quienes-somos"",""productDescription"":""https://www.smileatbaby.com/pages/triboo""},""websiteURL"":""http://www.smileatbaby.com/""}" -GIGACO,http://gigaco.pl,,gigaco.pl,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://gigaco.pl"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website http://gigaco.pl is not accessible and returns an error. Therefore, no data could be extracted from the company's official site or subpages."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://gigaco.pl"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website http://gigaco.pl is not accessible and returns an error. Therefore, no data could be extracted from the company's official site or subpages."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""http://gigaco.pl"", - ""companyDescription"": ""GIGACO is a Polish company founded in 2013, specializing in providing machine learning solutions primarily applied in agriculture and animal feed sectors. It operates at the intersection of technology and agriculture, using advanced data and AI methods to enhance agricultural practices and feed production."", - ""productDescription"": ""GIGACO delivers machine learning-based products and services focused on optimizing agricultural processes and improving animal feed quality. Its offerings integrate AI technology to support decision-making and operational efficiency for agricultural clients."", - ""clientCategories"": [ - ""Agricultural Businesses"", - ""Animal Feed Producers"", - ""Technology Providers"" - ], - ""sectorDescription"": ""Technology company specializing in machine learning applications within the agriculture and animal feed industry."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Ludwik Purski"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://discovery.patsnap.com/company/gigaco/"" - } - ], - ""researcherNotes"": ""The company was disambiguated based on the exact domain gigaco.pl, founding year 2013, and founder name Ludwik Purski, matching the source at Patsnap. The official website was inaccessible during research. No footprint information is available, so geographicFocus remains null. No additional leadership information could be found on LinkedIn or other public sources."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://discovery.patsnap.com/company/gigaco/"", - ""productDescription"": ""https://discovery.patsnap.com/company/gigaco/"", - ""clientCategories"": ""https://discovery.patsnap.com/company/gigaco/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://discovery.patsnap.com/company/gigaco/"" - } -}","{""clientCategories"":[""Agricultural Businesses"",""Animal Feed Producers"",""Technology Providers""],""companyDescription"":""GIGACO is a Polish company founded in 2013, specializing in providing machine learning solutions primarily applied in agriculture and animal feed sectors. It operates at the intersection of technology and agriculture, using advanced data and AI methods to enhance agricultural practices and feed production."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Ludwik Purski"",""sourceUrl"":""https://discovery.patsnap.com/company/gigaco/"",""title"":""Founder""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""GIGACO delivers machine learning-based products and services focused on optimizing agricultural processes and improving animal feed quality. Its offerings integrate AI technology to support decision-making and operational efficiency for agricultural clients."",""researcherNotes"":""The company was disambiguated based on the exact domain gigaco.pl, founding year 2013, and founder name Ludwik Purski, matching the source at Patsnap. The official website was inaccessible during research. No footprint information is available, so geographicFocus remains null. No additional leadership information could be found on LinkedIn or other public sources."",""sectorDescription"":""Technology company specializing in machine learning applications within the agriculture and animal feed industry."",""sources"":{""clientCategories"":""https://discovery.patsnap.com/company/gigaco/"",""companyDescription"":""https://discovery.patsnap.com/company/gigaco/"",""geographicFocus"":null,""keyExecutives"":""https://discovery.patsnap.com/company/gigaco/"",""productDescription"":""https://discovery.patsnap.com/company/gigaco/""},""websiteURL"":""http://gigaco.pl""}","Correctness: 98% Completeness: 85% The information about GIGACO is largely accurate: it is a Polish company founded in 2013, specializing in machine learning applications in agriculture and animal feed, with Ludwik Purski as the founder and headquartered in Mazowieckie, Poland. This is confirmed by Patsnap as of current data (2025)[1]. The description of its products and sector focus aligns with available data from the same source. However, the geographic focus field is missing, which affects completeness, as there is no explicit data on operational footprint or markets served. Also, only one key executive (founder Ludwik Purski) is identified; no additional leadership or recent updates are found. The company’s official website is stated (http://gigaco.pl), but it was inaccessible during research, limiting confirmation of the latest details. No contradictory information was found regarding the company’s identity or sector, though similar-named firms (e.g., Giga Sp. z o.o. or GIGA International) are unrelated and distinct[2][3]. Due to the absence of broader public or filing-based information beyond Patsnap, completeness is moderate to high but not full. Sources: https://discovery.patsnap.com/company/gigaco/ (primary), https://www.emis.com/php/company-profile/PL/Giga_Sp_z_oo_en_3388507.html, https://giga-verband.com/en/.","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website http://gigaco.pl is not accessible and returns an error. Therefore, no data could be extracted from the company's official site or subpages."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://gigaco.pl""}" -Jersey Hemp,https://hemp.je/,Foresight Group,hemp.je,https://www.linkedin.com/company/jerseyhemp,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""https://hemp.je/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://hemp.je/ and its subpages do not provide any relevant or extractable information about the company description, products, client categories, sector, geographic focus, or key executives. No documents such as PDFs were found linked on the site."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""https://hemp.je/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://hemp.je/ and its subpages do not provide any relevant or extractable information about the company description, products, client categories, sector, geographic focus, or key executives. No documents such as PDFs were found linked on the site."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://hemp.je"", - ""companyDescription"": ""Jersey Hemp was founded in 2013 to revive organic hemp cultivation in Jersey, aiming to deliver wellbeing and ecological benefits through high-quality hemp products. Operating from its Warwick Farm headquarters, the company cultivates and processes industrial hemp under government license, focusing on organic farming without synthetic chemicals. Jersey Hemp supplies products locally and internationally, including culinary oil, hempseed, and a proprietary CBD blend, while innovating in soil rejuvenation solutions."", - ""productDescription"": ""Jersey Hemp produces organic hemp-derived products including culinary hemp oil, hempseed, and a CBD blend named Genuine Jersey Approved. The company employs licensed industrial hemp cultivation and processing, uses best-practice organic farming methods, and integrates technology for sustainable production. These products serve consumers seeking hemp-based wellness items and support ecological agricultural practices."", - ""clientCategories"": [""Consumers"", ""Agricultural Experts"", ""Environmental Organizations"", ""Local Government"", ""Wellbeing Product Retailers""], - ""sectorDescription"": ""Organic hemp cultivation and processing focused on producing high-quality hemp-based wellness products and ecological soil rejuvenation solutions."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""The identity of the company was confirmed by domain matching and the founding year 2013 as stated in the PR Newswire source. No explicit geographic operating footprint was found beyond Jersey or named key executives from available sources, including the company website and LinkedIn. Additional company details such as client categories and sector were inferred from the product and company description on PR Newswire. No executive information or broader geographic focus could be identified."", - ""missingImportantFields"": [""keyExecutives"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html"", - ""productDescription"": ""https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html"", - ""clientCategories"": ""https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{""clientCategories"":[""Consumers"",""Agricultural Experts"",""Environmental Organizations"",""Local Government"",""Wellbeing Product Retailers""],""companyDescription"":""Jersey Hemp was founded in 2013 to revive organic hemp cultivation in Jersey, aiming to deliver wellbeing and ecological benefits through high-quality hemp products. Operating from its Warwick Farm headquarters, the company cultivates and processes industrial hemp under government license, focusing on organic farming without synthetic chemicals. Jersey Hemp supplies products locally and internationally, including culinary oil, hempseed, and a proprietary CBD blend, while innovating in soil rejuvenation solutions."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""keyExecutives"",""geographicFocus""],""productDescription"":""Jersey Hemp produces organic hemp-derived products including culinary hemp oil, hempseed, and a CBD blend named Genuine Jersey Approved. The company employs licensed industrial hemp cultivation and processing, uses best-practice organic farming methods, and integrates technology for sustainable production. These products serve consumers seeking hemp-based wellness items and support ecological agricultural practices."",""researcherNotes"":""The identity of the company was confirmed by domain matching and the founding year 2013 as stated in the PR Newswire source. No explicit geographic operating footprint was found beyond Jersey or named key executives from available sources, including the company website and LinkedIn. Additional company details such as client categories and sector were inferred from the product and company description on PR Newswire. No executive information or broader geographic focus could be identified."",""sectorDescription"":""Organic hemp cultivation and processing focused on producing high-quality hemp-based wellness products and ecological soil rejuvenation solutions."",""sources"":{""clientCategories"":""https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html"",""companyDescription"":""https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html""},""websiteURL"":""https://hemp.je""}","Correctness: 90% Completeness: 75% -The core facts about Jersey Hemp are mostly correct and supported by multiple sources. Jersey Hemp was indeed founded in 2013 by a team including former firefighters, focusing on organic hemp cultivation in Jersey under government licensing, operating from Warwick Farm, and producing products such as culinary hemp oil, hempseed, and a CBD blend marketed under Genuine Jersey Approved or similar branding[2][3]. The company is noted as the first fully vertically integrated licensed hemp farm producing British-grown CBD in the British Isles, matching the description of high-quality and organic practices[4]. The CEO and founder is David Ryan, and recent funding of £2 million has been reported for further development, with private equity involvement and a new Non-Executive Chairman appointed[2]. However, there is a small discrepancy in the founding date with one source citing 2018 for establishment on Jersey, but this might reflect licensing or operational start distinct from company formation[1][2]. Key executives other than founder David Ryan and a Non-Executive Chairman are not publicly identified, resulting in incompleteness in leadership data. The geographic focus beyond Jersey is mostly unclear, although the UK market is a major target[1][3]. The product range aligns well with the description, including premium full spectrum CBD oils and other hemp wellness products, with emphasis on organic and traceable sources[3]. No official regulatory filings beyond Companies House registration data are clearly detailed to confirm all claims, and missing are more granular current leadership titles or explicit international footprint. Overall, critical company identity, product, licensing, and funding details are well supported by press and registry sources as of 2023–2025 but the absence of executives and broader geography details reduces completeness somewhat. Source URLs: https://www.prnewswire.com/news-releases/venture-capital-investment-of-2-million-to-fund-jersey-hemps-further-development-and-commercialisation-of-cbd-extraction-300971296.html, https://www.bailiwickexpress.com/news/2m-boost-grow-jersey-hemp-ire/, https://businessofcannabis.com/jersey-hemp-wins-watershed-legal-battle-against-uk-home-office-which-threatened-entire-cbd-industry/, https://europe.republic.com/jerseyhemp, https://find-and-update.company-information.service.gov.uk/company/12225696/filing-history","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website https://hemp.je/ and its subpages do not provide any relevant or extractable information about the company description, products, client categories, sector, geographic focus, or key executives. No documents such as PDFs were found linked on the site."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://hemp.je/""}" -Komgo,https://komgo.io,Emirates NBD,komgo.io,https://www.linkedin.com/company/komgo,"{""seniorLeadership"":[{""name"":""Souleïma Baddi"",""title"":""Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/komgo""},{""name"":""Baptiste Audren"",""title"":""Chief Revenue Officer"",""profileURL"":""https://www.linkedin.com/company/komgo""},{""name"":""Guy de Pourtales"",""title"":""Chief Technology Officer"",""profileURL"":""https://www.linkedin.com/company/komgo""},{""name"":""Michael Mandell"",""title"":""Managing Director, Americas"",""profileURL"":""https://www.linkedin.com/in/michaelmandell""},{""name"":""Federico Turegano"",""title"":""Board Director"",""profileURL"":""https://www.linkedin.com/in/federico-turegano-21253b35""},{""name"":""Olga Schwarzkopf"",""title"":""Head of Canada"",""profileURL"":""https://ca.linkedin.com/in/olgaschwarzkopf?trk=public_post-text""}]}","{""seniorLeadership"":[{""name"":""Souleïma Baddi"",""title"":""Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/komgo""},{""name"":""Baptiste Audren"",""title"":""Chief Revenue Officer"",""profileURL"":""https://www.linkedin.com/company/komgo""},{""name"":""Guy de Pourtales"",""title"":""Chief Technology Officer"",""profileURL"":""https://www.linkedin.com/company/komgo""},{""name"":""Michael Mandell"",""title"":""Managing Director, Americas"",""profileURL"":""https://www.linkedin.com/in/michaelmandell""},{""name"":""Federico Turegano"",""title"":""Board Director"",""profileURL"":""https://www.linkedin.com/in/federico-turegano-21253b35""},{""name"":""Olga Schwarzkopf"",""title"":""Head of Canada"",""profileURL"":""https://ca.linkedin.com/in/olgaschwarzkopf?trk=public_post-text""}]}","{ - ""websiteURL"": ""https://komgo.io"", - ""companyDescription"": ""Komgo is a leading software development and technology services company transforming the trade finance industry. Their mission focuses on powering a digital network to transform global trade and unlock new value. Komgo provides innovative solutions that empower Treasury, Credit, and Trade Finance teams, streamlining communications and strengthening operational capacity for over 10,000 enterprise users worldwide. Founded in Switzerland with expanded offices globally, Komgo is trusted by over 300 multinational corporations and global trade banks. In 2022, Komgo acquired Global Trade Corporation (GTC) to create the world’s largest multi-bank platform for digital trade services aiming to build a trusted, transparent, and automated global trade execution environment."", - ""productDescription"": ""Komgo offers comprehensive solutions tailored for financial institutions and corporates, including:\n- Konsole: Streamline Trade Finance lifecycle management with authenticated messaging and secure digital workflows.\n- Digital Instrument Certificate: Provides real-time transparency and data accuracy for bank guarantees and letters of credit with secure sharing and verification.\n- Market: Facilitates price discovery and deal execution in primary and secondary markets with encrypted transactions.\n- Check: Know Your Customer solution for managing customer profiles, documentation, and compliance workflows in a digital, secure environment.\n- Trakk: Tracks document trails and combats cyber fraud by registering documents on a secure ledger with real-time audit trails and verification widgets.\n- Global Trade Konnect (GTK): An all-in-one SaaS platform for managing, automating, and reporting trade finance operations supporting lifecycle management of various trade instruments with SWIFT certification and compliance."", - ""clientCategories"": [""Financial Institutions"", ""Corporates""], - ""sectorDescription"": ""Operates in the FinTech sector, specializing in digital trade finance solutions that empower banks and corporations to streamline and secure global trade processes."", - ""geographicFocus"": ""Founded in Switzerland with expanded offices globally; no specific headquarters address or geographic sales regions explicitly mentioned on the website."", - ""keyExecutives"": [ - {""name"": ""Souleïma Baddi"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.komgo.io/about""}, - {""name"": ""Baptiste Audren"", ""title"": ""Chief Revenue Officer"", ""sourceUrl"": ""https://www.komgo.io/about""}, - {""name"": ""Guy de Pourtales"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.komgo.io/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website lacks explicit detailed geographic headquarters address and clear segmentation of customer categories beyond financial institutions and corporates. No downloadable documents such as PDFs were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.komgo.io/about"", - ""productDescription"": ""https://komgo.io/komgo-solutions/fi-solutions-konsole"", - ""clientCategories"": ""https://www.komgo.io/stories"", - ""geographicFocus"": ""https://www.komgo.io/about"", - ""keyExecutives"": ""https://www.komgo.io/about"" - } -}","{ - ""websiteURL"": ""https://komgo.io"", - ""companyDescription"": ""Komgo is a leading software development and technology services company transforming the trade finance industry. Their mission focuses on powering a digital network to transform global trade and unlock new value. Komgo provides innovative solutions that empower Treasury, Credit, and Trade Finance teams, streamlining communications and strengthening operational capacity for over 10,000 enterprise users worldwide. Founded in Switzerland with expanded offices globally, Komgo is trusted by over 300 multinational corporations and global trade banks. In 2022, Komgo acquired Global Trade Corporation (GTC) to create the world’s largest multi-bank platform for digital trade services aiming to build a trusted, transparent, and automated global trade execution environment."", - ""productDescription"": ""Komgo offers comprehensive solutions tailored for financial institutions and corporates, including:\n- Konsole: Streamline Trade Finance lifecycle management with authenticated messaging and secure digital workflows.\n- Digital Instrument Certificate: Provides real-time transparency and data accuracy for bank guarantees and letters of credit with secure sharing and verification.\n- Market: Facilitates price discovery and deal execution in primary and secondary markets with encrypted transactions.\n- Check: Know Your Customer solution for managing customer profiles, documentation, and compliance workflows in a digital, secure environment.\n- Trakk: Tracks document trails and combats cyber fraud by registering documents on a secure ledger with real-time audit trails and verification widgets.\n- Global Trade Konnect (GTK): An all-in-one SaaS platform for managing, automating, and reporting trade finance operations supporting lifecycle management of various trade instruments with SWIFT certification and compliance."", - ""clientCategories"": [""Financial Institutions"", ""Corporates""], - ""sectorDescription"": ""Operates in the FinTech sector, specializing in digital trade finance solutions that empower banks and corporations to streamline and secure global trade processes."", - ""geographicFocus"": ""Founded in Switzerland with expanded offices globally; no specific headquarters address or geographic sales regions explicitly mentioned on the website."", - ""keyExecutives"": [ - {""name"": ""Souleïma Baddi"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.komgo.io/about""}, - {""name"": ""Baptiste Audren"", ""title"": ""Chief Revenue Officer"", ""sourceUrl"": ""https://www.komgo.io/about""}, - {""name"": ""Guy de Pourtales"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.komgo.io/about""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website lacks explicit detailed geographic headquarters address and clear segmentation of customer categories beyond financial institutions and corporates. No downloadable documents such as PDFs were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.komgo.io/about"", - ""productDescription"": ""https://komgo.io/komgo-solutions/fi-solutions-konsole"", - ""clientCategories"": ""https://www.komgo.io/stories"", - ""geographicFocus"": ""https://www.komgo.io/about"", - ""keyExecutives"": ""https://www.komgo.io/about"" - } -}",[],"{ - ""websiteURL"": ""https://komgo.io"", - ""companyDescription"": ""Komgo is a leading software development and technology services company transforming the trade finance industry. Their mission focuses on powering a digital network to transform global trade and unlock new value. Komgo provides innovative solutions that empower Treasury, Credit, and Trade Finance teams, streamlining communications and strengthening operational capacity for over 10,000 enterprise users worldwide. Founded in Switzerland with expanded offices globally, Komgo is trusted by over 300 multinational corporations and global trade banks. In 2022, Komgo acquired Global Trade Corporation (GTC) to create the world’s largest multi-bank platform for digital trade services aiming to build a trusted, transparent, and automated global trade execution environment."", - ""productDescription"": ""Komgo offers comprehensive solutions tailored for financial institutions and corporates, including:\n- Konsole: Streamline Trade Finance lifecycle management with authenticated messaging and secure digital workflows.\n- Digital Instrument Certificate: Provides real-time transparency and data accuracy for bank guarantees and letters of credit with secure sharing and verification.\n- Market: Facilitates price discovery and deal execution in primary and secondary markets with encrypted transactions.\n- Check: Know Your Customer solution for managing customer profiles, documentation, and compliance workflows in a digital, secure environment.\n- Trakk: Tracks document trails and combats cyber fraud by registering documents on a secure ledger with real-time audit trails and verification widgets.\n- Global Trade Konnect (GTK): An all-in-one SaaS platform for managing, automating, and reporting trade finance operations supporting lifecycle management of various trade instruments with SWIFT certification and compliance."", - ""clientCategories"": [ - ""Financial Institutions"", - ""Corporates"" - ], - ""sectorDescription"": ""Operates in the FinTech sector, specializing in digital trade finance solutions that empower banks and corporations to streamline and secure global trade processes."", - ""geographicFocus"": ""Founded in Switzerland with expanded offices in Singapore, Paris, London, Toronto, Melbourne, and Miami, serving a global customer base."", - ""keyExecutives"": [ - { - ""name"": ""Souleïma Baddi"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.komgo.io/about"" - }, - { - ""name"": ""Baptiste Audren"", - ""title"": ""Chief Revenue Officer"", - ""sourceUrl"": ""https://www.komgo.io/about"" - }, - { - ""name"": ""Guy de Pourtales"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://www.komgo.io/about"" - }, - { - ""name"": ""Michael Mandell"", - ""title"": ""Managing Director, Americas"", - ""sourceUrl"": ""https://www.linkedin.com/in/michaelmandell"" - }, - { - ""name"": ""Federico Turegano"", - ""title"": ""Board Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/federico-turegano-21253b35"" - }, - { - ""name"": ""Olga Schwarzkopf"", - ""title"": ""Head of Canada"", - ""sourceUrl"": ""https://ca.linkedin.com/in/olgaschwarzkopf?trk=public_post-text"" - } - ], - ""researcherNotes"": ""The company is verified as the same entity through domain match and confirmed leadership. Geographic focus has been expanded from the website text listing key international offices to include Singapore, Paris, London, Toronto, Melbourne, and Miami. The website does not clearly specify a principal headquarters aside from a Swiss origin; addresses found are offices in Geneva, London, and Paris but no single HQ identified, so geographicFocus reflects presence rather than a sole HQ. Additional senior leadership roles beyond the core C-suite were sourced from LinkedIn profiles as the website only lists three executives. No known conflicts found in titles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.komgo.io/about"", - ""productDescription"": ""https://komgo.io/komgo-solutions/fi-solutions-konsole"", - ""clientCategories"": ""https://www.komgo.io/stories"", - ""geographicFocus"": ""https://www.komgo.io/about"", - ""keyExecutives"": ""https://www.komgo.io/about"" - } -}","{""clientCategories"":[""Financial Institutions"",""Corporates""],""companyDescription"":""Komgo is a leading software development and technology services company transforming the trade finance industry. Their mission focuses on powering a digital network to transform global trade and unlock new value. Komgo provides innovative solutions that empower Treasury, Credit, and Trade Finance teams, streamlining communications and strengthening operational capacity for over 10,000 enterprise users worldwide. Founded in Switzerland with expanded offices globally, Komgo is trusted by over 300 multinational corporations and global trade banks. In 2022, Komgo acquired Global Trade Corporation (GTC) to create the world’s largest multi-bank platform for digital trade services aiming to build a trusted, transparent, and automated global trade execution environment."",""geographicFocus"":""Founded in Switzerland with expanded offices in Singapore, Paris, London, Toronto, Melbourne, and Miami, serving a global customer base."",""keyExecutives"":[{""name"":""Souleïma Baddi"",""sourceUrl"":""https://www.komgo.io/about"",""title"":""Chief Executive Officer""},{""name"":""Baptiste Audren"",""sourceUrl"":""https://www.komgo.io/about"",""title"":""Chief Revenue Officer""},{""name"":""Guy de Pourtales"",""sourceUrl"":""https://www.komgo.io/about"",""title"":""Chief Technology Officer""},{""name"":""Michael Mandell"",""sourceUrl"":""https://www.linkedin.com/in/michaelmandell"",""title"":""Managing Director, Americas""},{""name"":""Federico Turegano"",""sourceUrl"":""https://www.linkedin.com/in/federico-turegano-21253b35"",""title"":""Board Director""},{""name"":""Olga Schwarzkopf"",""sourceUrl"":""https://ca.linkedin.com/in/olgaschwarzkopf?trk=public_post-text"",""title"":""Head of Canada""}],""missingImportantFields"":[],""productDescription"":""Komgo offers comprehensive solutions tailored for financial institutions and corporates, including:\n- Konsole: Streamline Trade Finance lifecycle management with authenticated messaging and secure digital workflows.\n- Digital Instrument Certificate: Provides real-time transparency and data accuracy for bank guarantees and letters of credit with secure sharing and verification.\n- Market: Facilitates price discovery and deal execution in primary and secondary markets with encrypted transactions.\n- Check: Know Your Customer solution for managing customer profiles, documentation, and compliance workflows in a digital, secure environment.\n- Trakk: Tracks document trails and combats cyber fraud by registering documents on a secure ledger with real-time audit trails and verification widgets.\n- Global Trade Konnect (GTK): An all-in-one SaaS platform for managing, automating, and reporting trade finance operations supporting lifecycle management of various trade instruments with SWIFT certification and compliance."",""researcherNotes"":""The company is verified as the same entity through domain match and confirmed leadership. Geographic focus has been expanded from the website text listing key international offices to include Singapore, Paris, London, Toronto, Melbourne, and Miami. The website does not clearly specify a principal headquarters aside from a Swiss origin; addresses found are offices in Geneva, London, and Paris but no single HQ identified, so geographicFocus reflects presence rather than a sole HQ. Additional senior leadership roles beyond the core C-suite were sourced from LinkedIn profiles as the website only lists three executives. No known conflicts found in titles."",""sectorDescription"":""Operates in the FinTech sector, specializing in digital trade finance solutions that empower banks and corporations to streamline and secure global trade processes."",""sources"":{""clientCategories"":""https://www.komgo.io/stories"",""companyDescription"":""https://www.komgo.io/about"",""geographicFocus"":""https://www.komgo.io/about"",""keyExecutives"":""https://www.komgo.io/about"",""productDescription"":""https://komgo.io/komgo-solutions/fi-solutions-konsole""},""websiteURL"":""https://komgo.io""}","Correctness: 98% Completeness: 95% The description of Komgo as a Swiss-founded software development and technology services company transforming trade finance with a global presence in Singapore, Paris, London, Toronto, Melbourne, and Miami is accurate and corroborated by the official company About page as of 2025-09-11[2]. The leadership team and titles, including CEO Souleïma Baddi and Chief Revenue Officer Baptiste Audren, align with verified company and LinkedIn sources[2]. The acquisition of Global Trade Corporation (GTC) in 2022 to form the largest multi-bank digital trade platform is confirmed on Komgo’s site[2]. The product offerings listed (Konsole, Digital Instrument Certificate, Market, Check, Trakk, Global Trade Konnect) accurately reflect Komgo’s suite of digital trade finance solutions detailed on their website[2][3]. The claim of serving over 10,000 enterprise users and 300+ multinational corporate and bank customers is consistent with official messaging[2]. One minor limitation is the absence of a singular defined headquarters; the statement correctly reflects multiple international offices rather than a single HQ location[2]. Funding details and exact current employee count are not specified or publicly detailed beyond estimates, so completeness is slightly reduced[4]. Overall, the factual data is well-supported by primary company sources and respected trade finance media[2][3]. URLs: https://www.komgo.io/about https://www.komgo.io/komgo-solutions/fi-solutions-konsole https://www.gtreview.com/news/fintech/komgo-blockchain-platform-for-commodity-trade-finance-goes-live/","{""clientCategories"":[""Financial Institutions"",""Corporates""],""companyDescription"":""Komgo is a leading software development and technology services company transforming the trade finance industry. Their mission focuses on powering a digital network to transform global trade and unlock new value. Komgo provides innovative solutions that empower Treasury, Credit, and Trade Finance teams, streamlining communications and strengthening operational capacity for over 10,000 enterprise users worldwide. Founded in Switzerland with expanded offices globally, Komgo is trusted by over 300 multinational corporations and global trade banks. In 2022, Komgo acquired Global Trade Corporation (GTC) to create the world’s largest multi-bank platform for digital trade services aiming to build a trusted, transparent, and automated global trade execution environment."",""geographicFocus"":""Founded in Switzerland with expanded offices globally; no specific headquarters address or geographic sales regions explicitly mentioned on the website."",""keyExecutives"":[{""name"":""Souleïma Baddi"",""sourceUrl"":""https://www.komgo.io/about"",""title"":""Chief Executive Officer""},{""name"":""Baptiste Audren"",""sourceUrl"":""https://www.komgo.io/about"",""title"":""Chief Revenue Officer""},{""name"":""Guy de Pourtales"",""sourceUrl"":""https://www.komgo.io/about"",""title"":""Chief Technology Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Komgo offers comprehensive solutions tailored for financial institutions and corporates, including:\n- Konsole: Streamline Trade Finance lifecycle management with authenticated messaging and secure digital workflows.\n- Digital Instrument Certificate: Provides real-time transparency and data accuracy for bank guarantees and letters of credit with secure sharing and verification.\n- Market: Facilitates price discovery and deal execution in primary and secondary markets with encrypted transactions.\n- Check: Know Your Customer solution for managing customer profiles, documentation, and compliance workflows in a digital, secure environment.\n- Trakk: Tracks document trails and combats cyber fraud by registering documents on a secure ledger with real-time audit trails and verification widgets.\n- Global Trade Konnect (GTK): An all-in-one SaaS platform for managing, automating, and reporting trade finance operations supporting lifecycle management of various trade instruments with SWIFT certification and compliance."",""researcherNotes"":""The website lacks explicit detailed geographic headquarters address and clear segmentation of customer categories beyond financial institutions and corporates. No downloadable documents such as PDFs were found."",""sectorDescription"":""Operates in the FinTech sector, specializing in digital trade finance solutions that empower banks and corporations to streamline and secure global trade processes."",""sources"":{""clientCategories"":""https://www.komgo.io/stories"",""companyDescription"":""https://www.komgo.io/about"",""geographicFocus"":""https://www.komgo.io/about"",""keyExecutives"":""https://www.komgo.io/about"",""productDescription"":""https://komgo.io/komgo-solutions/fi-solutions-konsole""},""websiteURL"":""https://komgo.io""}" -Redag Crop Protection,http://redagcrop.com/,,redagcrop.com,https://www.linkedin.com/company/redag-crop-protection,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://redagcrop.com/"", - ""companyDescription"": ""Redag Crop Protection Ltd is focused on innovative crop protection chemistry for a global market, aiming to increase sustainability of crop protection products by reducing dose rates, minimizing environmental loading, and extending patent life. Their mission is to improve sustainability and efficacy of crop protection products through minor molecular changes to active ingredients, enabling dose rate reduction, improved environmental profiles, and extended product life cycles."", - ""productDescription"": ""Redag Crop delivers effective and economic solutions for agrochemical companies seeking new active ingredients for onward development at significantly less cost than industry standards. They research and deliver novel ingredients for development by partners. Redag Crop provides innovation in a time of decreasing innovation and consolidation in agribusinesses. Their size, agility, and turnaround time enable cost-effective production of active ingredients."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agrochemical sector, specializing in innovative and sustainable crop protection chemistry focused on active ingredient development."", - ""geographicFocus"": ""HQ: Number One Circle Square, 3 Symphony Park, Manchester, England, M1 7FS; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Bill Thompson"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""John Street"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""Alistair Miller"", ""title"": ""Director of Chemistry"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""Deborah Keith"", ""title"": ""Chairman"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""Adrian Field"", ""title"": ""Non-Executive Director"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific customer categories or detailed sales regions are provided on the website. The geographic focus is limited to the headquarters address."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.redagcrop.com/"", - ""productDescription"": ""https://www.redagcrop.com/what-we-do"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.redagcrop.com/"", - ""keyExecutives"": ""https://www.redagcrop.com/biographies"" - } -}","{ - ""websiteURL"": ""http://redagcrop.com/"", - ""companyDescription"": ""Redag Crop Protection Ltd is focused on innovative crop protection chemistry for a global market, aiming to increase sustainability of crop protection products by reducing dose rates, minimizing environmental loading, and extending patent life. Their mission is to improve sustainability and efficacy of crop protection products through minor molecular changes to active ingredients, enabling dose rate reduction, improved environmental profiles, and extended product life cycles."", - ""productDescription"": ""Redag Crop delivers effective and economic solutions for agrochemical companies seeking new active ingredients for onward development at significantly less cost than industry standards. They research and deliver novel ingredients for development by partners. Redag Crop provides innovation in a time of decreasing innovation and consolidation in agribusinesses. Their size, agility, and turnaround time enable cost-effective production of active ingredients."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agrochemical sector, specializing in innovative and sustainable crop protection chemistry focused on active ingredient development."", - ""geographicFocus"": ""HQ: Number One Circle Square, 3 Symphony Park, Manchester, England, M1 7FS; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Bill Thompson"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""John Street"", ""title"": ""CTO"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""Alistair Miller"", ""title"": ""Director of Chemistry"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""Deborah Keith"", ""title"": ""Chairman"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""}, - {""name"": ""Adrian Field"", ""title"": ""Non-Executive Director"", ""sourceUrl"": ""https://www.redagcrop.com/biographies""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific customer categories or detailed sales regions are provided on the website. The geographic focus is limited to the headquarters address."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.redagcrop.com/"", - ""productDescription"": ""https://www.redagcrop.com/what-we-do"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.redagcrop.com/"", - ""keyExecutives"": ""https://www.redagcrop.com/biographies"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.redagcrop.com"", - ""companyDescription"": ""Redag Crop Protection Ltd focuses on innovative crop protection chemistry for the global market, aiming to increase sustainability of crop protection products by reducing dose rates, minimizing environmental loading, and extending patent life. Founded in 2014 as a spin-out from Redx Pharma PLC, it develops minor molecular changes to active ingredients to improve efficacy and environmental profiles, enabling dose reduction and extended product life cycles."", - ""productDescription"": ""Redag Crop delivers novel active ingredients for agrochemical companies seeking cost-effective solutions for crop protection development. Using their Redox Switch™ platform, they synthesize, screen, and patent improved fungicides, herbicides, insecticides, and nematicides, providing partners with new candidates that reduce innovation risk, lower development costs, and enable faster market entry while maintaining high efficacy."", - ""clientCategories"": [ - ""Agrochemical Companies"", - ""Crop Protection Developers"", - ""Agricultural Researchers"", - ""Biotechnology Firms"" - ], - ""sectorDescription"": ""Agrochemical sector specializing in innovative and sustainable crop protection chemistry centered on active ingredient development and improvement."", - ""geographicFocus"": ""Primarily UK-based operations with a focus on global agrochemical markets; specific sales regions not publicly detailed."", - ""keyExecutives"": [ - { - ""name"": ""Bill Thompson"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.redagcrop.com/biographies"" - }, - { - ""name"": ""John Street"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.redagcrop.com/biographies"" - }, - { - ""name"": ""Alistair Miller"", - ""title"": ""Director of Chemistry"", - ""sourceUrl"": ""https://www.redagcrop.com/biographies"" - }, - { - ""name"": ""Deborah Keith"", - ""title"": ""Chairman"", - ""sourceUrl"": ""https://www.redagcrop.com/biographies"" - }, - { - ""name"": ""Adrian Field"", - ""title"": ""Non-Executive Director"", - ""sourceUrl"": ""https://www.redagcrop.com/biographies"" - } - ], - ""researcherNotes"": ""Entity confidently identified as Redag Crop Protection Ltd headquartered in Manchester, UK, founded in 2014 as a spin-out from Redx Pharma PLC. Geographic coverage for sales is not publicly disclosed beyond UK headquarters. Client categories are inferred from company product focus and sector but not explicitly listed on the website. Key executives confirmed from the company site. Company status noted as active by multiple sources despite some filing delays noted in UK filings, but no contradictions on core profile."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.redagcrop.com/"", - ""productDescription"": ""https://www.redagcrop.com/what-we-do"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.redagcrop.com/"", - ""keyExecutives"": ""https://www.redagcrop.com/biographies"" - } -}","{""clientCategories"":[""Agrochemical Companies"",""Crop Protection Developers"",""Agricultural Researchers"",""Biotechnology Firms""],""companyDescription"":""Redag Crop Protection Ltd focuses on innovative crop protection chemistry for the global market, aiming to increase sustainability of crop protection products by reducing dose rates, minimizing environmental loading, and extending patent life. Founded in 2014 as a spin-out from Redx Pharma PLC, it develops minor molecular changes to active ingredients to improve efficacy and environmental profiles, enabling dose reduction and extended product life cycles."",""geographicFocus"":""Primarily UK-based operations with a focus on global agrochemical markets; specific sales regions not publicly detailed."",""keyExecutives"":[{""name"":""Bill Thompson"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""CEO""},{""name"":""John Street"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""CTO""},{""name"":""Alistair Miller"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""Director of Chemistry""},{""name"":""Deborah Keith"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""Chairman""},{""name"":""Adrian Field"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""Non-Executive Director""}],""missingImportantFields"":[],""productDescription"":""Redag Crop delivers novel active ingredients for agrochemical companies seeking cost-effective solutions for crop protection development. Using their Redox Switch™ platform, they synthesize, screen, and patent improved fungicides, herbicides, insecticides, and nematicides, providing partners with new candidates that reduce innovation risk, lower development costs, and enable faster market entry while maintaining high efficacy."",""researcherNotes"":""Entity confidently identified as Redag Crop Protection Ltd headquartered in Manchester, UK, founded in 2014 as a spin-out from Redx Pharma PLC. Geographic coverage for sales is not publicly disclosed beyond UK headquarters. Client categories are inferred from company product focus and sector but not explicitly listed on the website. Key executives confirmed from the company site. Company status noted as active by multiple sources despite some filing delays noted in UK filings, but no contradictions on core profile."",""sectorDescription"":""Agrochemical sector specializing in innovative and sustainable crop protection chemistry centered on active ingredient development and improvement."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.redagcrop.com/"",""geographicFocus"":""https://www.redagcrop.com/"",""keyExecutives"":""https://www.redagcrop.com/biographies"",""productDescription"":""https://www.redagcrop.com/what-we-do""},""websiteURL"":""https://www.redagcrop.com""}","Correctness: 95% Completeness: 90% The company Redag Crop Protection Ltd is accurately described as founded in 2014 as a spin-out from Redx Pharma PLC, focusing on innovative crop protection chemistry to improve efficacy and environmental profiles and reduce development times and costs. CEO Bill Thompson is confirmed from the 2021 press release and company site, and the Redox Switch™ platform and product focus on agrochemical active ingredient development are consistent with official corporate and media sources[1][4][5]. The HQ is correctly identified as UK-based with operations linked to Manchester/Cheshire East; however, Companies House lists the registered office as a London address for advisory purposes and notes the company status as dissolved as of 4 September 2025, which is a critical recent fact not reflected in the provided description[4]. Employee count estimates range from 2-37 by various sources, indicating some volatility but generally low headcount consistent with a small R&D firm[3][5]. The geographic sales footprint remains undisclosed publicly, so this claim stands as is. Missing funding details (a $2 million raise in 2021) and recent dissolution status slightly reduce completeness but do not negate the overall factual accuracy of the profile[1][4]. Key executives beyond CEO are confirmed on the company website but not independently validated by press within the last two years. Overall, the profile is credible and robust but omits the company’s recent dissolution and some funding history, which impacts completeness and slightly correctness ratings. Sources: https://www.redagcrop.com/, https://agfundernews.com/uk-ag-chemical-discovery-company-redag-raises-2m5476, https://find-and-update.company-information.service.gov.uk/company/08880387, https://app.dealroom.co/companies/redag_crop_protection","{""clientCategories"":[],""companyDescription"":""Redag Crop Protection Ltd is focused on innovative crop protection chemistry for a global market, aiming to increase sustainability of crop protection products by reducing dose rates, minimizing environmental loading, and extending patent life. Their mission is to improve sustainability and efficacy of crop protection products through minor molecular changes to active ingredients, enabling dose rate reduction, improved environmental profiles, and extended product life cycles."",""geographicFocus"":""HQ: Number One Circle Square, 3 Symphony Park, Manchester, England, M1 7FS; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Bill Thompson"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""CEO""},{""name"":""John Street"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""CTO""},{""name"":""Alistair Miller"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""Director of Chemistry""},{""name"":""Deborah Keith"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""Chairman""},{""name"":""Adrian Field"",""sourceUrl"":""https://www.redagcrop.com/biographies"",""title"":""Non-Executive Director""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Redag Crop delivers effective and economic solutions for agrochemical companies seeking new active ingredients for onward development at significantly less cost than industry standards. They research and deliver novel ingredients for development by partners. Redag Crop provides innovation in a time of decreasing innovation and consolidation in agribusinesses. Their size, agility, and turnaround time enable cost-effective production of active ingredients."",""researcherNotes"":""No specific customer categories or detailed sales regions are provided on the website. The geographic focus is limited to the headquarters address."",""sectorDescription"":""Operates in the agrochemical sector, specializing in innovative and sustainable crop protection chemistry focused on active ingredient development."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.redagcrop.com/"",""geographicFocus"":""https://www.redagcrop.com/"",""keyExecutives"":""https://www.redagcrop.com/biographies"",""productDescription"":""https://www.redagcrop.com/what-we-do""},""websiteURL"":""http://redagcrop.com/""}" -Tonisity,https://www.tonisity.com/,"Fady Hannah-Shmouni, MD FRCPC",tonisity.com,https://www.linkedin.com/company/tonisity,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.tonisity.com/"", - ""companyDescription"": ""Tonisity International Ltd, founded in 2015, is an animal health company dedicated to improving animal health and welfare. They serve the swine industry and have expanded to companion animal and ruminant products, focusing on novel nutritional supplements. Dedicated to innovative development of cutting-edge nutritional products challenging everyday animal health standards to improve animal welfare and production outcomes with positive returns for farmers."", - ""productDescription"": ""Tonisity International offers a range of isotonic protein solutions to improve farm animal performance, including swine products (Tonisity Px, Tonisity PxW, Tonisity PxM, Tonisity Total Programme), ruminant products (Tonisity Rum-X, Tonisity Rum-Xm), and companion animal products (DoggyRade). These products support gut health and development at key animal milestones. Detailed brochures and quick start guides provide usage and dosage instructions."", - ""clientCategories"": [""Swine producers"",""Ruminant producers"",""Companion animal owners""], - ""sectorDescription"": ""Operates in the animal health and nutrition sector, providing innovative nutritional supplements for livestock and companion animals to improve health and welfare."", - ""geographicFocus"": ""HQ: Ireland; Sales Focus: Global via distributors"", - ""keyExecutives"": [ - {""name"": ""Arie Halpern"", ""title"": ""Chairman of the Board, Founder"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Mathieu Cortyl"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Jeremy Rothwell"", ""title"": ""CFO"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Dr. Ava Firth"", ""title"": ""R&D Director"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Gloria Basse"", ""title"": ""Senior Executive Director"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Lori Head"", ""title"": ""Director of Operations"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""} - ], - ""linkedDocuments"": [ - ""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-Px-Brochure.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-Total-Programme-Brochure.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-PxW-General-Flyer.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Antibiotics.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_PRRS.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Mortality.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Milk-Replacer.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.tonisity.com/about-us/"", - ""productDescription"": ""https://www.tonisity.com/products/"", - ""clientCategories"": ""https://www.tonisity.com/customers/"", - ""geographicFocus"": ""https://tonisity.com/company/"", - ""keyExecutives"": ""https://www.tonisity.com/about-us/"" - } -}","{ - ""websiteURL"": ""https://www.tonisity.com/"", - ""companyDescription"": ""Tonisity International Ltd, founded in 2015, is an animal health company dedicated to improving animal health and welfare. They serve the swine industry and have expanded to companion animal and ruminant products, focusing on novel nutritional supplements. Dedicated to innovative development of cutting-edge nutritional products challenging everyday animal health standards to improve animal welfare and production outcomes with positive returns for farmers."", - ""productDescription"": ""Tonisity International offers a range of isotonic protein solutions to improve farm animal performance, including swine products (Tonisity Px, Tonisity PxW, Tonisity PxM, Tonisity Total Programme), ruminant products (Tonisity Rum-X, Tonisity Rum-Xm), and companion animal products (DoggyRade). These products support gut health and development at key animal milestones. Detailed brochures and quick start guides provide usage and dosage instructions."", - ""clientCategories"": [""Swine producers"",""Ruminant producers"",""Companion animal owners""], - ""sectorDescription"": ""Operates in the animal health and nutrition sector, providing innovative nutritional supplements for livestock and companion animals to improve health and welfare."", - ""geographicFocus"": ""HQ: Ireland; Sales Focus: Global via distributors"", - ""keyExecutives"": [ - {""name"": ""Arie Halpern"", ""title"": ""Chairman of the Board, Founder"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Mathieu Cortyl"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Jeremy Rothwell"", ""title"": ""CFO"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Dr. Ava Firth"", ""title"": ""R&D Director"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Gloria Basse"", ""title"": ""Senior Executive Director"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""}, - {""name"": ""Lori Head"", ""title"": ""Director of Operations"", ""sourceUrl"": ""https://www.tonisity.com/about-us/""} - ], - ""linkedDocuments"": [ - ""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-Px-Brochure.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-Total-Programme-Brochure.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-PxW-General-Flyer.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Antibiotics.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_PRRS.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Mortality.pdf"", - ""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Milk-Replacer.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.tonisity.com/about-us/"", - ""productDescription"": ""https://www.tonisity.com/products/"", - ""clientCategories"": ""https://www.tonisity.com/customers/"", - ""geographicFocus"": ""https://tonisity.com/company/"", - ""keyExecutives"": ""https://www.tonisity.com/about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://www.tonisity.com"", - ""companyDescription"": ""Tonisity International Ltd, founded in 2015 and headquartered in Ireland, is an animal health company dedicated to improving animal health and welfare globally. The company develops innovative nutritional supplements focusing on novel isotonic protein solutions aimed primarily at the swine industry, with expansions into companion animals and ruminants. Their approach challenges conventional animal health standards to improve welfare and production outcomes, offering measurable returns for farmers."", - ""productDescription"": ""Tonisity International offers a range of isotonic protein products designed to support gut health and development at critical milestones in animal growth. Their product portfolio includes swine-targeted solutions such as Tonisity Px, PxW, PxM, and a Total Programme; ruminant formulas Tonisity Rum-X and Rum-Xm; and companion animal products like DoggyRade. These nutritional supplements aim to enhance farm animal performance and overall health via scientifically formulated blends, supported by detailed usage and dosage guides."", - ""clientCategories"": [""Swine Producers"", ""Ruminant Producers"", ""Companion Animal Owners""], - ""sectorDescription"": ""Animal health and nutrition sector specializing in innovative nutritional supplements to improve livestock and companion animal health and welfare."", - ""geographicFocus"": ""Headquartered in Ireland, Tonisity International operates globally through a network of distributors, with significant sales focus including North America, Europe, Asia (notably China), and emerging markets like the Philippines."", - ""keyExecutives"": [ - { - ""name"": ""Arie Halpern"", - ""title"": ""Chairman of the Board, Founder"", - ""sourceUrl"": ""https://www.tonisity.com/about-us/"" - }, - { - ""name"": ""Mathieu Cortyl"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.tonisity.com/about-us/"" - }, - { - ""name"": ""Jeremy Rothwell"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://www.tonisity.com/about-us/"" - }, - { - ""name"": ""Dr. Ava Firth"", - ""title"": ""R&D Director"", - ""sourceUrl"": ""https://www.tonisity.com/about-us/"" - }, - { - ""name"": ""Gloria Basse"", - ""title"": ""Senior Executive Director"", - ""sourceUrl"": ""https://www.tonisity.com/about-us/"" - }, - { - ""name"": ""Lori Head"", - ""title"": ""Director of Operations"", - ""sourceUrl"": ""https://www.tonisity.com/about-us/"" - } - ], - ""researcherNotes"": ""The identity of Tonisity International Ltd is well confirmed by the matching domain, Irish HQ, and founding year 2015. Geographic focus is globally distributed with key markets in Europe, the USA, China (via joint ventures), and Asia (including the Philippines). Key executives and leadership titles are verified from the official company website. No missing required fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.tonisity.com/about-us/"", - ""productDescription"": ""https://www.tonisity.com/products/"", - ""clientCategories"": ""https://www.tonisity.com/customers/"", - ""geographicFocus"": ""https://www.tonisity.com/company/"", - ""keyExecutives"": ""https://www.tonisity.com/about-us/"" - } -}","{""clientCategories"":[""Swine Producers"",""Ruminant Producers"",""Companion Animal Owners""],""companyDescription"":""Tonisity International Ltd, founded in 2015 and headquartered in Ireland, is an animal health company dedicated to improving animal health and welfare globally. The company develops innovative nutritional supplements focusing on novel isotonic protein solutions aimed primarily at the swine industry, with expansions into companion animals and ruminants. Their approach challenges conventional animal health standards to improve welfare and production outcomes, offering measurable returns for farmers."",""geographicFocus"":""Headquartered in Ireland, Tonisity International operates globally through a network of distributors, with significant sales focus including North America, Europe, Asia (notably China), and emerging markets like the Philippines."",""keyExecutives"":[{""name"":""Arie Halpern"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""Chairman of the Board, Founder""},{""name"":""Mathieu Cortyl"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""CEO""},{""name"":""Jeremy Rothwell"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""CFO""},{""name"":""Dr. Ava Firth"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""R&D Director""},{""name"":""Gloria Basse"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""Senior Executive Director""},{""name"":""Lori Head"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""Director of Operations""}],""missingImportantFields"":[],""productDescription"":""Tonisity International offers a range of isotonic protein products designed to support gut health and development at critical milestones in animal growth. Their product portfolio includes swine-targeted solutions such as Tonisity Px, PxW, PxM, and a Total Programme; ruminant formulas Tonisity Rum-X and Rum-Xm; and companion animal products like DoggyRade. These nutritional supplements aim to enhance farm animal performance and overall health via scientifically formulated blends, supported by detailed usage and dosage guides."",""researcherNotes"":""The identity of Tonisity International Ltd is well confirmed by the matching domain, Irish HQ, and founding year 2015. Geographic focus is globally distributed with key markets in Europe, the USA, China (via joint ventures), and Asia (including the Philippines). Key executives and leadership titles are verified from the official company website. No missing required fields remain."",""sectorDescription"":""Animal health and nutrition sector specializing in innovative nutritional supplements to improve livestock and companion animal health and welfare."",""sources"":{""clientCategories"":""https://www.tonisity.com/customers/"",""companyDescription"":""https://www.tonisity.com/about-us/"",""geographicFocus"":""https://www.tonisity.com/company/"",""keyExecutives"":""https://www.tonisity.com/about-us/"",""productDescription"":""https://www.tonisity.com/products/""},""websiteURL"":""https://www.tonisity.com""}","Correctness: 100% Completeness: 98% The information provided about Tonisity International Ltd is factually accurate and highly complete. The company was founded in 2015 and is headquartered in Ireland, as confirmed in multiple sources including their official website and industry profiles[2][3][5]. The leadership includes Arie Halpern as founder and Chairman, Mathieu Cortyl as CEO (appointed December 2024), Jeremy Rothwell as CFO, Dr. Ava Firth as R&D Director, Gloria Basse as Senior Executive Director, and Lori Head as Director of Operations, all verified on the company’s own sites and recent press[2][4]. Tonisity’s product portfolio of isotonic protein supplements targeting swine, companion animals, and ruminants, including Tonisity Px, PxW, PxM, Tonisity Rum-X, Rum-Xm, and DoggyRade, is well documented across official sources[2][3][5]. The company’s focus markets—North America, Europe, Asia (especially China), and emerging markets like the Philippines—are also supported by their global distributor network descriptions and joint ventures cited in official communications[2][3]. The only minor deduction in completeness is due to the absence of explicit mention of the Tonisity Academy online platform and some recent customer success metrics noted externally[1][5], which are relevant but not core structural data. Overall, the data is corroborated by primary official company information and recent authoritative announcements dated up to mid-2025, e.g., CEO appointment in late 2024 and award recognition in 2025[4][1][2]. URLs: https://www.tonisity.com/about-us/, https://www.tonisity.com/products/, https://www.newsfilecorp.com/company/8645/Tonisity-International-Limited, https://www.pig333.com/company_news/tonisity-10-years-of-innovation-in-animal-health-and-nutrition_21356/, https://us.tonisity.com/about-us/","{""clientCategories"":[""Swine producers"",""Ruminant producers"",""Companion animal owners""],""companyDescription"":""Tonisity International Ltd, founded in 2015, is an animal health company dedicated to improving animal health and welfare. They serve the swine industry and have expanded to companion animal and ruminant products, focusing on novel nutritional supplements. Dedicated to innovative development of cutting-edge nutritional products challenging everyday animal health standards to improve animal welfare and production outcomes with positive returns for farmers."",""geographicFocus"":""HQ: Ireland; Sales Focus: Global via distributors"",""keyExecutives"":[{""name"":""Arie Halpern"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""Chairman of the Board, Founder""},{""name"":""Mathieu Cortyl"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""CEO""},{""name"":""Jeremy Rothwell"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""CFO""},{""name"":""Dr. Ava Firth"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""R&D Director""},{""name"":""Gloria Basse"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""Senior Executive Director""},{""name"":""Lori Head"",""sourceUrl"":""https://www.tonisity.com/about-us/"",""title"":""Director of Operations""}],""linkedDocuments"":[""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-Px-Brochure.pdf"",""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-Total-Programme-Brochure.pdf"",""https://www.tonisity.com/wp-content/uploads/2022/05/Tonisity-PxW-General-Flyer.pdf"",""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Antibiotics.pdf"",""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_PRRS.pdf"",""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Mortality.pdf"",""https://www.tonisity.com/wp-content/uploads/2022/05/English_Technical-Update_Milk-Replacer.pdf""],""missingImportantFields"":[],""productDescription"":""Tonisity International offers a range of isotonic protein solutions to improve farm animal performance, including swine products (Tonisity Px, Tonisity PxW, Tonisity PxM, Tonisity Total Programme), ruminant products (Tonisity Rum-X, Tonisity Rum-Xm), and companion animal products (DoggyRade). These products support gut health and development at key animal milestones. Detailed brochures and quick start guides provide usage and dosage instructions."",""researcherNotes"":null,""sectorDescription"":""Operates in the animal health and nutrition sector, providing innovative nutritional supplements for livestock and companion animals to improve health and welfare."",""sources"":{""clientCategories"":""https://www.tonisity.com/customers/"",""companyDescription"":""https://www.tonisity.com/about-us/"",""geographicFocus"":""https://tonisity.com/company/"",""keyExecutives"":""https://www.tonisity.com/about-us/"",""productDescription"":""https://www.tonisity.com/products/""},""websiteURL"":""https://www.tonisity.com/""}" -Nordic Aquafarms,https://www.nordicaquafarms.com/,,nordicaquafarms.com,https://www.linkedin.com/company/nordic-aquafarms-as,"{""seniorLeadership"":[{""name"":""Lars Henrik Haaland"",""title"":""CFO"",""profileUrl"":""https://www.linkedin.com/in/lars-henrik-haaland-78b19434""},{""name"":""Brenda Chandler"",""title"":""U.S. Chief Executive Officer"",""profileUrl"":""https://www.linkedin.com/in/brenda-chandler-6400a49""}]}","{""seniorLeadership"":[{""name"":""Lars Henrik Haaland"",""title"":""CFO"",""profileUrl"":""https://www.linkedin.com/in/lars-henrik-haaland-78b19434""},{""name"":""Brenda Chandler"",""title"":""U.S. Chief Executive Officer"",""profileUrl"":""https://www.linkedin.com/in/brenda-chandler-6400a49""}]}","{ - ""websiteURL"": ""https://www.nordicaquafarms.com/"", - ""companyDescription"": ""Nordic Aquafarms is a leader in land-based aquaculture with an international perspective, operating with pure-play land-based seafood companies that handle in-house RAS-design, proprietary technology, project management, production, and sales. They have facilities in Norway and Denmark and are developing projects in the USA. Their production includes Yellowtail Kingfish and Salmon, with a fully integrated operation from RAS design to production and sales. Nordic Aquafarms aims to deliver fresh, top quality seafood products every week of the year, emphasizing sustainability and production close to the consumer, using proprietary technology and skilled teams."", - ""productDescription"": ""Nordic Aquafarms offers pure-play land-based seafood products and services, including the design and operation of Recirculating Aquaculture Systems (RAS) with proprietary technology developed by in-house RAS engineers. They produce Yellowtail Kingfish and Salmon, with operational facilities in Norway and Denmark and projects in the USA (California and Maine). Specific business units include:\n- Nordic Kingfish, a producer of sustainable Yellowtail Kingfish with 3 operational sites and 3,000MT production capacity\n- Nordic Aquafarms California, developing seafood production near the consumer market. Services include RAS design, project management, production, and sales."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the land-based aquaculture sector, focusing on sustainable seafood production, leveraging RAS technology, and with established production in Norway, Denmark, and development projects in the USA."", - ""geographicFocus"": ""HQ: Øraveien 2, 1630 Gamle Fredrikstad, Norway; Sales Focus: Norway, Denmark, USA (California and Maine)."", - ""keyExecutives"": [ - {""name"": ""Charles Høstlund"", ""title"": ""CEO of Nordic Aquafarms"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""}, - {""name"": ""Lars Henrik Haaland"", ""title"": ""CFO of Nordic Aquafarms"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""}, - {""name"": ""Mikkel Thomsen"", ""title"": ""CTO of Nordic Aquafarms"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""}, - {""name"": ""Brenda Chandler"", ""title"": ""CEO of NAF Inc"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories could not be found on the website after thorough checking. No dedicated page or information appears regarding primary customer segments."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.nordicaquafarms.com/"", - ""productDescription"": ""https://www.nordicaquafarms.com/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.nordicaquafarms.com/"", - ""keyExecutives"": ""https://www.nordicaquafarms.com/"" - } -}","{ - ""websiteURL"": ""https://www.nordicaquafarms.com/"", - ""companyDescription"": ""Nordic Aquafarms is a leader in land-based aquaculture with an international perspective, operating with pure-play land-based seafood companies that handle in-house RAS-design, proprietary technology, project management, production, and sales. They have facilities in Norway and Denmark and are developing projects in the USA. Their production includes Yellowtail Kingfish and Salmon, with a fully integrated operation from RAS design to production and sales. Nordic Aquafarms aims to deliver fresh, top quality seafood products every week of the year, emphasizing sustainability and production close to the consumer, using proprietary technology and skilled teams."", - ""productDescription"": ""Nordic Aquafarms offers pure-play land-based seafood products and services, including the design and operation of Recirculating Aquaculture Systems (RAS) with proprietary technology developed by in-house RAS engineers. They produce Yellowtail Kingfish and Salmon, with operational facilities in Norway and Denmark and projects in the USA (California and Maine). Specific business units include:\n- Nordic Kingfish, a producer of sustainable Yellowtail Kingfish with 3 operational sites and 3,000MT production capacity\n- Nordic Aquafarms California, developing seafood production near the consumer market. Services include RAS design, project management, production, and sales."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the land-based aquaculture sector, focusing on sustainable seafood production, leveraging RAS technology, and with established production in Norway, Denmark, and development projects in the USA."", - ""geographicFocus"": ""HQ: Øraveien 2, 1630 Gamle Fredrikstad, Norway; Sales Focus: Norway, Denmark, USA (California and Maine)."", - ""keyExecutives"": [ - {""name"": ""Charles Høstlund"", ""title"": ""CEO of Nordic Aquafarms"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""}, - {""name"": ""Lars Henrik Haaland"", ""title"": ""CFO of Nordic Aquafarms"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""}, - {""name"": ""Mikkel Thomsen"", ""title"": ""CTO of Nordic Aquafarms"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""}, - {""name"": ""Brenda Chandler"", ""title"": ""CEO of NAF Inc"", ""sourceUrl"": ""https://www.nordicaquafarms.com/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories could not be found on the website after thorough checking. No dedicated page or information appears regarding primary customer segments."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.nordicaquafarms.com/"", - ""productDescription"": ""https://www.nordicaquafarms.com/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.nordicaquafarms.com/"", - ""keyExecutives"": ""https://www.nordicaquafarms.com/"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.nordicaquafarms.com"", - ""companyDescription"": ""Nordic Aquafarms is a leading land-based aquaculture company with operations and projects in Norway, Denmark, and the USA. It specializes in sustainable seafood production using proprietary Recirculating Aquaculture Systems (RAS) technology designed in-house, enabling year-round delivery of fresh, top-quality seafood including Yellowtail Kingfish and Salmon. The company integrates RAS design, project management, production, and sales, focusing on sustainable practices and proximity to consumer markets."", - ""productDescription"": ""Nordic Aquafarms produces sustainable Yellowtail Kingfish and Salmon through land-based aquaculture facilities equipped with advanced proprietary RAS technology developed by its in-house engineering team. The company manages the full value chain, from RAS design and project management to seafood production and sales, with operational sites in Norway and Denmark and ongoing development projects in the USA, including California and formerly Maine."", - ""clientCategories"": [ - ""Seafood Distributors"", - ""Retail Chains"", - ""Foodservice Providers"", - ""Sustainability-Focused Consumers"", - ""Aquaculture Partners"", - ""Investors"" - ], - ""sectorDescription"": ""Land-based aquaculture company specializing in sustainable seafood production through proprietary Recirculating Aquaculture Systems (RAS) technology, with established operations in Europe and development projects in the USA."", - ""geographicFocus"": ""Primary operations in Norway and Denmark with ongoing project development in the USA, notably California; previously pursued projects in Maine that were discontinued after permitting and legal challenges."", - ""keyExecutives"": [ - { - ""name"": ""Charles Høstlund"", - ""title"": ""CEO of Nordic Aquafarms"", - ""sourceUrl"": ""https://www.nordicaquafarms.com"" - }, - { - ""name"": ""Lars Henrik Haaland"", - ""title"": ""CFO of Nordic Aquafarms"", - ""sourceUrl"": ""https://www.nordicaquafarms.com"" - }, - { - ""name"": ""Mikkel Thomsen"", - ""title"": ""CTO of Nordic Aquafarms"", - ""sourceUrl"": ""https://www.nordicaquafarms.com"" - }, - { - ""name"": ""Brenda Chandler"", - ""title"": ""CEO of NAF Inc / U.S. Chief Executive Officer"", - ""sourceUrl"": ""https://www.nordicaquafarms.com"" - } - ], - ""researcherNotes"": ""Client categories are not explicitly listed on the company website but were inferred from typical seafood supply chain segments and press reports. Geographic focus was updated to incorporate recent news indicating that the Maine project has been discontinued due to legal and permitting challenges, while the California project is advancing. All key executive titles and affiliations were confirmed from the company website and LinkedIn profiles. The company website is the main authoritative source for description and leadership data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nordicaquafarms.com"", - ""productDescription"": ""https://www.nordicaquafarms.com"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.nordicaquafarms.com"", - ""keyExecutives"": ""https://www.nordicaquafarms.com"" - } -}","{""clientCategories"":[""Seafood Distributors"",""Retail Chains"",""Foodservice Providers"",""Sustainability-Focused Consumers"",""Aquaculture Partners"",""Investors""],""companyDescription"":""Nordic Aquafarms is a leading land-based aquaculture company with operations and projects in Norway, Denmark, and the USA. It specializes in sustainable seafood production using proprietary Recirculating Aquaculture Systems (RAS) technology designed in-house, enabling year-round delivery of fresh, top-quality seafood including Yellowtail Kingfish and Salmon. The company integrates RAS design, project management, production, and sales, focusing on sustainable practices and proximity to consumer markets."",""geographicFocus"":""Primary operations in Norway and Denmark with ongoing project development in the USA, notably California; previously pursued projects in Maine that were discontinued after permitting and legal challenges."",""keyExecutives"":[{""name"":""Charles Høstlund"",""sourceUrl"":""https://www.nordicaquafarms.com"",""title"":""CEO of Nordic Aquafarms""},{""name"":""Lars Henrik Haaland"",""sourceUrl"":""https://www.nordicaquafarms.com"",""title"":""CFO of Nordic Aquafarms""},{""name"":""Mikkel Thomsen"",""sourceUrl"":""https://www.nordicaquafarms.com"",""title"":""CTO of Nordic Aquafarms""},{""name"":""Brenda Chandler"",""sourceUrl"":""https://www.nordicaquafarms.com"",""title"":""CEO of NAF Inc / U.S. Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""Nordic Aquafarms produces sustainable Yellowtail Kingfish and Salmon through land-based aquaculture facilities equipped with advanced proprietary RAS technology developed by its in-house engineering team. The company manages the full value chain, from RAS design and project management to seafood production and sales, with operational sites in Norway and Denmark and ongoing development projects in the USA, including California and formerly Maine."",""researcherNotes"":""Client categories are not explicitly listed on the company website but were inferred from typical seafood supply chain segments and press reports. Geographic focus was updated to incorporate recent news indicating that the Maine project has been discontinued due to legal and permitting challenges, while the California project is advancing. All key executive titles and affiliations were confirmed from the company website and LinkedIn profiles. The company website is the main authoritative source for description and leadership data."",""sectorDescription"":""Land-based aquaculture company specializing in sustainable seafood production through proprietary Recirculating Aquaculture Systems (RAS) technology, with established operations in Europe and development projects in the USA."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.nordicaquafarms.com"",""geographicFocus"":""https://www.nordicaquafarms.com"",""keyExecutives"":""https://www.nordicaquafarms.com"",""productDescription"":""https://www.nordicaquafarms.com""},""websiteURL"":""https://www.nordicaquafarms.com""}","Correctness: 100% Completeness: 95% - -The information about Nordic Aquafarms aligns accurately with multiple recent and authoritative sources. Nordic Aquafarms is a land-based aquaculture company specializing in sustainable production of Yellowtail Kingfish and Salmon through proprietary Recirculating Aquaculture Systems (RAS) technology, with operations in Norway and Denmark and ongoing projects in the USA, including California. Their Maine project was discontinued in January 2025 after sustained legal challenges despite securing all necessary permits, which is confirmed by company statements and multiple detailed news reports [1][2][4]. Brenda Chandler is verified as the U.S. CEO, consistent across these sources and the company website. The Maine project's cancellation and land sale plans are well documented with precise dates and quotes [3]. The focus on sustainable seafood production and full value-chain integration also matches the official Nordic Aquafarms website descriptions [company source]. The small deduction in completeness reflects minor absence of direct citations about the California project development specifically, though it is referenced in company communications, and no contradictory information was found. Overall, the core identity, leadership, geographic focus, and operational details are thoroughly supported by official and recent press sources from 2025. - -Sources: https://www.nordicaquafarms.com, https://www.salmonbusiness.com/nordic-aquafarms-100-million-land-based-project-killed-by-legal-challenges/, https://www.rastechmagazine.com/nordic-aquafarms-withdraws-plans-to-build-ras-farm-in-maine/, https://www.mainepublic.org/environment-and-outdoors/2025-01-21/nordic-aquafarms-to-stop-pursuing-belfast-fish-farm-project, https://www.pressherald.com/2025/04/21/environmental-group-to-purchase-land-once-eyed-for-belfast-salmon-farm/","{""clientCategories"":[],""companyDescription"":""Nordic Aquafarms is a leader in land-based aquaculture with an international perspective, operating with pure-play land-based seafood companies that handle in-house RAS-design, proprietary technology, project management, production, and sales. They have facilities in Norway and Denmark and are developing projects in the USA. Their production includes Yellowtail Kingfish and Salmon, with a fully integrated operation from RAS design to production and sales. Nordic Aquafarms aims to deliver fresh, top quality seafood products every week of the year, emphasizing sustainability and production close to the consumer, using proprietary technology and skilled teams."",""geographicFocus"":""HQ: Øraveien 2, 1630 Gamle Fredrikstad, Norway; Sales Focus: Norway, Denmark, USA (California and Maine)."",""keyExecutives"":[{""name"":""Charles Høstlund"",""sourceUrl"":""https://www.nordicaquafarms.com/"",""title"":""CEO of Nordic Aquafarms""},{""name"":""Lars Henrik Haaland"",""sourceUrl"":""https://www.nordicaquafarms.com/"",""title"":""CFO of Nordic Aquafarms""},{""name"":""Mikkel Thomsen"",""sourceUrl"":""https://www.nordicaquafarms.com/"",""title"":""CTO of Nordic Aquafarms""},{""name"":""Brenda Chandler"",""sourceUrl"":""https://www.nordicaquafarms.com/"",""title"":""CEO of NAF Inc""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Nordic Aquafarms offers pure-play land-based seafood products and services, including the design and operation of Recirculating Aquaculture Systems (RAS) with proprietary technology developed by in-house RAS engineers. They produce Yellowtail Kingfish and Salmon, with operational facilities in Norway and Denmark and projects in the USA (California and Maine). Specific business units include:\n- Nordic Kingfish, a producer of sustainable Yellowtail Kingfish with 3 operational sites and 3,000MT production capacity\n- Nordic Aquafarms California, developing seafood production near the consumer market. Services include RAS design, project management, production, and sales."",""researcherNotes"":""Client categories could not be found on the website after thorough checking. No dedicated page or information appears regarding primary customer segments."",""sectorDescription"":""Operates in the land-based aquaculture sector, focusing on sustainable seafood production, leveraging RAS technology, and with established production in Norway, Denmark, and development projects in the USA."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.nordicaquafarms.com/"",""geographicFocus"":""https://www.nordicaquafarms.com/"",""keyExecutives"":""https://www.nordicaquafarms.com/"",""productDescription"":""https://www.nordicaquafarms.com/""},""websiteURL"":""https://www.nordicaquafarms.com/""}" -Lambda energy,https://www.Lambda.energy,Greenbackers Investment Capital,lambda.energy,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.lambda.energy/"", - ""companyDescription"": ""Multi-award winning Agritech company Lambda Energy has developed a light changing spray coating for greenhouse panels that can increase crop yields by 20%."", - ""productDescription"": ""Products: Lambda Films - light management films with superior UV to red light conversion, made in PMMA films of 3 sizes, fluorescent chemical concentration between 1-50mg/g polymer. Lambda UV-R Range - uses proprietary molecule converting UV light to red light with 60% efficiency (PLQY). Available as PMMA films free standing or on glass, EVA films free standing or on glass, Lambda UV-R film spray coated on polycarbonate or glass. Lambda Spray Paint - paint product available by quote; purchase contact via website, info@Lambda.energy."", - ""clientCategories"": [""Agritech growers"", ""Greenhouse growers"", ""Growers of high value herbs"", ""Growers of berries""], - ""sectorDescription"": ""Operates in the Agritech sector, providing innovative light management and coating products for greenhouse crop enhancement."", - ""geographicFocus"": ""HQ: Yusuf Hamied Chemistry Department, Lensfield Road, Cambridge, CB2 1EW; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Dr Monica Saavedra, EngD"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.lambda.energy/team/""}, - {""name"": ""Charlie Hancock"", ""title"": ""CCO"", ""sourceUrl"": ""https://www.lambda.energy/team/""}, - {""name"": ""Guy Pengelley"", ""title"": ""CFO"", ""sourceUrl"": ""https://www.lambda.energy/team/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic sales regions or markets were not explicitly stated on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.lambda.energy/"", - ""productDescription"": ""https://www.lambda.energy/products/"", - ""clientCategories"": ""https://www.lambda.energy/agritech/"", - ""geographicFocus"": ""https://www.lambda.energy/contact/"", - ""keyExecutives"": ""https://www.lambda.energy/team/"" - } -}","{ - ""websiteURL"": ""https://www.lambda.energy/"", - ""companyDescription"": ""Multi-award winning Agritech company Lambda Energy has developed a light changing spray coating for greenhouse panels that can increase crop yields by 20%."", - ""productDescription"": ""Products: Lambda Films - light management films with superior UV to red light conversion, made in PMMA films of 3 sizes, fluorescent chemical concentration between 1-50mg/g polymer. Lambda UV-R Range - uses proprietary molecule converting UV light to red light with 60% efficiency (PLQY). Available as PMMA films free standing or on glass, EVA films free standing or on glass, Lambda UV-R film spray coated on polycarbonate or glass. Lambda Spray Paint - paint product available by quote; purchase contact via website, info@Lambda.energy."", - ""clientCategories"": [""Agritech growers"", ""Greenhouse growers"", ""Growers of high value herbs"", ""Growers of berries""], - ""sectorDescription"": ""Operates in the Agritech sector, providing innovative light management and coating products for greenhouse crop enhancement."", - ""geographicFocus"": ""HQ: Yusuf Hamied Chemistry Department, Lensfield Road, Cambridge, CB2 1EW; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Dr Monica Saavedra, EngD"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.lambda.energy/team/""}, - {""name"": ""Charlie Hancock"", ""title"": ""CCO"", ""sourceUrl"": ""https://www.lambda.energy/team/""}, - {""name"": ""Guy Pengelley"", ""title"": ""CFO"", ""sourceUrl"": ""https://www.lambda.energy/team/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic sales regions or markets were not explicitly stated on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.lambda.energy/"", - ""productDescription"": ""https://www.lambda.energy/products/"", - ""clientCategories"": ""https://www.lambda.energy/agritech/"", - ""geographicFocus"": ""https://www.lambda.energy/contact/"", - ""keyExecutives"": ""https://www.lambda.energy/team/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.lambda.energy/"", - ""companyDescription"": ""Multi-award winning Agritech company Lambda Energy has developed a light changing spray coating for greenhouse panels that can increase crop yields by 20%."", - ""productDescription"": ""Products: Lambda Films - light management films with superior UV to red light conversion, made in PMMA films of 3 sizes, fluorescent chemical concentration between 1-50mg/g polymer. Lambda UV-R Range - uses proprietary molecule converting UV light to red light with 60% efficiency (PLQY). Available as PMMA films free standing or on glass, EVA films free standing or on glass, Lambda UV-R film spray coated on polycarbonate or glass. Lambda Spray Paint - paint product available by quote; purchase contact via website, info@Lambda.energy."", - ""clientCategories"": [ - ""Agritech Growers"", - ""Greenhouse Growers"", - ""Growers of High Value Herbs"", - ""Growers of Berries"" - ], - ""sectorDescription"": ""Operates in the Agritech sector, providing innovative light management and coating products for greenhouse crop enhancement."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Dr Monica Saavedra, EngD"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.lambda.energy/team/"" - }, - { - ""name"": ""Charlie Hancock"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://www.lambda.energy/team/"" - }, - { - ""name"": ""Guy Pengelley"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://www.lambda.energy/team/"" - } - ], - ""researcherNotes"": ""The company was confirmed as Lambda Energy Ltd based on the primary domain match (lambda.energy) and Cambridge, UK office indications. The geographic sales footprint is not stated publicly on the website or LinkedIn and remains unknown. The UK Companies House confirms the company active status and registered office in Cambridge, England. There is potential ambiguity with Lambda Energy Resources LLC in the U.S., but their sector and region differ significantly."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://www.lambda.energy/"", - ""productDescription"": ""https://www.lambda.energy/products/"", - ""clientCategories"": ""https://www.lambda.energy/agritech/"", - ""geographicFocus"": ""https://www.lambda.energy/contact/"", - ""keyExecutives"": ""https://www.lambda.energy/team/"" - } -}","{""clientCategories"":[""Agritech Growers"",""Greenhouse Growers"",""Growers of High Value Herbs"",""Growers of Berries""],""companyDescription"":""Multi-award winning Agritech company Lambda Energy has developed a light changing spray coating for greenhouse panels that can increase crop yields by 20%."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Dr Monica Saavedra, EngD"",""sourceUrl"":""https://www.lambda.energy/team/"",""title"":""CEO""},{""name"":""Charlie Hancock"",""sourceUrl"":""https://www.lambda.energy/team/"",""title"":""CCO""},{""name"":""Guy Pengelley"",""sourceUrl"":""https://www.lambda.energy/team/"",""title"":""CFO""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Products: Lambda Films - light management films with superior UV to red light conversion, made in PMMA films of 3 sizes, fluorescent chemical concentration between 1-50mg/g polymer. Lambda UV-R Range - uses proprietary molecule converting UV light to red light with 60% efficiency (PLQY). Available as PMMA films free standing or on glass, EVA films free standing or on glass, Lambda UV-R film spray coated on polycarbonate or glass. Lambda Spray Paint - paint product available by quote; purchase contact via website, info@Lambda.energy."",""researcherNotes"":""The company was confirmed as Lambda Energy Ltd based on the primary domain match (lambda.energy) and Cambridge, UK office indications. The geographic sales footprint is not stated publicly on the website or LinkedIn and remains unknown. The UK Companies House confirms the company active status and registered office in Cambridge, England. There is potential ambiguity with Lambda Energy Resources LLC in the U.S., but their sector and region differ significantly."",""sectorDescription"":""Operates in the Agritech sector, providing innovative light management and coating products for greenhouse crop enhancement."",""sources"":{""clientCategories"":""https://www.lambda.energy/agritech/"",""companyDescription"":""https://www.lambda.energy/"",""geographicFocus"":""https://www.lambda.energy/contact/"",""keyExecutives"":""https://www.lambda.energy/team/"",""productDescription"":""https://www.lambda.energy/products/""},""websiteURL"":""https://www.lambda.energy/""}","Correctness: 95% Completeness: 85% The core facts about Lambda Energy are accurate: it is a multi-award winning agritech company based in Cambridge, UK, that has developed light management coatings, including films and spray coatings, which can improve greenhouse crop yields by approximately 10-20% by converting UV light to red light favored by plants[2][4]. The confirmed CEO is Dr. Monica Saavedra, EngD, with Charlie Hancock as Chief Commercial Officer and Guy Pengelley as CFO, per the official team page[2]. The products include Lambda Films with fluorescent chemical concentrations, Lambda UV-R materials converting UV to red light with ~60% efficiency, and spray coatings on greenhouse panels, available on various substrates such as PMMA, EVA, and glass[2]. The company’s location and registered status in Cambridge, England, is confirmed though its geographic sales footprint is not publicly stated, lowering completeness in that aspect[2]. The claim of ""up to 20%"" crop yield improvement is consistent with the described technology enhancing light spectrum and diffusion to optimize plant growth, although a referenced 9.3% increase in basil yield reflects typical results rather than a guaranteed maximum yield gain[1][4]. Missing fields include explicit geographic focus and detailed sales regions, which are not publicly documented as of 2025-09-11[2]. Also, some minor ambiguity exists around company identity due to similarly named US entities but is resolved by confirmed UK registry and website details[2]. Overall, the information is well-supported by company sources and authoritative coverage from Nature and industry profiles, but completeness is limited by lack of public data on market presence or recent funding. Sources: https://www.lambda.energy/team/, https://www.lambda.energy/products/, https://www.lambda.energy/, https://www.nature.com/articles/d41586-025-00175-3, https://www.barn4.com/members/lambda-energy","{""clientCategories"":[""Agritech growers"",""Greenhouse growers"",""Growers of high value herbs"",""Growers of berries""],""companyDescription"":""Multi-award winning Agritech company Lambda Energy has developed a light changing spray coating for greenhouse panels that can increase crop yields by 20%."",""geographicFocus"":""HQ: Yusuf Hamied Chemistry Department, Lensfield Road, Cambridge, CB2 1EW; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Dr Monica Saavedra, EngD"",""sourceUrl"":""https://www.lambda.energy/team/"",""title"":""CEO""},{""name"":""Charlie Hancock"",""sourceUrl"":""https://www.lambda.energy/team/"",""title"":""CCO""},{""name"":""Guy Pengelley"",""sourceUrl"":""https://www.lambda.energy/team/"",""title"":""CFO""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Products: Lambda Films - light management films with superior UV to red light conversion, made in PMMA films of 3 sizes, fluorescent chemical concentration between 1-50mg/g polymer. Lambda UV-R Range - uses proprietary molecule converting UV light to red light with 60% efficiency (PLQY). Available as PMMA films free standing or on glass, EVA films free standing or on glass, Lambda UV-R film spray coated on polycarbonate or glass. Lambda Spray Paint - paint product available by quote; purchase contact via website, info@Lambda.energy."",""researcherNotes"":""Geographic sales regions or markets were not explicitly stated on the website."",""sectorDescription"":""Operates in the Agritech sector, providing innovative light management and coating products for greenhouse crop enhancement."",""sources"":{""clientCategories"":""https://www.lambda.energy/agritech/"",""companyDescription"":""https://www.lambda.energy/"",""geographicFocus"":""https://www.lambda.energy/contact/"",""keyExecutives"":""https://www.lambda.energy/team/"",""productDescription"":""https://www.lambda.energy/products/""},""websiteURL"":""https://www.lambda.energy/""}" -Oxbury Bank,https://www.oxbury.com,"Frontier Agriculture, Grosvenor Group, Hutchison Group, Salica",oxbury.com,https://www.linkedin.com/company/oxbury-bank,"{""seniorLeadership"":[{""name"":""James Farrar"",""title"":""Chief Executive Officer / Executive Director. Co Founder"",""linkedinProfile"":""https://www.linkedin.com/in/james-farrar-a39b1919a""},{""name"":""Carl McNeice"",""title"":""Chief Operational Officer"",""linkedinProfile"":""https://uk.linkedin.com/in/carlmcneice?trk=public_post-text""},{""name"":""Stuart Ellidge"",""title"":""Chief Technical Officer"",""linkedinProfile"":""https://uk.linkedin.com/in/stuart-ellidge-3720731?trk=public_post-text""},{""name"":""Robin Hill"",""title"":""Chief Risk Officer"",""linkedinProfile"":""https://www.linkedin.com/in/robin-hill-9267b731""},{""name"":""Tim Fitzpatrick"",""title"":""Senior Independent Non Executive Director"",""linkedinProfile"":""https://www.linkedin.com/company/oxbury-bank""},{""name"":""Carolien Samson"",""title"":""Head of Sustainable Banking"",""linkedinProfile"":""https://www.linkedin.com/in/carolien-samson-04242125""},{""name"":""Catherine Howell"",""title"":""Head of Corporate"",""linkedinProfile"":""https://www.linkedin.com/in/catherine-howell-66787372""},{""name"":""Andrew Gornall"",""title"":""Head of Credit"",""linkedinProfile"":""https://www.linkedin.com/in/gornallbb4b977a""},{""name"":""Dylan Owen"",""title"":""Head of Distributor Relationships"",""linkedinProfile"":""https://www.linkedin.com/in/dylan-owen-5b7839b0""}]}","{""seniorLeadership"":[{""name"":""James Farrar"",""title"":""Chief Executive Officer / Executive Director. Co Founder"",""linkedinProfile"":""https://www.linkedin.com/in/james-farrar-a39b1919a""},{""name"":""Carl McNeice"",""title"":""Chief Operational Officer"",""linkedinProfile"":""https://uk.linkedin.com/in/carlmcneice?trk=public_post-text""},{""name"":""Stuart Ellidge"",""title"":""Chief Technical Officer"",""linkedinProfile"":""https://uk.linkedin.com/in/stuart-ellidge-3720731?trk=public_post-text""},{""name"":""Robin Hill"",""title"":""Chief Risk Officer"",""linkedinProfile"":""https://www.linkedin.com/in/robin-hill-9267b731""},{""name"":""Tim Fitzpatrick"",""title"":""Senior Independent Non Executive Director"",""linkedinProfile"":""https://www.linkedin.com/company/oxbury-bank""},{""name"":""Carolien Samson"",""title"":""Head of Sustainable Banking"",""linkedinProfile"":""https://www.linkedin.com/in/carolien-samson-04242125""},{""name"":""Catherine Howell"",""title"":""Head of Corporate"",""linkedinProfile"":""https://www.linkedin.com/in/catherine-howell-66787372""},{""name"":""Andrew Gornall"",""title"":""Head of Credit"",""linkedinProfile"":""https://www.linkedin.com/in/gornallbb4b977a""},{""name"":""Dylan Owen"",""title"":""Head of Distributor Relationships"",""linkedinProfile"":""https://www.linkedin.com/in/dylan-owen-5b7839b0""}]}","{ - ""websiteURL"": ""https://www.oxbury.com"", - ""companyDescription"": ""Oxbury Bank was founded to provide the food and farming industries with the funding and support they need; very positive about farming's future and opportunities; offers working capital, asset finance, long-term lending; also offers savings accounts supporting rural economy. Oxbury is the only UK bank dedicated to British agriculture. Founded by farmers, bankers, and technologists, it combines financial services, technology, and agriculture to provide bespoke financial products supporting the rural economy. Its mission is to create and grow a sustainable, customer-focused, and innovative bank that supports the financial health of the rural economy."", - ""productDescription"": ""Oxbury Bank provides the following core offerings: - Personal savings accounts - Farm business savings accounts - Business savings accounts - Lending options including farm loans, flexi credit, transition facility"", - ""clientCategories"": [""Individuals"", ""Farms"", ""Farm businesses"", ""Rural economy participants""], - ""sectorDescription"": ""Operates in the UK banking sector, specializing exclusively in financial services for the agriculture and rural economy."", - ""geographicFocus"": ""HQ: One City Place, Queens Road, Chester, CH1 3BQ, England and Wales; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Tim Coates"", ""title"": ""Founder, Chief Customer and Regulatory Officer"", ""sourceUrl"": ""https://www.oxbury.com/blog/meet-the-team-introducing-tim-coates-founder-to-farmer/""}, - {""name"": ""James Farrar"", ""title"": ""Chief Executive Officer / Executive Director, Co Founder"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""Carl McNeice"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""David Hanson"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""Stuart Ellidge"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.oxbury.com/blog/meet-the-team-introducing-stuart-ellidge-chief-technical-officer/""}, - {""name"": ""Robin Hill"", ""title"": ""Chief Risk Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""} - ], - ""linkedDocuments"": [ - ""https://www.oxbury.com/media/jz1bnv5y/updated-version-efgoxbury-nature-markets-paper-diagram.pdf"", - ""https://www.oxbury.com/media/raul41l4/communications-manager-updated.pdf"", - ""https://www.oxbury.com/media/3sebijje/it-support-manager-ad.pdf"" - ], - ""researcherNotes"": ""Geographic sales focus regions are not explicitly mentioned on the website."", - ""missingImportantFields"": [""sectorDescription""], - ""sources"": { - ""companyDescription"": ""https://www.oxbury.com/"", - ""productDescription"": ""https://www.oxbury.com/"", - ""clientCategories"": ""https://www.oxbury.com/"", - ""geographicFocus"": ""https://www.oxbury.com/about-us/contact-us"", - ""keyExecutives"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team"" - } -}","{ - ""websiteURL"": ""https://www.oxbury.com"", - ""companyDescription"": ""Oxbury Bank was founded to provide the food and farming industries with the funding and support they need; very positive about farming's future and opportunities; offers working capital, asset finance, long-term lending; also offers savings accounts supporting rural economy. Oxbury is the only UK bank dedicated to British agriculture. Founded by farmers, bankers, and technologists, it combines financial services, technology, and agriculture to provide bespoke financial products supporting the rural economy. Its mission is to create and grow a sustainable, customer-focused, and innovative bank that supports the financial health of the rural economy."", - ""productDescription"": ""Oxbury Bank provides the following core offerings: - Personal savings accounts - Farm business savings accounts - Business savings accounts - Lending options including farm loans, flexi credit, transition facility"", - ""clientCategories"": [""Individuals"", ""Farms"", ""Farm businesses"", ""Rural economy participants""], - ""sectorDescription"": ""Operates in the UK banking sector, specializing exclusively in financial services for the agriculture and rural economy."", - ""geographicFocus"": ""HQ: One City Place, Queens Road, Chester, CH1 3BQ, England and Wales; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Tim Coates"", ""title"": ""Founder, Chief Customer and Regulatory Officer"", ""sourceUrl"": ""https://www.oxbury.com/blog/meet-the-team-introducing-tim-coates-founder-to-farmer/""}, - {""name"": ""James Farrar"", ""title"": ""Chief Executive Officer / Executive Director, Co Founder"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""Carl McNeice"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""David Hanson"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""Stuart Ellidge"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.oxbury.com/blog/meet-the-team-introducing-stuart-ellidge-chief-technical-officer/""}, - {""name"": ""Robin Hill"", ""title"": ""Chief Risk Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""} - ], - ""linkedDocuments"": [ - ""https://www.oxbury.com/media/jz1bnv5y/updated-version-efgoxbury-nature-markets-paper-diagram.pdf"", - ""https://www.oxbury.com/media/raul41l4/communications-manager-updated.pdf"", - ""https://www.oxbury.com/media/3sebijje/it-support-manager-ad.pdf"" - ], - ""researcherNotes"": ""Geographic sales focus regions are not explicitly mentioned on the website."", - ""missingImportantFields"": [""sectorDescription""], - ""sources"": { - ""companyDescription"": ""https://www.oxbury.com/"", - ""productDescription"": ""https://www.oxbury.com/"", - ""clientCategories"": ""https://www.oxbury.com/"", - ""geographicFocus"": ""https://www.oxbury.com/about-us/contact-us"", - ""keyExecutives"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team"" - } -}","[""sectorDescription""]","{ - ""websiteURL"": ""https://www.oxbury.com"", - ""companyDescription"": ""Oxbury Bank is the only UK bank dedicated exclusively to British agriculture and the rural economy. Founded by farmers, bankers, and technologists, it combines financial services, technology, and sector expertise to provide funding and support to the food and farming industries. The bank offers working capital, asset finance, long-term lending, and savings products, aiming to support the financial health and sustainable growth of the rural economy."", - ""productDescription"": ""Oxbury Bank delivers a range of financial products specifically designed for agriculture and rural businesses, including personal savings accounts, farm business savings accounts, business savings accounts, and various lending options such as farm loans, flexi credit, and transition facilities. These offerings support farmers and rural economy participants in managing their finances efficiently, promoting productivity and sustainability."", - ""clientCategories"": [""Individuals"", ""Farms"", ""Farm Businesses"", ""Rural Economy Participants""], - ""sectorDescription"": ""UK banking sector specializing exclusively in financial services for the agriculture and rural economy."", - ""geographicFocus"": null, - ""keyExecutives"": [ - {""name"": ""Tim Coates"", ""title"": ""Founder, Chief Customer and Regulatory Officer"", ""sourceUrl"": ""https://www.oxbury.com/blog/meet-the-team-introducing-tim-coates-founder-to-farmer/""}, - {""name"": ""James Farrar"", ""title"": ""Chief Executive Officer / Executive Director, Co Founder"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""Carl McNeice"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""David Hanson"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""}, - {""name"": ""Stuart Ellidge"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://www.oxbury.com/blog/meet-the-team-introducing-stuart-ellidge-chief-technical-officer/""}, - {""name"": ""Robin Hill"", ""title"": ""Chief Risk Officer"", ""sourceUrl"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team""} - ], - ""researcherNotes"": ""Geographic sales focus regions are not explicitly stated on publicly available sources including the company website or LinkedIn; therefore geographicFocus remains null. Confirmation of company identity is verified by domain match, registered HQ in Chester UK, and consistent sector keywords such as agriculture banking. Titles and names of key executives were cross-checked on official company pages and LinkedIn. The bank is recognized as a specialist agricultural lender in the UK with significant growth and profitability milestones achieved recently."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.oxbury.com/"", - ""productDescription"": ""https://www.oxbury.com/"", - ""clientCategories"": ""https://www.oxbury.com/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://theorg.com/org/oxbury-bank/teams/leadership-team"" - } -}","{""clientCategories"":[""Individuals"",""Farms"",""Farm Businesses"",""Rural Economy Participants""],""companyDescription"":""Oxbury Bank is the only UK bank dedicated exclusively to British agriculture and the rural economy. Founded by farmers, bankers, and technologists, it combines financial services, technology, and sector expertise to provide funding and support to the food and farming industries. The bank offers working capital, asset finance, long-term lending, and savings products, aiming to support the financial health and sustainable growth of the rural economy."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Tim Coates"",""sourceUrl"":""https://www.oxbury.com/blog/meet-the-team-introducing-tim-coates-founder-to-farmer/"",""title"":""Founder, Chief Customer and Regulatory Officer""},{""name"":""James Farrar"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Executive Officer / Executive Director, Co Founder""},{""name"":""Carl McNeice"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Operating Officer""},{""name"":""David Hanson"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Financial Officer""},{""name"":""Stuart Ellidge"",""sourceUrl"":""https://www.oxbury.com/blog/meet-the-team-introducing-stuart-ellidge-chief-technical-officer/"",""title"":""Chief Technology Officer""},{""name"":""Robin Hill"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Risk Officer""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Oxbury Bank delivers a range of financial products specifically designed for agriculture and rural businesses, including personal savings accounts, farm business savings accounts, business savings accounts, and various lending options such as farm loans, flexi credit, and transition facilities. These offerings support farmers and rural economy participants in managing their finances efficiently, promoting productivity and sustainability."",""researcherNotes"":""Geographic sales focus regions are not explicitly stated on publicly available sources including the company website or LinkedIn; therefore geographicFocus remains null. Confirmation of company identity is verified by domain match, registered HQ in Chester UK, and consistent sector keywords such as agriculture banking. Titles and names of key executives were cross-checked on official company pages and LinkedIn. The bank is recognized as a specialist agricultural lender in the UK with significant growth and profitability milestones achieved recently."",""sectorDescription"":""UK banking sector specializing exclusively in financial services for the agriculture and rural economy."",""sources"":{""clientCategories"":""https://www.oxbury.com/"",""companyDescription"":""https://www.oxbury.com/"",""geographicFocus"":null,""keyExecutives"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""productDescription"":""https://www.oxbury.com/""},""websiteURL"":""https://www.oxbury.com""}","Correctness: 98% Completeness: 90% The provided information about Oxbury Bank is factually accurate and well-supported by authoritative sources. The bank is indeed the only UK bank dedicated exclusively to British agriculture and the rural economy, founded by bankers, farmers, agricultural businesses, and technologists, as confirmed by the company website and official descriptions[2]. The leadership team names and titles (Tim Coates as Founder and Chief Customer and Regulatory Officer, James Farrar as CEO, Carl McNeice as COO, David Hanson as CFO, Stuart Ellidge as CTO, Robin Hill as Chief Risk Officer) match the latest data from official company leadership pages[2][3]. The registered headquarters are at One City Place, Queens Road, Chester, Cheshire, England, CH1 3BQ, as per UK Companies House filings[1]. Product descriptions, including various agricultural-focused lending and savings products, align with the bank’s publicly stated offerings[2]. Its launch as a fully regulated bank was in February 2021, and it has shown significant growth and profitability with 2023 financials indicating strong asset growth and returns[3]. The only notable omission is the explicit geographic sales focus, which remains officially unspecified, lowering completeness slightly[2][3]. Ownership and control data from Companies House and the Jersey registry are consistent and show corporate governance details[4]. Overall, the content is highly accurate with minor completeness gaps related to explicit geographic scope. Sources: https://www.oxbury.com/about-us/ https://find-and-update.company-information.service.gov.uk/company/11383418 https://theorg.com/org/oxbury-bank/teams/leadership-team https://thebanks.eu/banks/19243","{""clientCategories"":[""Individuals"",""Farms"",""Farm businesses"",""Rural economy participants""],""companyDescription"":""Oxbury Bank was founded to provide the food and farming industries with the funding and support they need; very positive about farming's future and opportunities; offers working capital, asset finance, long-term lending; also offers savings accounts supporting rural economy. Oxbury is the only UK bank dedicated to British agriculture. Founded by farmers, bankers, and technologists, it combines financial services, technology, and agriculture to provide bespoke financial products supporting the rural economy. Its mission is to create and grow a sustainable, customer-focused, and innovative bank that supports the financial health of the rural economy."",""geographicFocus"":""HQ: One City Place, Queens Road, Chester, CH1 3BQ, England and Wales; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Tim Coates"",""sourceUrl"":""https://www.oxbury.com/blog/meet-the-team-introducing-tim-coates-founder-to-farmer/"",""title"":""Founder, Chief Customer and Regulatory Officer""},{""name"":""James Farrar"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Executive Officer / Executive Director, Co Founder""},{""name"":""Carl McNeice"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Operating Officer""},{""name"":""David Hanson"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Financial Officer""},{""name"":""Stuart Ellidge"",""sourceUrl"":""https://www.oxbury.com/blog/meet-the-team-introducing-stuart-ellidge-chief-technical-officer/"",""title"":""Chief Technology Officer""},{""name"":""Robin Hill"",""sourceUrl"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""title"":""Chief Risk Officer""}],""linkedDocuments"":[""https://www.oxbury.com/media/jz1bnv5y/updated-version-efgoxbury-nature-markets-paper-diagram.pdf"",""https://www.oxbury.com/media/raul41l4/communications-manager-updated.pdf"",""https://www.oxbury.com/media/3sebijje/it-support-manager-ad.pdf""],""missingImportantFields"":[""sectorDescription""],""productDescription"":""Oxbury Bank provides the following core offerings: - Personal savings accounts - Farm business savings accounts - Business savings accounts - Lending options including farm loans, flexi credit, transition facility"",""researcherNotes"":""Geographic sales focus regions are not explicitly mentioned on the website."",""sectorDescription"":""Operates in the UK banking sector, specializing exclusively in financial services for the agriculture and rural economy."",""sources"":{""clientCategories"":""https://www.oxbury.com/"",""companyDescription"":""https://www.oxbury.com/"",""geographicFocus"":""https://www.oxbury.com/about-us/contact-us"",""keyExecutives"":""https://theorg.com/org/oxbury-bank/teams/leadership-team"",""productDescription"":""https://www.oxbury.com/""},""websiteURL"":""https://www.oxbury.com""}" -Babylone Growers,https://www.bg-agri.com/,"Bpifrance, Région Nouvelle-Aquitaine",bg-agri.com,https://www.linkedin.com/company/babylone-growers,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.bg-agri.com/"", - ""companyDescription"": ""Babylone Growers is located 20 minutes from Bordeaux on a 5-hectare site dedicated to an innovative, efficient, and environmentally friendly cultivation method. Their mission involves zero pesticides, no foliar treatments, no chemical residues, and very low water consumption. They cultivate using hydroponic methods with ultra-modern equipment and technologies, with crops grown above ground—no farm or tractors involved. Their approach promotes local production, extended freshness, clean production, traceability from seed to final product, and GMO-free products. Babylone Growers applies an agro-ecological model to reduce crop vulnerability to weather hazards and support adaptation to climate change. Their irrigation technology optimizes water resource management, and their X-Frame culture support enhances yields while reducing land use. They follow a socially responsible approach promoting local agriculture and improving employee work conditions, including stable full-time jobs and inclusiveness for people with disabilities. Their agriculture model is designed for extreme, dry, and arid climate countries dependent on fruit and vegetable imports, aiming to develop strong local production, reduce imports, and lower carbon footprints. Babylone Growers addresses 7 of the 17 UN Sustainable Development Goals including life on land, sustainable consumption and production, industry innovation, zero hunger, good health, clean water, and decent work."", - ""productDescription"": ""Babylone Growers offers innovative technology for producing fresh, high-quality food under optimal growing conditions with natural light. Their core offering is the X-Frame, a patented vertical hydroponic cultivation system that achieves high yields, optimizes space usage, features efficient nutrient dosing, simplifies planting and harvesting, and saves 95% water compared to conventional methods. They operate advanced greenhouses, including a 10,000 m2 automated AI-driven production greenhouse and a 2,000 m2 nursery greenhouse, capable of producing 22,000 plants per day. Their laboratory and R&D center focus on optimizing water and energy use, expanding plant varieties, controlling growth cycles, and improving cultivation supports for better yields."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agritech sector, specializing in innovative hydroponic and soilless cultivation technologies for sustainable local food production and climate adaptation."", - ""geographicFocus"": ""HQ: Che2teau Lesparre 33750-Beychac et Caillau FRANCE; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit information about client categories, geographic sales regions, or key executives was found on the website after thorough scanning of main pages and subpages. No downloadable documents (PDF, DOCX) were detected. The website focuses strongly on technology, mission, and product innovation but does not disclose leadership or customer specifics."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://bg-agri.com/?lang=en"", - ""productDescription"": ""https://bg-agri.com/technologie/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://bg-agri.com/contact/?lang=en"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.bg-agri.com/"", - ""companyDescription"": ""Babylone Growers is located 20 minutes from Bordeaux on a 5-hectare site dedicated to an innovative, efficient, and environmentally friendly cultivation method. Their mission involves zero pesticides, no foliar treatments, no chemical residues, and very low water consumption. They cultivate using hydroponic methods with ultra-modern equipment and technologies, with crops grown above ground—no farm or tractors involved. Their approach promotes local production, extended freshness, clean production, traceability from seed to final product, and GMO-free products. Babylone Growers applies an agro-ecological model to reduce crop vulnerability to weather hazards and support adaptation to climate change. Their irrigation technology optimizes water resource management, and their X-Frame culture support enhances yields while reducing land use. They follow a socially responsible approach promoting local agriculture and improving employee work conditions, including stable full-time jobs and inclusiveness for people with disabilities. Their agriculture model is designed for extreme, dry, and arid climate countries dependent on fruit and vegetable imports, aiming to develop strong local production, reduce imports, and lower carbon footprints. Babylone Growers addresses 7 of the 17 UN Sustainable Development Goals including life on land, sustainable consumption and production, industry innovation, zero hunger, good health, clean water, and decent work."", - ""productDescription"": ""Babylone Growers offers innovative technology for producing fresh, high-quality food under optimal growing conditions with natural light. Their core offering is the X-Frame, a patented vertical hydroponic cultivation system that achieves high yields, optimizes space usage, features efficient nutrient dosing, simplifies planting and harvesting, and saves 95% water compared to conventional methods. They operate advanced greenhouses, including a 10,000 m2 automated AI-driven production greenhouse and a 2,000 m2 nursery greenhouse, capable of producing 22,000 plants per day. Their laboratory and R&D center focus on optimizing water and energy use, expanding plant varieties, controlling growth cycles, and improving cultivation supports for better yields."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agritech sector, specializing in innovative hydroponic and soilless cultivation technologies for sustainable local food production and climate adaptation."", - ""geographicFocus"": ""HQ: Che2teau Lesparre 33750-Beychac et Caillau FRANCE; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit information about client categories, geographic sales regions, or key executives was found on the website after thorough scanning of main pages and subpages. No downloadable documents (PDF, DOCX) were detected. The website focuses strongly on technology, mission, and product innovation but does not disclose leadership or customer specifics."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://bg-agri.com/?lang=en"", - ""productDescription"": ""https://bg-agri.com/technologie/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://bg-agri.com/contact/?lang=en"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.bg-agri.com/"", - ""companyDescription"": ""Babylone Growers is located near Bordeaux, France, dedicated to innovative, efficient, and environmentally friendly hydroponic cultivation on a 5-hectare site. Their mission is to produce pesticide-free, chemical-residue-free, and GMO-free fresh produce with very low water consumption, using ultra-modern vertical and soilless systems. They emphasize local production with full traceability, climate adaptation, and social responsibility, supporting local agriculture and improving employee conditions while addressing multiple UN Sustainable Development Goals."", - ""productDescription"": ""Babylone Growers offers the patented X-Frame vertical hydroponic system for high-yield, space-optimized, sustainable crop production using natural light. Their advanced greenhouses are AI-driven and automated, producing up to 22,000 plants daily. Their R&D focuses on optimizing water and energy use, extending plant varieties, and improving cultivation supports to enhance yields and sustainability."", - ""clientCategories"": [], - ""sectorDescription"": ""Agritech company specializing in innovative hydroponic and soilless technologies for sustainable, local food production and climate change adaptation."", - ""geographicFocus"": ""Headquartered in Beychac et Caillau near Bordeaux, France; sales and operational geography not explicitly detailed."", - ""keyExecutives"": [], - ""researcherNotes"": ""The entity Babylone Growers is confirmed by domain and HQ location matching the French agritech company focused on hydroponics. Reviewed the official website thoroughly; no client categories or senior leadership details are publicly disclosed. Geographic sales footprint also is not specified beyond the HQ location. No downloadable leadership or client documents found. External sources for similarly named companies (Babylon Micro-Farms, US) are unrelated."", - ""missingImportantFields"": [ - ""clientCategories"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://bg-agri.com/?lang=en"", - ""productDescription"": ""https://bg-agri.com/technologie/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://bg-agri.com/contact/?lang=en"", - ""keyExecutives"": null - } -}","{""clientCategories"":[],""companyDescription"":""Babylone Growers is located near Bordeaux, France, dedicated to innovative, efficient, and environmentally friendly hydroponic cultivation on a 5-hectare site. Their mission is to produce pesticide-free, chemical-residue-free, and GMO-free fresh produce with very low water consumption, using ultra-modern vertical and soilless systems. They emphasize local production with full traceability, climate adaptation, and social responsibility, supporting local agriculture and improving employee conditions while addressing multiple UN Sustainable Development Goals."",""geographicFocus"":""Headquartered in Beychac et Caillau near Bordeaux, France; sales and operational geography not explicitly detailed."",""keyExecutives"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""Babylone Growers offers the patented X-Frame vertical hydroponic system for high-yield, space-optimized, sustainable crop production using natural light. Their advanced greenhouses are AI-driven and automated, producing up to 22,000 plants daily. Their R&D focuses on optimizing water and energy use, extending plant varieties, and improving cultivation supports to enhance yields and sustainability."",""researcherNotes"":""The entity Babylone Growers is confirmed by domain and HQ location matching the French agritech company focused on hydroponics. Reviewed the official website thoroughly; no client categories or senior leadership details are publicly disclosed. Geographic sales footprint also is not specified beyond the HQ location. No downloadable leadership or client documents found. External sources for similarly named companies (Babylon Micro-Farms, US) are unrelated."",""sectorDescription"":""Agritech company specializing in innovative hydroponic and soilless technologies for sustainable, local food production and climate change adaptation."",""sources"":{""clientCategories"":null,""companyDescription"":""https://bg-agri.com/?lang=en"",""geographicFocus"":""https://bg-agri.com/contact/?lang=en"",""keyExecutives"":null,""productDescription"":""https://bg-agri.com/technologie/""},""websiteURL"":""https://www.bg-agri.com/""}","Correctness: 95% Completeness: 80% The description of Babylone Growers as a Bordeaux-based company specializing in innovative, pesticide-free, hydroponic cultivation with a patented X-Frame vertical system and AI-driven greenhouses is accurate and well-supported by their official website (https://bg-agri.com). Their focus on sustainability, local production, low water use, and social responsibility aligns with their stated mission and technological claims. However, publicly available information lacks details on client categories, specific key executives, and detailed geographic sales footprint beyond their HQ location, which lowers completeness. Additionally, external search results referencing similarly named entities like Babylon Micro-Farms (a US-based indoor farming company) are unrelated and do not corroborate Babylone Growers’ profile, confirming no confusion but also no additional sources for leadership or client data. Thus, correctness is high based on official sources, but completeness is limited by missing leadership and client disclosures (https://bg-agri.com/?lang=en, https://bg-agri.com/contact/?lang=en, https://bg-agri.com/technologie/).","{""clientCategories"":[],""companyDescription"":""Babylone Growers is located 20 minutes from Bordeaux on a 5-hectare site dedicated to an innovative, efficient, and environmentally friendly cultivation method. Their mission involves zero pesticides, no foliar treatments, no chemical residues, and very low water consumption. They cultivate using hydroponic methods with ultra-modern equipment and technologies, with crops grown above ground—no farm or tractors involved. Their approach promotes local production, extended freshness, clean production, traceability from seed to final product, and GMO-free products. Babylone Growers applies an agro-ecological model to reduce crop vulnerability to weather hazards and support adaptation to climate change. Their irrigation technology optimizes water resource management, and their X-Frame culture support enhances yields while reducing land use. They follow a socially responsible approach promoting local agriculture and improving employee work conditions, including stable full-time jobs and inclusiveness for people with disabilities. Their agriculture model is designed for extreme, dry, and arid climate countries dependent on fruit and vegetable imports, aiming to develop strong local production, reduce imports, and lower carbon footprints. Babylone Growers addresses 7 of the 17 UN Sustainable Development Goals including life on land, sustainable consumption and production, industry innovation, zero hunger, good health, clean water, and decent work."",""geographicFocus"":""HQ: Che2teau Lesparre 33750-Beychac et Caillau FRANCE; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""Babylone Growers offers innovative technology for producing fresh, high-quality food under optimal growing conditions with natural light. Their core offering is the X-Frame, a patented vertical hydroponic cultivation system that achieves high yields, optimizes space usage, features efficient nutrient dosing, simplifies planting and harvesting, and saves 95% water compared to conventional methods. They operate advanced greenhouses, including a 10,000 m2 automated AI-driven production greenhouse and a 2,000 m2 nursery greenhouse, capable of producing 22,000 plants per day. Their laboratory and R&D center focus on optimizing water and energy use, expanding plant varieties, controlling growth cycles, and improving cultivation supports for better yields."",""researcherNotes"":""No explicit information about client categories, geographic sales regions, or key executives was found on the website after thorough scanning of main pages and subpages. No downloadable documents (PDF, DOCX) were detected. The website focuses strongly on technology, mission, and product innovation but does not disclose leadership or customer specifics."",""sectorDescription"":""Operates in the agritech sector, specializing in innovative hydroponic and soilless cultivation technologies for sustainable local food production and climate adaptation."",""sources"":{""clientCategories"":null,""companyDescription"":""https://bg-agri.com/?lang=en"",""geographicFocus"":""https://bg-agri.com/contact/?lang=en"",""keyExecutives"":null,""productDescription"":""https://bg-agri.com/technologie/""},""websiteURL"":""https://www.bg-agri.com/""}" -Eurovia Holding,https://eurovia.mk,,eurovia.mk,https://www.linkedin.com/company/euroviamk,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://eurovia.mk"", - ""companyDescription"": ""Eurovia Holding, Inc. is a subsidiary of EACOM Group, specializing in construction, infrastructure, property development, advertising, distribution, and energy sectors. It operates in North Macedonia, Albania, Kosovo, and is expanding into Montenegro, Croatia, and others. The company has over 250 employees and emphasizes family business values, excellence, innovation, and sustainability. Eurovia's mission is to create impactful solutions benefiting society and the economy."", - ""productDescription"": ""Eurovia Holding's core offerings include multiple business lines: Civil Construction & Infrastructure (roads, highways, bridges, urban projects), Industrial Property Development, Engineering & Project Management Services, Property Development, Logistics & Equipment Services, and Energy & Sustainability Projects. Their real estate development segment delivers residential, commercial, and mixed-use projects with comprehensive amenities and professional services. Energy solutions focus on sustainable and renewable energy initiatives."", - ""clientCategories"": [""Government and Public Sector"", ""Commercial Real Estate Developers"", ""Industrial Sector"", ""Infrastructure Projects""], - ""sectorDescription"": ""Operates in the construction, infrastructure development, property development, and energy sectors focusing on sustainable and innovative solutions."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: North Macedonia, Albania, Kosovo, Montenegro, Croatia"", - ""keyExecutives"": [ - {""name"": ""Xhenis Rexhepi"", ""title"": ""CEO – Chief Executive Officer"", ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/""}, - {""name"": ""Eldin Ademi"", ""title"": ""COO – Chief Operating Officer"", ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/""}, - {""name"": ""Ersim Zekiri"", ""title"": ""CFO – Chief Finance Officer"", ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/""} - ], - ""linkedDocuments"": [ - ""https://properties.eurovia.mk/app/uploads/2022/09/2.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/3.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/1.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/7.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/5.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/6.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/8.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/9.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/10.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/15.pdf"" - ], - ""researcherNotes"": ""Headquarters address was not specified on the website or contact page. Leadership beyond CEO, COO, and CFO was not available."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://eurovia.mk/"", - ""productDescription"": ""https://construction.eurovia.mk/"", - ""clientCategories"": ""https://construction.eurovia.mk/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://construction.eurovia.mk/meet-our-team/"" - } -}","{ - ""websiteURL"": ""https://eurovia.mk"", - ""companyDescription"": ""Eurovia Holding, Inc. is a subsidiary of EACOM Group, specializing in construction, infrastructure, property development, advertising, distribution, and energy sectors. It operates in North Macedonia, Albania, Kosovo, and is expanding into Montenegro, Croatia, and others. The company has over 250 employees and emphasizes family business values, excellence, innovation, and sustainability. Eurovia's mission is to create impactful solutions benefiting society and the economy."", - ""productDescription"": ""Eurovia Holding's core offerings include multiple business lines: Civil Construction & Infrastructure (roads, highways, bridges, urban projects), Industrial Property Development, Engineering & Project Management Services, Property Development, Logistics & Equipment Services, and Energy & Sustainability Projects. Their real estate development segment delivers residential, commercial, and mixed-use projects with comprehensive amenities and professional services. Energy solutions focus on sustainable and renewable energy initiatives."", - ""clientCategories"": [""Government and Public Sector"", ""Commercial Real Estate Developers"", ""Industrial Sector"", ""Infrastructure Projects""], - ""sectorDescription"": ""Operates in the construction, infrastructure development, property development, and energy sectors focusing on sustainable and innovative solutions."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: North Macedonia, Albania, Kosovo, Montenegro, Croatia"", - ""keyExecutives"": [ - {""name"": ""Xhenis Rexhepi"", ""title"": ""CEO – Chief Executive Officer"", ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/""}, - {""name"": ""Eldin Ademi"", ""title"": ""COO – Chief Operating Officer"", ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/""}, - {""name"": ""Ersim Zekiri"", ""title"": ""CFO – Chief Finance Officer"", ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/""} - ], - ""linkedDocuments"": [ - ""https://properties.eurovia.mk/app/uploads/2022/09/2.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/3.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/1.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/7.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/5.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/6.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/8.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/9.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/10.pdf"", - ""https://properties.eurovia.mk/app/uploads/2022/09/15.pdf"" - ], - ""researcherNotes"": ""Headquarters address was not specified on the website or contact page. Leadership beyond CEO, COO, and CFO was not available."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://eurovia.mk/"", - ""productDescription"": ""https://construction.eurovia.mk/"", - ""clientCategories"": ""https://construction.eurovia.mk/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://construction.eurovia.mk/meet-our-team/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://eurovia.mk"", - ""companyDescription"": ""Eurovia Holding, Inc. is a subsidiary of EACOM Group specializing in construction, infrastructure, property development, advertising, distribution, and energy sectors. Founded originally as a family business called Muratori in 1978, rebranded as Eurovia in 2010, it operates primarily in North Macedonia, Albania, Kosovo, and is expanding into Montenegro and Croatia. Eurovia emphasizes family business values, innovation, excellence, and sustainability to deliver impactful solutions supporting society and economic development."", - ""productDescription"": ""Eurovia Holding delivers integrated services across multiple business lines, including Civil Construction and Infrastructure (roads, highways, bridges, urban projects), Industrial Property Development, Engineering and Project Management, Logistics and Equipment Services, and Energy & Sustainability initiatives focused on renewable resources. Their real estate segment offers residential, commercial, and mixed-use developments with comprehensive amenities. Energy projects emphasize environmental sustainability and renewable energy adoption."", - ""clientCategories"": [ - ""Government and Public Sector"", - ""Commercial Real Estate Developers"", - ""Industrial Sector"", - ""Infrastructure Projects"" - ], - ""sectorDescription"": ""Construction, infrastructure development, property development, and energy sectors focused on sustainable and innovative solutions."", - ""geographicFocus"": ""Primary focus is on North Macedonia, Albania, Kosovo, with expansion activities in Montenegro and Croatia."", - ""keyExecutives"": [ - { - ""name"": ""Xhenis Rexhepi"", - ""title"": ""CEO – Chief Executive Officer"", - ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/"" - }, - { - ""name"": ""Eldin Ademi"", - ""title"": ""COO – Chief Operating Officer"", - ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/"" - }, - { - ""name"": ""Ersim Zekiri"", - ""title"": ""CFO – Chief Finance Officer"", - ""sourceUrl"": ""https://construction.eurovia.mk/meet-our-team/"" - } - ], - ""researcherNotes"": ""The company was confirmed as Eurovia Holding, a subsidiary of EACOM Group, based in North Macedonia, with headquarters in Tetovo. The geographic footprint is stated primarily in North Macedonia, Albania, Kosovo, with expansions in Montenegro and Croatia per company sources and corroborated by regional profiles. Founding origins trace to 1978 as Muratori, rebranding in 2010 to Eurovia DOOEL, affiliated with Ademi family ownership. No additional senior leadership beyond CEO, COO, and CFO was publicly available. Official sites and Wikipedia confirm the company identity and operations. The headquarters exact address remains unspecified publicly."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://eurovia.mk/"", - ""productDescription"": ""https://construction.eurovia.mk/"", - ""clientCategories"": ""https://construction.eurovia.mk/"", - ""geographicFocus"": ""https://eurovia.mk/"", - ""keyExecutives"": ""https://construction.eurovia.mk/meet-our-team/"" - } -}","{""clientCategories"":[""Government and Public Sector"",""Commercial Real Estate Developers"",""Industrial Sector"",""Infrastructure Projects""],""companyDescription"":""Eurovia Holding, Inc. is a subsidiary of EACOM Group specializing in construction, infrastructure, property development, advertising, distribution, and energy sectors. Founded originally as a family business called Muratori in 1978, rebranded as Eurovia in 2010, it operates primarily in North Macedonia, Albania, Kosovo, and is expanding into Montenegro and Croatia. Eurovia emphasizes family business values, innovation, excellence, and sustainability to deliver impactful solutions supporting society and economic development."",""geographicFocus"":""Primary focus is on North Macedonia, Albania, Kosovo, with expansion activities in Montenegro and Croatia."",""keyExecutives"":[{""name"":""Xhenis Rexhepi"",""sourceUrl"":""https://construction.eurovia.mk/meet-our-team/"",""title"":""CEO – Chief Executive Officer""},{""name"":""Eldin Ademi"",""sourceUrl"":""https://construction.eurovia.mk/meet-our-team/"",""title"":""COO – Chief Operating Officer""},{""name"":""Ersim Zekiri"",""sourceUrl"":""https://construction.eurovia.mk/meet-our-team/"",""title"":""CFO – Chief Finance Officer""}],""missingImportantFields"":[],""productDescription"":""Eurovia Holding delivers integrated services across multiple business lines, including Civil Construction and Infrastructure (roads, highways, bridges, urban projects), Industrial Property Development, Engineering and Project Management, Logistics and Equipment Services, and Energy & Sustainability initiatives focused on renewable resources. Their real estate segment offers residential, commercial, and mixed-use developments with comprehensive amenities. Energy projects emphasize environmental sustainability and renewable energy adoption."",""researcherNotes"":""The company was confirmed as Eurovia Holding, a subsidiary of EACOM Group, based in North Macedonia, with headquarters in Tetovo. The geographic footprint is stated primarily in North Macedonia, Albania, Kosovo, with expansions in Montenegro and Croatia per company sources and corroborated by regional profiles. Founding origins trace to 1978 as Muratori, rebranding in 2010 to Eurovia DOOEL, affiliated with Ademi family ownership. No additional senior leadership beyond CEO, COO, and CFO was publicly available. Official sites and Wikipedia confirm the company identity and operations. The headquarters exact address remains unspecified publicly."",""sectorDescription"":""Construction, infrastructure development, property development, and energy sectors focused on sustainable and innovative solutions."",""sources"":{""clientCategories"":""https://construction.eurovia.mk/"",""companyDescription"":""https://eurovia.mk/"",""geographicFocus"":""https://eurovia.mk/"",""keyExecutives"":""https://construction.eurovia.mk/meet-our-team/"",""productDescription"":""https://construction.eurovia.mk/""},""websiteURL"":""https://eurovia.mk""}","Correctness: 95% Completeness: 90% The information about Eurovia Holding, Inc. as a subsidiary of EACOM Group, originally founded as Muratori in 1978 and rebranded as Eurovia in 2010, operating mainly in North Macedonia, Albania, and Kosovo with expansion in Montenegro and Croatia, is well supported by official company sources and secondary references such as their company website and Wikipedia[1][2][4]. The leadership details naming Xhenis Rexhepi as CEO, Eldin Ademi as COO, and Ersim Zekiri as CFO align closely with public company team listings, though the prominent leadership role of Elmedin Ademi in founding and growing the Eurovia Group is also notable, suggesting some nuance between the Group and operating subsidiaries[2][4]. The product and sector descriptions including construction, infrastructure, property development, energy, and sustainability initiatives are corroborated by the detailed breakdown on company sites about their diversified business lines and subsidiaries (e.g., Energovia, Eurovia DMD, ScreenMedia)[1][2]. However, some minor detail contrasts appear regarding exact CEO names (Xhenis Rexhepi vs. Elmedin Ademi) potentially reflecting organizational hierarchy or recent updates, which slightly lowers correctness. Missing the precise public headquarters address and minimal publicly available current leadership beyond the top executives reduce completeness somewhat. Overall, the key facts are accurate and well supported by two primary company-controlled sources and reputable secondary summaries as of 2025-09-11. Relevant sources: https://construction.eurovia.mk/meet-our-team/ https://eurovia.mk/ https://en.wikipedia.org/wiki/Eurovia_DOOEL https://properties.eurovia.mk/en/management/","{""clientCategories"":[""Government and Public Sector"",""Commercial Real Estate Developers"",""Industrial Sector"",""Infrastructure Projects""],""companyDescription"":""Eurovia Holding, Inc. is a subsidiary of EACOM Group, specializing in construction, infrastructure, property development, advertising, distribution, and energy sectors. It operates in North Macedonia, Albania, Kosovo, and is expanding into Montenegro, Croatia, and others. The company has over 250 employees and emphasizes family business values, excellence, innovation, and sustainability. Eurovia's mission is to create impactful solutions benefiting society and the economy."",""geographicFocus"":""HQ: Not Available; Sales Focus: North Macedonia, Albania, Kosovo, Montenegro, Croatia"",""keyExecutives"":[{""name"":""Xhenis Rexhepi"",""sourceUrl"":""https://construction.eurovia.mk/meet-our-team/"",""title"":""CEO – Chief Executive Officer""},{""name"":""Eldin Ademi"",""sourceUrl"":""https://construction.eurovia.mk/meet-our-team/"",""title"":""COO – Chief Operating Officer""},{""name"":""Ersim Zekiri"",""sourceUrl"":""https://construction.eurovia.mk/meet-our-team/"",""title"":""CFO – Chief Finance Officer""}],""linkedDocuments"":[""https://properties.eurovia.mk/app/uploads/2022/09/2.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/3.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/1.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/7.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/5.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/6.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/8.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/9.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/10.pdf"",""https://properties.eurovia.mk/app/uploads/2022/09/15.pdf""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Eurovia Holding's core offerings include multiple business lines: Civil Construction & Infrastructure (roads, highways, bridges, urban projects), Industrial Property Development, Engineering & Project Management Services, Property Development, Logistics & Equipment Services, and Energy & Sustainability Projects. Their real estate development segment delivers residential, commercial, and mixed-use projects with comprehensive amenities and professional services. Energy solutions focus on sustainable and renewable energy initiatives."",""researcherNotes"":""Headquarters address was not specified on the website or contact page. Leadership beyond CEO, COO, and CFO was not available."",""sectorDescription"":""Operates in the construction, infrastructure development, property development, and energy sectors focusing on sustainable and innovative solutions."",""sources"":{""clientCategories"":""https://construction.eurovia.mk/"",""companyDescription"":""https://eurovia.mk/"",""geographicFocus"":null,""keyExecutives"":""https://construction.eurovia.mk/meet-our-team/"",""productDescription"":""https://construction.eurovia.mk/""},""websiteURL"":""https://eurovia.mk""}" -Agriodor,https://agriodor.com/,"BNP Paribas Développement, Breizh Up, Capagro, CapHorn Invest, Swen Capital Partners",agriodor.com,https://www.linkedin.com/company/agriodor,"{""seniorLeadership"":[{""name"":""ALAIN THIBAULT"",""title"":""CEO - Founder""},{""name"":""ENÉ LEPPIK"",""title"":""PhD CTO - Founder""},{""name"":""VINCENT JACQUOT"",""title"":""CEO""},{""name"":""CAMILLE DELPOUX"",""title"":""COO""},{""name"":""OLIVIER LE PORT"",""title"":""CFO""}] }","{""seniorLeadership"":[{""name"":""ALAIN THIBAULT"",""title"":""CEO - Founder""},{""name"":""ENÉ LEPPIK"",""title"":""PhD CTO - Founder""},{""name"":""VINCENT JACQUOT"",""title"":""CEO""},{""name"":""CAMILLE DELPOUX"",""title"":""COO""},{""name"":""OLIVIER LE PORT"",""title"":""CFO""}] }","{ - ""websiteURL"": ""https://agriodor.com/"", - ""companyDescription"": ""Agriodor develops biocontrol solutions to protect fruit crops by leveraging natural insect behavior through the creation of natural perfumes that influence pest insect behavior, aiming to reduce agricultural losses caused by harmful insects and protect crops sustainably. Mission: To help farmers protect their crops effectively and sustainably while preserving the environment, human health, and biodiversity, addressing the global issue of agricultural losses due to insect pests exacerbated by climate change and new pest species."", - ""productDescription"": ""Agriodor develops biocontrol solutions to protect crops from insect pests using plant-emitted natural scents (kairomones and allomones) to attract or repel insects. Their core products include granulated chemical mediators deployable in large-scale crops, available through the distributor Andermatt (e.g., Fabaodor for faba bean, Lentodor for lentil), with others like the sugar beet solution launching by 2025. Services include research and development through a dedicated R&D platform integrating chemistry, insect behavior, electrophysiology, formulation, and field trials. Agriodor's products reduce the use of phytosanitary products while preserving beneficial insects and biodiversity."", - ""clientCategories"": [""Farmers"", ""Agricultural businesses"", ""Crop protection companies""], - ""sectorDescription"": ""Operates in sustainable agriculture and biocontrol, creating natural chemical mediators to protect crops by manipulating insect behavior."", - ""geographicFocus"": ""HQ: Biopôle, Rennes, France; Pépinière Cleantech, Aix-en-Provence, France; Sales Focus: France and international markets."", - ""keyExecutives"": [ - {""name"": ""Alain Thibault"", ""title"": ""Chairman - Founder"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Ené Leppik"", ""title"": ""CTO - Founder"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Vincent Jacquot"", ""title"": ""CEO"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Camille Delpoux"", ""title"": ""COO"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Olivier Le Port"", ""title"": ""CFO"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly listed, inferred from company focus on crop protection and farming sectors."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agriodor.com/"", - ""productDescription"": ""https://www.agriodor.com/nos-solutions"", - ""clientCategories"": ""https://www.agriodor.com/"", - ""geographicFocus"": ""https://www.agriodor.com/contact"", - ""keyExecutives"": ""https://agriodor.com/qui-sommes-nous"" - } -}","{ - ""websiteURL"": ""https://agriodor.com/"", - ""companyDescription"": ""Agriodor develops biocontrol solutions to protect fruit crops by leveraging natural insect behavior through the creation of natural perfumes that influence pest insect behavior, aiming to reduce agricultural losses caused by harmful insects and protect crops sustainably. Mission: To help farmers protect their crops effectively and sustainably while preserving the environment, human health, and biodiversity, addressing the global issue of agricultural losses due to insect pests exacerbated by climate change and new pest species."", - ""productDescription"": ""Agriodor develops biocontrol solutions to protect crops from insect pests using plant-emitted natural scents (kairomones and allomones) to attract or repel insects. Their core products include granulated chemical mediators deployable in large-scale crops, available through the distributor Andermatt (e.g., Fabaodor for faba bean, Lentodor for lentil), with others like the sugar beet solution launching by 2025. Services include research and development through a dedicated R&D platform integrating chemistry, insect behavior, electrophysiology, formulation, and field trials. Agriodor's products reduce the use of phytosanitary products while preserving beneficial insects and biodiversity."", - ""clientCategories"": [""Farmers"", ""Agricultural businesses"", ""Crop protection companies""], - ""sectorDescription"": ""Operates in sustainable agriculture and biocontrol, creating natural chemical mediators to protect crops by manipulating insect behavior."", - ""geographicFocus"": ""HQ: Biopôle, Rennes, France; Pépinière Cleantech, Aix-en-Provence, France; Sales Focus: France and international markets."", - ""keyExecutives"": [ - {""name"": ""Alain Thibault"", ""title"": ""Chairman - Founder"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Ené Leppik"", ""title"": ""CTO - Founder"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Vincent Jacquot"", ""title"": ""CEO"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Camille Delpoux"", ""title"": ""COO"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""}, - {""name"": ""Olivier Le Port"", ""title"": ""CFO"", ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly listed, inferred from company focus on crop protection and farming sectors."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agriodor.com/"", - ""productDescription"": ""https://www.agriodor.com/nos-solutions"", - ""clientCategories"": ""https://www.agriodor.com/"", - ""geographicFocus"": ""https://www.agriodor.com/contact"", - ""keyExecutives"": ""https://agriodor.com/qui-sommes-nous"" - } -}",[],"{ - ""websiteURL"": ""https://agriodor.com"", - ""companyDescription"": ""Agriodor develops biocontrol solutions to protect fruit crops by leveraging natural insect behavior through the creation of natural perfumes that influence pest insect behavior, aiming to reduce agricultural losses caused by harmful insects and protect crops sustainably. Mission: To help farmers protect their crops effectively and sustainably while preserving the environment, human health, and biodiversity, addressing the global issue of agricultural losses due to insect pests exacerbated by climate change and new pest species."", - ""productDescription"": ""Agriodor develops biocontrol solutions to protect crops from insect pests using plant-emitted natural scents (kairomones and allomones) to attract or repel insects. Their core products include granulated chemical mediators deployable in large-scale crops, available through the distributor Andermatt (e.g., Fabaodor for faba bean, Lentodor for lentil), with others like the sugar beet solution launching by 2025. Services include research and development through a dedicated R&D platform integrating chemistry, insect behavior, electrophysiology, formulation, and field trials. Agriodor's products reduce the use of phytosanitary products while preserving beneficial insects and biodiversity."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Businesses"", - ""Crop Protection Companies"" - ], - ""sectorDescription"": ""Operates in sustainable agriculture and biocontrol, creating natural chemical mediators to protect crops by manipulating insect behavior."", - ""geographicFocus"": ""Headquartered in Rennes and Aix-en-Provence, France, Agriodor focuses sales on France and international markets."", - ""keyExecutives"": [ - { - ""name"": ""Alain Thibault"", - ""title"": ""Chairman - Founder"", - ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous"" - }, - { - ""name"": ""Ené Leppik"", - ""title"": ""CTO - Founder"", - ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous"" - }, - { - ""name"": ""Vincent Jacquot"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous"" - }, - { - ""name"": ""Camille Delpoux"", - ""title"": ""COO"", - ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous"" - }, - { - ""name"": ""Olivier Le Port"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://agriodor.com/qui-sommes-nous"" - } - ], - ""researcherNotes"": ""The entity was positively identified based on the domain agriodor.com, headquarters in Rennes, France, and product focus on biocontrol for agriculture, matching all sources. Titles mismatch between LinkedIn (Alain Thibault listed as CEO) and company site (Chairman - Founder) were resolved in favor of the official company site as authoritative. Geographic focus is confirmed as France with international sales efforts per company contact info. No critical fields remain missing."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agriodor.com/"", - ""productDescription"": ""https://agriodor.com/nos-solutions"", - ""clientCategories"": ""https://agriodor.com/"", - ""geographicFocus"": ""https://agriodor.com/contact"", - ""keyExecutives"": ""https://agriodor.com/qui-sommes-nous"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Businesses"",""Crop Protection Companies""],""companyDescription"":""Agriodor develops biocontrol solutions to protect fruit crops by leveraging natural insect behavior through the creation of natural perfumes that influence pest insect behavior, aiming to reduce agricultural losses caused by harmful insects and protect crops sustainably. Mission: To help farmers protect their crops effectively and sustainably while preserving the environment, human health, and biodiversity, addressing the global issue of agricultural losses due to insect pests exacerbated by climate change and new pest species."",""geographicFocus"":""Headquartered in Rennes and Aix-en-Provence, France, Agriodor focuses sales on France and international markets."",""keyExecutives"":[{""name"":""Alain Thibault"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""Chairman - Founder""},{""name"":""Ené Leppik"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""CTO - Founder""},{""name"":""Vincent Jacquot"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""CEO""},{""name"":""Camille Delpoux"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""COO""},{""name"":""Olivier Le Port"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""Agriodor develops biocontrol solutions to protect crops from insect pests using plant-emitted natural scents (kairomones and allomones) to attract or repel insects. Their core products include granulated chemical mediators deployable in large-scale crops, available through the distributor Andermatt (e.g., Fabaodor for faba bean, Lentodor for lentil), with others like the sugar beet solution launching by 2025. Services include research and development through a dedicated R&D platform integrating chemistry, insect behavior, electrophysiology, formulation, and field trials. Agriodor's products reduce the use of phytosanitary products while preserving beneficial insects and biodiversity."",""researcherNotes"":""The entity was positively identified based on the domain agriodor.com, headquarters in Rennes, France, and product focus on biocontrol for agriculture, matching all sources. Titles mismatch between LinkedIn (Alain Thibault listed as CEO) and company site (Chairman - Founder) were resolved in favor of the official company site as authoritative. Geographic focus is confirmed as France with international sales efforts per company contact info. No critical fields remain missing."",""sectorDescription"":""Operates in sustainable agriculture and biocontrol, creating natural chemical mediators to protect crops by manipulating insect behavior."",""sources"":{""clientCategories"":""https://agriodor.com/"",""companyDescription"":""https://agriodor.com/"",""geographicFocus"":""https://agriodor.com/contact"",""keyExecutives"":""https://agriodor.com/qui-sommes-nous"",""productDescription"":""https://agriodor.com/nos-solutions""},""websiteURL"":""https://agriodor.com""}","Correctness: 98% Completeness: 95% The provided description of Agriodor is highly accurate and well-supported by multiple authoritative sources. Agriodor is indeed a French biotechnology company founded in 2019, with headquarters in Rennes and Aix-en-Provence, specializing in biocontrol solutions for protecting fruit and other crops by using natural insect behavior modification through plant-emitted scents such as kairomones and allomones. Its mission to reduce agricultural losses sustainably while preserving biodiversity aligns perfectly with the company’s self-description on its official website and corroborated by reports from CAPAGRO and DevelopmentAid. Leadership titles given—Alain Thibault as Chairman-Founder, Ené Leppik as CTO-Founder, Vincent Jacquot as CEO, Camille Delpoux as COO, and Olivier Le Port as CFO—are confirmed by the company site and recent industry reports, favoring company-controlled sources over conflicting LinkedIn data. Product descriptions including granulated chemical mediators for field crops like faba bean, lentil, and upcoming sugar beet solutions expected by 2025, as well as the company’s R&D platform integrating chemistry and insect behavior studies, are consistent across Agriodor’s official materials and third-party write-ups. The geographic focus on France with international sales efforts is also substantiated. Minor points such as exact employee counts (11-50 range) and mention of awards add to completeness. No significant factual inaccuracies or major omissions in core company, leadership, products, or mission data were found within the recent 24-month window. Main sources include Agriodor’s official pages [https://agriodor.com/qui-sommes-nous, https://agriodor.com/nos-solutions-en], CAPAGRO reports [https://capagro.fr/agriodor-raises-e5m-to-expand-innovative-agroecological-biocontrol-solutions-against-crop-damaging-insects/], and DevelopmentAid [https://www.developmentaid.org/organizations/view/452034/agriodor].","{""clientCategories"":[""Farmers"",""Agricultural businesses"",""Crop protection companies""],""companyDescription"":""Agriodor develops biocontrol solutions to protect fruit crops by leveraging natural insect behavior through the creation of natural perfumes that influence pest insect behavior, aiming to reduce agricultural losses caused by harmful insects and protect crops sustainably. Mission: To help farmers protect their crops effectively and sustainably while preserving the environment, human health, and biodiversity, addressing the global issue of agricultural losses due to insect pests exacerbated by climate change and new pest species."",""geographicFocus"":""HQ: Biopôle, Rennes, France; Pépinière Cleantech, Aix-en-Provence, France; Sales Focus: France and international markets."",""keyExecutives"":[{""name"":""Alain Thibault"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""Chairman - Founder""},{""name"":""Ené Leppik"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""CTO - Founder""},{""name"":""Vincent Jacquot"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""CEO""},{""name"":""Camille Delpoux"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""COO""},{""name"":""Olivier Le Port"",""sourceUrl"":""https://agriodor.com/qui-sommes-nous"",""title"":""CFO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Agriodor develops biocontrol solutions to protect crops from insect pests using plant-emitted natural scents (kairomones and allomones) to attract or repel insects. Their core products include granulated chemical mediators deployable in large-scale crops, available through the distributor Andermatt (e.g., Fabaodor for faba bean, Lentodor for lentil), with others like the sugar beet solution launching by 2025. Services include research and development through a dedicated R&D platform integrating chemistry, insect behavior, electrophysiology, formulation, and field trials. Agriodor's products reduce the use of phytosanitary products while preserving beneficial insects and biodiversity."",""researcherNotes"":""Client categories were not explicitly listed, inferred from company focus on crop protection and farming sectors."",""sectorDescription"":""Operates in sustainable agriculture and biocontrol, creating natural chemical mediators to protect crops by manipulating insect behavior."",""sources"":{""clientCategories"":""https://www.agriodor.com/"",""companyDescription"":""https://www.agriodor.com/"",""geographicFocus"":""https://www.agriodor.com/contact"",""keyExecutives"":""https://agriodor.com/qui-sommes-nous"",""productDescription"":""https://www.agriodor.com/nos-solutions""},""websiteURL"":""https://agriodor.com/""}" -BigSis,https://bigsis.tech,Regenerate Ventures,bigsis.tech,https://www.linkedin.com/company/bigsis-insect-control,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://bigsis.tech"", - ""companyDescription"": ""BigSis is a company trading as Zyzzle Ltd., focused on biological insect control using the Sterile Insect Technique (SIT), which is species-specific, non-toxic, non-GM, and compatible with organic farming. Their solutions outperform chemical insecticides, are cost-effective (cutting SIT costs by up to 90%), and support integrated pest management, aiming to prevent pest infestations and reduce chemical insecticide use. Their first commercially approved solution targets the spotted wing drosophila (SWD), with successful field trials and expansion plans for 2024."", - ""productDescription"": ""BigSis offers sustainable insect control solutions based on the sterile insect technique (SIT). Their services include a season-long control service with releases for hassle-free integration with other IPM inputs. They provide solutions specifically targeting spotted wing drosophila (SWD) with proven season-long control and up to 91% suppression, codling moth control with improved sterile male releases, and plan to expand to other pests like olive fly, European grapevine moth, fall armyworm, and mosquitoes (Aedes aegypti and Anopheles species). Their solutions are non-GMO, non-toxic, species-specific, environmentally benign, and approved in England and four USA states."", - ""clientCategories"": [""Agriculture growers"", ""Farmers"", ""Public health pest control""], - ""sectorDescription"": ""Operates in the agricultural biotechnology and sustainable pest control sector, providing automated sterile insect technique solutions for crop and public health pest management."", - ""geographicFocus"": ""HQ: Reading, Berkshire, England; Sales Focus: England currently, with plans for international sales beginning in 2026"", - ""keyExecutives"": [ - {""name"": ""Glen Slade"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Dr David Jones"", ""title"": ""Chairman"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Pete Shea"", ""title"": ""CFO"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Rasib Khan"", ""title"": ""VP of Engineering"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Rob Moar"", ""title"": ""Head of R&D"", ""sourceUrl"": ""https://bigsis.tech/about-us/""} - ], - ""linkedDocuments"": [""https://bigsis.tech/wp-content/uploads/2023/10/BigSis_Bloomberg-UK-Startups-to-Watch_Oct-2023.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://bigsis.tech/about-us/"", - ""productDescription"": ""https://bigsis.tech/solutions/"", - ""clientCategories"": ""https://bigsis.tech/about-us/"", - ""geographicFocus"": ""https://bigsis.tech/about-us/"", - ""keyExecutives"": ""https://bigsis.tech/about-us/"" - } -}","{ - ""websiteURL"": ""https://bigsis.tech"", - ""companyDescription"": ""BigSis is a company trading as Zyzzle Ltd., focused on biological insect control using the Sterile Insect Technique (SIT), which is species-specific, non-toxic, non-GM, and compatible with organic farming. Their solutions outperform chemical insecticides, are cost-effective (cutting SIT costs by up to 90%), and support integrated pest management, aiming to prevent pest infestations and reduce chemical insecticide use. Their first commercially approved solution targets the spotted wing drosophila (SWD), with successful field trials and expansion plans for 2024."", - ""productDescription"": ""BigSis offers sustainable insect control solutions based on the sterile insect technique (SIT). Their services include a season-long control service with releases for hassle-free integration with other IPM inputs. They provide solutions specifically targeting spotted wing drosophila (SWD) with proven season-long control and up to 91% suppression, codling moth control with improved sterile male releases, and plan to expand to other pests like olive fly, European grapevine moth, fall armyworm, and mosquitoes (Aedes aegypti and Anopheles species). Their solutions are non-GMO, non-toxic, species-specific, environmentally benign, and approved in England and four USA states."", - ""clientCategories"": [""Agriculture growers"", ""Farmers"", ""Public health pest control""], - ""sectorDescription"": ""Operates in the agricultural biotechnology and sustainable pest control sector, providing automated sterile insect technique solutions for crop and public health pest management."", - ""geographicFocus"": ""HQ: Reading, Berkshire, England; Sales Focus: England currently, with plans for international sales beginning in 2026"", - ""keyExecutives"": [ - {""name"": ""Glen Slade"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Dr David Jones"", ""title"": ""Chairman"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Pete Shea"", ""title"": ""CFO"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Rasib Khan"", ""title"": ""VP of Engineering"", ""sourceUrl"": ""https://bigsis.tech/about-us/""}, - {""name"": ""Rob Moar"", ""title"": ""Head of R&D"", ""sourceUrl"": ""https://bigsis.tech/about-us/""} - ], - ""linkedDocuments"": [""https://bigsis.tech/wp-content/uploads/2023/10/BigSis_Bloomberg-UK-Startups-to-Watch_Oct-2023.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://bigsis.tech/about-us/"", - ""productDescription"": ""https://bigsis.tech/solutions/"", - ""clientCategories"": ""https://bigsis.tech/about-us/"", - ""geographicFocus"": ""https://bigsis.tech/about-us/"", - ""keyExecutives"": ""https://bigsis.tech/about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://bigsis.tech"", - ""companyDescription"": ""BigSis, trading as Zyzzle Ltd., is a British R&D-driven company headquartered in Reading, England, focused on developing chemical-free, species-specific biological insect control solutions using the sterile insect technique (SIT). By automating the production of sterile male insects integrating biology, engineering, and AI, they offer sustainable pest management alternatives designed to reduce reliance on chemical insecticides, enhance biodiversity, and support organic farming. Their solutions are cost-effective, safer, and aligned with integrated pest management, targeting agricultural growers and public health sectors."", - ""productDescription"": ""BigSis provides automated, season-long sterile insect technique (SIT)-based control services targeting key pests such as spotted wing drosophila (SWD) and codling moth, achieving up to 91% suppression. Their non-GMO, non-toxic, and environmentally benign solutions integrate seamlessly with other pest management methods and are commercially approved in England and select US states. Planned expansions include other pests like olive fly, European grapevine moth, fall armyworm, and disease-vectoring mosquitoes."", - ""clientCategories"": [ - ""Agriculture Growers"", - ""Farmers"", - ""Public Health Pest Control"" - ], - ""sectorDescription"": ""Agricultural biotechnology and sustainable pest control company specializing in automated sterile insect technique solutions for crop protection and public health pest management."", - ""geographicFocus"": ""Headquartered in Reading, Berkshire, England, with current sales focus in England and planned international expansion beginning in 2026."", - ""keyExecutives"": [ - { - ""name"": ""Glen Slade"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://bigsis.tech/about-us/"" - }, - { - ""name"": ""Dr David Jones"", - ""title"": ""Chairman"", - ""sourceUrl"": ""https://bigsis.tech/about-us/"" - }, - { - ""name"": ""Pete Shea"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://bigsis.tech/about-us/"" - }, - { - ""name"": ""Rasib Khan"", - ""title"": ""VP of Engineering"", - ""sourceUrl"": ""https://bigsis.tech/about-us/"" - }, - { - ""name"": ""Rob Moar"", - ""title"": ""Head of R&D"", - ""sourceUrl"": ""https://bigsis.tech/about-us/"" - } - ], - ""researcherNotes"": ""The entity Zyzzle Ltd., trading as BigSis, is confirmed by matching company website URL, UK Companies House data (registered in Reading, England), and market sector keywords including sterile insect technique and biological pest control. The company was incorporated in 2017. All senior executives and company description data come from the official company site. Geographic focus is corroborated by company website statements and official filings. No conflicting information found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://bigsis.tech/about-us/"", - ""productDescription"": ""https://bigsis.tech/solutions/"", - ""clientCategories"": ""https://bigsis.tech/about-us/"", - ""geographicFocus"": ""https://bigsis.tech/about-us/"", - ""keyExecutives"": ""https://bigsis.tech/about-us/"" - } -}","{""clientCategories"":[""Agriculture Growers"",""Farmers"",""Public Health Pest Control""],""companyDescription"":""BigSis, trading as Zyzzle Ltd., is a British R&D-driven company headquartered in Reading, England, focused on developing chemical-free, species-specific biological insect control solutions using the sterile insect technique (SIT). By automating the production of sterile male insects integrating biology, engineering, and AI, they offer sustainable pest management alternatives designed to reduce reliance on chemical insecticides, enhance biodiversity, and support organic farming. Their solutions are cost-effective, safer, and aligned with integrated pest management, targeting agricultural growers and public health sectors."",""geographicFocus"":""Headquartered in Reading, Berkshire, England, with current sales focus in England and planned international expansion beginning in 2026."",""keyExecutives"":[{""name"":""Glen Slade"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""Founder and CEO""},{""name"":""Dr David Jones"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""Chairman""},{""name"":""Pete Shea"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""CFO""},{""name"":""Rasib Khan"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""VP of Engineering""},{""name"":""Rob Moar"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""Head of R&D""}],""missingImportantFields"":[],""productDescription"":""BigSis provides automated, season-long sterile insect technique (SIT)-based control services targeting key pests such as spotted wing drosophila (SWD) and codling moth, achieving up to 91% suppression. Their non-GMO, non-toxic, and environmentally benign solutions integrate seamlessly with other pest management methods and are commercially approved in England and select US states. Planned expansions include other pests like olive fly, European grapevine moth, fall armyworm, and disease-vectoring mosquitoes."",""researcherNotes"":""The entity Zyzzle Ltd., trading as BigSis, is confirmed by matching company website URL, UK Companies House data (registered in Reading, England), and market sector keywords including sterile insect technique and biological pest control. The company was incorporated in 2017. All senior executives and company description data come from the official company site. Geographic focus is corroborated by company website statements and official filings. No conflicting information found."",""sectorDescription"":""Agricultural biotechnology and sustainable pest control company specializing in automated sterile insect technique solutions for crop protection and public health pest management."",""sources"":{""clientCategories"":""https://bigsis.tech/about-us/"",""companyDescription"":""https://bigsis.tech/about-us/"",""geographicFocus"":""https://bigsis.tech/about-us/"",""keyExecutives"":""https://bigsis.tech/about-us/"",""productDescription"":""https://bigsis.tech/solutions/""},""websiteURL"":""https://bigsis.tech""}","Correctness: 100% Completeness: 95% The description of Zyzzle Ltd., trading as BigSis, as a British R&D-driven company headquartered in Reading, England, focused on chemical-free, species-specific insect control solutions using the sterile insect technique (SIT), is fully supported by their official website and UK Companies House data[1][3]. The leadership team listed matches the company’s About Us page as of 2025-09-11, including Glen Slade as Founder and CEO, Dr David Jones as Chairman, Pete Shea as CFO, Rasib Khan as VP of Engineering, and Rob Moar as Head of R&D[3]. The product description—automated sterile insect technique services targeting pests such as spotted wing drosophila and codling moth, delivering up to 91% suppression and with planned expansion to other pests—is consistent with BigSis official disclosures[3]. The geographic focus in England with international expansion planned from 2026 is also stated on their site[3]. UK Companies House confirms registration in Reading, incorporation in August 2017, and relevant SIC codes related to R&D and agriculture biotechnology[1]. No contradictory information was found, and almost all key fields are covered except minor details about funding or investors are not mentioned in the available sources, slightly reducing completeness. URLs: https://bigsis.tech/about-us/, https://find-and-update.company-information.service.gov.uk/company/10907969","{""clientCategories"":[""Agriculture growers"",""Farmers"",""Public health pest control""],""companyDescription"":""BigSis is a company trading as Zyzzle Ltd., focused on biological insect control using the Sterile Insect Technique (SIT), which is species-specific, non-toxic, non-GM, and compatible with organic farming. Their solutions outperform chemical insecticides, are cost-effective (cutting SIT costs by up to 90%), and support integrated pest management, aiming to prevent pest infestations and reduce chemical insecticide use. Their first commercially approved solution targets the spotted wing drosophila (SWD), with successful field trials and expansion plans for 2024."",""geographicFocus"":""HQ: Reading, Berkshire, England; Sales Focus: England currently, with plans for international sales beginning in 2026"",""keyExecutives"":[{""name"":""Glen Slade"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""Founder and CEO""},{""name"":""Dr David Jones"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""Chairman""},{""name"":""Pete Shea"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""CFO""},{""name"":""Rasib Khan"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""VP of Engineering""},{""name"":""Rob Moar"",""sourceUrl"":""https://bigsis.tech/about-us/"",""title"":""Head of R&D""}],""linkedDocuments"":[""https://bigsis.tech/wp-content/uploads/2023/10/BigSis_Bloomberg-UK-Startups-to-Watch_Oct-2023.pdf""],""missingImportantFields"":[],""productDescription"":""BigSis offers sustainable insect control solutions based on the sterile insect technique (SIT). Their services include a season-long control service with releases for hassle-free integration with other IPM inputs. They provide solutions specifically targeting spotted wing drosophila (SWD) with proven season-long control and up to 91% suppression, codling moth control with improved sterile male releases, and plan to expand to other pests like olive fly, European grapevine moth, fall armyworm, and mosquitoes (Aedes aegypti and Anopheles species). Their solutions are non-GMO, non-toxic, species-specific, environmentally benign, and approved in England and four USA states."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural biotechnology and sustainable pest control sector, providing automated sterile insect technique solutions for crop and public health pest management."",""sources"":{""clientCategories"":""https://bigsis.tech/about-us/"",""companyDescription"":""https://bigsis.tech/about-us/"",""geographicFocus"":""https://bigsis.tech/about-us/"",""keyExecutives"":""https://bigsis.tech/about-us/"",""productDescription"":""https://bigsis.tech/solutions/""},""websiteURL"":""https://bigsis.tech""}" -The Cascara Society,https://cascara-society.ch/,One Creation,cascara-society.ch,https://www.linkedin.com/company/cascara-society/,"{""seniorLeadership"":[{""fullName"":""Radha Arya"",""title"":""Co-founder & Director"",""profileUrl"":""https://www.linkedin.com/in/radha-arya-4725b116a""}]}","{""seniorLeadership"":[{""fullName"":""Radha Arya"",""title"":""Co-founder & Director"",""profileUrl"":""https://www.linkedin.com/in/radha-arya-4725b116a""}]}","{ - ""websiteURL"": ""https://cascara-society.ch/"", - ""companyDescription"": ""The Cascara Society is a Swiss company specializing in transforming organic fruit waste, such as coffee cherries, into sustainable beverages. Their mission focuses on ecological and ethical responsibility by encouraging organic producers to recover coffee pulp, promoting responsible agriculture, reducing food waste, and producing antioxidant-rich, sugar-free, refreshing drinks. They aim to raise awareness on ecological and ethical issues aligned with United Nations social and economic goals, focusing on health and well-being, decent work and economic growth, responsible consumption and production, and life on land. Their values emphasize sustainability, ethical sourcing, and quality natural products."", - ""productDescription"": ""The Cascara Society offers a range of sustainable, natural beverages made from cascara, the pulp of coffee fruit, which is an antioxidant-rich, natural product supporting fair trade and circular economy. Their main products are:\n- Ice Cascara Originale (infusion)\n- Ice Cascara Gingembre (infusion)\n- Ice Cascara Menthe (infusion)\n- Ice Cascara Cola\n- Ice Cascara Soda\nAll products contain natural caffeine, no added sugar, no preservatives or additives, and are organic and sustainable."", - ""clientCategories"": [""Resellers including bars, restaurants, coffee shops, boutiques""], - ""sectorDescription"": ""Operates in the sustainable beverage sector, producing antioxidant-rich drinks derived from coffee fruit waste to promote circular economy and ethical consumption."", - ""geographicFocus"": ""HQ: Switzerland; Sales Focus: Switzerland, with physical locations in Vevey, Lausanne, Genève, and Morges."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific leadership or executive information was found on the website after a thorough search. Client categories are inferred from B2B reseller content."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://cascara-society.ch/en/qui-sommes-nous"", - ""productDescription"": ""https://cascara-society.ch/en/infusion, https://cascara-society.ch/en/cola, https://cascara-society.ch/en/soda, https://cascara-society.ch/en/pure-cascara-infusion"", - ""clientCategories"": ""https://cascara-society.ch/b2b/"", - ""geographicFocus"": ""https://cascara-society.ch/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://cascara-society.ch/"", - ""companyDescription"": ""The Cascara Society is a Swiss company specializing in transforming organic fruit waste, such as coffee cherries, into sustainable beverages. Their mission focuses on ecological and ethical responsibility by encouraging organic producers to recover coffee pulp, promoting responsible agriculture, reducing food waste, and producing antioxidant-rich, sugar-free, refreshing drinks. They aim to raise awareness on ecological and ethical issues aligned with United Nations social and economic goals, focusing on health and well-being, decent work and economic growth, responsible consumption and production, and life on land. Their values emphasize sustainability, ethical sourcing, and quality natural products."", - ""productDescription"": ""The Cascara Society offers a range of sustainable, natural beverages made from cascara, the pulp of coffee fruit, which is an antioxidant-rich, natural product supporting fair trade and circular economy. Their main products are:\n- Ice Cascara Originale (infusion)\n- Ice Cascara Gingembre (infusion)\n- Ice Cascara Menthe (infusion)\n- Ice Cascara Cola\n- Ice Cascara Soda\nAll products contain natural caffeine, no added sugar, no preservatives or additives, and are organic and sustainable."", - ""clientCategories"": [""Resellers including bars, restaurants, coffee shops, boutiques""], - ""sectorDescription"": ""Operates in the sustainable beverage sector, producing antioxidant-rich drinks derived from coffee fruit waste to promote circular economy and ethical consumption."", - ""geographicFocus"": ""HQ: Switzerland; Sales Focus: Switzerland, with physical locations in Vevey, Lausanne, Genève, and Morges."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific leadership or executive information was found on the website after a thorough search. Client categories are inferred from B2B reseller content."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://cascara-society.ch/en/qui-sommes-nous"", - ""productDescription"": ""https://cascara-society.ch/en/infusion, https://cascara-society.ch/en/cola, https://cascara-society.ch/en/soda, https://cascara-society.ch/en/pure-cascara-infusion"", - ""clientCategories"": ""https://cascara-society.ch/b2b/"", - ""geographicFocus"": ""https://cascara-society.ch/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://cascara-society.ch"", - ""companyDescription"": ""The Cascara Society is a Swiss company specializing in transforming organic fruit waste, particularly coffee cherry pulp (cascara), into sustainable, antioxidant-rich beverages. Their mission centers on ecological and ethical responsibility by encouraging organic coffee producers to recover coffee pulp, promoting responsible agriculture, reducing food waste, and providing healthy, natural drinks without added sugar. They align their initiatives with United Nations goals focusing on health, economic growth, responsible consumption, and life on land, emphasizing sustainability, ethical sourcing, and quality natural products."", - ""productDescription"": ""The Cascara Society offers a range of organic, sustainable beverages made from cascara, the pulp of the coffee fruit. Their products include Ice Cascara Originale, Ice Cascara Gingembre, Ice Cascara Menthe, Ice Cascara Cola, and Ice Cascara Soda. These drinks are antioxidant-rich, naturally caffeinated, sugar-free, and free from preservatives or additives, supporting fair trade and circular economy principles."", - ""clientCategories"": [""Resellers Including Bars"", ""Restaurants"", ""Coffee Shops"", ""Boutiques""], - ""sectorDescription"": ""Operates in the sustainable beverage sector, producing antioxidant-rich drinks derived from coffee fruit waste to promote circular economy and ethical consumption."", - ""geographicFocus"": ""Headquartered in Switzerland, with sales primarily focused within Switzerland and physical presence in Vevey, Lausanne, Genève, and Morges."", - ""keyExecutives"": [ - { - ""name"": ""Radha Arya"", - ""title"": ""Co-founder & Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/radha-arya-4725b116a"" - } - ], - ""researcherNotes"": ""The company identity has been confirmed through domain matching and product focus. The LinkedIn profile of Radha Arya as Co-founder & Director provides the only available senior leadership information to date. No official leadership page was found on the company website. Geographic footprint is verified from the company contact info and web presence. An alternative company Ecocascara SA, linked to related products, exists but differs in leadership and filings and thus was excluded to avoid confusion.[1][2][4]"", - ""missingImportantFields"": [] -, - ""sources"": { - ""companyDescription"": ""https://cascara-society.ch/en/qui-sommes-nous"", - ""productDescription"": ""https://cascara-society.ch/en/infusion"", - ""clientCategories"": ""https://cascara-society.ch/b2b/"", - ""geographicFocus"": ""https://cascara-society.ch/contact/"", - ""keyExecutives"": ""https://www.linkedin.com/in/radha-arya-4725b116a"" - } -}","{""clientCategories"":[""Resellers Including Bars"",""Restaurants"",""Coffee Shops"",""Boutiques""],""companyDescription"":""The Cascara Society is a Swiss company specializing in transforming organic fruit waste, particularly coffee cherry pulp (cascara), into sustainable, antioxidant-rich beverages. Their mission centers on ecological and ethical responsibility by encouraging organic coffee producers to recover coffee pulp, promoting responsible agriculture, reducing food waste, and providing healthy, natural drinks without added sugar. They align their initiatives with United Nations goals focusing on health, economic growth, responsible consumption, and life on land, emphasizing sustainability, ethical sourcing, and quality natural products."",""geographicFocus"":""Headquartered in Switzerland, with sales primarily focused within Switzerland and physical presence in Vevey, Lausanne, Genève, and Morges."",""keyExecutives"":[{""name"":""Radha Arya"",""sourceUrl"":""https://www.linkedin.com/in/radha-arya-4725b116a"",""title"":""Co-founder & Director""}],""missingImportantFields"":[],""productDescription"":""The Cascara Society offers a range of organic, sustainable beverages made from cascara, the pulp of the coffee fruit. Their products include Ice Cascara Originale, Ice Cascara Gingembre, Ice Cascara Menthe, Ice Cascara Cola, and Ice Cascara Soda. These drinks are antioxidant-rich, naturally caffeinated, sugar-free, and free from preservatives or additives, supporting fair trade and circular economy principles."",""researcherNotes"":""The company identity has been confirmed through domain matching and product focus. The LinkedIn profile of Radha Arya as Co-founder & Director provides the only available senior leadership information to date. No official leadership page was found on the company website. Geographic footprint is verified from the company contact info and web presence. An alternative company Ecocascara SA, linked to related products, exists but differs in leadership and filings and thus was excluded to avoid confusion.[1][2][4]"",""sectorDescription"":""Operates in the sustainable beverage sector, producing antioxidant-rich drinks derived from coffee fruit waste to promote circular economy and ethical consumption."",""sources"":{""clientCategories"":""https://cascara-society.ch/b2b/"",""companyDescription"":""https://cascara-society.ch/en/qui-sommes-nous"",""geographicFocus"":""https://cascara-society.ch/contact/"",""keyExecutives"":""https://www.linkedin.com/in/radha-arya-4725b116a"",""productDescription"":""https://cascara-society.ch/en/infusion""},""websiteURL"":""https://cascara-society.ch""}","Correctness: 95% Completeness: 90% - -The core details about The Cascara Society from the Swiss sources largely align: it is a Swiss company specializing in organic coffee cherry pulp (cascara) waste recycling into sustainable, antioxidant-rich beverages with no added sugar, supporting fair trade and the circular economy[1][4]. The company is headquartered in Switzerland with physical presence in Vevey, Lausanne, Genève, and Morges[1][4]. Radha Arya is confirmed as Co-founder & Director through her LinkedIn profile[1]. Their product lineup (Ice Cascara Originale, Gingembre, Menthe, Cola, Soda) matches descriptions on their website, emphasizing natural ingredients and ethical sourcing[1]. The Cascara Society’s mission aligns with UN goals on health, economic growth, responsible consumption, and sustainability, also stated on their official site[1]. - -There is slight potential confusion with Ecocafé SA and Ecocascara SA, which also operate in the cascara beverage market in Switzerland, but differ in leadership, addresses, and product branding, and thus were rightfully excluded from the claim here[2][3]. The one minor gap is the lack of an official current leadership page on the company website beyond Radha Arya’s LinkedIn reference, and no filing or formal registry citation was found to fully confirm legal entity details or any recent leadership changes. Also, market awards or partnerships (e.g., with Rivella mentioned elsewhere) were not included, so completeness is not 100%[5]. Overall, the verified data and company sources from 2023-2025 show the factual claims are accurate and sufficiently representative of the company identity, mission, products, and leadership as currently known[1][4]. - -https://cascara-society.ch/en/qui-sommes-nous/ -https://cascara-society.ch/contact/ -https://www.linkedin.com/in/radha-arya-4725b116a -https://ecosystem.andorra-startup.com/companies/the_cascara_society/team -https://www.thezerowastecoffeeproject.com/post/cascara-enertea-a-new-energy-drink-by-rivella-switzerland","{""clientCategories"":[""Resellers including bars, restaurants, coffee shops, boutiques""],""companyDescription"":""The Cascara Society is a Swiss company specializing in transforming organic fruit waste, such as coffee cherries, into sustainable beverages. Their mission focuses on ecological and ethical responsibility by encouraging organic producers to recover coffee pulp, promoting responsible agriculture, reducing food waste, and producing antioxidant-rich, sugar-free, refreshing drinks. They aim to raise awareness on ecological and ethical issues aligned with United Nations social and economic goals, focusing on health and well-being, decent work and economic growth, responsible consumption and production, and life on land. Their values emphasize sustainability, ethical sourcing, and quality natural products."",""geographicFocus"":""HQ: Switzerland; Sales Focus: Switzerland, with physical locations in Vevey, Lausanne, Genève, and Morges."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The Cascara Society offers a range of sustainable, natural beverages made from cascara, the pulp of coffee fruit, which is an antioxidant-rich, natural product supporting fair trade and circular economy. Their main products are:\n- Ice Cascara Originale (infusion)\n- Ice Cascara Gingembre (infusion)\n- Ice Cascara Menthe (infusion)\n- Ice Cascara Cola\n- Ice Cascara Soda\nAll products contain natural caffeine, no added sugar, no preservatives or additives, and are organic and sustainable."",""researcherNotes"":""No specific leadership or executive information was found on the website after a thorough search. Client categories are inferred from B2B reseller content."",""sectorDescription"":""Operates in the sustainable beverage sector, producing antioxidant-rich drinks derived from coffee fruit waste to promote circular economy and ethical consumption."",""sources"":{""clientCategories"":""https://cascara-society.ch/b2b/"",""companyDescription"":""https://cascara-society.ch/en/qui-sommes-nous"",""geographicFocus"":""https://cascara-society.ch/contact/"",""keyExecutives"":null,""productDescription"":""https://cascara-society.ch/en/infusion, https://cascara-society.ch/en/cola, https://cascara-society.ch/en/soda, https://cascara-society.ch/en/pure-cascara-infusion""},""websiteURL"":""https://cascara-society.ch/""}" -Nofitech,http://www.nofitech.com,"Longship, Summa Equity",nofitech.com,https://www.linkedin.com/company/nofitech,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.nofitech.com"", - ""companyDescription"": ""Norwegian Fishfarming Technologies AS (Nofitech) develops standardized, modulated, and certified RAS (Recirculating Aquaculture Systems) solutions for seawater and freshwater fish farming. Their ModulRAS concept supports all production phases including smolt, postsmolt, grow out, and broodstock. Nofitech provides a unique training program called Nofitech Academy for operational personnel, focusing on biology, water chemistry, and technical operations to ensure safe and efficient operation. The company aims to deliver cost-efficient, compact designs with standardized prefabricated units, minimizing costs and environmental footprint. Nofitech's quality system complies with NS 9416:2013 standards, approved by DNV."", - ""productDescription"": ""Nofitech designer and delivers solutions for production of smolt, postsmolt, food fish, and broodfish based on modular concepts with octagonal tanks and centralized water treatment. Their patented structure provides short water pathways, sludge prevention, and durable polyurea coatings. The design includes seawater-resistant materials, high-quality ventilation and dehumidification, and fully insulated sandwich walls. Their process control system monitors and logs water quality and operational parameters with backup solutions for critical components. Product offerings include:\n- ModulRAS Matfisk\n- ModulRAS Stamfisk\n- ModulRAS Postsmolt\n- ModulRAS Smolt"", - ""clientCategories"": [ - ""Smolt and postsmolt production companies"", - ""Aquaculture industry clients"", - ""Fish farming operations"" - ], - ""sectorDescription"": ""Operates in the aquaculture technology sector, focusing on land-based, modular RAS solutions for sustainable fish farming."", - ""geographicFocus"": ""HQ: Pir I, 4, Postboks 1252 Torgarden, 7462 Trondheim, Norway; Sales Focus: Norway, Japan, Faroe Islands"", - ""keyExecutives"": [ - {""name"": ""Geir Løvik"", ""title"": ""Founder"", ""sourceUrl"": ""https://nofitech.com/om-oss/""}, - {""name"": ""John Hestad"", ""title"": ""Founder"", ""sourceUrl"": ""https://nofitech.com/om-oss/""}, - {""name"": ""Kari Johanne Kihle Attramadal"", ""title"": ""CEO and Head of R&D"", ""sourceUrl"": ""https://nofitech.com/om-oss/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nofitech.com/om-oss/"", - ""productDescription"": ""https://nofitech.com/produkter/"", - ""clientCategories"": ""https://nofitech.com/referanser/"", - ""geographicFocus"": ""https://nofitech.com/kontakt/"", - ""keyExecutives"": ""https://nofitech.com/om-oss/"" - } -}","{ - ""websiteURL"": ""http://www.nofitech.com"", - ""companyDescription"": ""Norwegian Fishfarming Technologies AS (Nofitech) develops standardized, modulated, and certified RAS (Recirculating Aquaculture Systems) solutions for seawater and freshwater fish farming. Their ModulRAS concept supports all production phases including smolt, postsmolt, grow out, and broodstock. Nofitech provides a unique training program called Nofitech Academy for operational personnel, focusing on biology, water chemistry, and technical operations to ensure safe and efficient operation. The company aims to deliver cost-efficient, compact designs with standardized prefabricated units, minimizing costs and environmental footprint. Nofitech's quality system complies with NS 9416:2013 standards, approved by DNV."", - ""productDescription"": ""Nofitech designer and delivers solutions for production of smolt, postsmolt, food fish, and broodfish based on modular concepts with octagonal tanks and centralized water treatment. Their patented structure provides short water pathways, sludge prevention, and durable polyurea coatings. The design includes seawater-resistant materials, high-quality ventilation and dehumidification, and fully insulated sandwich walls. Their process control system monitors and logs water quality and operational parameters with backup solutions for critical components. Product offerings include:\n- ModulRAS Matfisk\n- ModulRAS Stamfisk\n- ModulRAS Postsmolt\n- ModulRAS Smolt"", - ""clientCategories"": [ - ""Smolt and postsmolt production companies"", - ""Aquaculture industry clients"", - ""Fish farming operations"" - ], - ""sectorDescription"": ""Operates in the aquaculture technology sector, focusing on land-based, modular RAS solutions for sustainable fish farming."", - ""geographicFocus"": ""HQ: Pir I, 4, Postboks 1252 Torgarden, 7462 Trondheim, Norway; Sales Focus: Norway, Japan, Faroe Islands"", - ""keyExecutives"": [ - {""name"": ""Geir Løvik"", ""title"": ""Founder"", ""sourceUrl"": ""https://nofitech.com/om-oss/""}, - {""name"": ""John Hestad"", ""title"": ""Founder"", ""sourceUrl"": ""https://nofitech.com/om-oss/""}, - {""name"": ""Kari Johanne Kihle Attramadal"", ""title"": ""CEO and Head of R&D"", ""sourceUrl"": ""https://nofitech.com/om-oss/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nofitech.com/om-oss/"", - ""productDescription"": ""https://nofitech.com/produkter/"", - ""clientCategories"": ""https://nofitech.com/referanser/"", - ""geographicFocus"": ""https://nofitech.com/kontakt/"", - ""keyExecutives"": ""https://nofitech.com/om-oss/"" - } -}",[],"{ - ""websiteURL"": ""https://nofitech.com"", - ""companyDescription"": ""Norwegian Fishfarming Technologies AS (Nofitech) develops standardized, modular, and certified Recirculating Aquaculture Systems (RAS) for seawater and freshwater fish farming. Their ModulRAS concept supports all production phases including smolt, postsmolt, grow out, and broodstock. Nofitech provides a unique training program, Nofitech Academy, for operational personnel focusing on biology, water chemistry, and technical operations to ensure safe and efficient operation. The company aims to deliver cost-efficient, compact designs with standardized prefabricated units to minimize costs and environmental footprint, complying with NS 9416:2013 standards as approved by DNV. Nofitech's land-based farming solutions help increase production volume and sustainability for major Norwegian salmon farmers."", - ""productDescription"": ""Nofitech designs and delivers modular ModulRAS solutions for the production of smolt, postsmolt, food fish, and broodfish using octagonal tanks and centralized water treatment. Their patented design offers short water pathways, sediment prevention, durable polyurea coatings, seawater-resistant materials, high-quality ventilation, dehumidification, and fully insulated sandwich walls. Their process control system continuously monitors and logs water quality and operational parameters, with backup solutions for critical components. Major product lines include ModulRAS Matfisk (food fish), ModulRAS Stamfisk (broodstock), ModulRAS Postsmolt, and ModulRAS Smolt, enabling cost-efficient and sustainable fish farming from hatchery to adult stages."", - ""clientCategories"": [ - ""Smolt And Postsmolt Production Companies"", - ""Aquaculture Industry Clients"", - ""Fish Farming Operations"" - ], - ""sectorDescription"": ""Operates in the aquaculture technology sector with a focus on land-based, modular Recirculating Aquaculture Systems for sustainable fish farming."", - ""geographicFocus"": ""Headquartered in Trondheim, Norway, Nofitech's sales focus includes Norway, Japan, and the Faroe Islands."", - ""keyExecutives"": [ - { - ""name"": ""Geir Løvik"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nofitech.com/om-oss/"" - }, - { - ""name"": ""John Hestad"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://nofitech.com/om-oss/"" - }, - { - ""name"": ""Kari Johanne Kihle Attramadal"", - ""title"": ""CEO and Head of R&D"", - ""sourceUrl"": ""https://nofitech.com/om-oss/"" - } - ], - ""researcherNotes"": ""Entity confirmed by domain match (nofitech.com) and headquarters in Trondheim, Norway. Information corroborated by official company website and Longship investment reports. Geographic focus is based on company contact and sales information. No conflicting data found. Leadership titles and names are consistent across company site and investor sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nofitech.com/en/about/"", - ""productDescription"": ""https://nofitech.com/en/produkter/"", - ""clientCategories"": ""https://nofitech.com/referanser/"", - ""geographicFocus"": ""https://nofitech.com/en/kontakt/"", - ""keyExecutives"": ""https://nofitech.com/en/about/"" - } -}","{""clientCategories"":[""Smolt And Postsmolt Production Companies"",""Aquaculture Industry Clients"",""Fish Farming Operations""],""companyDescription"":""Norwegian Fishfarming Technologies AS (Nofitech) develops standardized, modular, and certified Recirculating Aquaculture Systems (RAS) for seawater and freshwater fish farming. Their ModulRAS concept supports all production phases including smolt, postsmolt, grow out, and broodstock. Nofitech provides a unique training program, Nofitech Academy, for operational personnel focusing on biology, water chemistry, and technical operations to ensure safe and efficient operation. The company aims to deliver cost-efficient, compact designs with standardized prefabricated units to minimize costs and environmental footprint, complying with NS 9416:2013 standards as approved by DNV. Nofitech's land-based farming solutions help increase production volume and sustainability for major Norwegian salmon farmers."",""geographicFocus"":""Headquartered in Trondheim, Norway, Nofitech's sales focus includes Norway, Japan, and the Faroe Islands."",""keyExecutives"":[{""name"":""Geir Løvik"",""sourceUrl"":""https://nofitech.com/om-oss/"",""title"":""Founder""},{""name"":""John Hestad"",""sourceUrl"":""https://nofitech.com/om-oss/"",""title"":""Founder""},{""name"":""Kari Johanne Kihle Attramadal"",""sourceUrl"":""https://nofitech.com/om-oss/"",""title"":""CEO and Head of R&D""}],""missingImportantFields"":[],""productDescription"":""Nofitech designs and delivers modular ModulRAS solutions for the production of smolt, postsmolt, food fish, and broodfish using octagonal tanks and centralized water treatment. Their patented design offers short water pathways, sediment prevention, durable polyurea coatings, seawater-resistant materials, high-quality ventilation, dehumidification, and fully insulated sandwich walls. Their process control system continuously monitors and logs water quality and operational parameters, with backup solutions for critical components. Major product lines include ModulRAS Matfisk (food fish), ModulRAS Stamfisk (broodstock), ModulRAS Postsmolt, and ModulRAS Smolt, enabling cost-efficient and sustainable fish farming from hatchery to adult stages."",""researcherNotes"":""Entity confirmed by domain match (nofitech.com) and headquarters in Trondheim, Norway. Information corroborated by official company website and Longship investment reports. Geographic focus is based on company contact and sales information. No conflicting data found. Leadership titles and names are consistent across company site and investor sources."",""sectorDescription"":""Operates in the aquaculture technology sector with a focus on land-based, modular Recirculating Aquaculture Systems for sustainable fish farming."",""sources"":{""clientCategories"":""https://nofitech.com/referanser/"",""companyDescription"":""https://nofitech.com/en/about/"",""geographicFocus"":""https://nofitech.com/en/kontakt/"",""keyExecutives"":""https://nofitech.com/en/about/"",""productDescription"":""https://nofitech.com/en/produkter/""},""websiteURL"":""https://nofitech.com""}","Correctness: 98% Completeness: 95% - -The description of Norwegian Fishfarming Technologies AS (Nofitech) as a developer of standardized, modular, certified Recirculating Aquaculture Systems (RAS) for both seawater and freshwater fish farming is accurate and well corroborated by multiple official sources, including their own website and investment communications[2][4][5]. The ModulRAS concept covering smolt, postsmolt, grow-out, and broodstock phases, along with features like octagonal tanks, centralized water treatment, and the patented short water pathway design, matches product details published by Nofitech[5]. Leadership information naming Geir Løvik and John Hestad as founders and Kari Johanne Kihle Attramadal as CEO and Head of R&D is consistent with company data as of 2025[5]. The geographic focus on Norway, Japan, and the Faroe Islands is supported by contact and sales info on their official page[5]. The company’s ownership by Summa Equity and Longship is confirmed via investment releases[2][4]. Their emphasis on sustainability, cost efficiency, and compliance with standards such as NS 9416:2013 approved by DNV aligns with their stated R&D and operational focus[5]. No major contradictory information or recent leadership changes were found. Minor details not explicitly present (e.g., specific aspects of ventilation or polyurea coatings) are consistent with typical modular RAS technology but are not contradicting. There is no mention of the training program Nofitech Academy in the sources reviewed, which slightly reduces completeness but it is plausible given the company's service scope. Overall, the fact set is highly reliable and nearly complete based on the company’s official site and related investor communications dated through 2025. - -Sources: https://nofitech.com/en/about/; https://nofitech.com/en/produkter/; https://nofitech.com/en/summa-equity-invests-in-nofitech/; https://sea.work/annonser/chief-operating-officer-coo; https://www.developmentaid.org/organizations/view/473667/nofitech-company","{""clientCategories"":[""Smolt and postsmolt production companies"",""Aquaculture industry clients"",""Fish farming operations""],""companyDescription"":""Norwegian Fishfarming Technologies AS (Nofitech) develops standardized, modulated, and certified RAS (Recirculating Aquaculture Systems) solutions for seawater and freshwater fish farming. Their ModulRAS concept supports all production phases including smolt, postsmolt, grow out, and broodstock. Nofitech provides a unique training program called Nofitech Academy for operational personnel, focusing on biology, water chemistry, and technical operations to ensure safe and efficient operation. The company aims to deliver cost-efficient, compact designs with standardized prefabricated units, minimizing costs and environmental footprint. Nofitech's quality system complies with NS 9416:2013 standards, approved by DNV."",""geographicFocus"":""HQ: Pir I, 4, Postboks 1252 Torgarden, 7462 Trondheim, Norway; Sales Focus: Norway, Japan, Faroe Islands"",""keyExecutives"":[{""name"":""Geir Løvik"",""sourceUrl"":""https://nofitech.com/om-oss/"",""title"":""Founder""},{""name"":""John Hestad"",""sourceUrl"":""https://nofitech.com/om-oss/"",""title"":""Founder""},{""name"":""Kari Johanne Kihle Attramadal"",""sourceUrl"":""https://nofitech.com/om-oss/"",""title"":""CEO and Head of R&D""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Nofitech designer and delivers solutions for production of smolt, postsmolt, food fish, and broodfish based on modular concepts with octagonal tanks and centralized water treatment. Their patented structure provides short water pathways, sludge prevention, and durable polyurea coatings. The design includes seawater-resistant materials, high-quality ventilation and dehumidification, and fully insulated sandwich walls. Their process control system monitors and logs water quality and operational parameters with backup solutions for critical components. Product offerings include:\n- ModulRAS Matfisk\n- ModulRAS Stamfisk\n- ModulRAS Postsmolt\n- ModulRAS Smolt"",""researcherNotes"":null,""sectorDescription"":""Operates in the aquaculture technology sector, focusing on land-based, modular RAS solutions for sustainable fish farming."",""sources"":{""clientCategories"":""https://nofitech.com/referanser/"",""companyDescription"":""https://nofitech.com/om-oss/"",""geographicFocus"":""https://nofitech.com/kontakt/"",""keyExecutives"":""https://nofitech.com/om-oss/"",""productDescription"":""https://nofitech.com/produkter/""},""websiteURL"":""http://www.nofitech.com""}" -Tomojo,https://en.tomojo.co,"BNP Paribas Développement, Swen Capital Partners",en.tomojo.co,https://www.linkedin.com/company/tomojo/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://en.tomojo.co"", - ""companyDescription"": ""Through Tomojo, we wanted to offer dog and cat owners a new alternative: a balanced recipe for our animals while working towards sustainable development."", - ""productDescription"": ""Tomojo offers balanced recipes for dogs and cats based on insect protein (Hermetia Illucens) bred in certified facilities in France and Holland. Their products include:\n- Kit d'essai Cat Dog Subscription\n- Dog and cat kibble made in France with over 16 French-sourced ingredients\n- Subscription services with recurring deliveries and discounts\nThe insect-based food is sustainable, using 200 times less water than chicken, producing 7 times less CO2 than beef, and containing zero antibiotics. Packaging is recyclable, and delivery is available in multiple European countries."", - ""clientCategories"": [""Pet owners"", ""Consumers seeking sustainable pet food alternatives""], - ""sectorDescription"": ""Operates in the sustainable pet food sector, specializing in insect-protein based nutrition for dogs and cats."", - ""geographicFocus"": ""Sales focus on France, Germany, Austria, Belgium, Spain, Italy, Luxembourg, Netherlands, United Kingdom, Switzerland; Headquarters address not explicitly stated on the site."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Key executives and founders names and titles could not be located on the website or linked documents. Headquarters address is not explicitly stated."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://tomojo.co/en/pages/qui-sommes-nous"", - ""productDescription"": ""https://tomojo.co/en/pages/food"", - ""clientCategories"": ""https://tomojo.co/en/pages/food"", - ""geographicFocus"": ""https://tomojo.co/en/pages/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://en.tomojo.co"", - ""companyDescription"": ""Through Tomojo, we wanted to offer dog and cat owners a new alternative: a balanced recipe for our animals while working towards sustainable development."", - ""productDescription"": ""Tomojo offers balanced recipes for dogs and cats based on insect protein (Hermetia Illucens) bred in certified facilities in France and Holland. Their products include:\n- Kit d'essai Cat Dog Subscription\n- Dog and cat kibble made in France with over 16 French-sourced ingredients\n- Subscription services with recurring deliveries and discounts\nThe insect-based food is sustainable, using 200 times less water than chicken, producing 7 times less CO2 than beef, and containing zero antibiotics. Packaging is recyclable, and delivery is available in multiple European countries."", - ""clientCategories"": [""Pet owners"", ""Consumers seeking sustainable pet food alternatives""], - ""sectorDescription"": ""Operates in the sustainable pet food sector, specializing in insect-protein based nutrition for dogs and cats."", - ""geographicFocus"": ""Sales focus on France, Germany, Austria, Belgium, Spain, Italy, Luxembourg, Netherlands, United Kingdom, Switzerland; Headquarters address not explicitly stated on the site."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Key executives and founders names and titles could not be located on the website or linked documents. Headquarters address is not explicitly stated."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://tomojo.co/en/pages/qui-sommes-nous"", - ""productDescription"": ""https://tomojo.co/en/pages/food"", - ""clientCategories"": ""https://tomojo.co/en/pages/food"", - ""geographicFocus"": ""https://tomojo.co/en/pages/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://en.tomojo.co"", - ""companyDescription"": ""Tomojo offers sustainable, balanced recipes for dogs and cats by using insect protein (Hermetia Illucens) sourced from certified farms in France and Holland. The company aims to provide pet owners with an eco-friendly alternative to conventional pet food, reducing environmental impact through insect-based nutrition that is antibiotic-free and supports sustainable development."", - ""productDescription"": ""Tomojo produces dog and cat kibble made in France with over 16 French-sourced ingredients, featuring insect protein bred in certified facilities in France and Holland. Their product line includes subscription options with recurring deliveries and discounts. The insect-based food uses significantly less water and emits fewer greenhouse gases compared to conventional meat sources. Packaging is recyclable, and delivery is available in multiple European countries."", - ""clientCategories"": [ - ""Pet Owners"", - ""Consumers Seeking Sustainable Pet Food Alternatives"" - ], - ""sectorDescription"": ""Sustainable pet food sector specializing in insect-protein based nutrition for dogs and cats."", - ""geographicFocus"": ""Sales focus on France, Germany, Austria, Belgium, Spain, Italy, Luxembourg, Netherlands, United Kingdom, Switzerland."", - ""keyExecutives"": [], - ""researcherNotes"": ""No senior leadership information, founders, or key executives could be identified from the company website, LinkedIn, or other authoritative sources. Headquarters address is not explicitly stated on the website. Founders named Madeleine and Paola, childhood friends and environmental science graduates, are mentioned but their executive titles are not confirmed. This limits completeness of leadership data."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://tomojo.co/en/pages/qui-sommes-nous"", - ""productDescription"": ""https://tomojo.co/en/pages/food"", - ""clientCategories"": ""https://tomojo.co/en/pages/food"", - ""geographicFocus"": ""https://tomojo.co/en/pages/contact"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Pet Owners"",""Consumers Seeking Sustainable Pet Food Alternatives""],""companyDescription"":""Tomojo offers sustainable, balanced recipes for dogs and cats by using insect protein (Hermetia Illucens) sourced from certified farms in France and Holland. The company aims to provide pet owners with an eco-friendly alternative to conventional pet food, reducing environmental impact through insect-based nutrition that is antibiotic-free and supports sustainable development."",""geographicFocus"":""Sales focus on France, Germany, Austria, Belgium, Spain, Italy, Luxembourg, Netherlands, United Kingdom, Switzerland."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Tomojo produces dog and cat kibble made in France with over 16 French-sourced ingredients, featuring insect protein bred in certified facilities in France and Holland. Their product line includes subscription options with recurring deliveries and discounts. The insect-based food uses significantly less water and emits fewer greenhouse gases compared to conventional meat sources. Packaging is recyclable, and delivery is available in multiple European countries."",""researcherNotes"":""No senior leadership information, founders, or key executives could be identified from the company website, LinkedIn, or other authoritative sources. Headquarters address is not explicitly stated on the website. Founders named Madeleine and Paola, childhood friends and environmental science graduates, are mentioned but their executive titles are not confirmed. This limits completeness of leadership data."",""sectorDescription"":""Sustainable pet food sector specializing in insect-protein based nutrition for dogs and cats."",""sources"":{""clientCategories"":""https://tomojo.co/en/pages/food"",""companyDescription"":""https://tomojo.co/en/pages/qui-sommes-nous"",""geographicFocus"":""https://tomojo.co/en/pages/contact"",""keyExecutives"":null,""productDescription"":""https://tomojo.co/en/pages/food""},""websiteURL"":""https://en.tomojo.co""}","Correctness: 95% Completeness: 85% The description of Tomojo's business is highly accurate: the company offers insect-protein-based kibble for dogs and cats using Hermetia illucens (black soldier fly) sourced from certified farms in France and Holland, and their production is environmentally sustainable, using less water and emitting fewer greenhouse gases compared to conventional meat sources. The kibble is produced in France with over 16 French-sourced ingredients and offers recyclable packaging and subscription delivery across several European countries including France, Germany, Netherlands, and others[1][2][3]. The founders, Madeleine and Paola, childhood friends and environmental science graduates, are mentioned but their formal executive titles or senior leadership roles are not publicly confirmed, reducing completeness in leadership data[2][4]. The company’s headquarters location and precise key executive details are not clearly disclosed online, which further limits completeness in corporate data. The product ingredient profile and quality claims (antibiotic-free, hypoallergenic) align with evidence from multiple sources[1][2][6]. The information cited is current as of 2025, and the Series A fundraising in 2021 confirms growing business traction[4]. However, no authoritative filings or official registries were found for leadership or funding details, which impacts completeness. URLs: https://tomojo.co/en/pages/qui-sommes-nous, https://tomojo.co/en/pages/food, https://tomojo.co/en, https://www.further-finance.com/en/case-studies/tomojo/, https://petfoodexpert.com/food/tomojo-adult-cat-without-cereals-dry-cat","{""clientCategories"":[""Pet owners"",""Consumers seeking sustainable pet food alternatives""],""companyDescription"":""Through Tomojo, we wanted to offer dog and cat owners a new alternative: a balanced recipe for our animals while working towards sustainable development."",""geographicFocus"":""Sales focus on France, Germany, Austria, Belgium, Spain, Italy, Luxembourg, Netherlands, United Kingdom, Switzerland; Headquarters address not explicitly stated on the site."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Tomojo offers balanced recipes for dogs and cats based on insect protein (Hermetia Illucens) bred in certified facilities in France and Holland. Their products include:\n- Kit d'essai Cat Dog Subscription\n- Dog and cat kibble made in France with over 16 French-sourced ingredients\n- Subscription services with recurring deliveries and discounts\nThe insect-based food is sustainable, using 200 times less water than chicken, producing 7 times less CO2 than beef, and containing zero antibiotics. Packaging is recyclable, and delivery is available in multiple European countries."",""researcherNotes"":""Key executives and founders names and titles could not be located on the website or linked documents. Headquarters address is not explicitly stated."",""sectorDescription"":""Operates in the sustainable pet food sector, specializing in insect-protein based nutrition for dogs and cats."",""sources"":{""clientCategories"":""https://tomojo.co/en/pages/food"",""companyDescription"":""https://tomojo.co/en/pages/qui-sommes-nous"",""geographicFocus"":""https://tomojo.co/en/pages/contact"",""keyExecutives"":null,""productDescription"":""https://tomojo.co/en/pages/food""},""websiteURL"":""https://en.tomojo.co""}" -InspiraFarms,http://www.inspirafarms.com,"E3 Capital, KawiSafi Ventures, Pymwymic, Untapped",inspirafarms.com,https://www.linkedin.com/company/inspirafarms/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.inspirafarms.com"", - ""companyDescription"": ""InspiraFarms Cooling designs, develops, installs, services, and finances precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains in Africa and emerging markets. They serve agribusinesses, exporters, 3PL, and food distributors with solutions that cut energy costs, reduce food losses, and meet international food safety certifications. They focus on modular, energy-efficient cold rooms and packhouses tailored to the horticultural sector."", - ""productDescription"": ""InspiraFarms Cooling engineers and delivers precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains. Their products include: - Cold Rooms (modular, prefabricated facilities maintaining specific temperatures) - Pre-cooling solutions (forced-air reducing cooling times) - Packhouses (tailored modular facilities for perishable product processing) - Long-term storage (for bulky crops like potatoes, onions, apples, oranges) - Freezing Rooms (modular freezers down to -30°C) - Slaughterhouses (prefabricated modular facilities tailored to animal proteins)."", - ""clientCategories"": [""Agribusinesses"", ""Exporters"", ""Third-Party Logistics (3PL)"", ""Food Distributors""], - ""sectorDescription"": ""Operates in the cold chain technology sector, providing modular cooling solutions for fresh produce and animal protein supply chains in Africa and emerging markets."", - ""geographicFocus"": ""HQ: Enterprise Projects Ventures Limited, 3rd Floor, 86-90 Paul Street, London EC2A4NE, UK; Sales Focus: East Africa, Southern Africa, UK"", - ""keyExecutives"": [ - {""name"": ""Michele Bruni"", ""title"": ""Interim CEO and Co-founder"", ""sourceUrl"": ""https://www.inspirafarms.com/press-release-management-changes/""}, - {""name"": ""Tim Chambers"", ""title"": ""Co-founder and Former CEO"", ""sourceUrl"": ""https://www.inspirafarms.com/press-release-management-changes/""} - ], - ""linkedDocuments"": [""https://inspirafarms.com/brochure-download""], - ""researcherNotes"": ""Product brochures are available for download through a form; direct PDF links were not found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.inspirafarms.com/"", - ""productDescription"": ""https://www.inspirafarms.com/products/"", - ""clientCategories"": ""https://www.inspirafarms.com/"", - ""geographicFocus"": ""https://www.inspirafarms.com/contact/"", - ""keyExecutives"": ""https://www.inspirafarms.com/press-release-management-changes/"" - } -}","{ - ""websiteURL"": ""http://www.inspirafarms.com"", - ""companyDescription"": ""InspiraFarms Cooling designs, develops, installs, services, and finances precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains in Africa and emerging markets. They serve agribusinesses, exporters, 3PL, and food distributors with solutions that cut energy costs, reduce food losses, and meet international food safety certifications. They focus on modular, energy-efficient cold rooms and packhouses tailored to the horticultural sector."", - ""productDescription"": ""InspiraFarms Cooling engineers and delivers precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains. Their products include: - Cold Rooms (modular, prefabricated facilities maintaining specific temperatures) - Pre-cooling solutions (forced-air reducing cooling times) - Packhouses (tailored modular facilities for perishable product processing) - Long-term storage (for bulky crops like potatoes, onions, apples, oranges) - Freezing Rooms (modular freezers down to -30°C) - Slaughterhouses (prefabricated modular facilities tailored to animal proteins)."", - ""clientCategories"": [""Agribusinesses"", ""Exporters"", ""Third-Party Logistics (3PL)"", ""Food Distributors""], - ""sectorDescription"": ""Operates in the cold chain technology sector, providing modular cooling solutions for fresh produce and animal protein supply chains in Africa and emerging markets."", - ""geographicFocus"": ""HQ: Enterprise Projects Ventures Limited, 3rd Floor, 86-90 Paul Street, London EC2A4NE, UK; Sales Focus: East Africa, Southern Africa, UK"", - ""keyExecutives"": [ - {""name"": ""Michele Bruni"", ""title"": ""Interim CEO and Co-founder"", ""sourceUrl"": ""https://www.inspirafarms.com/press-release-management-changes/""}, - {""name"": ""Tim Chambers"", ""title"": ""Co-founder and Former CEO"", ""sourceUrl"": ""https://www.inspirafarms.com/press-release-management-changes/""} - ], - ""linkedDocuments"": [""https://inspirafarms.com/brochure-download""], - ""researcherNotes"": ""Product brochures are available for download through a form; direct PDF links were not found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.inspirafarms.com/"", - ""productDescription"": ""https://www.inspirafarms.com/products/"", - ""clientCategories"": ""https://www.inspirafarms.com/"", - ""geographicFocus"": ""https://www.inspirafarms.com/contact/"", - ""keyExecutives"": ""https://www.inspirafarms.com/press-release-management-changes/"" - } -}",[],"{ - ""websiteURL"": ""https://www.inspirafarms.com"", - ""companyDescription"": ""InspiraFarms Cooling designs, develops, installs, services, and finances precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains in Africa and emerging markets. They serve agribusinesses, exporters, 3PL, and food distributors with solutions that cut energy costs, reduce food losses, and meet international food safety certifications. They focus on modular, energy-efficient cold rooms and packhouses tailored to the horticultural sector."", - ""productDescription"": ""InspiraFarms Cooling engineers and delivers precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains. Their products include: - Cold Rooms (modular, prefabricated facilities maintaining specific temperatures) - Pre-cooling solutions (forced-air reducing cooling times) - Packhouses (tailored modular facilities for perishable product processing) - Long-term storage (for bulky crops like potatoes, onions, apples, oranges) - Freezing Rooms (modular freezers down to -30°C) - Slaughterhouses (prefabricated modular facilities tailored to animal proteins)."", - ""clientCategories"": [ - ""Agribusinesses"", - ""Exporters"", - ""Third-Party Logistics (3PL)"", - ""Food Distributors"" - ], - ""sectorDescription"": ""Operates in the cold chain technology sector, providing modular cooling solutions for fresh produce and animal protein supply chains in Africa and emerging markets."", - ""geographicFocus"": ""Primary focus: East Africa, Southern Africa, and the United Kingdom, with operations and deployments across 15 countries including Kenya, Zimbabwe, Benin, Rwanda, Ethiopia, Mozambique, Ghana, South Africa, Morocco, Mexico, and Colombia."", - ""keyExecutives"": [ - { - ""name"": ""Michele Bruni"", - ""title"": ""Interim CEO and Co-founder"", - ""sourceUrl"": ""https://www.inspirafarms.com/press-release-management-changes/"" - }, - { - ""name"": ""Tim Chambers"", - ""title"": ""Co-founder and Former CEO"", - ""sourceUrl"": ""https://www.inspirafarms.com/press-release-management-changes/"" - } - ], - ""researcherNotes"": ""The company is well-identified by its official domain and headquartered in London, UK, with a strong African operational footprint. The geographic focus has been expanded to include multiple African countries and some international markets based on a 2023 company profile and B Corp information. No senior leadership data was found on LinkedIn beyond the company website press release. The company brochure requires form submission for download; a direct PDF link was not found. All fields are complete with no significant missing information."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.inspirafarms.com/"", - ""productDescription"": ""https://www.inspirafarms.com/products/"", - ""clientCategories"": ""https://www.inspirafarms.com/"", - ""geographicFocus"": ""https://www.bcorporation.net/find-a-b-corp/company/inspirafarms/"", - ""keyExecutives"": ""https://www.inspirafarms.com/press-release-management-changes/"" - } -}","{""clientCategories"":[""Agribusinesses"",""Exporters"",""Third-Party Logistics (3PL)"",""Food Distributors""],""companyDescription"":""InspiraFarms Cooling designs, develops, installs, services, and finances precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains in Africa and emerging markets. They serve agribusinesses, exporters, 3PL, and food distributors with solutions that cut energy costs, reduce food losses, and meet international food safety certifications. They focus on modular, energy-efficient cold rooms and packhouses tailored to the horticultural sector."",""geographicFocus"":""Primary focus: East Africa, Southern Africa, and the United Kingdom, with operations and deployments across 15 countries including Kenya, Zimbabwe, Benin, Rwanda, Ethiopia, Mozambique, Ghana, South Africa, Morocco, Mexico, and Colombia."",""keyExecutives"":[{""name"":""Michele Bruni"",""sourceUrl"":""https://www.inspirafarms.com/press-release-management-changes/"",""title"":""Interim CEO and Co-founder""},{""name"":""Tim Chambers"",""sourceUrl"":""https://www.inspirafarms.com/press-release-management-changes/"",""title"":""Co-founder and Former CEO""}],""missingImportantFields"":[],""productDescription"":""InspiraFarms Cooling engineers and delivers precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains. Their products include: - Cold Rooms (modular, prefabricated facilities maintaining specific temperatures) - Pre-cooling solutions (forced-air reducing cooling times) - Packhouses (tailored modular facilities for perishable product processing) - Long-term storage (for bulky crops like potatoes, onions, apples, oranges) - Freezing Rooms (modular freezers down to -30°C) - Slaughterhouses (prefabricated modular facilities tailored to animal proteins)."",""researcherNotes"":""The company is well-identified by its official domain and headquartered in London, UK, with a strong African operational footprint. The geographic focus has been expanded to include multiple African countries and some international markets based on a 2023 company profile and B Corp information. No senior leadership data was found on LinkedIn beyond the company website press release. The company brochure requires form submission for download; a direct PDF link was not found. All fields are complete with no significant missing information."",""sectorDescription"":""Operates in the cold chain technology sector, providing modular cooling solutions for fresh produce and animal protein supply chains in Africa and emerging markets."",""sources"":{""clientCategories"":""https://www.inspirafarms.com/"",""companyDescription"":""https://www.inspirafarms.com/"",""geographicFocus"":""https://www.bcorporation.net/find-a-b-corp/company/inspirafarms/"",""keyExecutives"":""https://www.inspirafarms.com/press-release-management-changes/"",""productDescription"":""https://www.inspirafarms.com/products/""},""websiteURL"":""https://www.inspirafarms.com""}","Correctness: 98% Completeness: 95% - -The information about InspiraFarms Cooling is highly accurate and comprehensive. The company is confirmed to design, develop, install, service, and finance precooling and cold chain technology for fresh fruit, vegetables, flowers, and animal protein supply chains, primarily in Africa and emerging markets, serving agribusinesses, exporters, 3PL, and food distributors[1][2][3]. Their product range includes modular cold rooms, precooling units, freezers, packhouses, slaughterhouses, and long-term storage facilities tailored for various crops, consistent with the description[2][3][5]. Their geographic footprint spans 15+ countries, including Kenya, Zimbabwe, Benin, Rwanda, Ethiopia, Mozambique, Ghana, South Africa, Morocco, Mexico, and Colombia, with headquarters confirmed in London, UK[1][3][4]. Leadership details align with the listed key executives Michele Bruni (Interim CEO and Co-founder) and Tim Chambers (Co-founder, Former CEO), as per the company’s official press release page[4]. The company being a certified B Corp and a GLOBALG.A.P. associate member further confirms its market and operational positioning[1][4]. The only minor incompleteness is the absence of direct publicly accessible PDFs of company brochures (requiring form submissions) and no additional publicly disclosed recent funding beyond the €1m investment mentioned in 2023 from CEI Africa, KawiSafi, and Factor[E][5]. Overall, all core claims are current as of 2023-2025 and well-supported by official and authoritative company sources. - -Sources: -https://www.inspirafarms.com/ -https://www.bcorporation.net/find-a-b-corp/company/inspirafarms/ -https://www.inspirafarms.com/about/ -https://www.inspirafarms.com/press-release-management-changes/ -https://www.africaprivateequitynews.com/p/agribusiness-cooling-solutions-company","{""clientCategories"":[""Agribusinesses"",""Exporters"",""Third-Party Logistics (3PL)"",""Food Distributors""],""companyDescription"":""InspiraFarms Cooling designs, develops, installs, services, and finances precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains in Africa and emerging markets. They serve agribusinesses, exporters, 3PL, and food distributors with solutions that cut energy costs, reduce food losses, and meet international food safety certifications. They focus on modular, energy-efficient cold rooms and packhouses tailored to the horticultural sector."",""geographicFocus"":""HQ: Enterprise Projects Ventures Limited, 3rd Floor, 86-90 Paul Street, London EC2A4NE, UK; Sales Focus: East Africa, Southern Africa, UK"",""keyExecutives"":[{""name"":""Michele Bruni"",""sourceUrl"":""https://www.inspirafarms.com/press-release-management-changes/"",""title"":""Interim CEO and Co-founder""},{""name"":""Tim Chambers"",""sourceUrl"":""https://www.inspirafarms.com/press-release-management-changes/"",""title"":""Co-founder and Former CEO""}],""linkedDocuments"":[""https://inspirafarms.com/brochure-download""],""missingImportantFields"":[],""productDescription"":""InspiraFarms Cooling engineers and delivers precooling and cold chain technology for fresh fruit & vegetables, flowers, and animal protein supply chains. Their products include: - Cold Rooms (modular, prefabricated facilities maintaining specific temperatures) - Pre-cooling solutions (forced-air reducing cooling times) - Packhouses (tailored modular facilities for perishable product processing) - Long-term storage (for bulky crops like potatoes, onions, apples, oranges) - Freezing Rooms (modular freezers down to -30°C) - Slaughterhouses (prefabricated modular facilities tailored to animal proteins)."",""researcherNotes"":""Product brochures are available for download through a form; direct PDF links were not found on the website."",""sectorDescription"":""Operates in the cold chain technology sector, providing modular cooling solutions for fresh produce and animal protein supply chains in Africa and emerging markets."",""sources"":{""clientCategories"":""https://www.inspirafarms.com/"",""companyDescription"":""https://www.inspirafarms.com/"",""geographicFocus"":""https://www.inspirafarms.com/contact/"",""keyExecutives"":""https://www.inspirafarms.com/press-release-management-changes/"",""productDescription"":""https://www.inspirafarms.com/products/""},""websiteURL"":""http://www.inspirafarms.com""}" -E-Farm,https://e-farm.com/,"Amathaon Capital, byWiT, CLAAS",e-farm.com,https://www.linkedin.com/company/e-farmcom,"{""seniorLeadership"":[{""name"":""Dr. Nicolas Lohr"",""title"":""Founder & CEO"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""M. J."",""title"":""Chief Commercial Officer"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""K. W."",""title"":""Co-Founder & Advisor"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""Curley Fiedler"",""title"":""Head of People & Culture"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""F. P."",""title"":""Head of Sales"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""C. B."",""title"":""VP Product & Engineering"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""I. P."",""title"":""Country Manager"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""J. Z. S."",""title"":""Senior Sales Manager"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""}]}","{""seniorLeadership"":[{""name"":""Dr. Nicolas Lohr"",""title"":""Founder & CEO"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""M. J."",""title"":""Chief Commercial Officer"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""K. W."",""title"":""Co-Founder & Advisor"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""Curley Fiedler"",""title"":""Head of People & Culture"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""F. P."",""title"":""Head of Sales"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""C. B."",""title"":""VP Product & Engineering"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""I. P."",""title"":""Country Manager"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""},{""name"":""J. Z. S."",""title"":""Senior Sales Manager"",""profileUrl"":""https://www.linkedin.com/company/e-farmcom""}]}","{ - ""websiteURL"": ""https://e-farm.com/"", - ""companyDescription"": ""E-FARM is an online platform established in 2015 that offers access to Europe's largest selection of used agricultural machinery, providing services such as machine inspection, transport, and registration support. Their mission includes combining personal support from local dealers with the wide selection and competitive pricing of an online platform."", - ""productDescription"": ""Used farm machinery including tractors, combine harvesters, balers, telehandlers, ploughs, and mowers. Services include machine inspection, transport, document checks, and trade-in of old machines. E-FARM offers detailed machinery data, history, condition, photos, and videos for each machine. Auctions are held for bidding with minimum prices and bid intervals. After winning, sales representatives finalize payment and arrange worldwide transport."", - ""clientCategories"": [""Farmers"", ""Agricultural machinery buyers""], - ""sectorDescription"": ""Operates in the agricultural machinery e-commerce sector, providing online access to Europe's largest selection of used farm machinery with additional services like inspection and transport."", - ""geographicFocus"": ""HQ: Kleine Reichenstrasse 1, 20457 Hamburg, Germany; Sales Focus: Europe with dedicated market experts for Hungary, Denmark, Germany/Austria/Switzerland, Spain, and Latin America."", - ""keyExecutives"": [ - {""name"": ""Dr. Nicolas Lohr"", ""title"": ""Managing Director"", ""sourceUrl"": ""https://e-farm.com/en/imprint/""}, - {""name"": ""Franz von Consbruch"", ""title"": ""Managing Director"", ""sourceUrl"": ""https://e-farm.com/en/imprint/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable documents such as PDFs or DOCX files were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://e-farm.com/en/"", - ""productDescription"": ""https://e-farm.com/en/auctions/"", - ""clientCategories"": ""https://e-farm.com/en/"", - ""geographicFocus"": ""https://e-farm.com/en/imprint/"", - ""keyExecutives"": ""https://e-farm.com/en/imprint/"" - } -}","{ - ""websiteURL"": ""https://e-farm.com/"", - ""companyDescription"": ""E-FARM is an online platform established in 2015 that offers access to Europe's largest selection of used agricultural machinery, providing services such as machine inspection, transport, and registration support. Their mission includes combining personal support from local dealers with the wide selection and competitive pricing of an online platform."", - ""productDescription"": ""Used farm machinery including tractors, combine harvesters, balers, telehandlers, ploughs, and mowers. Services include machine inspection, transport, document checks, and trade-in of old machines. E-FARM offers detailed machinery data, history, condition, photos, and videos for each machine. Auctions are held for bidding with minimum prices and bid intervals. After winning, sales representatives finalize payment and arrange worldwide transport."", - ""clientCategories"": [""Farmers"", ""Agricultural machinery buyers""], - ""sectorDescription"": ""Operates in the agricultural machinery e-commerce sector, providing online access to Europe's largest selection of used farm machinery with additional services like inspection and transport."", - ""geographicFocus"": ""HQ: Kleine Reichenstrasse 1, 20457 Hamburg, Germany; Sales Focus: Europe with dedicated market experts for Hungary, Denmark, Germany/Austria/Switzerland, Spain, and Latin America."", - ""keyExecutives"": [ - {""name"": ""Dr. Nicolas Lohr"", ""title"": ""Managing Director"", ""sourceUrl"": ""https://e-farm.com/en/imprint/""}, - {""name"": ""Franz von Consbruch"", ""title"": ""Managing Director"", ""sourceUrl"": ""https://e-farm.com/en/imprint/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable documents such as PDFs or DOCX files were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://e-farm.com/en/"", - ""productDescription"": ""https://e-farm.com/en/auctions/"", - ""clientCategories"": ""https://e-farm.com/en/"", - ""geographicFocus"": ""https://e-farm.com/en/imprint/"", - ""keyExecutives"": ""https://e-farm.com/en/imprint/"" - } -}",[],"{ - ""websiteURL"": ""https://e-farm.com"", - ""companyDescription"": ""E-FARM is an online platform established in 2015 that provides access to Europe's largest selection of used agricultural machinery. It combines personal support from local dealers with competitive pricing and a wide selection online. The company offers comprehensive services such as machine inspection, transport, and registration support, catering primarily to farmers and agricultural machinery buyers."", - ""productDescription"": ""E-FARM offers a broad range of used farm machinery including tractors, combine harvesters, balers, telehandlers, ploughs, and mowers. The platform provides detailed machinery data, history, and condition along with photos and videos. It facilitates auctions with minimum prices and bid intervals. Post-auction, sales representatives assist with payment finalization and arrange worldwide transport. Additional services include machine inspections by independent providers, transport, document checks, and trade-in options."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Machinery Buyers"" - ], - ""sectorDescription"": ""Operates in the agricultural machinery e-commerce sector, providing online access to Europe's largest selection of used farm machinery combined with inspection and transport services."", - ""geographicFocus"": ""Headquartered in Hamburg, Germany, with sales focus across Europe including dedicated market experts for Hungary, Denmark, Germany/Austria/Switzerland, Spain, and Latin America."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Nicolas Lohr"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://e-farm.com/en/imprint/"" - }, - { - ""name"": ""Franz von Consbruch"", - ""title"": ""Managing Director"", - ""sourceUrl"": ""https://e-farm.com/en/imprint/"" - }, - { - ""name"": ""M. J."", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - }, - { - ""name"": ""K. W."", - ""title"": ""Co-Founder & Advisor"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - }, - { - ""name"": ""Curley Fiedler"", - ""title"": ""Head of People & Culture"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - }, - { - ""name"": ""F. P."", - ""title"": ""Head of Sales"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - }, - { - ""name"": ""C. B."", - ""title"": ""VP Product & Engineering"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - }, - { - ""name"": ""I. P."", - ""title"": ""Country Manager"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - }, - { - ""name"": ""J. Z. S."", - ""title"": ""Senior Sales Manager"", - ""sourceUrl"": ""https://www.linkedin.com/company/e-farmcom"" - } - ], - ""researcherNotes"": ""The company is definitively identified by domain (e-farm.com), HQ location in Hamburg, Germany, and founding year 2015. Key executives title data matched and complemented from the company imprint and LinkedIn org page. Title discrepancies noted for Dr. Nicolas Lohr, who is listed as Managing Director on the website imprint but as Founder & CEO on LinkedIn; the LinkedIn title was preferred for founder status. Geographic focus is detailed on the company site. No PDFs or other documents found on the website. The additional executives from LinkedIn expand the leadership team beyond the two MDs listed on the website imprint."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://e-farm.com/en/"", - ""productDescription"": ""https://e-farm.com/en/auctions/"", - ""clientCategories"": ""https://e-farm.com/en/"", - ""geographicFocus"": ""https://e-farm.com/en/imprint/"", - ""keyExecutives"": ""https://e-farm.com/en/imprint/"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Machinery Buyers""],""companyDescription"":""E-FARM is an online platform established in 2015 that provides access to Europe's largest selection of used agricultural machinery. It combines personal support from local dealers with competitive pricing and a wide selection online. The company offers comprehensive services such as machine inspection, transport, and registration support, catering primarily to farmers and agricultural machinery buyers."",""geographicFocus"":""Headquartered in Hamburg, Germany, with sales focus across Europe including dedicated market experts for Hungary, Denmark, Germany/Austria/Switzerland, Spain, and Latin America."",""keyExecutives"":[{""name"":""Dr. Nicolas Lohr"",""sourceUrl"":""https://e-farm.com/en/imprint/"",""title"":""Founder & CEO""},{""name"":""Franz von Consbruch"",""sourceUrl"":""https://e-farm.com/en/imprint/"",""title"":""Managing Director""},{""name"":""M. J."",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""Chief Commercial Officer""},{""name"":""K. W."",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""Co-Founder & Advisor""},{""name"":""Curley Fiedler"",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""Head of People & Culture""},{""name"":""F. P."",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""Head of Sales""},{""name"":""C. B."",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""VP Product & Engineering""},{""name"":""I. P."",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""Country Manager""},{""name"":""J. Z. S."",""sourceUrl"":""https://www.linkedin.com/company/e-farmcom"",""title"":""Senior Sales Manager""}],""missingImportantFields"":[],""productDescription"":""E-FARM offers a broad range of used farm machinery including tractors, combine harvesters, balers, telehandlers, ploughs, and mowers. The platform provides detailed machinery data, history, and condition along with photos and videos. It facilitates auctions with minimum prices and bid intervals. Post-auction, sales representatives assist with payment finalization and arrange worldwide transport. Additional services include machine inspections by independent providers, transport, document checks, and trade-in options."",""researcherNotes"":""The company is definitively identified by domain (e-farm.com), HQ location in Hamburg, Germany, and founding year 2015. Key executives title data matched and complemented from the company imprint and LinkedIn org page. Title discrepancies noted for Dr. Nicolas Lohr, who is listed as Managing Director on the website imprint but as Founder & CEO on LinkedIn; the LinkedIn title was preferred for founder status. Geographic focus is detailed on the company site. No PDFs or other documents found on the website. The additional executives from LinkedIn expand the leadership team beyond the two MDs listed on the website imprint."",""sectorDescription"":""Operates in the agricultural machinery e-commerce sector, providing online access to Europe's largest selection of used farm machinery combined with inspection and transport services."",""sources"":{""clientCategories"":""https://e-farm.com/en/"",""companyDescription"":""https://e-farm.com/en/"",""geographicFocus"":""https://e-farm.com/en/imprint/"",""keyExecutives"":""https://e-farm.com/en/imprint/"",""productDescription"":""https://e-farm.com/en/auctions/""},""websiteURL"":""https://e-farm.com""}","Correctness: 98% Completeness: 90% The core facts about E-FARM align closely with multiple authoritative sources: it was founded in early 2015 in Hamburg, Germany by Dr. Nicolas Lohr and Franz von Consbruch (with Lohr commonly referenced as CEO and founder and Consbruch as Managing Director/co-founder)[1][2][4]. The company is a leading European online platform for used agricultural machinery with a broad range of products, partnering with over 850 dealers and serving customers in 40+ countries[2]. The geographic focus includes Hamburg HQ with European and some Latin American markets[1][2]. Leadership details come primarily from E-FARM’s official imprint and LinkedIn, resolving the title discrepancy by preferring Lohr as Founder & CEO per LinkedIn and imprint confirmation[1][2]. Services include auctions, detailed machinery data, transport, inspections, and trade-in options[2]. The main minor incompleteness is the lack of explicit mention of recent funding rounds (such as Series A) and additional executive details beyond the main two MDs, though these are partially available from linked third-party profiles[3][4]. Overall, the statement is well-supported by company-controlled sources and credible profiles, with up-to-date leadership, location, offerings, and historical context well covered. https://e-farm.com/en/about-us/, https://startupcity.hamburg/news-events/stories/e-farm-makes-hamburg-a-gateway-to-the-world-of-agricultural-machinery, https://agfundernews.com/the-rise-of-the-reused-machines-germanys-e-farm-raises-5-3m-series-a, https://app.dealroom.co/companies/efarm_gmbh_amp_co_kg","{""clientCategories"":[""Farmers"",""Agricultural machinery buyers""],""companyDescription"":""E-FARM is an online platform established in 2015 that offers access to Europe's largest selection of used agricultural machinery, providing services such as machine inspection, transport, and registration support. Their mission includes combining personal support from local dealers with the wide selection and competitive pricing of an online platform."",""geographicFocus"":""HQ: Kleine Reichenstrasse 1, 20457 Hamburg, Germany; Sales Focus: Europe with dedicated market experts for Hungary, Denmark, Germany/Austria/Switzerland, Spain, and Latin America."",""keyExecutives"":[{""name"":""Dr. Nicolas Lohr"",""sourceUrl"":""https://e-farm.com/en/imprint/"",""title"":""Managing Director""},{""name"":""Franz von Consbruch"",""sourceUrl"":""https://e-farm.com/en/imprint/"",""title"":""Managing Director""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Used farm machinery including tractors, combine harvesters, balers, telehandlers, ploughs, and mowers. Services include machine inspection, transport, document checks, and trade-in of old machines. E-FARM offers detailed machinery data, history, condition, photos, and videos for each machine. Auctions are held for bidding with minimum prices and bid intervals. After winning, sales representatives finalize payment and arrange worldwide transport."",""researcherNotes"":""No downloadable documents such as PDFs or DOCX files were found on the website."",""sectorDescription"":""Operates in the agricultural machinery e-commerce sector, providing online access to Europe's largest selection of used farm machinery with additional services like inspection and transport."",""sources"":{""clientCategories"":""https://e-farm.com/en/"",""companyDescription"":""https://e-farm.com/en/"",""geographicFocus"":""https://e-farm.com/en/imprint/"",""keyExecutives"":""https://e-farm.com/en/imprint/"",""productDescription"":""https://e-farm.com/en/auctions/""},""websiteURL"":""https://e-farm.com/""}" -ONNA Farming,https://www.weareonna.no/,"Altitude Capital Partners, HÃ¥kon Sæther, StÃ¥le Kyllingstad",weareonna.no,https://www.linkedin.com/company/onna-greens,"{""seniorLeadership"":[{""name"":""Kristina Løfman"",""title"":""Co-Founder & Board Member"",""profileURL"":""https://www.linkedin.com/in/kristina-l%C3%B8fman-4505936a""},{""name"":""Reinier Wolterbeek"",""title"":""Chief Product Officer"",""profileURL"":""https://www.linkedin.com/in/reinier-wolterbeek-59b19b13""},{""name"":""Olga Popovic"",""title"":""Head of Agronomy"",""profileURL"":""https://www.linkedin.com/in/olga-popovic-27196b65""}]}","{""seniorLeadership"":[{""name"":""Kristina Løfman"",""title"":""Co-Founder & Board Member"",""profileURL"":""https://www.linkedin.com/in/kristina-l%C3%B8fman-4505936a""},{""name"":""Reinier Wolterbeek"",""title"":""Chief Product Officer"",""profileURL"":""https://www.linkedin.com/in/reinier-wolterbeek-59b19b13""},{""name"":""Olga Popovic"",""title"":""Head of Agronomy"",""profileURL"":""https://www.linkedin.com/in/olga-popovic-27196b65""}]}","{ - ""websiteURL"": ""https://www.weareonna.no/"", - ""companyDescription"": ""ONNA Greens AS cultivates naturally ready-to-eat salads year-round in a high-tech, vertically stacked indoor facility in Moss, Norway. Their salads grow hydroponically (in nutrient-enriched water, without soil or pesticides) in a completely closed 'clean room' environment, allowing precise control over temperature, light, CO2, humidity, and nutrients. This method produces fresh, natural, pesticide-free, and long-lasting salads that require no washing. They grow 10 stories high to optimize space and reduce transportation distances, ensuring fresher products for consumers. The company grows a variety of unique salad types such as Big Butter and Baby Butter. ONNA Greens aims to elevate green food on the plate by providing fresh, natural, local, and pesticide-free salads year-round. They emphasize sustainability through efficient vertical farming and aim to deliver fresh, delicious, and convenient salad products that are naturally ready to eat."", - ""productDescription"": ""The company offers fresh salad-based products such as salads growing hydroponically including varieties like Big Butter and Baby Butter; and prepared food offerings featured in their recipes section include Baby Butter Bites (small lettuce heads with pomegranate and pine nuts), Pastasalat med pesto (pasta salad with baked squash, pistachios, parmesan, and pesto dressing), Falafelwrap (wrap with falafel, hummus, feta, roasted paprika, and avocado with lemon vinaigrette), Sommerruller med kylling (fresh summer rolls with chicken and peanut sauce), Cæsarwrap (Caesar wrap with chicken thighs, bacon, tomato, parmesan), and Halloumi bowl (bowl with halloumi cheese, chickpeas, squash, couscous and lemon-honey dressing)."", - ""clientCategories"": [""Wholesalers"", ""Cafes"", ""Restaurants"", ""Retailers""], - ""sectorDescription"": ""Operates in the agricultural sector specializing in vertical indoor hydroponic farming of fresh produce, specifically salad greens."", - ""geographicFocus"": ""HQ: Vanemveien 25, 1599 Moss, Norway; Sales Focus: Oslo area and surrounding regions via wholesalers."", - ""keyExecutives"": [ - { - ""name"": ""Kristina Løfman"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://thehub.io/startups/onna-greens-as"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable linked documents such as PDFs were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weareonna.no/"", - ""productDescription"": ""https://www.weareonna.no/oppskrifter"", - ""clientCategories"": ""https://www.weareonna.no/bedriftskunde"", - ""geographicFocus"": ""https://www.weareonna.no/"", - ""keyExecutives"": ""https://thehub.io/startups/onna-greens-as"" - } -}","{ - ""websiteURL"": ""https://www.weareonna.no/"", - ""companyDescription"": ""ONNA Greens AS cultivates naturally ready-to-eat salads year-round in a high-tech, vertically stacked indoor facility in Moss, Norway. Their salads grow hydroponically (in nutrient-enriched water, without soil or pesticides) in a completely closed 'clean room' environment, allowing precise control over temperature, light, CO2, humidity, and nutrients. This method produces fresh, natural, pesticide-free, and long-lasting salads that require no washing. They grow 10 stories high to optimize space and reduce transportation distances, ensuring fresher products for consumers. The company grows a variety of unique salad types such as Big Butter and Baby Butter. ONNA Greens aims to elevate green food on the plate by providing fresh, natural, local, and pesticide-free salads year-round. They emphasize sustainability through efficient vertical farming and aim to deliver fresh, delicious, and convenient salad products that are naturally ready to eat."", - ""productDescription"": ""The company offers fresh salad-based products such as salads growing hydroponically including varieties like Big Butter and Baby Butter; and prepared food offerings featured in their recipes section include Baby Butter Bites (small lettuce heads with pomegranate and pine nuts), Pastasalat med pesto (pasta salad with baked squash, pistachios, parmesan, and pesto dressing), Falafelwrap (wrap with falafel, hummus, feta, roasted paprika, and avocado with lemon vinaigrette), Sommerruller med kylling (fresh summer rolls with chicken and peanut sauce), Cæsarwrap (Caesar wrap with chicken thighs, bacon, tomato, parmesan), and Halloumi bowl (bowl with halloumi cheese, chickpeas, squash, couscous and lemon-honey dressing)."", - ""clientCategories"": [""Wholesalers"", ""Cafes"", ""Restaurants"", ""Retailers""], - ""sectorDescription"": ""Operates in the agricultural sector specializing in vertical indoor hydroponic farming of fresh produce, specifically salad greens."", - ""geographicFocus"": ""HQ: Vanemveien 25, 1599 Moss, Norway; Sales Focus: Oslo area and surrounding regions via wholesalers."", - ""keyExecutives"": [ - { - ""name"": ""Kristina Løfman"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://thehub.io/startups/onna-greens-as"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No downloadable linked documents such as PDFs were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weareonna.no/"", - ""productDescription"": ""https://www.weareonna.no/oppskrifter"", - ""clientCategories"": ""https://www.weareonna.no/bedriftskunde"", - ""geographicFocus"": ""https://www.weareonna.no/"", - ""keyExecutives"": ""https://thehub.io/startups/onna-greens-as"" - } -}",[],"{ - ""websiteURL"": ""https://www.weareonna.no/"", - ""companyDescription"": ""ONNA Greens AS cultivates naturally ready-to-eat salads year-round in a high-tech, vertically stacked indoor facility in Moss, Norway. Their hydroponic method grows salads without soil or pesticides in a fully controlled clean room environment, optimizing temperature, light, CO2, humidity, and nutrients. This process produces fresh, natural, pesticide-free salads with extended shelf life that require no washing. The company focuses on sustainability through efficient vertical farming, reducing land use and transportation distances, targeting wholesalers, cafes, restaurants, and retailers primarily in the Oslo region."", - ""productDescription"": ""ONNA Greens AS offers fresh salad products grown hydroponically, including unique varieties like Big Butter and Baby Butter. They also provide prepared food items such as Baby Butter Bites, Pastasalat med pesto, Falafelwrap, Sommerruller med kylling, Cæsarwrap, and Halloumi bowl. Their products are pesticide-free, naturally clean, and ready to eat, emphasizing freshness, convenience, and sustainability."", - ""clientCategories"": [""Wholesalers"", ""Cafes"", ""Restaurants"", ""Retailers""], - ""sectorDescription"": ""Agricultural technology company specializing in vertical indoor hydroponic farming of fresh salad greens, focusing on sustainable food production."", - ""geographicFocus"": ""Headquartered in Moss, Norway, ONNA Greens serves primarily the Oslo area and surrounding regions via wholesalers."", - ""keyExecutives"": [ - { - ""name"": ""Kristina Løfman"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://thehub.io/startups/onna-greens-as"" - }, - { - ""name"": ""Reinier Wolterbeek"", - ""title"": ""Chief Product Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/reinier-wolterbeek-59b19b13"" - }, - { - ""name"": ""Olga Popovic"", - ""title"": ""Head of Agronomy"", - ""sourceUrl"": ""https://www.linkedin.com/in/olga-popovic-27196b65"" - } - ], - ""researcherNotes"": ""The company entity was verified based on the primary domain matching the official website, HQ address in Moss, Norway, and product specialization in hydroponic salad farming. Titles for key executives were supplemented from LinkedIn data with consistent senior leadership roles. The geographic focus is confirmed to be Oslo region-based sales with HQ in Moss. No regulatory filings were accessible, but other credible sources corroborate the description and product details. Some executive titles differ slightly between sources but were chosen for current relevance."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weareonna.no/"", - ""productDescription"": ""https://www.weareonna.no/oppskrifter"", - ""clientCategories"": ""https://www.weareonna.no/bedriftskunde"", - ""geographicFocus"": ""https://www.weareonna.no/"", - ""keyExecutives"": ""https://thehub.io/startups/onna-greens-as"" - } -}","{""clientCategories"":[""Wholesalers"",""Cafes"",""Restaurants"",""Retailers""],""companyDescription"":""ONNA Greens AS cultivates naturally ready-to-eat salads year-round in a high-tech, vertically stacked indoor facility in Moss, Norway. Their hydroponic method grows salads without soil or pesticides in a fully controlled clean room environment, optimizing temperature, light, CO2, humidity, and nutrients. This process produces fresh, natural, pesticide-free salads with extended shelf life that require no washing. The company focuses on sustainability through efficient vertical farming, reducing land use and transportation distances, targeting wholesalers, cafes, restaurants, and retailers primarily in the Oslo region."",""geographicFocus"":""Headquartered in Moss, Norway, ONNA Greens serves primarily the Oslo area and surrounding regions via wholesalers."",""keyExecutives"":[{""name"":""Kristina Løfman"",""sourceUrl"":""https://thehub.io/startups/onna-greens-as"",""title"":""Founder and CEO""},{""name"":""Reinier Wolterbeek"",""sourceUrl"":""https://www.linkedin.com/in/reinier-wolterbeek-59b19b13"",""title"":""Chief Product Officer""},{""name"":""Olga Popovic"",""sourceUrl"":""https://www.linkedin.com/in/olga-popovic-27196b65"",""title"":""Head of Agronomy""}],""missingImportantFields"":[],""productDescription"":""ONNA Greens AS offers fresh salad products grown hydroponically, including unique varieties like Big Butter and Baby Butter. They also provide prepared food items such as Baby Butter Bites, Pastasalat med pesto, Falafelwrap, Sommerruller med kylling, Cæsarwrap, and Halloumi bowl. Their products are pesticide-free, naturally clean, and ready to eat, emphasizing freshness, convenience, and sustainability."",""researcherNotes"":""The company entity was verified based on the primary domain matching the official website, HQ address in Moss, Norway, and product specialization in hydroponic salad farming. Titles for key executives were supplemented from LinkedIn data with consistent senior leadership roles. The geographic focus is confirmed to be Oslo region-based sales with HQ in Moss. No regulatory filings were accessible, but other credible sources corroborate the description and product details. Some executive titles differ slightly between sources but were chosen for current relevance."",""sectorDescription"":""Agricultural technology company specializing in vertical indoor hydroponic farming of fresh salad greens, focusing on sustainable food production."",""sources"":{""clientCategories"":""https://www.weareonna.no/bedriftskunde"",""companyDescription"":""https://www.weareonna.no/"",""geographicFocus"":""https://www.weareonna.no/"",""keyExecutives"":""https://thehub.io/startups/onna-greens-as"",""productDescription"":""https://www.weareonna.no/oppskrifter""},""websiteURL"":""https://www.weareonna.no/""}","Correctness: 98% Completeness: 90% The factual information about ONNA Greens AS is largely correct and well-supported by multiple independent and official sources. The company's focus on vertical indoor hydroponic farming of pesticide-free, ready-to-eat salads grown in a fully controlled environment in Moss, Norway, is confirmed in their official site and recruitment pages emphasizing sustainability, indoor farming technology, and the goal to serve primarily Oslo-area wholesalers, cafes, restaurants, and retailers[1][4][5]. Key executives’ roles such as Founder/CEO Kristina Løfman and Chief Product Officer Reinier Wolterbeek are consistent with LinkedIn and startup profiles[1][2]. Product details including unique salad varieties and prepared foods align well with the company’s offerings on their website[1][4]. The focus on sustainability, vertical stacking to reduce land use, and extended shelf life with no washing requirement are detailed in investor presentations and official job postings[1][2][4]. The company’s geographic focus on Laos region and Moss HQ is consistent with sources[4]. Completeness is slightly reduced due to the absence of regulatory filings or third-party business registries publicly confirming all leadership titles and recent funding updates, and minor title variations noted in sources. However, these omissions do not materially affect the core accuracy of the company description, product portfolio, executive leadership, and operational model. The information reflects the company as of late 2023 to mid-2025[1][2][4][5]. URLs: https://thehub.io/startups/onna-greens-as, https://www.weareonna.no/, https://onnagreens.teamtailor.com, https://pensumgroup.no/wp-content/uploads/2023/11/Onna_Investorpresentation_10082020_final.pdf","{""clientCategories"":[""Wholesalers"",""Cafes"",""Restaurants"",""Retailers""],""companyDescription"":""ONNA Greens AS cultivates naturally ready-to-eat salads year-round in a high-tech, vertically stacked indoor facility in Moss, Norway. Their salads grow hydroponically (in nutrient-enriched water, without soil or pesticides) in a completely closed 'clean room' environment, allowing precise control over temperature, light, CO2, humidity, and nutrients. This method produces fresh, natural, pesticide-free, and long-lasting salads that require no washing. They grow 10 stories high to optimize space and reduce transportation distances, ensuring fresher products for consumers. The company grows a variety of unique salad types such as Big Butter and Baby Butter. ONNA Greens aims to elevate green food on the plate by providing fresh, natural, local, and pesticide-free salads year-round. They emphasize sustainability through efficient vertical farming and aim to deliver fresh, delicious, and convenient salad products that are naturally ready to eat."",""geographicFocus"":""HQ: Vanemveien 25, 1599 Moss, Norway; Sales Focus: Oslo area and surrounding regions via wholesalers."",""keyExecutives"":[{""name"":""Kristina Løfman"",""sourceUrl"":""https://thehub.io/startups/onna-greens-as"",""title"":""Founder and CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""The company offers fresh salad-based products such as salads growing hydroponically including varieties like Big Butter and Baby Butter; and prepared food offerings featured in their recipes section include Baby Butter Bites (small lettuce heads with pomegranate and pine nuts), Pastasalat med pesto (pasta salad with baked squash, pistachios, parmesan, and pesto dressing), Falafelwrap (wrap with falafel, hummus, feta, roasted paprika, and avocado with lemon vinaigrette), Sommerruller med kylling (fresh summer rolls with chicken and peanut sauce), Cæsarwrap (Caesar wrap with chicken thighs, bacon, tomato, parmesan), and Halloumi bowl (bowl with halloumi cheese, chickpeas, squash, couscous and lemon-honey dressing)."",""researcherNotes"":""No downloadable linked documents such as PDFs were found on the website."",""sectorDescription"":""Operates in the agricultural sector specializing in vertical indoor hydroponic farming of fresh produce, specifically salad greens."",""sources"":{""clientCategories"":""https://www.weareonna.no/bedriftskunde"",""companyDescription"":""https://www.weareonna.no/"",""geographicFocus"":""https://www.weareonna.no/"",""keyExecutives"":""https://thehub.io/startups/onna-greens-as"",""productDescription"":""https://www.weareonna.no/oppskrifter""},""websiteURL"":""https://www.weareonna.no/""}" -OptoScale,https://optoscale.no/,"Skagerak Maturo, Swen Capital Partners",optoscale.no,https://www.linkedin.com/company/optoscale,"{""seniorLeadership"":[{""name"":""Sven Kolstø"",""title"":""CEO"",""profileUrl"":""https://www.linkedin.com/in/svenkolsto""},{""name"":""Maren Flasnes"",""title"":""CFO"",""profileUrl"":""https://www.linkedin.com/in/maren-flasnes-5bb48712""},{""name"":""Ragnhild Skjetne Hollup"",""title"":""Chief Technology Officer"",""profileUrl"":""https://www.linkedin.com/in/ragnhild-skjetne-hollup-2185a01a""}]}","{""seniorLeadership"":[{""name"":""Sven Kolstø"",""title"":""CEO"",""profileUrl"":""https://www.linkedin.com/in/svenkolsto""},{""name"":""Maren Flasnes"",""title"":""CFO"",""profileUrl"":""https://www.linkedin.com/in/maren-flasnes-5bb48712""},{""name"":""Ragnhild Skjetne Hollup"",""title"":""Chief Technology Officer"",""profileUrl"":""https://www.linkedin.com/in/ragnhild-skjetne-hollup-2185a01a""}]}","{ - ""websiteURL"": ""https://optoscale.no/"", - ""companyDescription"": ""OptoScale provides real-time monitoring solutions for fish farming, focusing on fish growth, welfare, and environmental impact. Their technology enables tracking fish weight, lice infestation, health, and feeding without manual handling, aiming to improve fish welfare, reduce environmental footprint, and enhance quality. They offer four integrated modules accessible via mobile, tablet, or PC, providing data such as average weight, K-factor, size distribution, lice counts, welfare visual inspections, and precise feeding information to support decision-making. The company's mission includes producing salmon with lower environmental impact, better fish welfare, and improved quality."", - ""productDescription"": ""OptoScale's core products focus on sensor and AI technology for fish farming management, particularly for salmon and rainbow trout. Their primary offerings include:\n- Vektmodulen: precise data on fish weight, K-factor, size distribution, and growth\n- Velferdsmodulen: fish welfare monitoring with trends, graphs, and images\n- Luslusemodulen: automated daily lice counting by stage and type\n- Smolt monitoring system: real-time camera-based insights on smolt growth, weight variation, and health without manual sampling\nThe system integrates these modules into a web portal providing real-time data support for feeding optimization, biomass control, welfare decision-making, and slaughter timing to maximize profit."", - ""clientCategories"": [""Aquaculture companies"", ""Salmon and rainbow trout fish farmers"", ""Fish health experts""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-powered sensor solutions for fish monitoring, welfare, and feeding optimization."", - ""geographicFocus"": ""HQ: Peder Falcks veg 6, 7044 Trondheim, Norway; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Sven J. Kolstø"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Ragnhild Skjetne Hollup"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Vidar Wikmark"", - ""title"": ""Operations Director"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Kristian Henriksen"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No geographic sales regions or specific client region data found on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://optoscale.no/om"", - ""productDescription"": ""https://optoscale.no/vekt"", - ""clientCategories"": ""https://optoscale.no/"", - ""geographicFocus"": ""https://optoscale.no/kontakt/"", - ""keyExecutives"": ""https://optoscale.no/ansatte/"" - } -}","{ - ""websiteURL"": ""https://optoscale.no/"", - ""companyDescription"": ""OptoScale provides real-time monitoring solutions for fish farming, focusing on fish growth, welfare, and environmental impact. Their technology enables tracking fish weight, lice infestation, health, and feeding without manual handling, aiming to improve fish welfare, reduce environmental footprint, and enhance quality. They offer four integrated modules accessible via mobile, tablet, or PC, providing data such as average weight, K-factor, size distribution, lice counts, welfare visual inspections, and precise feeding information to support decision-making. The company's mission includes producing salmon with lower environmental impact, better fish welfare, and improved quality."", - ""productDescription"": ""OptoScale's core products focus on sensor and AI technology for fish farming management, particularly for salmon and rainbow trout. Their primary offerings include:\n- Vektmodulen: precise data on fish weight, K-factor, size distribution, and growth\n- Velferdsmodulen: fish welfare monitoring with trends, graphs, and images\n- Luslusemodulen: automated daily lice counting by stage and type\n- Smolt monitoring system: real-time camera-based insights on smolt growth, weight variation, and health without manual sampling\nThe system integrates these modules into a web portal providing real-time data support for feeding optimization, biomass control, welfare decision-making, and slaughter timing to maximize profit."", - ""clientCategories"": [""Aquaculture companies"", ""Salmon and rainbow trout fish farmers"", ""Fish health experts""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-powered sensor solutions for fish monitoring, welfare, and feeding optimization."", - ""geographicFocus"": ""HQ: Peder Falcks veg 6, 7044 Trondheim, Norway; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Sven J. Kolstø"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Ragnhild Skjetne Hollup"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Vidar Wikmark"", - ""title"": ""Operations Director"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Kristian Henriksen"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No geographic sales regions or specific client region data found on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://optoscale.no/om"", - ""productDescription"": ""https://optoscale.no/vekt"", - ""clientCategories"": ""https://optoscale.no/"", - ""geographicFocus"": ""https://optoscale.no/kontakt/"", - ""keyExecutives"": ""https://optoscale.no/ansatte/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://optoscale.no"", - ""companyDescription"": ""OptoScale provides real-time monitoring solutions for fish farming, specializing in fish growth, welfare, and environmental impact. Utilizing advanced AI-powered sensor and camera technology, OptoScale delivers accurate data on fish weight, lice infestation, health, and feeding without manual handling. Their mission is to improve fish welfare, reduce environmental footprint, and enhance product quality by supporting aquaculture companies, particularly those farming salmon and rainbow trout, with precise and actionable insights."", - ""productDescription"": ""OptoScale's core offerings include AI-powered sensor and camera systems integrated into four main modules: Vektmodulen (weight, K-factor, size distribution, growth), Velferdsmodulen (welfare monitoring with trends and images), Luslusemodulen (automated lice counting by stage and type), and a smolt monitoring system providing real-time insights on smolt growth and health. These modules feed data into a web portal accessible via mobile, tablet, or PC, enabling optimized feeding, biomass control, welfare decisions, and slaughter timing."", - ""clientCategories"": [ - ""Aquaculture Companies"", - ""Salmon and Rainbow Trout Fish Farmers"", - ""Fish Health Experts"" - ], - ""sectorDescription"": ""Aquaculture technology sector specializing in AI-powered sensor solutions for fish monitoring, welfare, and feeding optimization."", - ""geographicFocus"": ""Headquartered in Trondheim, Norway, OptoScale serves aquaculture customers internationally with verified clients in Norway, Scotland, Shetland, Orkney Islands, Canada, and plans to expand to Chile and Iceland."", - ""keyExecutives"": [ - { - ""name"": ""Sven J. Kolstø"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Ragnhild Skjetne Hollup"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Vidar Wikmark"", - ""title"": ""Operations Director"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Kristian Henriksen"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://optoscale.no/ansatte/"" - }, - { - ""name"": ""Maren Flasnes"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://www.linkedin.com/in/maren-flasnes-5bb48712"" - } - ], - ""researcherNotes"": ""The company is confirmed to be the Norwegian fish farming technology firm founded in 2015 in Trondheim, specializing in AI-driven monitoring tools. Geographic sales focus is international but primarily documented in Norway, Scotland, Canada, with planned expansion to Chile and Iceland, though no formal geographic sales region description was found on the official site. Key executives on the company website and LinkedIn largely align, with an added CFO from LinkedIn not listed on the site. Some minor discrepancies in address details exist between ZoomInfo and company site but HQ location in Trondheim is consistent."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://optoscale.no/om"", - ""productDescription"": ""https://optoscale.no/vekt"", - ""clientCategories"": ""https://optoscale.no/"", - ""geographicFocus"": ""https://seafood.media/fis/companies/details.asp?l=e&company_id=170282"", - ""keyExecutives"": ""https://optoscale.no/ansatte/"" - } -}","{""clientCategories"":[""Aquaculture Companies"",""Salmon and Rainbow Trout Fish Farmers"",""Fish Health Experts""],""companyDescription"":""OptoScale provides real-time monitoring solutions for fish farming, specializing in fish growth, welfare, and environmental impact. Utilizing advanced AI-powered sensor and camera technology, OptoScale delivers accurate data on fish weight, lice infestation, health, and feeding without manual handling. Their mission is to improve fish welfare, reduce environmental footprint, and enhance product quality by supporting aquaculture companies, particularly those farming salmon and rainbow trout, with precise and actionable insights."",""geographicFocus"":""Headquartered in Trondheim, Norway, OptoScale serves aquaculture customers internationally with verified clients in Norway, Scotland, Shetland, Orkney Islands, Canada, and plans to expand to Chile and Iceland."",""keyExecutives"":[{""name"":""Sven J. Kolstø"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""CEO""},{""name"":""Ragnhild Skjetne Hollup"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""CTO""},{""name"":""Vidar Wikmark"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""Operations Director""},{""name"":""Kristian Henriksen"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""CCO""},{""name"":""Maren Flasnes"",""sourceUrl"":""https://www.linkedin.com/in/maren-flasnes-5bb48712"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""OptoScale's core offerings include AI-powered sensor and camera systems integrated into four main modules: Vektmodulen (weight, K-factor, size distribution, growth), Velferdsmodulen (welfare monitoring with trends and images), Luslusemodulen (automated lice counting by stage and type), and a smolt monitoring system providing real-time insights on smolt growth and health. These modules feed data into a web portal accessible via mobile, tablet, or PC, enabling optimized feeding, biomass control, welfare decisions, and slaughter timing."",""researcherNotes"":""The company is confirmed to be the Norwegian fish farming technology firm founded in 2015 in Trondheim, specializing in AI-driven monitoring tools. Geographic sales focus is international but primarily documented in Norway, Scotland, Canada, with planned expansion to Chile and Iceland, though no formal geographic sales region description was found on the official site. Key executives on the company website and LinkedIn largely align, with an added CFO from LinkedIn not listed on the site. Some minor discrepancies in address details exist between ZoomInfo and company site but HQ location in Trondheim is consistent."",""sectorDescription"":""Aquaculture technology sector specializing in AI-powered sensor solutions for fish monitoring, welfare, and feeding optimization."",""sources"":{""clientCategories"":""https://optoscale.no/"",""companyDescription"":""https://optoscale.no/om"",""geographicFocus"":""https://seafood.media/fis/companies/details.asp?l=e&company_id=170282"",""keyExecutives"":""https://optoscale.no/ansatte/"",""productDescription"":""https://optoscale.no/vekt""},""websiteURL"":""https://optoscale.no""}","Correctness: 98% Completeness: 95% The description of OptoScale as a Norwegian aquaculture technology company founded around 2015–2016 in Trondheim specializing in AI-powered sensor and camera systems for real-time fish growth, welfare, and lice monitoring is fully supported by multiple sources[1][2][3][5]. The company’s core product modules (weight/growth/Vektmodulen, welfare/Velferdsmodulen, lice/Luslusemodulen, and smolt monitoring) and their use of advanced AI and edge computing technology feeding data into a web portal accessible across devices are well documented and align with the provided description[2][5]. The leadership team names and titles—Sven J. Kolstø (CEO), Ragnhild Skjetne Hollup (CTO), Vidar Wikmark (Operations Director), Kristian Henriksen (CCO), and CFO Maren Flasnes (LinkedIn)—match official company sources, noting that the CFO is listed primarily on LinkedIn rather than on the company website[1][3][5]. The geographic footprint is confirmed as international, with active markets in Norway, Scotland, Canada, and plans for Chile and Iceland, consistent with available articles but with no formal regional sales description on the official site[1][2]. The recent strategic investment from Insight Partners corroborates the company’s growth and scaling ambitions[4]. Minor discrepancies exist in founding year (2015 vs 2016) and CFO listing, but these do not substantively reduce correctness. Completeness is high given detailed product offerings, leadership, HQ, market focus, and technological context are covered; however, formal expansion plans to Chile/Iceland and full integration of the Optimeering Aqua acquisition are mentioned but less detailed publicly[3]. No material claims appear incorrect or unsupported in authoritative sources. URLs: https://optoscale.no/, https://businessnorway.com/articles/optoscale-revolutionising-aquaculture-with-norwegian-precision-technology, https://globalfundcoralreefs.org/reef-plus/finance-solutions/optoscale/, https://bioplan.ai/press-release, https://www.bairdmaritime.com/fishing/aquaculture/stock-monitoring-aquaculture-tech-company-optoscale-receives-investment-to-expand-operations, https://optoscale.no/how-it-works/?lang=en","{""clientCategories"":[""Aquaculture companies"",""Salmon and rainbow trout fish farmers"",""Fish health experts""],""companyDescription"":""OptoScale provides real-time monitoring solutions for fish farming, focusing on fish growth, welfare, and environmental impact. Their technology enables tracking fish weight, lice infestation, health, and feeding without manual handling, aiming to improve fish welfare, reduce environmental footprint, and enhance quality. They offer four integrated modules accessible via mobile, tablet, or PC, providing data such as average weight, K-factor, size distribution, lice counts, welfare visual inspections, and precise feeding information to support decision-making. The company's mission includes producing salmon with lower environmental impact, better fish welfare, and improved quality."",""geographicFocus"":""HQ: Peder Falcks veg 6, 7044 Trondheim, Norway; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Sven J. Kolstø"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""CEO""},{""name"":""Ragnhild Skjetne Hollup"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""CTO""},{""name"":""Vidar Wikmark"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""Operations Director""},{""name"":""Kristian Henriksen"",""sourceUrl"":""https://optoscale.no/ansatte/"",""title"":""CCO""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""OptoScale's core products focus on sensor and AI technology for fish farming management, particularly for salmon and rainbow trout. Their primary offerings include:\n- Vektmodulen: precise data on fish weight, K-factor, size distribution, and growth\n- Velferdsmodulen: fish welfare monitoring with trends, graphs, and images\n- Luslusemodulen: automated daily lice counting by stage and type\n- Smolt monitoring system: real-time camera-based insights on smolt growth, weight variation, and health without manual sampling\nThe system integrates these modules into a web portal providing real-time data support for feeding optimization, biomass control, welfare decision-making, and slaughter timing to maximize profit."",""researcherNotes"":""No geographic sales regions or specific client region data found on the website."",""sectorDescription"":""Operates in the aquaculture technology sector, providing AI-powered sensor solutions for fish monitoring, welfare, and feeding optimization."",""sources"":{""clientCategories"":""https://optoscale.no/"",""companyDescription"":""https://optoscale.no/om"",""geographicFocus"":""https://optoscale.no/kontakt/"",""keyExecutives"":""https://optoscale.no/ansatte/"",""productDescription"":""https://optoscale.no/vekt""},""websiteURL"":""https://optoscale.no/""}" -Biomicrogels Group,http://biomicrogel.com/,Voskhod Venture Capital,biomicrogel.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""http://biomicrogel.com/"",""companyDescription"":""ООО \""Биополимер\"" is a Russian manufacturer of industrial chemicals for water and surface cleaning. The company was founded in 2012 by a team of engineers who developed unique technology for cleaning water and solid surfaces. The company's mission is to help solve water and surface cleaning problems efficiently, ecologically, and adaptively for industrial clients, enhancing efficiency, ecology, and product adaptation for individual client projects."",""productDescription"":""ООО \""Биополимер\"" offers core products including:\n- Flocculants Аквавaлент® for industrial wastewater treatment, tailings processing, water treatment, and coolant decontamination\n- Technical cleaning agents С-617 for degreasing surfaces\nThey also provide contract manufacturing of chemical products based on customer recipes."",""clientCategories"":[""Water supply"",""Mining"",""Metallurgy"",""Mechanical engineering"",""Railway"",""Oil"",""Food industry""],""sectorDescription"":""Operates in the industrial chemistry sector focused on water treatment, industrial reagents, waste decontamination, and surface cleaning."",""geographicFocus"":""HQ: Yekaterinburg, Russia; Sales Focus: Russia, Singapore, Southeast Asia including Malaysia and Indonesia, China, Poland, UK."",""keyExecutives"":[{""name"":""Andrey Elagin"",""title"":""General Director, Head of Technical Sciences"",""sourceUrl"":""https://biomicrogel.com/ru/about/""},{""name"":""Maksim Mironov"",""title"":""Deputy General Director for Research and Development, Head of Chemical Sciences"",""sourceUrl"":""https://biomicrogel.com/ru/about/""},{""name"":""Aleksandr Yagupov"",""title"":""Operational Director"",""sourceUrl"":""https://biomicrogel.com/ru/about/""},{""name"":""Vladimir Permyakov"",""title"":""Financial Director"",""sourceUrl"":""https://biomicrogel.com/ru/about/""}],""linkedDocuments"":[""https://biomicrogel.com/documents""],""researcherNotes"":null,""missingImportantFields"":[],""sources"":{""companyDescription"":""https://biomicrogel.com/ru/about/"",""productDescription"":""https://biomicrogel.com/ru/products/"",""clientCategories"":""https://biomicrogel.com/ru/solutions/"",""geographicFocus"":""https://biomicrogel.com/my/contacts/"",""keyExecutives"":""https://biomicrogel.com/ru/about/""}}","{""websiteURL"":""http://biomicrogel.com/"",""companyDescription"":""ООО \""Биополимер\"" is a Russian manufacturer of industrial chemicals for water and surface cleaning. The company was founded in 2012 by a team of engineers who developed unique technology for cleaning water and solid surfaces. The company's mission is to help solve water and surface cleaning problems efficiently, ecologically, and adaptively for industrial clients, enhancing efficiency, ecology, and product adaptation for individual client projects."",""productDescription"":""ООО \""Биополимер\"" offers core products including:\n- Flocculants Аквавaлент® for industrial wastewater treatment, tailings processing, water treatment, and coolant decontamination\n- Technical cleaning agents С-617 for degreasing surfaces\nThey also provide contract manufacturing of chemical products based on customer recipes."",""clientCategories"":[""Water supply"",""Mining"",""Metallurgy"",""Mechanical engineering"",""Railway"",""Oil"",""Food industry""],""sectorDescription"":""Operates in the industrial chemistry sector focused on water treatment, industrial reagents, waste decontamination, and surface cleaning."",""geographicFocus"":""HQ: Yekaterinburg, Russia; Sales Focus: Russia, Singapore, Southeast Asia including Malaysia and Indonesia, China, Poland, UK."",""keyExecutives"":[{""name"":""Andrey Elagin"",""title"":""General Director, Head of Technical Sciences"",""sourceUrl"":""https://biomicrogel.com/ru/about/""},{""name"":""Maksim Mironov"",""title"":""Deputy General Director for Research and Development, Head of Chemical Sciences"",""sourceUrl"":""https://biomicrogel.com/ru/about/""},{""name"":""Aleksandr Yagupov"",""title"":""Operational Director"",""sourceUrl"":""https://biomicrogel.com/ru/about/""},{""name"":""Vladimir Permyakov"",""title"":""Financial Director"",""sourceUrl"":""https://biomicrogel.com/ru/about/""}],""linkedDocuments"":[""https://biomicrogel.com/documents""],""researcherNotes"":null,""missingImportantFields"":[],""sources"":{""companyDescription"":""https://biomicrogel.com/ru/about/"",""productDescription"":""https://biomicrogel.com/ru/products/"",""clientCategories"":""https://biomicrogel.com/ru/solutions/"",""geographicFocus"":""https://biomicrogel.com/my/contacts/"",""keyExecutives"":""https://biomicrogel.com/ru/about/""}}",[],"{ - ""websiteURL"": ""http://biomicrogel.com"", - ""companyDescription"": ""ООО \""Биополимер\"" is a Russian industrial chemical manufacturer specializing in water and surface cleaning solutions. Founded in 2012 by engineers with proprietary technology, it focuses on delivering efficient, ecological, and adaptive cleaning products catered to industrial clients. The company enhances operational efficiency and environmental standards across sectors such as mining, metallurgy, and mechanical engineering."", - ""productDescription"": ""ООО \""Биополимер\"" produces core chemical products including Аквавaлент® flocculants for wastewater treatment, tailings processing, and coolant decontamination, as well as the С-617 technical cleaning agent for surface degreasing. They also offer contract manufacturing services for custom chemical formulations based on client recipes, supporting tailored industrial applications."", - ""clientCategories"": [ - ""Water Supply"", - ""Mining"", - ""Metallurgy"", - ""Mechanical Engineering"", - ""Railway"", - ""Oil"", - ""Food Industry"" - ], - ""sectorDescription"": ""Industrial chemistry company focused on water treatment, industrial reagents, waste decontamination, and surface cleaning solutions."", - ""geographicFocus"": ""Headquartered in Yekaterinburg, Russia, with sales operations primarily across Russia, Singapore, Southeast Asia (Malaysia and Indonesia), China, Poland, and the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Andrey Elagin"", - ""title"": ""General Director, Head of Technical Sciences"", - ""sourceUrl"": ""https://biomicrogel.com/ru/about/"" - }, - { - ""name"": ""Maksim Mironov"", - ""title"": ""Deputy General Director for Research and Development, Head of Chemical Sciences"", - ""sourceUrl"": ""https://biomicrogel.com/ru/about/"" - }, - { - ""name"": ""Aleksandr Yagupov"", - ""title"": ""Operational Director"", - ""sourceUrl"": ""https://biomicrogel.com/ru/about/"" - }, - { - ""name"": ""Vladimir Permyakov"", - ""title"": ""Financial Director"", - ""sourceUrl"": ""https://biomicrogel.com/ru/about/"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain biomicrogel.com, founding year 2012, industrial chemical focus, and headquarters in Yekaterinburg, Russia. The geographic focus was verified on the company’s official regional contacts page. No additional senior leadership data from LinkedIn was found to add or update. All required fields were already present in SOURCE_JSON, so no new enrichment was added."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://biomicrogel.com/ru/about/"", - ""productDescription"": ""https://biomicrogel.com/ru/products/"", - ""clientCategories"": ""https://biomicrogel.com/ru/solutions/"", - ""geographicFocus"": ""https://biomicrogel.com/my/contacts/"", - ""keyExecutives"": ""https://biomicrogel.com/ru/about/"" - } -}","{""clientCategories"":[""Water Supply"",""Mining"",""Metallurgy"",""Mechanical Engineering"",""Railway"",""Oil"",""Food Industry""],""companyDescription"":""ООО \""Биополимер\"" is a Russian industrial chemical manufacturer specializing in water and surface cleaning solutions. Founded in 2012 by engineers with proprietary technology, it focuses on delivering efficient, ecological, and adaptive cleaning products catered to industrial clients. The company enhances operational efficiency and environmental standards across sectors such as mining, metallurgy, and mechanical engineering."",""geographicFocus"":""Headquartered in Yekaterinburg, Russia, with sales operations primarily across Russia, Singapore, Southeast Asia (Malaysia and Indonesia), China, Poland, and the United Kingdom."",""keyExecutives"":[{""name"":""Andrey Elagin"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""General Director, Head of Technical Sciences""},{""name"":""Maksim Mironov"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""Deputy General Director for Research and Development, Head of Chemical Sciences""},{""name"":""Aleksandr Yagupov"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""Operational Director""},{""name"":""Vladimir Permyakov"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""Financial Director""}],""missingImportantFields"":[],""productDescription"":""ООО \""Биополимер\"" produces core chemical products including Аквавaлент® flocculants for wastewater treatment, tailings processing, and coolant decontamination, as well as the С-617 technical cleaning agent for surface degreasing. They also offer contract manufacturing services for custom chemical formulations based on client recipes, supporting tailored industrial applications."",""researcherNotes"":""Company identity confirmed by domain biomicrogel.com, founding year 2012, industrial chemical focus, and headquarters in Yekaterinburg, Russia. The geographic focus was verified on the company’s official regional contacts page. No additional senior leadership data from LinkedIn was found to add or update. All required fields were already present in SOURCE_JSON, so no new enrichment was added."",""sectorDescription"":""Industrial chemistry company focused on water treatment, industrial reagents, waste decontamination, and surface cleaning solutions."",""sources"":{""clientCategories"":""https://biomicrogel.com/ru/solutions/"",""companyDescription"":""https://biomicrogel.com/ru/about/"",""geographicFocus"":""https://biomicrogel.com/my/contacts/"",""keyExecutives"":""https://biomicrogel.com/ru/about/"",""productDescription"":""https://biomicrogel.com/ru/products/""},""websiteURL"":""http://biomicrogel.com""}","Correctness: 95% Completeness: 90% The description of ООО ""Биополимер"" (Biomicrogels Group) aligns closely with official company sources confirming it as a Russian industrial chemical manufacturer specializing in water and surface cleaning solutions, founded in 2012 and headquartered in Yekaterinburg, Russia[1][3]. The names and titles of key executives such as Andrey Elagin (General Director) and others match publicly available leadership information on the company's official site and corroborated reports[1][2][3]. The geographic footprint including Russia, Southeast Asia (notably Indonesia), China, Poland, the UK, and Singapore is supported by company statements about operations and distribution partnerships in these regions[1]. Product claims—such as Аквавaлент® flocculants for wastewater treatment and С-617 degreasing agents—are consistent with the product lines referenced on the company’s website. Recent funding from Voskhod Foundation in late 2024, confirming investor interest and expansion plans, adds depth to the company profile[3]. Minor incompleteness exists in absence of explicit mention of contract manufacturing details in external press, and the product descriptions are largely drawn from company sources without independent third-party corroboration, slightly limiting completeness. No factual inaccuracies were found in the verified core information. Sources: https://biomicrogel.com/ru/about/, https://biomicrogel.com/ru/products/, https://biomicrogel.com/my/contacts/, https://www.news.palmoilmagazine.com/news/9261/biomicrogels-group--ready-to-expand-in-indonesia--, https://tadviser.com/index.php/Company:BioMicroGels_NGO, https://topline.com/people/andrey-elagin-324982780","{""clientCategories"":[""Water supply"",""Mining"",""Metallurgy"",""Mechanical engineering"",""Railway"",""Oil"",""Food industry""],""companyDescription"":""ООО \""Биополимер\"" is a Russian manufacturer of industrial chemicals for water and surface cleaning. The company was founded in 2012 by a team of engineers who developed unique technology for cleaning water and solid surfaces. The company's mission is to help solve water and surface cleaning problems efficiently, ecologically, and adaptively for industrial clients, enhancing efficiency, ecology, and product adaptation for individual client projects."",""geographicFocus"":""HQ: Yekaterinburg, Russia; Sales Focus: Russia, Singapore, Southeast Asia including Malaysia and Indonesia, China, Poland, UK."",""keyExecutives"":[{""name"":""Andrey Elagin"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""General Director, Head of Technical Sciences""},{""name"":""Maksim Mironov"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""Deputy General Director for Research and Development, Head of Chemical Sciences""},{""name"":""Aleksandr Yagupov"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""Operational Director""},{""name"":""Vladimir Permyakov"",""sourceUrl"":""https://biomicrogel.com/ru/about/"",""title"":""Financial Director""}],""linkedDocuments"":[""https://biomicrogel.com/documents""],""missingImportantFields"":[],""productDescription"":""ООО \""Биополимер\"" offers core products including:\n- Flocculants Аквавaлент® for industrial wastewater treatment, tailings processing, water treatment, and coolant decontamination\n- Technical cleaning agents С-617 for degreasing surfaces\nThey also provide contract manufacturing of chemical products based on customer recipes."",""researcherNotes"":null,""sectorDescription"":""Operates in the industrial chemistry sector focused on water treatment, industrial reagents, waste decontamination, and surface cleaning."",""sources"":{""clientCategories"":""https://biomicrogel.com/ru/solutions/"",""companyDescription"":""https://biomicrogel.com/ru/about/"",""geographicFocus"":""https://biomicrogel.com/my/contacts/"",""keyExecutives"":""https://biomicrogel.com/ru/about/"",""productDescription"":""https://biomicrogel.com/ru/products/""},""websiteURL"":""http://biomicrogel.com/""}" -Tebrio,https://tebrio.com,"Centre for the Development of Industrial Technology (CDTI), SODICAL",tebrio.com,https://www.linkedin.com/company/tebrio,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://tebrio.com"", - ""companyDescription"": ""OUR MISSION: To re-establish the global natural balance, using insect-based sustainable bioindustrial solutions. OUR VISION: To be the world’s leading industrial company in the manufacture and supply of sustainable and innovative products from Tenebrio molitor to consolidate the transition towards the green economy throughout the value chain. OUR VALUES: Sustainability, innovation, quality, teamwork, commitment, integrity and loyalty as main pillars of the business philosophy, applied in everyday activity and shared with partners, customers and suppliers."", - ""productDescription"": ""Tebrio farms and industrially processes insects into top-quality ingredients for animal feed and plant nutrition. Their core products include: - Protein and lipids for animal feed; - Protein, lipids, and meal for pet food; - Frass for plant nutrition; - Tosan for bio-industrial uses."", - ""clientCategories"": [""Animal feed producers"", ""Pet food manufacturers"", ""Agriculture and plant nutrition companies"", ""Bio-industrial sectors such as cosmetics, pharmaceuticals, biodegradable plastics, and textiles""], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in sustainable insect farming and processing for animal feed, plant nutrition, and bio-industrial applications."", - ""geographicFocus"": ""HQ: N-620 Km. 244, 37120 Doñinos de Salamanca, Salamanca, Spain; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://tebrio.com/en/news-press/las-noticias-mas-destacadas-de-abril-2022""], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the team or related pages."", - ""missingImportantFields"": [""keyExecutives"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://tebrio.com/en/mission-vision-and-values/"", - ""productDescription"": ""https://tebrio.com/en/activity/"", - ""clientCategories"": ""https://tebrio.com/en/bio-industrial-uses/"", - ""geographicFocus"": ""https://tebrio.com/en/contact/"", - ""keyExecutives"": ""https://tebrio.com/en/team/"" - } -}","{ - ""websiteURL"": ""https://tebrio.com"", - ""companyDescription"": ""OUR MISSION: To re-establish the global natural balance, using insect-based sustainable bioindustrial solutions. OUR VISION: To be the world’s leading industrial company in the manufacture and supply of sustainable and innovative products from Tenebrio molitor to consolidate the transition towards the green economy throughout the value chain. OUR VALUES: Sustainability, innovation, quality, teamwork, commitment, integrity and loyalty as main pillars of the business philosophy, applied in everyday activity and shared with partners, customers and suppliers."", - ""productDescription"": ""Tebrio farms and industrially processes insects into top-quality ingredients for animal feed and plant nutrition. Their core products include: - Protein and lipids for animal feed; - Protein, lipids, and meal for pet food; - Frass for plant nutrition; - Tosan for bio-industrial uses."", - ""clientCategories"": [""Animal feed producers"", ""Pet food manufacturers"", ""Agriculture and plant nutrition companies"", ""Bio-industrial sectors such as cosmetics, pharmaceuticals, biodegradable plastics, and textiles""], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in sustainable insect farming and processing for animal feed, plant nutrition, and bio-industrial applications."", - ""geographicFocus"": ""HQ: N-620 Km. 244, 37120 Doñinos de Salamanca, Salamanca, Spain; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://tebrio.com/en/news-press/las-noticias-mas-destacadas-de-abril-2022""], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the team or related pages."", - ""missingImportantFields"": [""keyExecutives"", ""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://tebrio.com/en/mission-vision-and-values/"", - ""productDescription"": ""https://tebrio.com/en/activity/"", - ""clientCategories"": ""https://tebrio.com/en/bio-industrial-uses/"", - ""geographicFocus"": ""https://tebrio.com/en/contact/"", - ""keyExecutives"": ""https://tebrio.com/en/team/"" - } -}","[""keyExecutives"",""geographicFocus""]","{ - ""websiteURL"": ""https://tebrio.com"", - ""companyDescription"": ""OUR MISSION: To re-establish the global natural balance, using insect-based sustainable bioindustrial solutions. OUR VISION: To be the world’s leading industrial company in the manufacture and supply of sustainable and innovative products from Tenebrio molitor to consolidate the transition towards the green economy throughout the value chain. OUR VALUES: Sustainability, innovation, quality, teamwork, commitment, integrity and loyalty as main pillars of the business philosophy, applied in everyday activity and shared with partners, customers and suppliers."", - ""productDescription"": ""Tebrio farms and industrially processes insects into top-quality ingredients for animal feed and plant nutrition. Their core products include: - Protein and lipids for animal feed; - Protein, lipids, and meal for pet food; - Frass for plant nutrition; - Tosan for bio-industrial uses."", - ""clientCategories"": [ - ""Animal Feed Producers"", - ""Pet Food Manufacturers"", - ""Agriculture And Plant Nutrition Companies"", - ""Bio-Industrial Sectors Such As Cosmetics, Pharmaceuticals, Biodegradable Plastics, And Textiles"" - ], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in sustainable insect farming and processing for animal feed, plant nutrition, and bio-industrial applications."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the company's team or related pages, including LinkedIn. Geographic footprint beyond the registered HQ in Salamanca, Spain, is not available from public sources. The company focuses on various global bio-industrial sectors but does not disclose explicit sales regions. Source URLs used are official company pages."", - ""missingImportantFields"": [ - ""keyExecutives"", - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://tebrio.com/en/mission-vision-and-values/"", - ""productDescription"": ""https://tebrio.com/en/activity/"", - ""clientCategories"": ""https://tebrio.com/en/bio-industrial-uses/"", - ""geographicFocus"": ""https://tebrio.com/en/contact/"", - ""keyExecutives"": ""https://tebrio.com/en/team/"" - } -}","{""clientCategories"":[""Animal Feed Producers"",""Pet Food Manufacturers"",""Agriculture And Plant Nutrition Companies"",""Bio-Industrial Sectors Such As Cosmetics, Pharmaceuticals, Biodegradable Plastics, And Textiles""],""companyDescription"":""OUR MISSION: To re-establish the global natural balance, using insect-based sustainable bioindustrial solutions. OUR VISION: To be the world’s leading industrial company in the manufacture and supply of sustainable and innovative products from Tenebrio molitor to consolidate the transition towards the green economy throughout the value chain. OUR VALUES: Sustainability, innovation, quality, teamwork, commitment, integrity and loyalty as main pillars of the business philosophy, applied in everyday activity and shared with partners, customers and suppliers."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""keyExecutives"",""geographicFocus""],""productDescription"":""Tebrio farms and industrially processes insects into top-quality ingredients for animal feed and plant nutrition. Their core products include: - Protein and lipids for animal feed; - Protein, lipids, and meal for pet food; - Frass for plant nutrition; - Tosan for bio-industrial uses."",""researcherNotes"":""No specific names or titles of founders or C-level executives were found on the company's team or related pages, including LinkedIn. Geographic footprint beyond the registered HQ in Salamanca, Spain, is not available from public sources. The company focuses on various global bio-industrial sectors but does not disclose explicit sales regions. Source URLs used are official company pages."",""sectorDescription"":""Operates in the biotechnology sector, specializing in sustainable insect farming and processing for animal feed, plant nutrition, and bio-industrial applications."",""sources"":{""clientCategories"":""https://tebrio.com/en/bio-industrial-uses/"",""companyDescription"":""https://tebrio.com/en/mission-vision-and-values/"",""geographicFocus"":""https://tebrio.com/en/contact/"",""keyExecutives"":""https://tebrio.com/en/team/"",""productDescription"":""https://tebrio.com/en/activity/""},""websiteURL"":""https://tebrio.com""}","Correctness: 98% Completeness: 85% - -The company description and focus on Tenebrio molitor-derived sustainable bioindustrial solutions for animal feed, plant nutrition, and bio-industrial uses is accurate and consistent with Tebrio’s official website as of 2025-09-11. Tebrio indeed farms and processes Tenebrio molitor to produce protein, lipids, meal for animal and pet food, frass as plant fertilizer, and tosans for bio-industrial applications, affirming the core product claims[https://tebrio.com/en/activity/][https://tebrio.com/en/bio-industrial-uses/]. Their mission and vision statements about sustainability and innovation in the green economy align with the company’s official “Mission, Vision and Values” page[https://tebrio.com/en/mission-vision-and-values/]. The lack of publicly available data on geographic footprint beyond their registered headquarters in Salamanca, Spain, and unavailable key executives information are correctly noted as missing based on their team and contact pages as of this date[https://tebrio.com/en/contact/][https://tebrio.com/en/team/]. The omission of specific names/titles and explicit sales regions negatively affects completeness but is transparently acknowledged. Independent sources confirm Tenebrio molitor’s nutritional profile, sustainable production benefits, and uses in animal feed and biotechnological sectors, supporting Tebrio’s positioning[1][2][4]. The main limitation is the absence of more detailed leadership, operational geography, and recent developments or funding data, which Tebrio does not currently disclose publicly. - -https://tebrio.com/en/activity/ -https://tebrio.com/en/bio-industrial-uses/ -https://tebrio.com/en/mission-vision-and-values/ -https://tebrio.com/en/contact/ -https://tebrio.com/en/team/ -https://protiberia.com/en/tenebrio-as-alternative-to-traditional-protein-sources/ -https://pmc.ncbi.nlm.nih.gov/articles/PMC9967797/ -https://pmc.ncbi.nlm.nih.gov/articles/PMC10887794/","{""clientCategories"":[""Animal feed producers"",""Pet food manufacturers"",""Agriculture and plant nutrition companies"",""Bio-industrial sectors such as cosmetics, pharmaceuticals, biodegradable plastics, and textiles""],""companyDescription"":""OUR MISSION: To re-establish the global natural balance, using insect-based sustainable bioindustrial solutions. OUR VISION: To be the world’s leading industrial company in the manufacture and supply of sustainable and innovative products from Tenebrio molitor to consolidate the transition towards the green economy throughout the value chain. OUR VALUES: Sustainability, innovation, quality, teamwork, commitment, integrity and loyalty as main pillars of the business philosophy, applied in everyday activity and shared with partners, customers and suppliers."",""geographicFocus"":""HQ: N-620 Km. 244, 37120 Doñinos de Salamanca, Salamanca, Spain; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[""https://tebrio.com/en/news-press/las-noticias-mas-destacadas-de-abril-2022""],""missingImportantFields"":[""keyExecutives"",""geographicFocus""],""productDescription"":""Tebrio farms and industrially processes insects into top-quality ingredients for animal feed and plant nutrition. Their core products include: - Protein and lipids for animal feed; - Protein, lipids, and meal for pet food; - Frass for plant nutrition; - Tosan for bio-industrial uses."",""researcherNotes"":""No specific names or titles of founders or C-level executives were found on the team or related pages."",""sectorDescription"":""Operates in the biotechnology sector, specializing in sustainable insect farming and processing for animal feed, plant nutrition, and bio-industrial applications."",""sources"":{""clientCategories"":""https://tebrio.com/en/bio-industrial-uses/"",""companyDescription"":""https://tebrio.com/en/mission-vision-and-values/"",""geographicFocus"":""https://tebrio.com/en/contact/"",""keyExecutives"":""https://tebrio.com/en/team/"",""productDescription"":""https://tebrio.com/en/activity/""},""websiteURL"":""https://tebrio.com""}" -Agrando,https://www.agrando.com,"Investbridge AgriTech, JLR Star, June Fund, Sony Innovation Fund, Yabeo",agrando.com,https://www.linkedin.com/company/agrando,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.agrando.com"", - ""companyDescription"": ""Agrando GmbH has ceased operations. Some of the Agrando team members have joined Agryco, which continues to support agriculture in Germany."", - ""productDescription"": ""Agryco offers a comprehensive range of agricultural supplies tailored to farmers in Germany, including fertilizers, seeds, animal feed, spare parts, and stable supplies, with over 60,000 products available at competitive prices."", - ""clientCategories"": [""Farmers in Germany""], - ""sectorDescription"": ""Operates in the agricultural supply sector focusing on providing farming products and services."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Germany"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://agrando.com/media/products/uploads/products/4692/attachment_2019-11-22_093832.7115210000.pdf""], - ""researcherNotes"": ""Agrando GmbH has ceased operations; the information about the current company structure, mission, and leadership is no longer available. The successor company Agryco continues to serve the agricultural market in Germany."", - ""missingImportantFields"": [""companyDescription"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agrando.com/"", - ""productDescription"": ""https://agryco.de/de_DE/"", - ""clientCategories"": ""https://agrando.com/"", - ""geographicFocus"": ""https://agrando.com/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.agrando.com"", - ""companyDescription"": ""Agrando GmbH has ceased operations. Some of the Agrando team members have joined Agryco, which continues to support agriculture in Germany."", - ""productDescription"": ""Agryco offers a comprehensive range of agricultural supplies tailored to farmers in Germany, including fertilizers, seeds, animal feed, spare parts, and stable supplies, with over 60,000 products available at competitive prices."", - ""clientCategories"": [""Farmers in Germany""], - ""sectorDescription"": ""Operates in the agricultural supply sector focusing on providing farming products and services."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Germany"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://agrando.com/media/products/uploads/products/4692/attachment_2019-11-22_093832.7115210000.pdf""], - ""researcherNotes"": ""Agrando GmbH has ceased operations; the information about the current company structure, mission, and leadership is no longer available. The successor company Agryco continues to serve the agricultural market in Germany."", - ""missingImportantFields"": [""companyDescription"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agrando.com/"", - ""productDescription"": ""https://agryco.de/de_DE/"", - ""clientCategories"": ""https://agrando.com/"", - ""geographicFocus"": ""https://agrando.com/"", - ""keyExecutives"": null - } -}","[""companyDescription"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.agrando.com"", - ""companyDescription"": ""Agrando GmbH was an agricultural technology company founded in Munich, Germany, in 2017. It focused on providing digital services for the agriculture sector. The company ceased operations, and some team members have joined Agryco, which continues to support the agricultural market in Germany."", - ""productDescription"": ""Agryco offers a comprehensive range of agricultural supplies tailored to farmers in Germany, including fertilizers, seeds, animal feed, spare parts, and stable supplies. Their catalog includes over 60,000 products available at competitive prices, serving the needs of agricultural producers."", - ""clientCategories"": [""Farmers in Germany""], - ""sectorDescription"": ""Operates in the agricultural supply sector focusing on providing farming products and services."", - ""geographicFocus"": ""Primary sales focus is Germany; headquarters location is not available."", - ""keyExecutives"": [], - ""researcherNotes"": ""Agrando GmbH, headquartered in Munich and founded in 2017, ceased operations and no current leadership information is available. The successor entity, Agryco, now supports agriculture in Germany with a wide product range. No reliable source provides current key executives. Headquarters location is missing; geographic focus is limited to Germany based on sales. Sources include company website and Dealroom profile."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.agrando.com"", - ""productDescription"": ""https://agryco.de/de_DE/"", - ""clientCategories"": ""https://www.agrando.com"", - ""geographicFocus"": ""https://www.agrando.com"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Farmers in Germany""],""companyDescription"":""Agrando GmbH was an agricultural technology company founded in Munich, Germany, in 2017. It focused on providing digital services for the agriculture sector. The company ceased operations, and some team members have joined Agryco, which continues to support the agricultural market in Germany."",""geographicFocus"":""Primary sales focus is Germany; headquarters location is not available."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Agryco offers a comprehensive range of agricultural supplies tailored to farmers in Germany, including fertilizers, seeds, animal feed, spare parts, and stable supplies. Their catalog includes over 60,000 products available at competitive prices, serving the needs of agricultural producers."",""researcherNotes"":""Agrando GmbH, headquartered in Munich and founded in 2017, ceased operations and no current leadership information is available. The successor entity, Agryco, now supports agriculture in Germany with a wide product range. No reliable source provides current key executives. Headquarters location is missing; geographic focus is limited to Germany based on sales. Sources include company website and Dealroom profile."",""sectorDescription"":""Operates in the agricultural supply sector focusing on providing farming products and services."",""sources"":{""clientCategories"":""https://www.agrando.com"",""companyDescription"":""https://www.agrando.com"",""geographicFocus"":""https://www.agrando.com"",""keyExecutives"":null,""productDescription"":""https://agryco.de/de_DE/""},""websiteURL"":""https://www.agrando.com""}","Correctness: 90% Completeness: 80% The information is mostly accurate and well-supported by multiple sources confirming Agrando GmbH was founded in Munich, Germany, in 2017 as an agricultural technology company focused on digitalizing agricultural trade. Jonathan Bernwieser is a key founder, and the company grew rapidly before expanding to Austria and France with about 170 employees as of 2021[1][2][3][5]. Agrando raised significant Series A funding (€12 million) in 2021 led by yabeo Impact AG with participation from Sony Innovation Fund and others, underpinning its market position in Europe[4]. Agrando ceased operations, and several team members joined Agryco, which now offers a broad catalog of agricultural supplies tailored to German farmers with over 60,000 products, confirming the successor relationship and product scope[company description, product description]. Key executives currently for either entity are missing publicly, and the explicit current headquarters location is unavailable beyond Munich for Agrando. These omissions moderately reduce completeness as recent leadership data and HQ details for Agryco or Agrando post-transition remain unverified. Sources: https://www.munich-startup.de/en/74666/agrando-7-questions/, https://gust.com/companies/agrando, https://via.ritzau.dk/pressemeddelelse/13588130/agrando-completes-seed-funding-round-in-the-millions---key-technology-for-european-agri-trade, https://app.dealroom.co/companies/agrando_1, https://agryco.de/de_DE/.","{""clientCategories"":[""Farmers in Germany""],""companyDescription"":""Agrando GmbH has ceased operations. Some of the Agrando team members have joined Agryco, which continues to support agriculture in Germany."",""geographicFocus"":""HQ: Not Available; Sales Focus: Germany"",""keyExecutives"":[],""linkedDocuments"":[""https://agrando.com/media/products/uploads/products/4692/attachment_2019-11-22_093832.7115210000.pdf""],""missingImportantFields"":[""companyDescription"",""keyExecutives""],""productDescription"":""Agryco offers a comprehensive range of agricultural supplies tailored to farmers in Germany, including fertilizers, seeds, animal feed, spare parts, and stable supplies, with over 60,000 products available at competitive prices."",""researcherNotes"":""Agrando GmbH has ceased operations; the information about the current company structure, mission, and leadership is no longer available. The successor company Agryco continues to serve the agricultural market in Germany."",""sectorDescription"":""Operates in the agricultural supply sector focusing on providing farming products and services."",""sources"":{""clientCategories"":""https://agrando.com/"",""companyDescription"":""https://agrando.com/"",""geographicFocus"":""https://agrando.com/"",""keyExecutives"":null,""productDescription"":""https://agryco.de/de_DE/""},""websiteURL"":""https://www.agrando.com""}" -Wildbiene + Partner,https://wildbieneundpartner.ch,Verve Ventures,wildbieneundpartner.ch,https://www.linkedin.com/company/wildbiene-partner,"{""seniorLeadership"":[{""fullName"":""Juan F. G. Valero"",""title"":""Member Board of Directors"",""linkedinProfile"":""https://www.linkedin.com/in/juangonzalezvalero""},{""fullName"":""Lucia Zosso"",""title"":""CEO"",""linkedinProfile"":""https://www.linkedin.com/in/lucia-zosso""},{""fullName"":""Chloé Humbert-Droz"",""title"":""General Manager"",""linkedinProfile"":""https://www.linkedin.com/in/chloe-humbert-droz""}]}","{""seniorLeadership"":[{""fullName"":""Juan F. G. Valero"",""title"":""Member Board of Directors"",""linkedinProfile"":""https://www.linkedin.com/in/juangonzalezvalero""},{""fullName"":""Lucia Zosso"",""title"":""CEO"",""linkedinProfile"":""https://www.linkedin.com/in/lucia-zosso""},{""fullName"":""Chloé Humbert-Droz"",""title"":""General Manager"",""linkedinProfile"":""https://www.linkedin.com/in/chloe-humbert-droz""}]}","{ - ""websiteURL"": ""https://wildbieneundpartner.ch"", - ""companyDescription"": ""Wildbiene + Partner AG is focused on promoting wild bees and biodiversity in Switzerland. Their mission includes bringing nature to life with wild bees and supporting biodiversity by offering products like BeeHomes, wild bee hotels, and wild bee care services. They operate in the sector of environmental conservation and biodiversity, with a product line developed by biologists, emphasizing sustainable, artisanal Swiss-made bee habitats."", - ""productDescription"": ""The company offers products and services focused on wild bees and biodiversity, including: \n- BeeSummer Set Classic (CHF 169)\n- BeeSummer Set Observer (CHF 224)\n- BeeHome Diversity (CHF 480)\n- BeeHome Classic (CHF 120)\n- BeeHome Observer (CHF 175)\n- BeeHome One (CHF 98)\n- BeeHome Pro (CHF 480)\n- Starter-Sets combining BeeHome Classic or Observer with a voucher for Wildbienen-Pflege\n- Seedballs with Wildflowers (CHF 16)\n- Seed mixes for wild bees\n- Replacement products such as Riesenschilf tubes (CHF 28)\n- Vogelhaus BirdSnack (CHF 79)\n- Observation drawers (CHF 65)\n- Various accessories and parts for BeeHomes (roofs, hanging fixtures, etc.)\n- Vouchers for Wildbienen-Pflege (CHF 39.00)"", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the environmental conservation and biodiversity sector, specializing in wild bee care products and services, habitat support, and sustainable biodiversity solutions for gardens and natural spaces."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website provides extensive product and mission information but does not disclose any details about company leadership, specific client categories, or geographic headquarters and sales regions. Contact numbers listed are US-based but no HQ address or client regions are specified."", - ""missingImportantFields"": [""clientCategories"",""geographicFocus"",""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://wildbieneundpartner.ch/pages/ueber-uns"", - ""productDescription"": ""https://wildbieneundpartner.ch/collections"", - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://wildbieneundpartner.ch"", - ""companyDescription"": ""Wildbiene + Partner AG is focused on promoting wild bees and biodiversity in Switzerland. Their mission includes bringing nature to life with wild bees and supporting biodiversity by offering products like BeeHomes, wild bee hotels, and wild bee care services. They operate in the sector of environmental conservation and biodiversity, with a product line developed by biologists, emphasizing sustainable, artisanal Swiss-made bee habitats."", - ""productDescription"": ""The company offers products and services focused on wild bees and biodiversity, including: \n- BeeSummer Set Classic (CHF 169)\n- BeeSummer Set Observer (CHF 224)\n- BeeHome Diversity (CHF 480)\n- BeeHome Classic (CHF 120)\n- BeeHome Observer (CHF 175)\n- BeeHome One (CHF 98)\n- BeeHome Pro (CHF 480)\n- Starter-Sets combining BeeHome Classic or Observer with a voucher for Wildbienen-Pflege\n- Seedballs with Wildflowers (CHF 16)\n- Seed mixes for wild bees\n- Replacement products such as Riesenschilf tubes (CHF 28)\n- Vogelhaus BirdSnack (CHF 79)\n- Observation drawers (CHF 65)\n- Various accessories and parts for BeeHomes (roofs, hanging fixtures, etc.)\n- Vouchers for Wildbienen-Pflege (CHF 39.00)"", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the environmental conservation and biodiversity sector, specializing in wild bee care products and services, habitat support, and sustainable biodiversity solutions for gardens and natural spaces."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website provides extensive product and mission information but does not disclose any details about company leadership, specific client categories, or geographic headquarters and sales regions. Contact numbers listed are US-based but no HQ address or client regions are specified."", - ""missingImportantFields"": [""clientCategories"",""geographicFocus"",""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://wildbieneundpartner.ch/pages/ueber-uns"", - ""productDescription"": ""https://wildbieneundpartner.ch/collections"", - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""clientCategories"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://wildbieneundpartner.ch"", - ""companyDescription"": ""Wildbiene + Partner AG is a Swiss environmental conservation company founded in 2013, dedicated to promoting wild bees and biodiversity. Originating as an ETH Zurich spin-off, their mission is to protect and multiply wild bee populations through scientifically developed, sustainable products like BeeHomes and targeted educational efforts. They support ecosystems and agriculture by providing high-quality wild bee habitats and pollination services, emphasizing artisanal Swiss-made solutions with a strong ecological impact."", - ""productDescription"": ""The company offers a range of products and services designed to support wild bee populations and biodiversity, including BeeHomes of various models (Classic, Observer, Pro), seed mixes, seedballs with wildflowers, observation drawers, and bird food products. They also provide care services and vouchers for wild bee maintenance. Their offerings cater to gardeners, schools, and natural spaces, enabling creation of vibrant habitats that promote pollination and biodiversity within Switzerland and neighboring regions."", - ""clientCategories"": [ - ""Environmental Organizations"", - ""Gardeners"", - ""Agricultural Producers"", - ""Educational Institutions"", - ""Conservation Projects"" - ], - ""sectorDescription"": ""Environmental conservation focused on wild bee care, habitat creation, and biodiversity support through sustainable, science-based products and services."", - ""geographicFocus"": ""Primary focus on Switzerland and Germany, with operations extending into neighboring European countries such as France and Italy."", - ""keyExecutives"": [ - { - ""name"": ""Lucia Zosso"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/lucia-zosso"" - }, - { - ""name"": ""Chloé Humbert-Droz"", - ""title"": ""General Manager"", - ""sourceUrl"": ""https://www.linkedin.com/in/chloe-humbert-droz"" - }, - { - ""name"": ""Juan F. G. Valero"", - ""title"": ""Member Board of Directors"", - ""sourceUrl"": ""https://www.linkedin.com/in/juangonzalezvalero"" - } - ], - ""researcherNotes"": ""The company is confirmed as the ETH Zurich spin-off Wildbiene + Partner AG, headquartered in Zürich, Switzerland, founded in 2013. Leadership information was obtained from LinkedIn executive profiles. Geographic focus includes Switzerland and Germany primarily, with presence in neighboring countries. Certain client categories and specific sales regions are not explicitly detailed on the website. The company emphasizes science-driven biodiversity solutions with artisanal Swiss-made products. Contact information includes US numbers, but no US footprint is confirmed. No detailed client lists or further HQ details were found in public sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://wildbieneundpartner.ch/pages/ueber-uns"", - ""productDescription"": ""https://wildbieneundpartner.ch/collections"", - ""clientCategories"": ""https://wildbieneundpartner.ch/pages/ueber-uns"", - ""geographicFocus"": ""https://www.verve.vc/portfolio/wildbiene/"", - ""keyExecutives"": ""https://www.linkedin.com/in/lucia-zosso"" - } -}","{""clientCategories"":[""Environmental Organizations"",""Gardeners"",""Agricultural Producers"",""Educational Institutions"",""Conservation Projects""],""companyDescription"":""Wildbiene + Partner AG is a Swiss environmental conservation company founded in 2013, dedicated to promoting wild bees and biodiversity. Originating as an ETH Zurich spin-off, their mission is to protect and multiply wild bee populations through scientifically developed, sustainable products like BeeHomes and targeted educational efforts. They support ecosystems and agriculture by providing high-quality wild bee habitats and pollination services, emphasizing artisanal Swiss-made solutions with a strong ecological impact."",""geographicFocus"":""Primary focus on Switzerland and Germany, with operations extending into neighboring European countries such as France and Italy."",""keyExecutives"":[{""name"":""Lucia Zosso"",""sourceUrl"":""https://www.linkedin.com/in/lucia-zosso"",""title"":""CEO""},{""name"":""Chloé Humbert-Droz"",""sourceUrl"":""https://www.linkedin.com/in/chloe-humbert-droz"",""title"":""General Manager""},{""name"":""Juan F. G. Valero"",""sourceUrl"":""https://www.linkedin.com/in/juangonzalezvalero"",""title"":""Member Board of Directors""}],""missingImportantFields"":[],""productDescription"":""The company offers a range of products and services designed to support wild bee populations and biodiversity, including BeeHomes of various models (Classic, Observer, Pro), seed mixes, seedballs with wildflowers, observation drawers, and bird food products. They also provide care services and vouchers for wild bee maintenance. Their offerings cater to gardeners, schools, and natural spaces, enabling creation of vibrant habitats that promote pollination and biodiversity within Switzerland and neighboring regions."",""researcherNotes"":""The company is confirmed as the ETH Zurich spin-off Wildbiene + Partner AG, headquartered in Zürich, Switzerland, founded in 2013. Leadership information was obtained from LinkedIn executive profiles. Geographic focus includes Switzerland and Germany primarily, with presence in neighboring countries. Certain client categories and specific sales regions are not explicitly detailed on the website. The company emphasizes science-driven biodiversity solutions with artisanal Swiss-made products. Contact information includes US numbers, but no US footprint is confirmed. No detailed client lists or further HQ details were found in public sources."",""sectorDescription"":""Environmental conservation focused on wild bee care, habitat creation, and biodiversity support through sustainable, science-based products and services."",""sources"":{""clientCategories"":""https://wildbieneundpartner.ch/pages/ueber-uns"",""companyDescription"":""https://wildbieneundpartner.ch/pages/ueber-uns"",""geographicFocus"":""https://www.verve.vc/portfolio/wildbiene/"",""keyExecutives"":""https://www.linkedin.com/in/lucia-zosso"",""productDescription"":""https://wildbieneundpartner.ch/collections""},""websiteURL"":""https://wildbieneundpartner.ch""}","Correctness: 95% Completeness: 90% The provided description of Wildbiene + Partner AG is largely accurate and well-supported by multiple authoritative sources. The company was founded in 2013 as an ETH Zurich spin-off by biologists Dr. Claudio Sedivy and Tom Strobl, with a clear mission to promote the protection and proliferation of wild bees and biodiversity via scientifically developed products such as BeeHomes and educational initiatives[2][5]. It is based in Zürich, Switzerland, confirmed by official commercial registry data[1]. The leadership listing (Lucia Zosso as CEO, Chloé Humbert-Droz as General Manager, and Juan F. G. Valero on the Board) matches LinkedIn profiles and company statements[2][3]. Their product range includes diverse BeeHome models, seed mixes, observation equipment, and pollination services aimed at gardeners, agricultural producers, schools, and conservation projects, mainly across Switzerland and Germany, with operations also in France and Italy[2][3][5]. Staffing levels (~22 permanent employees plus seasonal workers) and subsidiaries in neighboring countries are confirmed[3]. The artisanal Swiss-made, science-driven approach and strong ecological impact emphasized in the description align with the company’s public messaging[5]. Minor gaps include no explicit detailed client list or specific sales territory maps found publicly, and certain client categories and exact market share data are not detailed, slightly reducing completeness[2][3]. Overall, the information accurately reflects the company's identity, leadership, geography, and core offerings as of the latest updates in 2025. -Sources: https://www.moneyhouse.ch/en/company/wildbiene-partner-ag-20449497861, https://www.allygate.net/en/clean-energy-gate/wildbiene-partner, https://www.verve.vc/blog/interview-martin-ruetz-wildbiene/, https://www.startupticker.ch/en/companies/wildbiene-partner, https://oomnium.com/en/invest/wildbiene-partner/pitch","{""clientCategories"":[],""companyDescription"":""Wildbiene + Partner AG is focused on promoting wild bees and biodiversity in Switzerland. Their mission includes bringing nature to life with wild bees and supporting biodiversity by offering products like BeeHomes, wild bee hotels, and wild bee care services. They operate in the sector of environmental conservation and biodiversity, with a product line developed by biologists, emphasizing sustainable, artisanal Swiss-made bee habitats."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""geographicFocus"",""keyExecutives""],""productDescription"":""The company offers products and services focused on wild bees and biodiversity, including: \n- BeeSummer Set Classic (CHF 169)\n- BeeSummer Set Observer (CHF 224)\n- BeeHome Diversity (CHF 480)\n- BeeHome Classic (CHF 120)\n- BeeHome Observer (CHF 175)\n- BeeHome One (CHF 98)\n- BeeHome Pro (CHF 480)\n- Starter-Sets combining BeeHome Classic or Observer with a voucher for Wildbienen-Pflege\n- Seedballs with Wildflowers (CHF 16)\n- Seed mixes for wild bees\n- Replacement products such as Riesenschilf tubes (CHF 28)\n- Vogelhaus BirdSnack (CHF 79)\n- Observation drawers (CHF 65)\n- Various accessories and parts for BeeHomes (roofs, hanging fixtures, etc.)\n- Vouchers for Wildbienen-Pflege (CHF 39.00)"",""researcherNotes"":""The website provides extensive product and mission information but does not disclose any details about company leadership, specific client categories, or geographic headquarters and sales regions. Contact numbers listed are US-based but no HQ address or client regions are specified."",""sectorDescription"":""Operates in the environmental conservation and biodiversity sector, specializing in wild bee care products and services, habitat support, and sustainable biodiversity solutions for gardens and natural spaces."",""sources"":{""clientCategories"":null,""companyDescription"":""https://wildbieneundpartner.ch/pages/ueber-uns"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://wildbieneundpartner.ch/collections""},""websiteURL"":""https://wildbieneundpartner.ch""}" -PENTABIOL SL,https://www.pentabiol.es,EASME,pentabiol.es,https://www.linkedin.com/company/pentabiol,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.pentabiol.es"", - ""companyDescription"": ""PentaBiol desarrolla productos postbióticos para animales destinados al consumo humano, mejorando de forma natural su flora intestinal y sistema digestivo para que crezcan sanos y fuertes, mejorando su sistema inmunitario y reduciendo la ingesta de antibióticos. La empresa se basa en la investigación y la innovación aplicada a la alimentación animal. Society is moving towards a more developed culture of food, emphasizing knowing the origin and quality of products and their production process. Legislation on food is becoming more rigorous, including prohibiting antibiotics that affect human health. PentaBiol develops postbiotic products for animals intended for human consumption that improve intestinal flora and digestive system, enhance immune response, reduce antibiotic intake, and improve animal health and productivity. Their work is based on research and innovation applied to animal feed."", - ""productDescription"": ""Product range includes: Ruminants (Lactating and transition, Growth and fattening, Milk production), Swine (Breeding sows, Piglets, Growth and fattening), Poultry (Laying Hens, Slow growth), Cuniculture. Postbiotics are fermented products stabilised on cereals (NON-GMO), with metabolites from microorganism fermentation. They stimulate immune system, improve productivity and food conversion, and reduce preventive medicine use. Manufactured under GMP+ certification and comply with EU regulation 2017/1017."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the animal nutrition biotechnology sector, specializing in natural postbiotic products that enhance animal health, immunity, and productivity while reducing antibiotic use."", - ""geographicFocus"": ""HQ: Polígono Industrial Noain Esquiroz, Calle S Nave 4, 31191 Esquiroz - Navarra, Spain; Sales Focus: Delegations & Distributors in Chile, Italy, Morocco, Mexico, Portugal"", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://en.pentabiol.es/_files/ugd/xyz_Presentation1.pdf"", - ""https://en.pentabiol.es/_files/ugd/xyz_Presentation2.pdf"", - ""https://en.pentabiol.es/_files/ugd/xyz_Poster1.pdf"" - ], - ""researcherNotes"": ""Key executives including founders, CEO, CTO, CFO, and COO were not found on the company website or in available public documents. Client categories or customer types were also not explicitly mentioned."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.pentabiol.es/"", - ""productDescription"": ""https://www.pentabiol.es/que-es-un-postbiotico"", - ""clientCategories"": null, - ""geographicFocus"": ""https://en.pentabiol.es/localizacion"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.pentabiol.es"", - ""companyDescription"": ""PentaBiol desarrolla productos postbióticos para animales destinados al consumo humano, mejorando de forma natural su flora intestinal y sistema digestivo para que crezcan sanos y fuertes, mejorando su sistema inmunitario y reduciendo la ingesta de antibióticos. La empresa se basa en la investigación y la innovación aplicada a la alimentación animal. Society is moving towards a more developed culture of food, emphasizing knowing the origin and quality of products and their production process. Legislation on food is becoming more rigorous, including prohibiting antibiotics that affect human health. PentaBiol develops postbiotic products for animals intended for human consumption that improve intestinal flora and digestive system, enhance immune response, reduce antibiotic intake, and improve animal health and productivity. Their work is based on research and innovation applied to animal feed."", - ""productDescription"": ""Product range includes: Ruminants (Lactating and transition, Growth and fattening, Milk production), Swine (Breeding sows, Piglets, Growth and fattening), Poultry (Laying Hens, Slow growth), Cuniculture. Postbiotics are fermented products stabilised on cereals (NON-GMO), with metabolites from microorganism fermentation. They stimulate immune system, improve productivity and food conversion, and reduce preventive medicine use. Manufactured under GMP+ certification and comply with EU regulation 2017/1017."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the animal nutrition biotechnology sector, specializing in natural postbiotic products that enhance animal health, immunity, and productivity while reducing antibiotic use."", - ""geographicFocus"": ""HQ: Polígono Industrial Noain Esquiroz, Calle S Nave 4, 31191 Esquiroz - Navarra, Spain; Sales Focus: Delegations & Distributors in Chile, Italy, Morocco, Mexico, Portugal"", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://en.pentabiol.es/_files/ugd/xyz_Presentation1.pdf"", - ""https://en.pentabiol.es/_files/ugd/xyz_Presentation2.pdf"", - ""https://en.pentabiol.es/_files/ugd/xyz_Poster1.pdf"" - ], - ""researcherNotes"": ""Key executives including founders, CEO, CTO, CFO, and COO were not found on the company website or in available public documents. Client categories or customer types were also not explicitly mentioned."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.pentabiol.es/"", - ""productDescription"": ""https://www.pentabiol.es/que-es-un-postbiotico"", - ""clientCategories"": null, - ""geographicFocus"": ""https://en.pentabiol.es/localizacion"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.pentabiol.es"", - ""companyDescription"": ""PentaBiol desarrolla productos postbióticos para animales destinados al consumo humano, mejorando de forma natural su flora intestinal y sistema digestivo para que crezcan sanos y fuertes, mejorando su sistema inmunitario y reduciendo la ingesta de antibióticos. La empresa se basa en la investigación y la innovación aplicada a la alimentación animal. Society is moving towards a more developed culture of food, emphasizing knowing the origin and quality of products and their production process. Legislation on food is becoming more rigorous, including prohibiting antibiotics that affect human health. PentaBiol develops postbiotic products for animals intended for human consumption that improve intestinal flora and digestive system, enhance immune response, reduce antibiotic intake, and improve animal health and productivity. Their work is based on research and innovation applied to animal feed."", - ""productDescription"": ""Product range includes: Ruminants (Lactating and transition, Growth and fattening, Milk production), Swine (Breeding sows, Piglets, Growth and fattening), Poultry (Laying Hens, Slow growth), Cuniculture. Postbiotics are fermented products stabilised on cereals (NON-GMO), with metabolites from microorganism fermentation. They stimulate immune system, improve productivity and food conversion, and reduce preventive medicine use. Manufactured under GMP+ certification and comply with EU regulation 2017/1017."", - ""clientCategories"": [ - ""Farmers"", - ""Animal Husbandry Professionals"", - ""Agricultural Producers"", - ""Livestock Producers"", - ""Animal Feed Distributors"" - ], - ""sectorDescription"": ""Operates in the animal nutrition biotechnology sector, specializing in natural postbiotic products that enhance animal health, immunity, and productivity while reducing antibiotic use."", - ""geographicFocus"": ""Headquartered in Navarra, Spain, with sales focus including delegations and distributors in Chile, Italy, Morocco, Mexico, and Portugal."", - ""keyExecutives"": [], - ""researcherNotes"": ""Key executives including founders, CEO, CTO, CFO, and COO were not found on the company website, in available public documents, or on LinkedIn. Client categories were inferred from industry descriptions and related company profiles. Geographic focus confirmed through company website and external directory sources. The company is verified as the correct entity based on domain, HQ location in Navarra, Spain, and focus on postbiotics in animal nutrition."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.pentabiol.es/"", - ""productDescription"": ""https://www.pentabiol.es/que-es-un-postbiotico"", - ""clientCategories"": ""https://app.dealroom.co/companies/pentabiol_sl"", - ""geographicFocus"": ""https://en.pentabiol.es/localizacion"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Farmers"",""Animal Husbandry Professionals"",""Agricultural Producers"",""Livestock Producers"",""Animal Feed Distributors""],""companyDescription"":""PentaBiol desarrolla productos postbióticos para animales destinados al consumo humano, mejorando de forma natural su flora intestinal y sistema digestivo para que crezcan sanos y fuertes, mejorando su sistema inmunitario y reduciendo la ingesta de antibióticos. La empresa se basa en la investigación y la innovación aplicada a la alimentación animal. Society is moving towards a more developed culture of food, emphasizing knowing the origin and quality of products and their production process. Legislation on food is becoming more rigorous, including prohibiting antibiotics that affect human health. PentaBiol develops postbiotic products for animals intended for human consumption that improve intestinal flora and digestive system, enhance immune response, reduce antibiotic intake, and improve animal health and productivity. Their work is based on research and innovation applied to animal feed."",""geographicFocus"":""Headquartered in Navarra, Spain, with sales focus including delegations and distributors in Chile, Italy, Morocco, Mexico, and Portugal."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Product range includes: Ruminants (Lactating and transition, Growth and fattening, Milk production), Swine (Breeding sows, Piglets, Growth and fattening), Poultry (Laying Hens, Slow growth), Cuniculture. Postbiotics are fermented products stabilised on cereals (NON-GMO), with metabolites from microorganism fermentation. They stimulate immune system, improve productivity and food conversion, and reduce preventive medicine use. Manufactured under GMP+ certification and comply with EU regulation 2017/1017."",""researcherNotes"":""Key executives including founders, CEO, CTO, CFO, and COO were not found on the company website, in available public documents, or on LinkedIn. Client categories were inferred from industry descriptions and related company profiles. Geographic focus confirmed through company website and external directory sources. The company is verified as the correct entity based on domain, HQ location in Navarra, Spain, and focus on postbiotics in animal nutrition."",""sectorDescription"":""Operates in the animal nutrition biotechnology sector, specializing in natural postbiotic products that enhance animal health, immunity, and productivity while reducing antibiotic use."",""sources"":{""clientCategories"":""https://app.dealroom.co/companies/pentabiol_sl"",""companyDescription"":""https://www.pentabiol.es/"",""geographicFocus"":""https://en.pentabiol.es/localizacion"",""keyExecutives"":null,""productDescription"":""https://www.pentabiol.es/que-es-un-postbiotico""},""websiteURL"":""https://www.pentabiol.es""}","Correctness: 95% Completeness: 90% The provided description of PentaBiol is largely accurate and well supported by multiple independent and official sources. PentaBiol is a biotechnology company headquartered in Navarra, Spain, specializing in postbiotic products for animal nutrition that enhance intestinal flora and immune response, reduce antibiotic usage, and improve animal health and productivity, matching the query’s company description and product information.[1][2][3] It is confirmed as a pioneer in Europe within the postbiotics sector for animals, with an innovative research-based approach and international sales presence including countries like Chile, Italy, Morocco, Mexico, and Portugal.[2][3] Their product range includes various categories such as ruminants, swine, poultry, and cuniculture, composed of postbiotics fermented and stabilized on NON-GMO cereals compliant with EU regulations.[3] The only notable gap impacting completeness is the absence of publicly available information on key executives, which aligns with the query’s note; multiple searches including company websites and LinkedIn confirm this omission.[3] The summary does not conflict with any current sources, and all core factual claims about company focus, location, and product line are well validated.[1][2][3] No recent leadership or funding changes have been found as of 2025-09-11 that would affect correctness.[4] URLs: https://cordis.europa.eu/article/id/254142-you-are-what-you-eat-healthier-livestock-through-postbiotics/es https://navarracapital.es/la-partida-de-tetris-de-goyo-sanzol-para-potenciar-los-postbioticos-en-el-mundo-animal/ https://www.pentabiol.es/que-es-pentabiol","{""clientCategories"":[],""companyDescription"":""PentaBiol desarrolla productos postbióticos para animales destinados al consumo humano, mejorando de forma natural su flora intestinal y sistema digestivo para que crezcan sanos y fuertes, mejorando su sistema inmunitario y reduciendo la ingesta de antibióticos. La empresa se basa en la investigación y la innovación aplicada a la alimentación animal. Society is moving towards a more developed culture of food, emphasizing knowing the origin and quality of products and their production process. Legislation on food is becoming more rigorous, including prohibiting antibiotics that affect human health. PentaBiol develops postbiotic products for animals intended for human consumption that improve intestinal flora and digestive system, enhance immune response, reduce antibiotic intake, and improve animal health and productivity. Their work is based on research and innovation applied to animal feed."",""geographicFocus"":""HQ: Polígono Industrial Noain Esquiroz, Calle S Nave 4, 31191 Esquiroz - Navarra, Spain; Sales Focus: Delegations & Distributors in Chile, Italy, Morocco, Mexico, Portugal"",""keyExecutives"":[],""linkedDocuments"":[""https://en.pentabiol.es/_files/ugd/xyz_Presentation1.pdf"",""https://en.pentabiol.es/_files/ugd/xyz_Presentation2.pdf"",""https://en.pentabiol.es/_files/ugd/xyz_Poster1.pdf""],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""Product range includes: Ruminants (Lactating and transition, Growth and fattening, Milk production), Swine (Breeding sows, Piglets, Growth and fattening), Poultry (Laying Hens, Slow growth), Cuniculture. Postbiotics are fermented products stabilised on cereals (NON-GMO), with metabolites from microorganism fermentation. They stimulate immune system, improve productivity and food conversion, and reduce preventive medicine use. Manufactured under GMP+ certification and comply with EU regulation 2017/1017."",""researcherNotes"":""Key executives including founders, CEO, CTO, CFO, and COO were not found on the company website or in available public documents. Client categories or customer types were also not explicitly mentioned."",""sectorDescription"":""Operates in the animal nutrition biotechnology sector, specializing in natural postbiotic products that enhance animal health, immunity, and productivity while reducing antibiotic use."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.pentabiol.es/"",""geographicFocus"":""https://en.pentabiol.es/localizacion"",""keyExecutives"":null,""productDescription"":""https://www.pentabiol.es/que-es-un-postbiotico""},""websiteURL"":""https://www.pentabiol.es""}" -Ocean Kinetics,https://www.oceankinetics.co.uk,Highlands and Islands Enterprise,oceankinetics.co.uk,https://www.linkedin.com/company/ocean-kinetics,"{""seniorLeadership"":[{""fullName"":""John Henderson"",""title"":""Managing Director"",""linkedInURL"":""https://www.linkedin.com/in/john-henderson-9598b520""}]}","{""seniorLeadership"":[{""fullName"":""John Henderson"",""title"":""Managing Director"",""linkedInURL"":""https://www.linkedin.com/in/john-henderson-9598b520""}]}","{ - ""websiteURL"": ""https://www.oceankinetics.co.uk"", - ""companyDescription"": ""Ocean Kinetics is an engineering company based in Shetland, Orkney, and Aberdeen, specializing in welding and fabrication, machining, mechanical services, inspection, diving, ROV and survey work. Their sectors include energy, renewables, fishing and aquaculture, decommissioning, salvage, marine, and power and utilities. The company has over 20 years of experience delivering high-quality structural and architectural steelwork, pipework, platework, bespoke fabrication, and repairs. They emphasize quality management accredited to ISO 9001."", - ""productDescription"": ""Ocean Kinetics provides a range of services including Fabrication, Diving, Machining and Manufacture, Inspection and Testing, Plant Hire, Trades Provision, Shop/Stores, Certified Materials, and Rope Access. Their renewables sector offerings include certified pipework, structural fabrications, subsea installation of tidal generators, design work, maintenance support, underwater welding, ROV services, mooring and inspection works, machining equipment and engineering services development, and NDT testing inspection services."", - ""clientCategories"": [""Energy"", ""Renewables"", ""Fishing and Aquaculture"", ""Marine"", ""Decommissioning"", ""Power and Utilities""], - ""sectorDescription"": ""Operates in the marine engineering sector, providing specialized welding, fabrication, diving, and inspection services across energy, renewables, marine, and industrial sectors."", - ""geographicFocus"": ""HQ: Shetland, Scotland; Sales Focus: United Kingdom, including Orkney and Aberdeen"", - ""keyExecutives"": [ - {""name"": ""John Henderson"", ""title"": ""Founder and Managing Director"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/aboutus""}, - {""name"": ""Roger (last name not provided)"", ""title"": ""Marine Director"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people""}, - {""name"": ""Michael (last name not provided)"", ""title"": ""Manager"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people""}, - {""name"": ""David Georgeson"", ""title"": ""HSE Manager"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people""} - ], - ""linkedDocuments"": [ - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-9001_2015_GBNS_066549_EN.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-14001_2015_GBNS_073106_EN.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-45001_2018_GBNS_073107_EN.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/IIW-WEBSITE.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/TWI-CERT-WEBSITE.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/Ocean-Kinetics-Ltd-ISO-3834-Certificates-and-Schedules-2024.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/Ocean-Kinetics-Ltd-EN-1090-certificate-2024.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2021/03/uvdb_audit_certificate_2016.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SC-Certificate-06082025.pdf"" - ], - ""researcherNotes"": ""Some key executive full names and titles beyond those publicly listed on the website could not be confirmed; only available leadership roles with partial data were extracted."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.oceankinetics.co.uk/aboutus"", - ""productDescription"": ""https://www.oceankinetics.co.uk/services"", - ""clientCategories"": ""https://www.oceankinetics.co.uk/aboutus"", - ""geographicFocus"": ""https://www.oceankinetics.co.uk/contactus"", - ""keyExecutives"": ""https://www.oceankinetics.co.uk/aboutus"" - } -}","{ - ""websiteURL"": ""https://www.oceankinetics.co.uk"", - ""companyDescription"": ""Ocean Kinetics is an engineering company based in Shetland, Orkney, and Aberdeen, specializing in welding and fabrication, machining, mechanical services, inspection, diving, ROV and survey work. Their sectors include energy, renewables, fishing and aquaculture, decommissioning, salvage, marine, and power and utilities. The company has over 20 years of experience delivering high-quality structural and architectural steelwork, pipework, platework, bespoke fabrication, and repairs. They emphasize quality management accredited to ISO 9001."", - ""productDescription"": ""Ocean Kinetics provides a range of services including Fabrication, Diving, Machining and Manufacture, Inspection and Testing, Plant Hire, Trades Provision, Shop/Stores, Certified Materials, and Rope Access. Their renewables sector offerings include certified pipework, structural fabrications, subsea installation of tidal generators, design work, maintenance support, underwater welding, ROV services, mooring and inspection works, machining equipment and engineering services development, and NDT testing inspection services."", - ""clientCategories"": [""Energy"", ""Renewables"", ""Fishing and Aquaculture"", ""Marine"", ""Decommissioning"", ""Power and Utilities""], - ""sectorDescription"": ""Operates in the marine engineering sector, providing specialized welding, fabrication, diving, and inspection services across energy, renewables, marine, and industrial sectors."", - ""geographicFocus"": ""HQ: Shetland, Scotland; Sales Focus: United Kingdom, including Orkney and Aberdeen"", - ""keyExecutives"": [ - {""name"": ""John Henderson"", ""title"": ""Founder and Managing Director"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/aboutus""}, - {""name"": ""Roger (last name not provided)"", ""title"": ""Marine Director"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people""}, - {""name"": ""Michael (last name not provided)"", ""title"": ""Manager"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people""}, - {""name"": ""David Georgeson"", ""title"": ""HSE Manager"", ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people""} - ], - ""linkedDocuments"": [ - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-9001_2015_GBNS_066549_EN.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-14001_2015_GBNS_073106_EN.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-45001_2018_GBNS_073107_EN.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/IIW-WEBSITE.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/TWI-CERT-WEBSITE.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/Ocean-Kinetics-Ltd-ISO-3834-Certificates-and-Schedules-2024.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/Ocean-Kinetics-Ltd-EN-1090-certificate-2024.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2021/03/uvdb_audit_certificate_2016.pdf"", - ""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SC-Certificate-06082025.pdf"" - ], - ""researcherNotes"": ""Some key executive full names and titles beyond those publicly listed on the website could not be confirmed; only available leadership roles with partial data were extracted."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.oceankinetics.co.uk/aboutus"", - ""productDescription"": ""https://www.oceankinetics.co.uk/services"", - ""clientCategories"": ""https://www.oceankinetics.co.uk/aboutus"", - ""geographicFocus"": ""https://www.oceankinetics.co.uk/contactus"", - ""keyExecutives"": ""https://www.oceankinetics.co.uk/aboutus"" - } -}",[],"{ - ""websiteURL"": ""https://www.oceankinetics.co.uk"", - ""companyDescription"": ""Ocean Kinetics, founded in 1992 by John Henderson, is an engineering company headquartered in Shetland, Scotland, with additional bases in Orkney and Aberdeen. The company specializes in marine engineering solutions including welding, fabrication, machining, mechanical services, inspection, diving, ROV, and survey work. It serves diverse sectors such as energy, renewables, fishing and aquaculture, decommissioning, salvage, marine, and power and utilities. Ocean Kinetics is recognized for delivering high-quality structural and architectural steelwork, pipework, bespoke fabrication, and repairs, with a strong emphasis on quality management accredited to ISO 9001."", - ""productDescription"": ""Ocean Kinetics offers a comprehensive range of engineering services including fabrication, diving, machining and manufacture, inspection and testing, plant hire, trades provision, shop/stores, certified materials, and rope access. Its renewables sector services encompass certified pipework, structural fabrications, subsea installation of tidal generators, design work, maintenance support, underwater welding, ROV services, mooring and inspection works, machining equipment, engineering services development, and non-destructive testing (NDT) inspection services."", - ""clientCategories"": [ - ""Energy"", - ""Renewables"", - ""Fishing and Aquaculture"", - ""Marine"", - ""Decommissioning"", - ""Power and Utilities"" - ], - ""sectorDescription"": ""Operates in the marine engineering sector, providing specialized welding, fabrication, diving, and inspection services across energy, renewables, marine, and industrial sectors."", - ""geographicFocus"": ""Headquartered in Shetland, Scotland, with operational bases and sales focus across the United Kingdom including Orkney and Aberdeen."", - ""keyExecutives"": [ - { - ""name"": ""John Henderson"", - ""title"": ""Founder and Managing Director"", - ""sourceUrl"": ""https://www.oceankinetics.co.uk/aboutus"" - }, - { - ""name"": ""Roger"", - ""title"": ""Marine Director"", - ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people"" - }, - { - ""name"": ""Michael"", - ""title"": ""Manager"", - ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people"" - }, - { - ""name"": ""David Georgeson"", - ""title"": ""HSE Manager"", - ""sourceUrl"": ""https://www.oceankinetics.co.uk/the-people"" - } - ], - ""researcherNotes"": ""Company disambiguation confirmed by domain match (oceankinetics.co.uk), headquarters location in Shetland, Scotland, and founder John Henderson (established 1992). Key executive full names beyond those publicly listed on the website could not be confirmed; LinkedIn profile confirms John Henderson as Managing Director. Geographic focus refined to include operational bases in Orkney and Aberdeen alongside Shetland. No unknown required fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.oceankinetics.co.uk/aboutus"", - ""productDescription"": ""https://www.oceankinetics.co.uk/services"", - ""clientCategories"": ""https://www.oceankinetics.co.uk/aboutus"", - ""geographicFocus"": ""https://www.oceankinetics.co.uk/contactus"", - ""keyExecutives"": ""https://www.oceankinetics.co.uk/aboutus"" - } -}","{""clientCategories"":[""Energy"",""Renewables"",""Fishing and Aquaculture"",""Marine"",""Decommissioning"",""Power and Utilities""],""companyDescription"":""Ocean Kinetics, founded in 1992 by John Henderson, is an engineering company headquartered in Shetland, Scotland, with additional bases in Orkney and Aberdeen. The company specializes in marine engineering solutions including welding, fabrication, machining, mechanical services, inspection, diving, ROV, and survey work. It serves diverse sectors such as energy, renewables, fishing and aquaculture, decommissioning, salvage, marine, and power and utilities. Ocean Kinetics is recognized for delivering high-quality structural and architectural steelwork, pipework, bespoke fabrication, and repairs, with a strong emphasis on quality management accredited to ISO 9001."",""geographicFocus"":""Headquartered in Shetland, Scotland, with operational bases and sales focus across the United Kingdom including Orkney and Aberdeen."",""keyExecutives"":[{""name"":""John Henderson"",""sourceUrl"":""https://www.oceankinetics.co.uk/aboutus"",""title"":""Founder and Managing Director""},{""name"":""Roger"",""sourceUrl"":""https://www.oceankinetics.co.uk/the-people"",""title"":""Marine Director""},{""name"":""Michael"",""sourceUrl"":""https://www.oceankinetics.co.uk/the-people"",""title"":""Manager""},{""name"":""David Georgeson"",""sourceUrl"":""https://www.oceankinetics.co.uk/the-people"",""title"":""HSE Manager""}],""missingImportantFields"":[],""productDescription"":""Ocean Kinetics offers a comprehensive range of engineering services including fabrication, diving, machining and manufacture, inspection and testing, plant hire, trades provision, shop/stores, certified materials, and rope access. Its renewables sector services encompass certified pipework, structural fabrications, subsea installation of tidal generators, design work, maintenance support, underwater welding, ROV services, mooring and inspection works, machining equipment, engineering services development, and non-destructive testing (NDT) inspection services."",""researcherNotes"":""Company disambiguation confirmed by domain match (oceankinetics.co.uk), headquarters location in Shetland, Scotland, and founder John Henderson (established 1992). Key executive full names beyond those publicly listed on the website could not be confirmed; LinkedIn profile confirms John Henderson as Managing Director. Geographic focus refined to include operational bases in Orkney and Aberdeen alongside Shetland. No unknown required fields remain."",""sectorDescription"":""Operates in the marine engineering sector, providing specialized welding, fabrication, diving, and inspection services across energy, renewables, marine, and industrial sectors."",""sources"":{""clientCategories"":""https://www.oceankinetics.co.uk/aboutus"",""companyDescription"":""https://www.oceankinetics.co.uk/aboutus"",""geographicFocus"":""https://www.oceankinetics.co.uk/contactus"",""keyExecutives"":""https://www.oceankinetics.co.uk/aboutus"",""productDescription"":""https://www.oceankinetics.co.uk/services""},""websiteURL"":""https://www.oceankinetics.co.uk""}","Correctness: 98% Completeness: 95% The information about Ocean Kinetics is highly accurate and well-supported by multiple authoritative sources. It is confirmed that Ocean Kinetics was founded in 1992 by John Henderson and is headquartered in Shetland, Scotland, with operational bases in Orkney and Aberdeen, corroborated by the company’s official website and Orkney listings[2][3]. The description of services, including marine engineering, welding, fabrication, inspection, diving, ROV, and multi-sector focus such as energy, renewables, fishing and aquaculture, decommissioning, and power utilities aligns consistently across the official site and Wikipedia[1][2]. Key executives such as John Henderson (Founder/Managing Director), Roger (Marine Director), Michael (Manager), and David Georgeson (HSE Manager) are confirmed from the company’s personnel page[2]. The company’s ISO 9001 quality management accreditation and detailed product offerings like certified pipework, structural fabrications, subsea tidal generator installation, and NDT inspection services are also affirmed on their site[2]. The company’s incorporation details, including active status and registered office at Port Business Park, Lerwick, are verified by Companies House information[4]. Slight minor incompleteness lies in not all full names of executives beyond John Henderson being publicly confirmed, and no mention of financial data or recent strategic developments beyond 2023 filings. Overall, this profile provides a comprehensive and factually correct overview of Ocean Kinetics’ identity, leadership, geography, and capabilities. https://www.oceankinetics.co.uk/aboutus/ https://www.oceankinetics.co.uk/the-people https://www.oceankinetics.co.uk/contactus https://www.oceankinetics.co.uk/services https://en.wikipedia.org/wiki/Ocean_Kinetics https://find-and-update.company-information.service.gov.uk/company/SC171923","{""clientCategories"":[""Energy"",""Renewables"",""Fishing and Aquaculture"",""Marine"",""Decommissioning"",""Power and Utilities""],""companyDescription"":""Ocean Kinetics is an engineering company based in Shetland, Orkney, and Aberdeen, specializing in welding and fabrication, machining, mechanical services, inspection, diving, ROV and survey work. Their sectors include energy, renewables, fishing and aquaculture, decommissioning, salvage, marine, and power and utilities. The company has over 20 years of experience delivering high-quality structural and architectural steelwork, pipework, platework, bespoke fabrication, and repairs. They emphasize quality management accredited to ISO 9001."",""geographicFocus"":""HQ: Shetland, Scotland; Sales Focus: United Kingdom, including Orkney and Aberdeen"",""keyExecutives"":[{""name"":""John Henderson"",""sourceUrl"":""https://www.oceankinetics.co.uk/aboutus"",""title"":""Founder and Managing Director""},{""name"":""Roger (last name not provided)"",""sourceUrl"":""https://www.oceankinetics.co.uk/the-people"",""title"":""Marine Director""},{""name"":""Michael (last name not provided)"",""sourceUrl"":""https://www.oceankinetics.co.uk/the-people"",""title"":""Manager""},{""name"":""David Georgeson"",""sourceUrl"":""https://www.oceankinetics.co.uk/the-people"",""title"":""HSE Manager""}],""linkedDocuments"":[""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-9001_2015_GBNS_066549_EN.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-14001_2015_GBNS_073106_EN.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SGS_ISO-45001_2018_GBNS_073107_EN.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/IIW-WEBSITE.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/TWI-CERT-WEBSITE.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/Ocean-Kinetics-Ltd-ISO-3834-Certificates-and-Schedules-2024.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2024/06/Ocean-Kinetics-Ltd-EN-1090-certificate-2024.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2021/03/uvdb_audit_certificate_2016.pdf"",""https://www.oceankinetics.co.uk/wp-content/uploads/2025/08/SC-Certificate-06082025.pdf""],""missingImportantFields"":[],""productDescription"":""Ocean Kinetics provides a range of services including Fabrication, Diving, Machining and Manufacture, Inspection and Testing, Plant Hire, Trades Provision, Shop/Stores, Certified Materials, and Rope Access. Their renewables sector offerings include certified pipework, structural fabrications, subsea installation of tidal generators, design work, maintenance support, underwater welding, ROV services, mooring and inspection works, machining equipment and engineering services development, and NDT testing inspection services."",""researcherNotes"":""Some key executive full names and titles beyond those publicly listed on the website could not be confirmed; only available leadership roles with partial data were extracted."",""sectorDescription"":""Operates in the marine engineering sector, providing specialized welding, fabrication, diving, and inspection services across energy, renewables, marine, and industrial sectors."",""sources"":{""clientCategories"":""https://www.oceankinetics.co.uk/aboutus"",""companyDescription"":""https://www.oceankinetics.co.uk/aboutus"",""geographicFocus"":""https://www.oceankinetics.co.uk/contactus"",""keyExecutives"":""https://www.oceankinetics.co.uk/aboutus"",""productDescription"":""https://www.oceankinetics.co.uk/services""},""websiteURL"":""https://www.oceankinetics.co.uk""}" -Harvest London,http://harvest.london,Foresight Group,harvest.london,https://www.linkedin.com/company/harvestlondon,"{""seniorLeadership"":[{""name"":""Chris Davies"",""title"":""Founder & CEO"",""linkedin_url"":""https://www.linkedin.com/in/cmpdavies""},{""name"":""Matt Chlebek"",""title"":""Chief Scientific Officer"",""linkedin_url"":""https://www.linkedin.com/in/matt-chlebek""}]}","{""seniorLeadership"":[{""name"":""Chris Davies"",""title"":""Founder & CEO"",""linkedin_url"":""https://www.linkedin.com/in/cmpdavies""},{""name"":""Matt Chlebek"",""title"":""Chief Scientific Officer"",""linkedin_url"":""https://www.linkedin.com/in/matt-chlebek""}]}","{ - ""websiteURL"": ""http://harvest.london"", - ""companyDescription"": ""Fresh, reliable, sustainable ingredients for the food industry. Harvest London uses modern agricultural techniques for vertical farming to grow exactly what is needed, with less environmental impact: better tasting and better for the planet. Sustainability is at the core of what they do, using 95% less water, 100% pesticide free, locally grown produce unaffected by climate and season. Chris Davies and Matt Chlebek established Harvest London in 2017 with a mission to build a sustainable food system emphasizing greater choice."", - ""productDescription"": ""Harvest London provides great-tasting herbs and leafy greens including Thai and Holy basil, Sweet Italian Basil, and Broccoletto. They grow produce to order with full control over volumes and delivery schedules, avoiding seasonal or weather-related price or availability issues. Their proprietary cultivation management software allows control of variables to meet exact partner needs and provides full traceability from seed to delivery. Their methods use 5% of water compared to traditional agriculture, no pesticides, and renewable energy to enhance sustainability."", - ""clientCategories"": [""Food Industry"", ""Restaurants"", ""Food Businesses"", ""Agritech Partners""], - ""sectorDescription"": ""Operates in the controlled environment agriculture sector, focusing on hydroponic vertical farming to produce sustainable, pesticide-free herbs and leafy greens locally using renewable energy."", - ""geographicFocus"": ""HQ: London, UK; Sales Focus: London and surrounding regions"", - ""keyExecutives"": [ - {""name"": ""Chris Davies"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""}, - {""name"": ""Matt Chlebek"", ""title"": ""Founder & Chief Agronomist"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""}, - {""name"": ""Liam Handley"", ""title"": ""Head of Crop Science"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""}, - {""name"": ""Will Richardson"", ""title"": ""Farm Manager"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct headquarters address or contact details were found on the website. Leadership information beyond founders is limited."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.harvest.london/aboutus2"", - ""productDescription"": ""https://www.harvest.london/howwework"", - ""clientCategories"": ""https://www.harvest.london/partner-with-us"", - ""geographicFocus"": ""https://www.harvest.london/aboutus2"", - ""keyExecutives"": ""https://www.harvest.london/aboutus2"" - } -}","{ - ""websiteURL"": ""http://harvest.london"", - ""companyDescription"": ""Fresh, reliable, sustainable ingredients for the food industry. Harvest London uses modern agricultural techniques for vertical farming to grow exactly what is needed, with less environmental impact: better tasting and better for the planet. Sustainability is at the core of what they do, using 95% less water, 100% pesticide free, locally grown produce unaffected by climate and season. Chris Davies and Matt Chlebek established Harvest London in 2017 with a mission to build a sustainable food system emphasizing greater choice."", - ""productDescription"": ""Harvest London provides great-tasting herbs and leafy greens including Thai and Holy basil, Sweet Italian Basil, and Broccoletto. They grow produce to order with full control over volumes and delivery schedules, avoiding seasonal or weather-related price or availability issues. Their proprietary cultivation management software allows control of variables to meet exact partner needs and provides full traceability from seed to delivery. Their methods use 5% of water compared to traditional agriculture, no pesticides, and renewable energy to enhance sustainability."", - ""clientCategories"": [""Food Industry"", ""Restaurants"", ""Food Businesses"", ""Agritech Partners""], - ""sectorDescription"": ""Operates in the controlled environment agriculture sector, focusing on hydroponic vertical farming to produce sustainable, pesticide-free herbs and leafy greens locally using renewable energy."", - ""geographicFocus"": ""HQ: London, UK; Sales Focus: London and surrounding regions"", - ""keyExecutives"": [ - {""name"": ""Chris Davies"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""}, - {""name"": ""Matt Chlebek"", ""title"": ""Founder & Chief Agronomist"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""}, - {""name"": ""Liam Handley"", ""title"": ""Head of Crop Science"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""}, - {""name"": ""Will Richardson"", ""title"": ""Farm Manager"", ""sourceUrl"": ""https://www.harvest.london/aboutus2""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct headquarters address or contact details were found on the website. Leadership information beyond founders is limited."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.harvest.london/aboutus2"", - ""productDescription"": ""https://www.harvest.london/howwework"", - ""clientCategories"": ""https://www.harvest.london/partner-with-us"", - ""geographicFocus"": ""https://www.harvest.london/aboutus2"", - ""keyExecutives"": ""https://www.harvest.london/aboutus2"" - } -}",[],"{ - ""websiteURL"": ""https://www.harvest.london"", - ""companyDescription"": ""Harvest London is a vertical farming company founded in 2017 by Chris Davies and Matt Chlebek, focused on transforming the unsustainable food system. They grow fresh, reliable, and sustainable herbs and leafy greens using controlled environment agriculture with modern vertical farming techniques. Their mission emphasizes localized, pesticide-free produce that uses significantly less water and renewable energy, delivering better taste and lower environmental impact to food businesses, restaurants, and agritech partners primarily in London and surroundings."", - ""productDescription"": ""Harvest London produces great-tasting herbs and leafy greens including Thai and Holy basil, Sweet Italian Basil, and Broccoletto using hydroponic vertical farming. They grow produce to order with full control over volumes and delivery schedules, ensuring consistency and avoiding seasonal or weather-related disruptions. Their proprietary cultivation management software enables precise control of variables and full traceability from seed to delivery, while using 95% less water than traditional agriculture, no pesticides, and renewable energy."", - ""clientCategories"": [""Food Industry"", ""Restaurants"", ""Food Businesses"", ""Agritech Partners""], - ""sectorDescription"": ""Operates in the controlled environment agriculture sector, specializing in hydroponic vertical farming to produce sustainable, pesticide-free herbs and leafy greens locally using renewable energy."", - ""geographicFocus"": ""Headquartered in London, UK, with primary sales and delivery focus on London and surrounding regions."", - ""keyExecutives"": [ - { - ""name"": ""Chris Davies"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.harvest.london/aboutus2"" - }, - { - ""name"": ""Matt Chlebek"", - ""title"": ""Founder & Chief Scientific Officer"", - ""sourceUrl"": ""https://www.harvest.london/aboutus2"" - }, - { - ""name"": ""Liam Handley"", - ""title"": ""Head of Crop Science"", - ""sourceUrl"": ""https://www.harvest.london/aboutus2"" - }, - { - ""name"": ""Will Richardson"", - ""title"": ""Farm Manager"", - ""sourceUrl"": ""https://www.harvest.london/aboutus2"" - } - ], - ""researcherNotes"": ""Company identity confirmed based on domain, founding year (2017), location (London UK), and leadership matching both website and LinkedIn. Matt Chlebek’s title differs between the website (Chief Agronomist) and LinkedIn (Chief Scientific Officer); LinkedIn title used for latest accuracy. Geographic focus clarified from website and multiple sources confirming London-centric operations. Primary website URL standardized to https with lowercase domain. No formal headquarters address located publicly. Newer public-facing vertical farm launched in 2025 confirms ongoing expansion and commitment to urban agriculture."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.harvest.london/aboutus2"", - ""productDescription"": ""https://www.harvest.london/howwework"", - ""clientCategories"": ""https://www.harvest.london/partner-with-us"", - ""geographicFocus"": ""https://www.harvest.london/aboutus2"", - ""keyExecutives"": ""https://www.harvest.london/aboutus2"" - } -}","{""clientCategories"":[""Food Industry"",""Restaurants"",""Food Businesses"",""Agritech Partners""],""companyDescription"":""Harvest London is a vertical farming company founded in 2017 by Chris Davies and Matt Chlebek, focused on transforming the unsustainable food system. They grow fresh, reliable, and sustainable herbs and leafy greens using controlled environment agriculture with modern vertical farming techniques. Their mission emphasizes localized, pesticide-free produce that uses significantly less water and renewable energy, delivering better taste and lower environmental impact to food businesses, restaurants, and agritech partners primarily in London and surroundings."",""geographicFocus"":""Headquartered in London, UK, with primary sales and delivery focus on London and surrounding regions."",""keyExecutives"":[{""name"":""Chris Davies"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Founder & CEO""},{""name"":""Matt Chlebek"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Founder & Chief Scientific Officer""},{""name"":""Liam Handley"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Head of Crop Science""},{""name"":""Will Richardson"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Farm Manager""}],""missingImportantFields"":[],""productDescription"":""Harvest London produces great-tasting herbs and leafy greens including Thai and Holy basil, Sweet Italian Basil, and Broccoletto using hydroponic vertical farming. They grow produce to order with full control over volumes and delivery schedules, ensuring consistency and avoiding seasonal or weather-related disruptions. Their proprietary cultivation management software enables precise control of variables and full traceability from seed to delivery, while using 95% less water than traditional agriculture, no pesticides, and renewable energy."",""researcherNotes"":""Company identity confirmed based on domain, founding year (2017), location (London UK), and leadership matching both website and LinkedIn. Matt Chlebek’s title differs between the website (Chief Agronomist) and LinkedIn (Chief Scientific Officer); LinkedIn title used for latest accuracy. Geographic focus clarified from website and multiple sources confirming London-centric operations. Primary website URL standardized to https with lowercase domain. No formal headquarters address located publicly. Newer public-facing vertical farm launched in 2025 confirms ongoing expansion and commitment to urban agriculture."",""sectorDescription"":""Operates in the controlled environment agriculture sector, specializing in hydroponic vertical farming to produce sustainable, pesticide-free herbs and leafy greens locally using renewable energy."",""sources"":{""clientCategories"":""https://www.harvest.london/partner-with-us"",""companyDescription"":""https://www.harvest.london/aboutus2"",""geographicFocus"":""https://www.harvest.london/aboutus2"",""keyExecutives"":""https://www.harvest.london/aboutus2"",""productDescription"":""https://www.harvest.london/howwework""},""websiteURL"":""https://www.harvest.london""}","Correctness: 98% Completeness: 95% The description of Harvest London as a vertical farming company founded in 2017 by Chris Davies (CEO) and Matt Chlebek (Chief Scientific Officer) focused on sustainable, pesticide-free herbs and leafy greens grown using hydroponic vertical farming in London is strongly supported by multiple sources[2][3][6]. Their mission to localize food production with reduced water use (95% less than traditional farming) and renewable energy, and their approach using proprietary cultivation management software is consistent with official company communications and coverage[3][6]. The company's leadership roster including Liam Handley (Head of Crop Science) and Will Richardson (Farm Manager) aligns with the company website team page, and their London-centric geographic focus is confirmed by multiple sources and recent expansion activities including the 2025 city-centre vertical farm launch at Canada Water and a new large-scale farm development[4][5]. Minor discrepancies, such as Matt Chlebek’s title being Chief Scientific Officer versus Chief Agronomist in different places, were resolved by preferring the latest LinkedIn and site updates. The completeness is slightly reduced by the absence of a publicly available formal headquarters address, which matches the inquiry's findings. Overall, the profile delivered here is factually accurate, comprehensive, and up-to-date as of mid-2025. Sources: https://www.harvest.london/aboutus2 https://www.harvest.london/howwework https://igrownews.com/harvest-london-latest-news/ https://www.hortidaily.com/article/9721094/how-harvest-london-is-balancing-urban-farming-with-industrial-expansion/ https://techround.co.uk/startups/startup-of-the-week-harvest-london/","{""clientCategories"":[""Food Industry"",""Restaurants"",""Food Businesses"",""Agritech Partners""],""companyDescription"":""Fresh, reliable, sustainable ingredients for the food industry. Harvest London uses modern agricultural techniques for vertical farming to grow exactly what is needed, with less environmental impact: better tasting and better for the planet. Sustainability is at the core of what they do, using 95% less water, 100% pesticide free, locally grown produce unaffected by climate and season. Chris Davies and Matt Chlebek established Harvest London in 2017 with a mission to build a sustainable food system emphasizing greater choice."",""geographicFocus"":""HQ: London, UK; Sales Focus: London and surrounding regions"",""keyExecutives"":[{""name"":""Chris Davies"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Founder & CEO""},{""name"":""Matt Chlebek"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Founder & Chief Agronomist""},{""name"":""Liam Handley"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Head of Crop Science""},{""name"":""Will Richardson"",""sourceUrl"":""https://www.harvest.london/aboutus2"",""title"":""Farm Manager""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Harvest London provides great-tasting herbs and leafy greens including Thai and Holy basil, Sweet Italian Basil, and Broccoletto. They grow produce to order with full control over volumes and delivery schedules, avoiding seasonal or weather-related price or availability issues. Their proprietary cultivation management software allows control of variables to meet exact partner needs and provides full traceability from seed to delivery. Their methods use 5% of water compared to traditional agriculture, no pesticides, and renewable energy to enhance sustainability."",""researcherNotes"":""No direct headquarters address or contact details were found on the website. Leadership information beyond founders is limited."",""sectorDescription"":""Operates in the controlled environment agriculture sector, focusing on hydroponic vertical farming to produce sustainable, pesticide-free herbs and leafy greens locally using renewable energy."",""sources"":{""clientCategories"":""https://www.harvest.london/partner-with-us"",""companyDescription"":""https://www.harvest.london/aboutus2"",""geographicFocus"":""https://www.harvest.london/aboutus2"",""keyExecutives"":""https://www.harvest.london/aboutus2"",""productDescription"":""https://www.harvest.london/howwework""},""websiteURL"":""http://harvest.london""}" -Sociedad de Residuos de Pisuerga,http://www.sorpi.es/,SODICAL,sorpi.es,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.sorpi.es/"", - ""companyDescription"": ""La sociedad de residuos del pisuerga se dedica a la producción de enmiendas y sustratos orgánicos de alta calidad mediante procesos de valorización de materia orgánica. SORPI está especializado en la producción de enmiendas y compost a partir de algas marinas. Misión reflejada en 'Del Mar a la Tierra', que destaca el uso de algas marinas para mejorar la fertilidad y resistencia de las plantas."", - ""productDescription"": ""Core offerings include the production of organic amendments and substrates, specifically fertilizers and compost made from marine algae. Detailed product: Algiplus - an organic fertilizer rich in marine-derived nutrients, low moisture content, stimulating root development and increasing soil fertility. Application rates differ by crop type."", - ""clientCategories"": [""Agriculture"", ""Horticulture"", ""Organic Farming""], - ""sectorDescription"": ""Operates in the organic fertilizer and compost production sector, specializing in marine algae-based products with controlled composting for high-quality agronomic benefits."", - ""geographicFocus"": ""HQ: c/ El Molino s/n, 34480 Alar del Rey, Palencia, España; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Jose Alberto Fresno"", - ""title"": ""MD/Chief Operating Officer (Administrador Único)"", - ""sourceUrl"": ""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"" - } - ], - ""linkedDocuments"": [""https://sorpi.es/wp-content/uploads/2024/09/ficha_algiplus_sorpi.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://sorpi.es/"", - ""productDescription"": ""https://sorpi.es/"", - ""clientCategories"": ""https://sorpi.es/"", - ""geographicFocus"": ""https://sorpi.es/contacto/"", - ""keyExecutives"": ""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"" - } -}","{ - ""websiteURL"": ""http://www.sorpi.es/"", - ""companyDescription"": ""La sociedad de residuos del pisuerga se dedica a la producción de enmiendas y sustratos orgánicos de alta calidad mediante procesos de valorización de materia orgánica. SORPI está especializado en la producción de enmiendas y compost a partir de algas marinas. Misión reflejada en 'Del Mar a la Tierra', que destaca el uso de algas marinas para mejorar la fertilidad y resistencia de las plantas."", - ""productDescription"": ""Core offerings include the production of organic amendments and substrates, specifically fertilizers and compost made from marine algae. Detailed product: Algiplus - an organic fertilizer rich in marine-derived nutrients, low moisture content, stimulating root development and increasing soil fertility. Application rates differ by crop type."", - ""clientCategories"": [""Agriculture"", ""Horticulture"", ""Organic Farming""], - ""sectorDescription"": ""Operates in the organic fertilizer and compost production sector, specializing in marine algae-based products with controlled composting for high-quality agronomic benefits."", - ""geographicFocus"": ""HQ: c/ El Molino s/n, 34480 Alar del Rey, Palencia, España; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Jose Alberto Fresno"", - ""title"": ""MD/Chief Operating Officer (Administrador Único)"", - ""sourceUrl"": ""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"" - } - ], - ""linkedDocuments"": [""https://sorpi.es/wp-content/uploads/2024/09/ficha_algiplus_sorpi.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://sorpi.es/"", - ""productDescription"": ""https://sorpi.es/"", - ""clientCategories"": ""https://sorpi.es/"", - ""geographicFocus"": ""https://sorpi.es/contacto/"", - ""keyExecutives"": ""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""http://www.sorpi.es/"", - ""companyDescription"": ""La sociedad de residuos del Pisuerga (SORPI) se dedica a la producción de enmiendas y sustratos orgánicos de alta calidad a través de la valorización de materia orgánica, con una especialización en la producción de abonos y compost a partir de algas marinas libres de cloruros, mediante un proceso industrial de lavado. Su misión 'Del Mar a la Tierra' destaca el uso innovador de algas marinas para mejorar la fertilidad y resistencia de las plantas, beneficiando principalmente a los sectores agrícola, hortícola y de agricultura orgánica."", - ""productDescription"": ""SORPI produce enmiendas orgánicas y sustratos, principalmente fertilizantes y compost elaborados con algas marinas libres de cloruros, que mejoran la floración, germinación, estructura y microbiología del suelo, incrementando la productividad de diversos cultivos, sobre todo hortícolas, viñedos y frutales. Su producto estrella, Algiplus, es un fertilizante orgánico rico en nutrientes marinos, con bajo contenido de humedad, que estimula el desarrollo radicular y mejora la fertilidad del suelo, con aplicaciones adaptadas según el tipo de cultivo."", - ""clientCategories"": [ - ""Agricultures"", - ""Horticultures"", - ""Organic Farmings"" - ], - ""sectorDescription"": ""Opera en el sector de producción de fertilizantes y compost orgánicos, especializándose en productos derivados de algas marinas con compostaje controlado para beneficios agronómicos de alta calidad."", - ""geographicFocus"": ""Sede central en Alar del Rey, Palencia, España. No hay información disponible sobre el alcance geográfico de ventas o presencia internacional."", - ""keyExecutives"": [ - { - ""name"": ""Jose Alberto Fresno"", - ""title"": ""MD/Chief Operating Officer (Administrador Único)"", - ""sourceUrl"": ""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"" - } - ], - ""researcherNotes"": ""La empresa ha sido correctamente identificada mediante coincidencia de dominio, sede en Palencia y la especialización en fertilizantes de algas marinas. La información disponible no especifica el alcance comercial geográfico, por lo que ese campo queda con la explicación correspondiente. No se encontraron perfiles senior adicionales en LinkedIn ni en otras fuentes contrastadas. La descripción y productos se han corroborado con la web oficial y un artículo reciente de empresaagraria.com que confirma la especialización única en Europa en compostaje de algas marinas libres de cloruros."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.sorpi.es/"", - ""productDescription"": ""http://www.sorpi.es/"", - ""clientCategories"": ""http://www.sorpi.es/"", - ""geographicFocus"": ""http://www.sorpi.es/contacto/"", - ""keyExecutives"": ""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"" - } -}","{""clientCategories"":[""Agricultures"",""Horticultures"",""Organic Farmings""],""companyDescription"":""La sociedad de residuos del Pisuerga (SORPI) se dedica a la producción de enmiendas y sustratos orgánicos de alta calidad a través de la valorización de materia orgánica, con una especialización en la producción de abonos y compost a partir de algas marinas libres de cloruros, mediante un proceso industrial de lavado. Su misión 'Del Mar a la Tierra' destaca el uso innovador de algas marinas para mejorar la fertilidad y resistencia de las plantas, beneficiando principalmente a los sectores agrícola, hortícola y de agricultura orgánica."",""geographicFocus"":""Sede central en Alar del Rey, Palencia, España. No hay información disponible sobre el alcance geográfico de ventas o presencia internacional."",""keyExecutives"":[{""name"":""Jose Alberto Fresno"",""sourceUrl"":""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"",""title"":""MD/Chief Operating Officer (Administrador Único)""}],""missingImportantFields"":[],""productDescription"":""SORPI produce enmiendas orgánicas y sustratos, principalmente fertilizantes y compost elaborados con algas marinas libres de cloruros, que mejoran la floración, germinación, estructura y microbiología del suelo, incrementando la productividad de diversos cultivos, sobre todo hortícolas, viñedos y frutales. Su producto estrella, Algiplus, es un fertilizante orgánico rico en nutrientes marinos, con bajo contenido de humedad, que estimula el desarrollo radicular y mejora la fertilidad del suelo, con aplicaciones adaptadas según el tipo de cultivo."",""researcherNotes"":""La empresa ha sido correctamente identificada mediante coincidencia de dominio, sede en Palencia y la especialización en fertilizantes de algas marinas. La información disponible no especifica el alcance comercial geográfico, por lo que ese campo queda con la explicación correspondiente. No se encontraron perfiles senior adicionales en LinkedIn ni en otras fuentes contrastadas. La descripción y productos se han corroborado con la web oficial y un artículo reciente de empresaagraria.com que confirma la especialización única en Europa en compostaje de algas marinas libres de cloruros."",""sectorDescription"":""Opera en el sector de producción de fertilizantes y compost orgánicos, especializándose en productos derivados de algas marinas con compostaje controlado para beneficios agronómicos de alta calidad."",""sources"":{""clientCategories"":""http://www.sorpi.es/"",""companyDescription"":""http://www.sorpi.es/"",""geographicFocus"":""http://www.sorpi.es/contacto/"",""keyExecutives"":""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"",""productDescription"":""http://www.sorpi.es/""},""websiteURL"":""http://www.sorpi.es/""}","Correctness: 95% Completeness: 90% The details about Alar del Rey’s foundation and history are largely correct and corroborated by multiple sources. It was indeed founded in 1657 by royal mandate from King Felipe IV and owes its existence to the construction of the northern branch of the Canal de Castilla, serving as a central construction point for the canal[1][2][4]. Some nuances arise regarding later royal influences, such as Carlos IV’s actions related to repopulating the canal area in the late 18th century, which complicate the full historical narrative but do not contradict the main points[4][5]. The historical background involving earlier land concessions to monastic orders and pre-existing small settlements is also supported[1][2][4]. The sources agree strongly on the founding date and link to the canal infrastructure, with minor discrepancies about the etymology and certain medieval details. Overall, the information is factually reliable and well-supported by reputable local history and encyclopedic entries as of 2024 and earlier[1][2][4][5]. There is no significant omission of major facts, though the complexity of later historical phases could be elaborated further for completeness, which is why the score is slightly below perfect. https://es.wikipedia.org/wiki/Alar_del_Rey https://palomatorrijos.blogspot.com/2018/08/alar-del-rey-palencia.html https://alardelrey.es/municipio/historia/ https://dialnet.unirioja.es/descarga/articulo/1098538.pdf","{""clientCategories"":[""Agriculture"",""Horticulture"",""Organic Farming""],""companyDescription"":""La sociedad de residuos del pisuerga se dedica a la producción de enmiendas y sustratos orgánicos de alta calidad mediante procesos de valorización de materia orgánica. SORPI está especializado en la producción de enmiendas y compost a partir de algas marinas. Misión reflejada en 'Del Mar a la Tierra', que destaca el uso de algas marinas para mejorar la fertilidad y resistencia de las plantas."",""geographicFocus"":""HQ: c/ El Molino s/n, 34480 Alar del Rey, Palencia, España; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Jose Alberto Fresno"",""sourceUrl"":""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"",""title"":""MD/Chief Operating Officer (Administrador Único)""}],""linkedDocuments"":[""https://sorpi.es/wp-content/uploads/2024/09/ficha_algiplus_sorpi.pdf""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Core offerings include the production of organic amendments and substrates, specifically fertilizers and compost made from marine algae. Detailed product: Algiplus - an organic fertilizer rich in marine-derived nutrients, low moisture content, stimulating root development and increasing soil fertility. Application rates differ by crop type."",""researcherNotes"":null,""sectorDescription"":""Operates in the organic fertilizer and compost production sector, specializing in marine algae-based products with controlled composting for high-quality agronomic benefits."",""sources"":{""clientCategories"":""https://sorpi.es/"",""companyDescription"":""https://sorpi.es/"",""geographicFocus"":""https://sorpi.es/contacto/"",""keyExecutives"":""https://hk.kompass.com/c/sociedad-de-residuos-del-pisuerga/es990008566170/"",""productDescription"":""https://sorpi.es/""},""websiteURL"":""http://www.sorpi.es/""}" -BioFlyTech,https://bioflytech.com/,"Centre for the Development of Industrial Technology (CDTI), Moira Capital Partners, Xesgalicia",bioflytech.com,https://www.linkedin.com/company/bioflytech,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://bioflytech.com/"", - ""companyDescription"": ""BioFlyTech is a company with over 25 years of experience in insect farming, specializing in the breeding and domestication of the black soldier fly (Hermetia illucens). They have developed innovative, proprietary industrial production technology which positions them as one of the leading producers of insect protein in Europe. Their mission is to generate value in the Circular Economy through insect farming, large-scale production of larval biomass, and production of high-nutrition protein meals and functional fats, while also valorizing organic by-products."", - ""productDescription"": ""BioFlyTech develops core products including Protein meals made from high-quality Hermetia illucens biomass protein with high bioavailability (83-86%), Functional fats designed to improve animal gut health with essential fatty acids and antimicrobial properties, and 100% organic Enriched compost that improves soil structure and provides macronutrients."", - ""clientCategories"": [""Animal feed manufacturers"", ""Agricultural producers"", ""Pet food companies""], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in sustainable insect protein production for animal nutrition, supporting feed manufacturers by improving sustainability in pet food, aquaculture, and poultry sectors."", - ""geographicFocus"": ""HQ: Palas de Rei, Spain; Sales Focus: Europe"", - ""keyExecutives"": [ - { - ""name"": ""Santos Rojo"", - ""title"": ""Research Team Leader"", - ""sourceUrl"": ""https://bioflytech.com/la-compania/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or details for CEO or other C-level executives besides the research team leader Santos Rojo were found. Headquarters location is only referenced as Palas de Rei with limited geographic sales region details."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://bioflytech.com/"", - ""productDescription"": ""https://bioflytech.com/products/"", - ""clientCategories"": ""https://bioflytech.com/"", - ""geographicFocus"": ""https://bioflytech.com/contacto/"", - ""keyExecutives"": ""https://bioflytech.com/la-compania/"" - } -}","{ - ""websiteURL"": ""https://bioflytech.com/"", - ""companyDescription"": ""BioFlyTech is a company with over 25 years of experience in insect farming, specializing in the breeding and domestication of the black soldier fly (Hermetia illucens). They have developed innovative, proprietary industrial production technology which positions them as one of the leading producers of insect protein in Europe. Their mission is to generate value in the Circular Economy through insect farming, large-scale production of larval biomass, and production of high-nutrition protein meals and functional fats, while also valorizing organic by-products."", - ""productDescription"": ""BioFlyTech develops core products including Protein meals made from high-quality Hermetia illucens biomass protein with high bioavailability (83-86%), Functional fats designed to improve animal gut health with essential fatty acids and antimicrobial properties, and 100% organic Enriched compost that improves soil structure and provides macronutrients."", - ""clientCategories"": [""Animal feed manufacturers"", ""Agricultural producers"", ""Pet food companies""], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in sustainable insect protein production for animal nutrition, supporting feed manufacturers by improving sustainability in pet food, aquaculture, and poultry sectors."", - ""geographicFocus"": ""HQ: Palas de Rei, Spain; Sales Focus: Europe"", - ""keyExecutives"": [ - { - ""name"": ""Santos Rojo"", - ""title"": ""Research Team Leader"", - ""sourceUrl"": ""https://bioflytech.com/la-compania/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or details for CEO or other C-level executives besides the research team leader Santos Rojo were found. Headquarters location is only referenced as Palas de Rei with limited geographic sales region details."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://bioflytech.com/"", - ""productDescription"": ""https://bioflytech.com/products/"", - ""clientCategories"": ""https://bioflytech.com/"", - ""geographicFocus"": ""https://bioflytech.com/contacto/"", - ""keyExecutives"": ""https://bioflytech.com/la-compania/"" - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://bioflytech.com"", - ""companyDescription"": ""BioFlyTech, founded in 2012 and based in Spain, specializes in the breeding and industrial mass production of black soldier fly (Hermetia illucens) larvae to generate sustainable insect protein and functional fats for animal nutrition. The company leverages proprietary patented technology from its origins in University of Alicante research to produce high-quality insect biomass efficiently, supporting circular economy principles by valorizing organic by-products and reducing environmental impact. BioFlyTech supplies animal feed manufacturers, agricultural producers, and pet food companies primarily across Europe."", - ""productDescription"": ""BioFlyTech produces protein meals made from high-bioavailability Hermetia illucens larvae biomass, functional fats that promote animal gut health with essential fatty acids and antimicrobial properties, and 100% organic enriched compost that enhances soil structure and macronutrient content. Their products serve aquafeed, pet food, and poultry sectors and are offered at industrial scale from facilities in Spain including a large plant in Palas de Rei with planned capacity expansions."", - ""clientCategories"": [ - ""Animal Feed Manufacturers"", - ""Agricultural Producers"", - ""Pet Food Companies"" - ], - ""sectorDescription"": ""Biotechnology company specializing in sustainable insect protein production for animal nutrition and circular economy innovation."", - ""geographicFocus"": ""Headquartered in Fuente Álamo and Palas de Rei, Spain, with a primary sales focus across European markets."", - ""keyExecutives"": [ - { - ""name"": ""Santos Rojo"", - ""title"": ""Research Team Leader"", - ""sourceUrl"": ""https://bioflytech.com/la-compania/"" - } - ], - ""researcherNotes"": ""The company is definitively identified by domain and product specialty with HQ in Spain at Fuente Álamo and a major facility in Palas de Rei. The founding year 2012 is confirmed. Only one senior executive, Research Team Leader Santos Rojo, is publicly listed on official company sources; no C-level executives or CEO names were found on the company website or LinkedIn. Geographic footprint is limited to Europe based on sales focus and production facilities. Sources include the company website and recent media coverage."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://bioflytech.com/the-company/"", - ""productDescription"": ""https://bioflytech.com/products/"", - ""clientCategories"": ""https://bioflytech.com/"", - ""geographicFocus"": ""https://thefishsite.com/articles/spanish-insect-producer-opens-galician-facility"", - ""keyExecutives"": ""https://bioflytech.com/la-compania/"" - } -}","{""clientCategories"":[""Animal Feed Manufacturers"",""Agricultural Producers"",""Pet Food Companies""],""companyDescription"":""BioFlyTech, founded in 2012 and based in Spain, specializes in the breeding and industrial mass production of black soldier fly (Hermetia illucens) larvae to generate sustainable insect protein and functional fats for animal nutrition. The company leverages proprietary patented technology from its origins in University of Alicante research to produce high-quality insect biomass efficiently, supporting circular economy principles by valorizing organic by-products and reducing environmental impact. BioFlyTech supplies animal feed manufacturers, agricultural producers, and pet food companies primarily across Europe."",""geographicFocus"":""Headquartered in Fuente Álamo and Palas de Rei, Spain, with a primary sales focus across European markets."",""keyExecutives"":[{""name"":""Santos Rojo"",""sourceUrl"":""https://bioflytech.com/la-compania/"",""title"":""Research Team Leader""}],""missingImportantFields"":[],""productDescription"":""BioFlyTech produces protein meals made from high-bioavailability Hermetia illucens larvae biomass, functional fats that promote animal gut health with essential fatty acids and antimicrobial properties, and 100% organic enriched compost that enhances soil structure and macronutrient content. Their products serve aquafeed, pet food, and poultry sectors and are offered at industrial scale from facilities in Spain including a large plant in Palas de Rei with planned capacity expansions."",""researcherNotes"":""The company is definitively identified by domain and product specialty with HQ in Spain at Fuente Álamo and a major facility in Palas de Rei. The founding year 2012 is confirmed. Only one senior executive, Research Team Leader Santos Rojo, is publicly listed on official company sources; no C-level executives or CEO names were found on the company website or LinkedIn. Geographic footprint is limited to Europe based on sales focus and production facilities. Sources include the company website and recent media coverage."",""sectorDescription"":""Biotechnology company specializing in sustainable insect protein production for animal nutrition and circular economy innovation."",""sources"":{""clientCategories"":""https://bioflytech.com/"",""companyDescription"":""https://bioflytech.com/the-company/"",""geographicFocus"":""https://thefishsite.com/articles/spanish-insect-producer-opens-galician-facility"",""keyExecutives"":""https://bioflytech.com/la-compania/"",""productDescription"":""https://bioflytech.com/products/""},""websiteURL"":""https://bioflytech.com""}","Correctness: 98% Completeness: 95% The information about BioFlyTech is highly accurate and well-supported by multiple official and industry sources. The founding year 2012 and Spanish origin linked to the University of Alicante is confirmed[2][3][4][6]. The company’s specialty in black soldier fly (Hermetia illucens) larvae production for sustainable protein and functional fats targeting animal nutrition, including aquafeed, pet food, and poultry sectors, matches descriptions on their official product and company pages[2][3]. The headquarters at Fuente Álamo and the facility in Palas de Rei with expansion plans are consistent with recent news about their second plant construction and production capacity[2][4][5]. Research Team Leader Santos Rojo is the only senior executive publicly named[3]. The focus on circular economy principles, organic compost by-products, and environmental benefits also aligns across sources[2][3]. Minor incompleteness arises from no direct mention of Moira Capital’s majority investment and the absence of CEO or other C-level executives in public sources[2][3][6]. No obvious factual errors were found. References: https://bioflytech.com/the-company/ https://bioflytech.com/products/ https://bioflytech.com/2023/10/02/progress-construction-second-plant-in-spain/ https://www.aquafeed.com/regions/europe/spanish-insect-producer-builds-second-insect-facility/ https://www.feedstrategy.com/animal-feed-manufacturing/animal-feed-manufacturers/article/15636122/bioflytech-makes-progress-on-second-black-soldier-fly-plant https://www.world-grain.com/articles/19130-second-bioflytech-facility-to-produce-insect-ingredients-for-animal-feed","{""clientCategories"":[""Animal feed manufacturers"",""Agricultural producers"",""Pet food companies""],""companyDescription"":""BioFlyTech is a company with over 25 years of experience in insect farming, specializing in the breeding and domestication of the black soldier fly (Hermetia illucens). They have developed innovative, proprietary industrial production technology which positions them as one of the leading producers of insect protein in Europe. Their mission is to generate value in the Circular Economy through insect farming, large-scale production of larval biomass, and production of high-nutrition protein meals and functional fats, while also valorizing organic by-products."",""geographicFocus"":""HQ: Palas de Rei, Spain; Sales Focus: Europe"",""keyExecutives"":[{""name"":""Santos Rojo"",""sourceUrl"":""https://bioflytech.com/la-compania/"",""title"":""Research Team Leader""}],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""BioFlyTech develops core products including Protein meals made from high-quality Hermetia illucens biomass protein with high bioavailability (83-86%), Functional fats designed to improve animal gut health with essential fatty acids and antimicrobial properties, and 100% organic Enriched compost that improves soil structure and provides macronutrients."",""researcherNotes"":""No specific names or details for CEO or other C-level executives besides the research team leader Santos Rojo were found. Headquarters location is only referenced as Palas de Rei with limited geographic sales region details."",""sectorDescription"":""Operates in the biotechnology sector, specializing in sustainable insect protein production for animal nutrition, supporting feed manufacturers by improving sustainability in pet food, aquaculture, and poultry sectors."",""sources"":{""clientCategories"":""https://bioflytech.com/"",""companyDescription"":""https://bioflytech.com/"",""geographicFocus"":""https://bioflytech.com/contacto/"",""keyExecutives"":""https://bioflytech.com/la-compania/"",""productDescription"":""https://bioflytech.com/products/""},""websiteURL"":""https://bioflytech.com/""}" -HappyVore,https://happyvore.com/,"Adrien de Schompre, Invus, Philippe Cantet",happyvore.com,https://www.linkedin.com/company/happyvorefr,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://happyvore.com/"", - ""companyDescription"": ""Une nouvelle alimentation vraiment gourmande, bonne pour soi et la planète, pour ceux qui veulent changer d’assiette, pas de planète ! Nous sommes fiers d'avoir lancé notre propre usine située en région Centre. 25 % des émissions de gaz à effet de serre proviennent de notre alimentation. C'est donc le premier levier pour améliorer son impact environnemental à l'échelle individuelle. Nos engagements : https://happyvore.com/pages/nos-engagements"", - ""productDescription"": ""Product offerings include various plant-based and vegan items such as Croq'Fondant épinards & fromage, Kit de la Rentrée, Kit Super Barbeuc' XXL - 7KG, Kit barbecue Invasion - 5KG, Kit Super Barbeuc' - 5KG, Merguez végétales et piquantes, Chipos végétales aux herbes de Provence, Steak végétal & gourmand, Nuggets végétaux, Tranches Pois & Fèves with different flavors, Jambon végétal, Boulettes tomate et herbes de Provence végétales, Allumettes végétales goût fumé, Aiguillettes végétales, Knax végétales, Suprêmes panés végétaux, Bâtonnets panés végétaux saveurs de la mer, Égrené végétal, Aiguillettes végétales with Piment d’Espelette and Thaïlandaise, and Croq'Coulis Cœur sauce tomate & Aubergine. Products are sold individually or in kits and packs, some available by subscription with home delivery of frozen items."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the food industry sector, specializing in plant-based and vegan food products aimed at sustainable and environmentally friendly eating."", - ""geographicFocus"": ""HQ: Region Centre, France; Sales Focus: Not Explicitly Specified"", - ""keyExecutives"": [ - {""name"": ""Guillaume Dubois"", ""title"": ""Co-Founder and CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers""}, - {""name"": ""Cedric Meston"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers""}, - {""name"": ""Bastien Menguy"", ""title"": ""Chief Growth Officer"", ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly mentioned on the website or related pages."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://happyvore.com"", - ""productDescription"": ""https://happyvore.com/collections/produits"", - ""clientCategories"": null, - ""geographicFocus"": ""https://happyvore.com/pages/notre-usine"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers"" - } -}","{ - ""websiteURL"": ""https://happyvore.com/"", - ""companyDescription"": ""Une nouvelle alimentation vraiment gourmande, bonne pour soi et la planète, pour ceux qui veulent changer d’assiette, pas de planète ! Nous sommes fiers d'avoir lancé notre propre usine située en région Centre. 25 % des émissions de gaz à effet de serre proviennent de notre alimentation. C'est donc le premier levier pour améliorer son impact environnemental à l'échelle individuelle. Nos engagements : https://happyvore.com/pages/nos-engagements"", - ""productDescription"": ""Product offerings include various plant-based and vegan items such as Croq'Fondant épinards & fromage, Kit de la Rentrée, Kit Super Barbeuc' XXL - 7KG, Kit barbecue Invasion - 5KG, Kit Super Barbeuc' - 5KG, Merguez végétales et piquantes, Chipos végétales aux herbes de Provence, Steak végétal & gourmand, Nuggets végétaux, Tranches Pois & Fèves with different flavors, Jambon végétal, Boulettes tomate et herbes de Provence végétales, Allumettes végétales goût fumé, Aiguillettes végétales, Knax végétales, Suprêmes panés végétaux, Bâtonnets panés végétaux saveurs de la mer, Égrené végétal, Aiguillettes végétales with Piment d’Espelette and Thaïlandaise, and Croq'Coulis Cœur sauce tomate & Aubergine. Products are sold individually or in kits and packs, some available by subscription with home delivery of frozen items."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the food industry sector, specializing in plant-based and vegan food products aimed at sustainable and environmentally friendly eating."", - ""geographicFocus"": ""HQ: Region Centre, France; Sales Focus: Not Explicitly Specified"", - ""keyExecutives"": [ - {""name"": ""Guillaume Dubois"", ""title"": ""Co-Founder and CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers""}, - {""name"": ""Cedric Meston"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers""}, - {""name"": ""Bastien Menguy"", ""title"": ""Chief Growth Officer"", ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly mentioned on the website or related pages."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://happyvore.com"", - ""productDescription"": ""https://happyvore.com/collections/produits"", - ""clientCategories"": null, - ""geographicFocus"": ""https://happyvore.com/pages/notre-usine"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://happyvore.com"", - ""companyDescription"": ""HappyVore is a French startup specializing in plant-based food alternatives aimed at revolutionizing sustainable eating. Founded by Guillaume Dubois and Cédric Meston, the company addresses the environmental impact of food production—particularly the significant carbon emissions caused by meat consumption—by offering appealing, gourmet vegan products. Their mission is to help consumers reduce their carbon footprint by making plant-based eating both enjoyable and accessible through industrial-scale production in the Centre-Val de Loire region."", - ""productDescription"": ""HappyVore offers a wide range of plant-based and vegan food products including plant-based steaks, nuggets, merguez, sausages, and innovative items such as Croq'Coulis. Their products are available individually or in kits, with some available by subscription and home delivery as frozen goods. The company emphasizes gourmet taste and environmental sustainability, targeting consumers who want to reduce meat consumption without sacrificing flavor."", - ""clientCategories"": [""Retailers"", ""Food Service Operators"", ""Individual Consumers"", ""Subscription Customers""], - ""sectorDescription"": ""Food industry specializing in plant-based and vegan products focused on sustainable and environmentally friendly alternatives to meat."", - ""geographicFocus"": ""Primary operations and production are based in the Centre-Val de Loire region of France, with a market focus on the French consumer base."", - ""keyExecutives"": [ - { - ""name"": ""Guillaume Dubois"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers"" - }, - { - ""name"": ""Cedric Meston"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers"" - }, - { - ""name"": ""Bastien Menguy"", - ""title"": ""Chief Growth Officer"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers"" - } - ], - ""researcherNotes"": ""The company HappyVore (formerly Les Nouveaux Fermiers) was disambiguated by domain matching and founder names Guillaume Dubois and Cedric Meston, confirmed with production site in Chevilly, Centre-Val de Loire, France. Client categories are inferred from product distribution channels and subscription models though not explicitly listed on the website. Geographic focus is primarily regional (Centre-Val de Loire) with French market orientation. No senior leadership was found on LinkedIn beyond the Crunchbase-sourced executives."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://bigmedia.bpifrance.fr/nos-actualites/happyvore-la-startup-industrielle-qui-veut-revolutionner-lalimentation"", - ""productDescription"": ""https://happyvore.com/collections/produits"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.devup-centrevaldeloire.fr/actualites/happyvore-choisit-chevilly-unite-production-alternatives-alimentaires-100-vegetales/"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/les-nouveaux-fermiers"" - } -}","{""clientCategories"":[""Retailers"",""Food Service Operators"",""Individual Consumers"",""Subscription Customers""],""companyDescription"":""HappyVore is a French startup specializing in plant-based food alternatives aimed at revolutionizing sustainable eating. Founded by Guillaume Dubois and Cédric Meston, the company addresses the environmental impact of food production—particularly the significant carbon emissions caused by meat consumption—by offering appealing, gourmet vegan products. Their mission is to help consumers reduce their carbon footprint by making plant-based eating both enjoyable and accessible through industrial-scale production in the Centre-Val de Loire region."",""geographicFocus"":""Primary operations and production are based in the Centre-Val de Loire region of France, with a market focus on the French consumer base."",""keyExecutives"":[{""name"":""Guillaume Dubois"",""sourceUrl"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""title"":""Co-Founder and CEO""},{""name"":""Cedric Meston"",""sourceUrl"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""title"":""Co-Founder""},{""name"":""Bastien Menguy"",""sourceUrl"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""title"":""Chief Growth Officer""}],""missingImportantFields"":[],""productDescription"":""HappyVore offers a wide range of plant-based and vegan food products including plant-based steaks, nuggets, merguez, sausages, and innovative items such as Croq'Coulis. Their products are available individually or in kits, with some available by subscription and home delivery as frozen goods. The company emphasizes gourmet taste and environmental sustainability, targeting consumers who want to reduce meat consumption without sacrificing flavor."",""researcherNotes"":""The company HappyVore (formerly Les Nouveaux Fermiers) was disambiguated by domain matching and founder names Guillaume Dubois and Cedric Meston, confirmed with production site in Chevilly, Centre-Val de Loire, France. Client categories are inferred from product distribution channels and subscription models though not explicitly listed on the website. Geographic focus is primarily regional (Centre-Val de Loire) with French market orientation. No senior leadership was found on LinkedIn beyond the Crunchbase-sourced executives."",""sectorDescription"":""Food industry specializing in plant-based and vegan products focused on sustainable and environmentally friendly alternatives to meat."",""sources"":{""clientCategories"":null,""companyDescription"":""https://bigmedia.bpifrance.fr/nos-actualites/happyvore-la-startup-industrielle-qui-veut-revolutionner-lalimentation"",""geographicFocus"":""https://www.devup-centrevaldeloire.fr/actualites/happyvore-choisit-chevilly-unite-production-alternatives-alimentaires-100-vegetales/"",""keyExecutives"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""productDescription"":""https://happyvore.com/collections/produits""},""websiteURL"":""https://happyvore.com""}","Correctness: 95% Completeness: 90% The company overview is accurate: HappyVore is a French startup specializing in plant-based food alternatives, founded by Guillaume Dubois (CEO) and Cédric Meston (Co-Founder), with production based in Chevilly, Centre-Val de Loire, France. Their mission to reduce the environmental impact of meat consumption by offering gourmet vegan products is well supported. Product offerings include plant-based steaks, nuggets, merguez, sausages, and innovations like Croq'Coulis, all aimed at combining taste with sustainability. The company’s client categories inferred as retailers, food service operators, individual consumers, and subscription customers align with their distribution through major French supermarket chains and restaurants, plus subscription and home delivery services. Key executive names and titles match Crunchbase data. The geographic focus on the French market and Centre-Val de Loire production facility is confirmed by local government sources and news coverage. Recent product launches like plant-based ham and Croq’Coulis, plus their high Nutriscore ratings and consumer accolades, further validate claims. Some minor incompleteness pertains to explicit client category listings and the absence of direct senior leadership confirmation from company LinkedIn, relying instead on Crunchbase and press articles. Overall, the statement is well-supported by multiple credible sources including HappyVore’s website, French Tech 120 recognition, regional economic development coverage, and plant-based industry news[1][2][3][5][6]. URLs: https://happyvore.com, https://www.crunchbase.com/organization/les-nouveaux-fermiers, https://bigmedia.bpifrance.fr/nos-actualites/happyvore-la-startup-industrielle-qui-veut-revolutionner-lalimentation, https://vegconomist.com/company-news/facts-figures/happyvore-2nd-place-france-plant-based-deli/, https://www.devup-centrevaldeloire.fr/actualites/happyvore-choisit-chevilly-unite-production-alternatives-alimentaires-100-vegetales/, https://www.planetfood.news/post/france-s-happyvore-s-croq-coulis-ends-the-meat-vs-vegetable-war-with-innovation-d%C3%A9licieuse","{""clientCategories"":[],""companyDescription"":""Une nouvelle alimentation vraiment gourmande, bonne pour soi et la planète, pour ceux qui veulent changer d’assiette, pas de planète ! Nous sommes fiers d'avoir lancé notre propre usine située en région Centre. 25 % des émissions de gaz à effet de serre proviennent de notre alimentation. C'est donc le premier levier pour améliorer son impact environnemental à l'échelle individuelle. Nos engagements : https://happyvore.com/pages/nos-engagements"",""geographicFocus"":""HQ: Region Centre, France; Sales Focus: Not Explicitly Specified"",""keyExecutives"":[{""name"":""Guillaume Dubois"",""sourceUrl"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""title"":""Co-Founder and CEO""},{""name"":""Cedric Meston"",""sourceUrl"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""title"":""Co-Founder""},{""name"":""Bastien Menguy"",""sourceUrl"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""title"":""Chief Growth Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Product offerings include various plant-based and vegan items such as Croq'Fondant épinards & fromage, Kit de la Rentrée, Kit Super Barbeuc' XXL - 7KG, Kit barbecue Invasion - 5KG, Kit Super Barbeuc' - 5KG, Merguez végétales et piquantes, Chipos végétales aux herbes de Provence, Steak végétal & gourmand, Nuggets végétaux, Tranches Pois & Fèves with different flavors, Jambon végétal, Boulettes tomate et herbes de Provence végétales, Allumettes végétales goût fumé, Aiguillettes végétales, Knax végétales, Suprêmes panés végétaux, Bâtonnets panés végétaux saveurs de la mer, Égrené végétal, Aiguillettes végétales with Piment d’Espelette and Thaïlandaise, and Croq'Coulis Cœur sauce tomate & Aubergine. Products are sold individually or in kits and packs, some available by subscription with home delivery of frozen items."",""researcherNotes"":""Client categories were not explicitly mentioned on the website or related pages."",""sectorDescription"":""Operates in the food industry sector, specializing in plant-based and vegan food products aimed at sustainable and environmentally friendly eating."",""sources"":{""clientCategories"":null,""companyDescription"":""https://happyvore.com"",""geographicFocus"":""https://happyvore.com/pages/notre-usine"",""keyExecutives"":""https://www.crunchbase.com/organization/les-nouveaux-fermiers"",""productDescription"":""https://happyvore.com/collections/produits""},""websiteURL"":""https://happyvore.com/""}" -Connecterra,http://connecterra.io,"Breed Reply, Cibus Fund, Kersia, Pymwymic, Sistema_VC",connecterra.io,NOT FOUND,"{""seniorLeadership"":[{""name"":""Christina Horspool"",""title"":""Founder & CEO"",""linkedinProfile"":""https://www.linkedin.com/in/christina-horspool-b55b6256""},{""name"":""Julie Larson"",""title"":""US Sales Director"",""linkedinProfile"":""https://www.linkedin.com/in/julie-larson-b723aa10""},{""name"":""Nynke Slegten"",""title"":""Head of Impact Investing"",""linkedinProfile"":""https://www.linkedin.com/in/nynkeslegten""}]}","{""seniorLeadership"":[{""name"":""Christina Horspool"",""title"":""Founder & CEO"",""linkedinProfile"":""https://www.linkedin.com/in/christina-horspool-b55b6256""},{""name"":""Julie Larson"",""title"":""US Sales Director"",""linkedinProfile"":""https://www.linkedin.com/in/julie-larson-b723aa10""},{""name"":""Nynke Slegten"",""title"":""Head of Impact Investing"",""linkedinProfile"":""https://www.linkedin.com/in/nynkeslegten""}]}","{ - ""websiteURL"": ""http://connecterra.io"", - ""companyDescription"": ""Connecterra offers AI-powered farm data integration solutions, helping farmers, advisors, and enterprises analyze and make decisions based on farm data. They provide features like Copilot for AI insights, decision support, analytics, collaboration, and data integration across farm systems. Solutions target farmers of all sizes, farm advisors, and enterprises enabling digital transformation of the dairy industry."", - ""productDescription"": ""Offerings include: - Analytics - Copilot (AI-powered insights) - Decision Support (impact analysis and ROI on decisions) - Collaboration tools - Data Integration (connecting all farm systems) - Data API (access to data in enterprise systems)."", - ""clientCategories"": [""Farmers (all farm sizes)"", ""Advisors (nutritionists, veterinarians, dairy farm advisors)"", ""Enterprises (digital transformation of the dairy industry)""], - ""sectorDescription"": ""Operates in the agriculture technology sector, specializing in AI-powered data integration and analytics solutions for the dairy farming industry."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit information on headquarters location or key executives was found on the website or subpages reviewed. No direct documents like PDFs were found."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://connecterra.io/about"", - ""productDescription"": ""https://connecterra.io/solutions"", - ""clientCategories"": ""https://connecterra.io/solutions"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://connecterra.io"", - ""companyDescription"": ""Connecterra offers AI-powered farm data integration solutions, helping farmers, advisors, and enterprises analyze and make decisions based on farm data. They provide features like Copilot for AI insights, decision support, analytics, collaboration, and data integration across farm systems. Solutions target farmers of all sizes, farm advisors, and enterprises enabling digital transformation of the dairy industry."", - ""productDescription"": ""Offerings include: - Analytics - Copilot (AI-powered insights) - Decision Support (impact analysis and ROI on decisions) - Collaboration tools - Data Integration (connecting all farm systems) - Data API (access to data in enterprise systems)."", - ""clientCategories"": [""Farmers (all farm sizes)"", ""Advisors (nutritionists, veterinarians, dairy farm advisors)"", ""Enterprises (digital transformation of the dairy industry)""], - ""sectorDescription"": ""Operates in the agriculture technology sector, specializing in AI-powered data integration and analytics solutions for the dairy farming industry."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit information on headquarters location or key executives was found on the website or subpages reviewed. No direct documents like PDFs were found."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://connecterra.io/about"", - ""productDescription"": ""https://connecterra.io/solutions"", - ""clientCategories"": ""https://connecterra.io/solutions"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://connecterra.io"", - ""companyDescription"": ""Connecterra offers AI-powered farm data integration solutions, helping farmers, advisors, and enterprises analyze and make decisions based on farm data. They provide features like Copilot for AI insights, decision support, analytics, collaboration, and data integration across farm systems. Solutions target farmers of all sizes, farm advisors, and enterprises enabling digital transformation of the dairy industry."", - ""productDescription"": ""Offerings include: - Analytics - Copilot (AI-powered insights) - Decision Support (impact analysis and ROI on decisions) - Collaboration tools - Data Integration (connecting all farm systems) - Data API (access to data in enterprise systems)."", - ""clientCategories"": [ - ""Farmers (all farm sizes)"", - ""Advisors (nutritionists, veterinarians, dairy farm advisors)"", - ""Enterprises (digital transformation of the dairy industry)"" - ], - ""sectorDescription"": ""Operates in the agriculture technology sector, specializing in AI-powered data integration and analytics solutions for the dairy farming industry."", - ""geographicFocus"": ""Connecterra supports dairy farms globally, including key dairy-producing regions in Europe and North America, delivering localized AI-driven farm management insights via direct sales, distributors, and technology partners."", - ""keyExecutives"": [ - { - ""name"": ""Christina Horspool"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/christina-horspool-b55b6256"" - }, - { - ""name"": ""Julie Larson"", - ""title"": ""US Sales Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/julie-larson-b723aa10"" - }, - { - ""name"": ""Nynke Slegten"", - ""title"": ""Head of Impact Investing"", - ""sourceUrl"": ""https://www.linkedin.com/in/nynkeslegten"" - } - ], - ""researcherNotes"": ""Connecterra B.V. is headquartered in Amsterdam, Netherlands, specifically at Barbara Strozzilaan 101. The company was founded in 2014/2015 as an AI-driven agritech innovator focused on dairy farming. Geographic focus is global dairy farming with emphasis on Europe and North America. Key executive details were confirmed via LinkedIn profiles. No regulatory filings were found for additional HQ details. Geographic focus was inferred from multiple sources including company presence and regional farm markets. Some older sources list Connecterra's website as connecterra.ai, but the current official URL is connecterra.io."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://connecterra.io/about"", - ""productDescription"": ""https://connecterra.io/solutions"", - ""clientCategories"": ""https://connecterra.io/solutions"", - ""geographicFocus"": ""https://highperformr.ai/company/connecterra-bv"", - ""keyExecutives"": ""https://www.linkedin.com/in/christina-horspool-b55b6256"" - } -}","{""clientCategories"":[""Farmers (all farm sizes)"",""Advisors (nutritionists, veterinarians, dairy farm advisors)"",""Enterprises (digital transformation of the dairy industry)""],""companyDescription"":""Connecterra offers AI-powered farm data integration solutions, helping farmers, advisors, and enterprises analyze and make decisions based on farm data. They provide features like Copilot for AI insights, decision support, analytics, collaboration, and data integration across farm systems. Solutions target farmers of all sizes, farm advisors, and enterprises enabling digital transformation of the dairy industry."",""geographicFocus"":""Connecterra supports dairy farms globally, including key dairy-producing regions in Europe and North America, delivering localized AI-driven farm management insights via direct sales, distributors, and technology partners."",""keyExecutives"":[{""name"":""Christina Horspool"",""sourceUrl"":""https://www.linkedin.com/in/christina-horspool-b55b6256"",""title"":""Founder & CEO""},{""name"":""Julie Larson"",""sourceUrl"":""https://www.linkedin.com/in/julie-larson-b723aa10"",""title"":""US Sales Director""},{""name"":""Nynke Slegten"",""sourceUrl"":""https://www.linkedin.com/in/nynkeslegten"",""title"":""Head of Impact Investing""}],""missingImportantFields"":[],""productDescription"":""Offerings include: - Analytics - Copilot (AI-powered insights) - Decision Support (impact analysis and ROI on decisions) - Collaboration tools - Data Integration (connecting all farm systems) - Data API (access to data in enterprise systems)."",""researcherNotes"":""Connecterra B.V. is headquartered in Amsterdam, Netherlands, specifically at Barbara Strozzilaan 101. The company was founded in 2014/2015 as an AI-driven agritech innovator focused on dairy farming. Geographic focus is global dairy farming with emphasis on Europe and North America. Key executive details were confirmed via LinkedIn profiles. No regulatory filings were found for additional HQ details. Geographic focus was inferred from multiple sources including company presence and regional farm markets. Some older sources list Connecterra's website as connecterra.ai, but the current official URL is connecterra.io."",""sectorDescription"":""Operates in the agriculture technology sector, specializing in AI-powered data integration and analytics solutions for the dairy farming industry."",""sources"":{""clientCategories"":""https://connecterra.io/solutions"",""companyDescription"":""https://connecterra.io/about"",""geographicFocus"":""https://highperformr.ai/company/connecterra-bv"",""keyExecutives"":""https://www.linkedin.com/in/christina-horspool-b55b6256"",""productDescription"":""https://connecterra.io/solutions""},""websiteURL"":""https://connecterra.io""}","Correctness: 95% Completeness: 90% The factual profile of Connecterra as an Amsterdam-based AI-powered agritech company focused on dairy farming is accurate and well-supported across multiple sources, including the company website and LinkedIn profiles. Founded in 2014/2015, it offers solutions such as AI-driven analytics, decision support, collaboration tools, and data integration for farmers, advisors, and enterprises, consistent with the product descriptions on their official site and third-party sources[2][4][5]. The geographic focus on Europe and North America is confirmed, with a global reach through distributors and partnerships[2]. Leadership details (Christina Horspool as CEO, Julie Larson as US Sales Director, and Nynke Slegten as Head of Impact Investing) match LinkedIn profiles and recent data, showing up-to-date accuracy[2]. The official website domain has transitioned from connecterra.ai to connecterra.io, which is correctly reflected here[2]. Minor discrepancies include a reference to founder Yasir Khokhar in an older 2017 interview, whereas current leadership lists Christina Horspool as CEO, indicating a leadership transition unmentioned in the data but consistent with current LinkedIn and company pages[2][3]. There are no significant omissions noted regarding core company facts, products, or leadership, though funding figures are only partially detailed in a less authoritative profile. Overall, the summary shows high correctness and near-complete coverage with authoritative company and LinkedIn sources as of 2025-09-11. URLs: https://connecterra.io/about, https://connecterra.io/solutions, https://www.linkedin.com/in/christina-horspool-b55b6256, https://highperformr.ai/company/connecterra-bv, https://www.lombardodier.com/contents/corporate-news/rethink-everything/2017/threat/an-interview-with-connecterra-fo.html","{""clientCategories"":[""Farmers (all farm sizes)"",""Advisors (nutritionists, veterinarians, dairy farm advisors)"",""Enterprises (digital transformation of the dairy industry)""],""companyDescription"":""Connecterra offers AI-powered farm data integration solutions, helping farmers, advisors, and enterprises analyze and make decisions based on farm data. They provide features like Copilot for AI insights, decision support, analytics, collaboration, and data integration across farm systems. Solutions target farmers of all sizes, farm advisors, and enterprises enabling digital transformation of the dairy industry."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Offerings include: - Analytics - Copilot (AI-powered insights) - Decision Support (impact analysis and ROI on decisions) - Collaboration tools - Data Integration (connecting all farm systems) - Data API (access to data in enterprise systems)."",""researcherNotes"":""No explicit information on headquarters location or key executives was found on the website or subpages reviewed. No direct documents like PDFs were found."",""sectorDescription"":""Operates in the agriculture technology sector, specializing in AI-powered data integration and analytics solutions for the dairy farming industry."",""sources"":{""clientCategories"":""https://connecterra.io/solutions"",""companyDescription"":""https://connecterra.io/about"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://connecterra.io/solutions""},""websiteURL"":""http://connecterra.io""}" -Aquaticode,https://aquaticode.com,Nacre Capital,aquaticode.com,https://www.linkedin.com/company/aquaticode/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://aquaticode.com"", - ""companyDescription"": ""Aquaticode is a specialized AI company leveraging machine vision technologies to deliver breakthroughs that improve efficiency and sustainability in aquaculture, particularly salmon and shrimp farming."", - ""productDescription"": ""Aquaticode offers AI and machine learning software and hardware solutions designed for aquaculture, including:\n- A high-speed salmon sorting machine capable of sorting up to 10,000 juvenile salmon per hour by gender and deformities\n- Diagnostic tools for shrimp disease detection and outbreak prediction\n- Ongoing software updates and R&D innovations aimed at addressing challenges across multiple aquatic species and production environments."", - ""clientCategories"": [""Salmon farmers"", ""Shrimp farmers"", ""Feed companies"", ""Research partnerships""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-driven machine vision and automation solutions to optimize fish farming processes."", - ""geographicFocus"": ""HQ: Stavanger, Norway; Regional offices or presence in Santiago, Chile and Tel Aviv, Israel; Global aquaculture market focus."", - ""keyExecutives"": [ - {""name"": ""Al Brenner"", ""title"": ""Chairman & Co-Founder"", ""sourceUrl"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/""}, - {""name"": ""Stian Rognlid"", ""title"": ""Chief Executive Officer (CEO)"", ""sourceUrl"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""productDescription"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""clientCategories"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""geographicFocus"": ""https://www.linkedin.com/company/aquaticode/"", - ""keyExecutives"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"" - } -}","{ - ""websiteURL"": ""https://aquaticode.com"", - ""companyDescription"": ""Aquaticode is a specialized AI company leveraging machine vision technologies to deliver breakthroughs that improve efficiency and sustainability in aquaculture, particularly salmon and shrimp farming."", - ""productDescription"": ""Aquaticode offers AI and machine learning software and hardware solutions designed for aquaculture, including:\n- A high-speed salmon sorting machine capable of sorting up to 10,000 juvenile salmon per hour by gender and deformities\n- Diagnostic tools for shrimp disease detection and outbreak prediction\n- Ongoing software updates and R&D innovations aimed at addressing challenges across multiple aquatic species and production environments."", - ""clientCategories"": [""Salmon farmers"", ""Shrimp farmers"", ""Feed companies"", ""Research partnerships""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-driven machine vision and automation solutions to optimize fish farming processes."", - ""geographicFocus"": ""HQ: Stavanger, Norway; Regional offices or presence in Santiago, Chile and Tel Aviv, Israel; Global aquaculture market focus."", - ""keyExecutives"": [ - {""name"": ""Al Brenner"", ""title"": ""Chairman & Co-Founder"", ""sourceUrl"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/""}, - {""name"": ""Stian Rognlid"", ""title"": ""Chief Executive Officer (CEO)"", ""sourceUrl"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""productDescription"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""clientCategories"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""geographicFocus"": ""https://www.linkedin.com/company/aquaticode/"", - ""keyExecutives"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"" - } -}",[],"{ - ""websiteURL"": ""https://aquaticode.com"", - ""companyDescription"": ""Aquaticode is a specialized AI company leveraging machine vision technologies to deliver breakthroughs that improve efficiency and sustainability in aquaculture, particularly salmon and shrimp farming. The company uses machine learning to solve significant industry challenges by providing scalable and biology-grounded AI-driven phenotyping solutions that assess and sort fish based on visible traits such as size, sex, deformities, and early disease signs."", - ""productDescription"": ""Aquaticode offers AI and machine learning software and hardware solutions designed for aquaculture, including a high-speed salmon sorting machine (SORTpro) capable of sorting up to 10,000 juvenile salmon per hour by gender and deformities, and diagnostic tools for shrimp disease detection and outbreak prediction. Their technology enables improved operational efficiency and biological performance, reducing mortality and early sexual maturation, with ongoing R&D focused on multiple aquatic species and production environments."", - ""clientCategories"": [""Salmon Farmers"", ""Shrimp Farmers"", ""Feed Companies"", ""Research Partnerships""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-driven machine vision and automation solutions to optimize fish farming processes."", - ""geographicFocus"": ""Headquartered in Stavanger, Norway, with regional presence in Santiago, Chile and Tel Aviv, Israel. The company focuses on the global aquaculture market."", - ""keyExecutives"": [ - { - ""name"": ""Al Brenner"", - ""title"": ""Chairman & Co-Founder"", - ""sourceUrl"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"" - }, - { - ""name"": ""Stian Rognlid"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"" - } - ], - ""researcherNotes"": ""The company profile was confirmed by multiple authoritative sources including the company website, aquaculture industry media, and press releases. Key executives and geographic focus were verified through company and sector-specific articles. No conflicting information was found. Client categories and product details align with public disclosures. No senior leadership details were found on LinkedIn beyond those already included. Geographic focus description is based on HQ and known regional offices rather than inferred from staff locations."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""productDescription"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""clientCategories"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"", - ""geographicFocus"": ""https://www.linkedin.com/company/aquaticode/"", - ""keyExecutives"": ""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"" - } -}","{""clientCategories"":[""Salmon Farmers"",""Shrimp Farmers"",""Feed Companies"",""Research Partnerships""],""companyDescription"":""Aquaticode is a specialized AI company leveraging machine vision technologies to deliver breakthroughs that improve efficiency and sustainability in aquaculture, particularly salmon and shrimp farming. The company uses machine learning to solve significant industry challenges by providing scalable and biology-grounded AI-driven phenotyping solutions that assess and sort fish based on visible traits such as size, sex, deformities, and early disease signs."",""geographicFocus"":""Headquartered in Stavanger, Norway, with regional presence in Santiago, Chile and Tel Aviv, Israel. The company focuses on the global aquaculture market."",""keyExecutives"":[{""name"":""Al Brenner"",""sourceUrl"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""title"":""Chairman & Co-Founder""},{""name"":""Stian Rognlid"",""sourceUrl"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""title"":""Chief Executive Officer (CEO)""}],""missingImportantFields"":[],""productDescription"":""Aquaticode offers AI and machine learning software and hardware solutions designed for aquaculture, including a high-speed salmon sorting machine (SORTpro) capable of sorting up to 10,000 juvenile salmon per hour by gender and deformities, and diagnostic tools for shrimp disease detection and outbreak prediction. Their technology enables improved operational efficiency and biological performance, reducing mortality and early sexual maturation, with ongoing R&D focused on multiple aquatic species and production environments."",""researcherNotes"":""The company profile was confirmed by multiple authoritative sources including the company website, aquaculture industry media, and press releases. Key executives and geographic focus were verified through company and sector-specific articles. No conflicting information was found. Client categories and product details align with public disclosures. No senior leadership details were found on LinkedIn beyond those already included. Geographic focus description is based on HQ and known regional offices rather than inferred from staff locations."",""sectorDescription"":""Operates in the aquaculture technology sector, providing AI-driven machine vision and automation solutions to optimize fish farming processes."",""sources"":{""clientCategories"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""companyDescription"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""geographicFocus"":""https://www.linkedin.com/company/aquaticode/"",""keyExecutives"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""productDescription"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/""},""websiteURL"":""https://aquaticode.com""}","Correctness: 98% Completeness: 95% The profile of Aquaticode is highly accurate and comprehensive based on multiple authoritative sources within the last three years. Aquaticode was founded in 2018 by Nacre Capital, a venture builder in AI for life sciences, and is headquartered in Stavanger, Norway, with regional presence in Santiago, Chile, and Tel Aviv, Israel[1][3][5]. Key executives Al Brenner (Chairman & Co-Founder) and Stian Rognlid (CEO) are confirmed by direct interviews and company disclosures[3]. The company’s product suite includes AI and machine vision technologies for aquaculture, such as the SORTpro salmon sorting machine and diagnostic tools for shrimp disease detection, achieving high sorting speed and biological performance improvements[2][4]. Their technology is supported by extensive R&D partnerships (>15) and a large annotated image database (>3 million images/videos)[1][2]. Funding data is consistent, showing a $6 million Series A round about two years ago led by Nacre Capital[1][2][3]. The sector and client categories (salmon farmers, shrimp farmers, feed companies, research partnerships) align with public descriptions[1][3]. Minor gaps exist in specific mentions of ongoing product launches or the very latest deployments beyond 2023, causing slight completeness reduction, but no substantive factual errors were found. Sources include Aquaculture Magazine, Hatchery FM, Agritech Tomorrow, and the company website itself: https://aquaculturemag.com/2022/10/19/inside-aquaticode/, https://hatcheryfm.com/products/suppliers-news/ai-startup-raises-6-million-to-scale-up-salmon-gender-identifier/, https://aquaticode.com/about/, https://www.agritechtomorrow.com/news/2023/10/26/aquaticodes-ai-solution-is-creating-waves-in-the-salmon-farming-industry/","{""clientCategories"":[""Salmon farmers"",""Shrimp farmers"",""Feed companies"",""Research partnerships""],""companyDescription"":""Aquaticode is a specialized AI company leveraging machine vision technologies to deliver breakthroughs that improve efficiency and sustainability in aquaculture, particularly salmon and shrimp farming."",""geographicFocus"":""HQ: Stavanger, Norway; Regional offices or presence in Santiago, Chile and Tel Aviv, Israel; Global aquaculture market focus."",""keyExecutives"":[{""name"":""Al Brenner"",""sourceUrl"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""title"":""Chairman & Co-Founder""},{""name"":""Stian Rognlid"",""sourceUrl"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""title"":""Chief Executive Officer (CEO)""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Aquaticode offers AI and machine learning software and hardware solutions designed for aquaculture, including:\n- A high-speed salmon sorting machine capable of sorting up to 10,000 juvenile salmon per hour by gender and deformities\n- Diagnostic tools for shrimp disease detection and outbreak prediction\n- Ongoing software updates and R&D innovations aimed at addressing challenges across multiple aquatic species and production environments."",""researcherNotes"":null,""sectorDescription"":""Operates in the aquaculture technology sector, providing AI-driven machine vision and automation solutions to optimize fish farming processes."",""sources"":{""clientCategories"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""companyDescription"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""geographicFocus"":""https://www.linkedin.com/company/aquaticode/"",""keyExecutives"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/"",""productDescription"":""https://aquaculturemag.com/2022/10/19/inside-aquaticode/""},""websiteURL"":""https://aquaticode.com""}" -AgDataHub,https://agdatahub.eu/en/,"API-AGRO, Avril, Banque des Territoires, Capgemini, In Groupe, InVivo",agdatahub.eu,https://www.linkedin.com/company/agdatahub-fr,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://agdatahub.eu/en/"", - ""companyDescription"": ""Agdatahub is the leading agricultural and agri-food data intermediation platform in France and Europe, founded by and for the agricultural sector. It federates public and private players in agriculture around a shared, sovereign technological infrastructure to guarantee digital development of agriculture and agri-food in France and Europe. Mission: To help every player in the sector better respond to food and environmental challenges today and tomorrow."", - ""productDescription"": ""Agdatahub offers an Exchange platform providing access to a catalog of qualified agricultural data, enabling secure data transactions, simple data recovery, data exposure via EXCHANGE service, secure data control, promotion and monetization of data, operational consulting, and technical support. Core subscriptions and services include: - Exchange Pack User (Basic Subscription Data User) with secure authentication, catalog access, business account management - Discovery Use Pack and Advanced Use Pack for data consumption and API requests - Exchange Pack Détenteur (Basic subscription data holder) with dashboard, publishing data offers, customer follow-up - CapData Services for use case definition, data diagnosis, compliance, data format identification, prototyping, and deployment"", - ""clientCategories"": [ - ""Cooperatives"", - ""Negotiants"", - ""AgriTech startups"", - ""Agri-suppliers"", - ""Agricultural chambers"", - ""Technical institutes"", - ""Agri-food industries"", - ""Public organizations"", - ""Local authorities"" - ], - ""sectorDescription"": ""Operates in the agricultural and agri-food data intermediation sector, providing a sovereign technological infrastructure for digital development in agriculture and agri-food in France and Europe."", - ""geographicFocus"": ""HQ: Paris, Bordeaux, Lyon, France; Sales Focus: France and Europe"", - ""keyExecutives"": [ - {""name"": ""Sébastien Picardat"", ""title"": ""CEO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""}, - {""name"": ""Renaud Font"", ""title"": ""COO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""}, - {""name"": ""Gaëlle Chéruy Pottiau"", ""title"": ""CSO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""}, - {""name"": ""Christophe Gervais"", ""title"": ""CTO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit founders were listed on the website. The linked resources page did not provide direct downloadable PDF documents; it mostly referred to webinars and presentations online."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agdatahub.eu/en/"", - ""productDescription"": ""https://agdatahub.eu/en/entreprise"", - ""clientCategories"": ""https://agdatahub.eu/en/"", - ""geographicFocus"": ""https://agdatahub.eu/en/entreprise"", - ""keyExecutives"": ""https://agdatahub.eu/en/entreprise"" - } -}","{ - ""websiteURL"": ""https://agdatahub.eu/en/"", - ""companyDescription"": ""Agdatahub is the leading agricultural and agri-food data intermediation platform in France and Europe, founded by and for the agricultural sector. It federates public and private players in agriculture around a shared, sovereign technological infrastructure to guarantee digital development of agriculture and agri-food in France and Europe. Mission: To help every player in the sector better respond to food and environmental challenges today and tomorrow."", - ""productDescription"": ""Agdatahub offers an Exchange platform providing access to a catalog of qualified agricultural data, enabling secure data transactions, simple data recovery, data exposure via EXCHANGE service, secure data control, promotion and monetization of data, operational consulting, and technical support. Core subscriptions and services include: - Exchange Pack User (Basic Subscription Data User) with secure authentication, catalog access, business account management - Discovery Use Pack and Advanced Use Pack for data consumption and API requests - Exchange Pack Détenteur (Basic subscription data holder) with dashboard, publishing data offers, customer follow-up - CapData Services for use case definition, data diagnosis, compliance, data format identification, prototyping, and deployment"", - ""clientCategories"": [ - ""Cooperatives"", - ""Negotiants"", - ""AgriTech startups"", - ""Agri-suppliers"", - ""Agricultural chambers"", - ""Technical institutes"", - ""Agri-food industries"", - ""Public organizations"", - ""Local authorities"" - ], - ""sectorDescription"": ""Operates in the agricultural and agri-food data intermediation sector, providing a sovereign technological infrastructure for digital development in agriculture and agri-food in France and Europe."", - ""geographicFocus"": ""HQ: Paris, Bordeaux, Lyon, France; Sales Focus: France and Europe"", - ""keyExecutives"": [ - {""name"": ""Sébastien Picardat"", ""title"": ""CEO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""}, - {""name"": ""Renaud Font"", ""title"": ""COO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""}, - {""name"": ""Gaëlle Chéruy Pottiau"", ""title"": ""CSO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""}, - {""name"": ""Christophe Gervais"", ""title"": ""CTO"", ""sourceUrl"": ""https://agdatahub.eu/en/entreprise""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit founders were listed on the website. The linked resources page did not provide direct downloadable PDF documents; it mostly referred to webinars and presentations online."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agdatahub.eu/en/"", - ""productDescription"": ""https://agdatahub.eu/en/entreprise"", - ""clientCategories"": ""https://agdatahub.eu/en/"", - ""geographicFocus"": ""https://agdatahub.eu/en/entreprise"", - ""keyExecutives"": ""https://agdatahub.eu/en/entreprise"" - } -}",[],"{ - ""websiteURL"": ""https://agdatahub.eu/en/"", - ""companyDescription"": ""Agdatahub is the leading agricultural and agri-food data intermediation platform in France and Europe, founded by and for the agricultural sector. It federates public and private players in agriculture around a shared, sovereign technological infrastructure to guarantee digital development of agriculture and agri-food in France and Europe. Its mission is to help every player in the sector better respond to food and environmental challenges today and tomorrow."", - ""productDescription"": ""Agdatahub offers an Exchange platform providing access to a catalog of qualified agricultural data, enabling secure data transactions, simple data recovery, data exposure via EXCHANGE service, secure data control, promotion and monetization of data, operational consulting, and technical support. Core subscriptions and services include: Exchange Pack User for data consumers, Discovery and Advanced Use Packs for API requests, Exchange Pack Détenteur for data holders to publish offers and manage customers, and CapData Services for defining use cases, compliance, prototyping, and deployment."", - ""clientCategories"": [ - ""Cooperatives"", - ""Negotiants"", - ""AgriTech Startups"", - ""Agri-suppliers"", - ""Agricultural Chambers"", - ""Technical Institutes"", - ""Agri-food Industries"", - ""Public Organizations"", - ""Local Authorities"" - ], - ""sectorDescription"": ""Operates in the agricultural and agri-food data intermediation sector, providing a sovereign technological infrastructure for digital development in agriculture and agri-food in France and Europe."", - ""geographicFocus"": ""Headquartered in Paris, Bordeaux, and Lyon, France, with a sales focus on France and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Sébastien Picardat"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://agdatahub.eu/en/entreprise"" - }, - { - ""name"": ""Renaud Font"", - ""title"": ""COO"", - ""sourceUrl"": ""https://agdatahub.eu/en/entreprise"" - }, - { - ""name"": ""Gaëlle Chéruy Pottiau"", - ""title"": ""CSO"", - ""sourceUrl"": ""https://agdatahub.eu/en/entreprise"" - }, - { - ""name"": ""Christophe Gervais"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://agdatahub.eu/en/entreprise"" - } - ], - ""researcherNotes"": ""The company is confirmed as the Agdatahub operating as a French and European agri-food data intermediation platform headquartered in France (Paris, Bordeaux, Lyon). No founders are explicitly listed on the official site or LinkedIn. Notably, a report indicated Agdatahub was liquidated at the end of 2024, indicating recent company status changes. The CEO and key executives titles from the company website are consistent. Geographic focus is confirmed by direct company statements. No additional senior leadership data was found from LinkedIn. The shareholder structure includes agricultural sector actors representing diversity. Sources mostly come from the official company site and reputable press."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agdatahub.eu/en/"", - ""productDescription"": ""https://agdatahub.eu/en/entreprise"", - ""clientCategories"": ""https://agdatahub.eu/en/"", - ""geographicFocus"": ""https://agdatahub.eu/en/entreprise"", - ""keyExecutives"": ""https://agdatahub.eu/en/entreprise"" - } -}","{""clientCategories"":[""Cooperatives"",""Negotiants"",""AgriTech Startups"",""Agri-suppliers"",""Agricultural Chambers"",""Technical Institutes"",""Agri-food Industries"",""Public Organizations"",""Local Authorities""],""companyDescription"":""Agdatahub is the leading agricultural and agri-food data intermediation platform in France and Europe, founded by and for the agricultural sector. It federates public and private players in agriculture around a shared, sovereign technological infrastructure to guarantee digital development of agriculture and agri-food in France and Europe. Its mission is to help every player in the sector better respond to food and environmental challenges today and tomorrow."",""geographicFocus"":""Headquartered in Paris, Bordeaux, and Lyon, France, with a sales focus on France and Europe."",""keyExecutives"":[{""name"":""Sébastien Picardat"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""CEO""},{""name"":""Renaud Font"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""COO""},{""name"":""Gaëlle Chéruy Pottiau"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""CSO""},{""name"":""Christophe Gervais"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Agdatahub offers an Exchange platform providing access to a catalog of qualified agricultural data, enabling secure data transactions, simple data recovery, data exposure via EXCHANGE service, secure data control, promotion and monetization of data, operational consulting, and technical support. Core subscriptions and services include: Exchange Pack User for data consumers, Discovery and Advanced Use Packs for API requests, Exchange Pack Détenteur for data holders to publish offers and manage customers, and CapData Services for defining use cases, compliance, prototyping, and deployment."",""researcherNotes"":""The company is confirmed as the Agdatahub operating as a French and European agri-food data intermediation platform headquartered in France (Paris, Bordeaux, Lyon). No founders are explicitly listed on the official site or LinkedIn. Notably, a report indicated Agdatahub was liquidated at the end of 2024, indicating recent company status changes. The CEO and key executives titles from the company website are consistent. Geographic focus is confirmed by direct company statements. No additional senior leadership data was found from LinkedIn. The shareholder structure includes agricultural sector actors representing diversity. Sources mostly come from the official company site and reputable press."",""sectorDescription"":""Operates in the agricultural and agri-food data intermediation sector, providing a sovereign technological infrastructure for digital development in agriculture and agri-food in France and Europe."",""sources"":{""clientCategories"":""https://agdatahub.eu/en/"",""companyDescription"":""https://agdatahub.eu/en/"",""geographicFocus"":""https://agdatahub.eu/en/entreprise"",""keyExecutives"":""https://agdatahub.eu/en/entreprise"",""productDescription"":""https://agdatahub.eu/en/entreprise""},""websiteURL"":""https://agdatahub.eu/en/""}","Correctness: 95% Completeness: 90% The core factual claims about Agdatahub are accurate: it is a leading agricultural and agri-food data intermediation platform founded by and for the agricultural sector, headquartered in France (Paris, Bordeaux, Lyon), serving France and Europe[1][3]. The stated key executives, including Sébastien Picardat as CEO, are consistent with official sources and company statements as of early 2025[4]. The platform offers services for secure data exchange, consent management, and operational consulting with solutions such as Agriconsent (a blockchain-based identity system)[3][4]. However, a critical recent development that completeness must consider is that Agdatahub was liquidated at the end of 2024, despite initial strong institutional support from French and European authorities including France 2030 and the Ministry of Agriculture[5]. The liquidation reflects limited adoption of concrete use cases and weak economic incentives for data sharing, which is significant recent context missing from many standard company descriptions[5]. The company’s product and sector descriptions are otherwise well-covered from official and reputable project sources[1][2][3][4]. No founder names beyond leadership roles are public, which matches current public record[3]. Overall, the core identity, leadership, products, and geographic focus claims are largely correct and well sourced, while the recent liquidation is a key new fact that adds necessary context for completeness. Sources: https://agdatahub.eu/en/entreprise, https://monitor.data4food2030.eu/dsi/agdatahub, https://presse.avril.com/agdatahub-raises-e4-8-million-to-boost-the-development-of-a-french-and-european-agricultural-infratech-in-a-trusted-framework/, https://www.orange-business.com/en/press/agdatahub-orange-business-services-and-groupe-introduce-agriconsent-blockchain-based, https://gaia-x.eu/sharing-agricultural-data-from-tractor-to-server-understanding-the-agdatahub-experience/","{""clientCategories"":[""Cooperatives"",""Negotiants"",""AgriTech startups"",""Agri-suppliers"",""Agricultural chambers"",""Technical institutes"",""Agri-food industries"",""Public organizations"",""Local authorities""],""companyDescription"":""Agdatahub is the leading agricultural and agri-food data intermediation platform in France and Europe, founded by and for the agricultural sector. It federates public and private players in agriculture around a shared, sovereign technological infrastructure to guarantee digital development of agriculture and agri-food in France and Europe. Mission: To help every player in the sector better respond to food and environmental challenges today and tomorrow."",""geographicFocus"":""HQ: Paris, Bordeaux, Lyon, France; Sales Focus: France and Europe"",""keyExecutives"":[{""name"":""Sébastien Picardat"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""CEO""},{""name"":""Renaud Font"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""COO""},{""name"":""Gaëlle Chéruy Pottiau"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""CSO""},{""name"":""Christophe Gervais"",""sourceUrl"":""https://agdatahub.eu/en/entreprise"",""title"":""CTO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Agdatahub offers an Exchange platform providing access to a catalog of qualified agricultural data, enabling secure data transactions, simple data recovery, data exposure via EXCHANGE service, secure data control, promotion and monetization of data, operational consulting, and technical support. Core subscriptions and services include: - Exchange Pack User (Basic Subscription Data User) with secure authentication, catalog access, business account management - Discovery Use Pack and Advanced Use Pack for data consumption and API requests - Exchange Pack Détenteur (Basic subscription data holder) with dashboard, publishing data offers, customer follow-up - CapData Services for use case definition, data diagnosis, compliance, data format identification, prototyping, and deployment"",""researcherNotes"":""No explicit founders were listed on the website. The linked resources page did not provide direct downloadable PDF documents; it mostly referred to webinars and presentations online."",""sectorDescription"":""Operates in the agricultural and agri-food data intermediation sector, providing a sovereign technological infrastructure for digital development in agriculture and agri-food in France and Europe."",""sources"":{""clientCategories"":""https://agdatahub.eu/en/"",""companyDescription"":""https://agdatahub.eu/en/"",""geographicFocus"":""https://agdatahub.eu/en/entreprise"",""keyExecutives"":""https://agdatahub.eu/en/entreprise"",""productDescription"":""https://agdatahub.eu/en/entreprise""},""websiteURL"":""https://agdatahub.eu/en/""}" -EcoTree,https://ecotree.green/,"Accurafy 4, FAMAE Impact, FINANCIERE FONDS PRIVES, Societe Generale",ecotree.green,https://www.linkedin.com/company/ecotree-international,"{""seniorLeadership"":[{""name"":""Thomas Norman Canguilhem"",""title"":""CEO"",""linkedinURL"":""https://dk.linkedin.com/in/thomascanguilhem""},{""name"":""Christian Bergius"",""title"":""Country Director DACH"",""linkedinURL"":""https://de.linkedin.com/in/cbergius/en""},{""name"":""Antoine V."",""title"":""Group CFO (ex-CFO of EcoTree)"",""linkedinURL"":""https://fr.linkedin.com/in/antoinevilledey""}]}","{""seniorLeadership"":[{""name"":""Thomas Norman Canguilhem"",""title"":""CEO"",""linkedinURL"":""https://dk.linkedin.com/in/thomascanguilhem""},{""name"":""Christian Bergius"",""title"":""Country Director DACH"",""linkedinURL"":""https://de.linkedin.com/in/cbergius/en""},{""name"":""Antoine V."",""title"":""Group CFO (ex-CFO of EcoTree)"",""linkedinURL"":""https://fr.linkedin.com/in/antoinevilledey""}]}","{ - ""websiteURL"": ""https://ecotree.green/"", - ""companyDescription"": ""EcoTree is a leading provider of Nature-Based Solutions in Europe, offering opportunities for individuals to engage in the protection, management, and restoration of ecosystems through sustainable forest management and tree planting. They democratize access to forest property with a return on investment model that also contributes to global environmental and social issues. Their values include goodwill, humility, and high standards, focusing on working in harmony with nature and maintaining integrity and commitment."", - ""productDescription"": ""EcoTree offers nature-based solutions including sustainable forestry, carbon capture, planting forests, biodiversity conservation, forestry investment, customer incentives (such as loyalty rewards with trees), and corporate gifts that emphasize environmental impact. They work with local partners to deliver financial, environmental, and social benefits and provide KPIs for sustainability reporting."", - ""clientCategories"": [ - ""Sustainable-oriented businesses"", - ""Companies focused on ESG goals"", - ""Businesses aiming for carbon neutrality"", - ""Firms investing in biodiversity conservation"", - ""Companies using customer loyalty and corporate gift programs"" - ], - ""sectorDescription"": ""Operates in the nature-based solutions sector, focusing on sustainable forest management, biodiversity conservation, and environmental impact services for businesses across Europe."", - ""geographicFocus"": ""HQ: Vesterbrogade 26, 2, 1620 Copenhagen, Denmark; Sales Focus: Europe"", - ""keyExecutives"": [ - {""name"": ""Théophane Bottinger"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous""}, - {""name"": ""Baudouin Montgauz"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous""}, - {""name"": ""Erwan Stéphan"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous""}, - {""name"": ""Vianney Renard"", ""title"": ""Forest Director"", ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees""}, - {""name"": ""Pierre-François Dumont Saint Priest"", ""title"": ""Co-founder and Product Director"", ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees""}, - {""name"": ""Vianney de La Brosse"", ""title"": ""Co-founder and Forestry Lead"", ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees""} - ], - ""linkedDocuments"": [ - ""https://cdn.ecotree.green/documents/EcoTree-BCorp-EN.pdf"", - ""https://cdn.ecotree.green/documents/ecotree_2024_rapport_annuel_de_gestion_fr.pdf"", - ""https://cdn.ecotree.green/documents/EcoTree-2024-forestry-report.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ecotree.green/en/what-is-ecotree"", - ""productDescription"": ""https://ecotree.green/en/companies/csr"", - ""clientCategories"": ""https://ecotree.green/en/companies/client-success-stories"", - ""geographicFocus"": ""https://ecotree.green/en/contact"", - ""keyExecutives"": ""https://ecotree.green/en/blog/behind-the-trees"" - } -}","{ - ""websiteURL"": ""https://ecotree.green/"", - ""companyDescription"": ""EcoTree is a leading provider of Nature-Based Solutions in Europe, offering opportunities for individuals to engage in the protection, management, and restoration of ecosystems through sustainable forest management and tree planting. They democratize access to forest property with a return on investment model that also contributes to global environmental and social issues. Their values include goodwill, humility, and high standards, focusing on working in harmony with nature and maintaining integrity and commitment."", - ""productDescription"": ""EcoTree offers nature-based solutions including sustainable forestry, carbon capture, planting forests, biodiversity conservation, forestry investment, customer incentives (such as loyalty rewards with trees), and corporate gifts that emphasize environmental impact. They work with local partners to deliver financial, environmental, and social benefits and provide KPIs for sustainability reporting."", - ""clientCategories"": [ - ""Sustainable-oriented businesses"", - ""Companies focused on ESG goals"", - ""Businesses aiming for carbon neutrality"", - ""Firms investing in biodiversity conservation"", - ""Companies using customer loyalty and corporate gift programs"" - ], - ""sectorDescription"": ""Operates in the nature-based solutions sector, focusing on sustainable forest management, biodiversity conservation, and environmental impact services for businesses across Europe."", - ""geographicFocus"": ""HQ: Vesterbrogade 26, 2, 1620 Copenhagen, Denmark; Sales Focus: Europe"", - ""keyExecutives"": [ - {""name"": ""Théophane Bottinger"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous""}, - {""name"": ""Baudouin Montgauz"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous""}, - {""name"": ""Erwan Stéphan"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous""}, - {""name"": ""Vianney Renard"", ""title"": ""Forest Director"", ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees""}, - {""name"": ""Pierre-François Dumont Saint Priest"", ""title"": ""Co-founder and Product Director"", ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees""}, - {""name"": ""Vianney de La Brosse"", ""title"": ""Co-founder and Forestry Lead"", ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees""} - ], - ""linkedDocuments"": [ - ""https://cdn.ecotree.green/documents/EcoTree-BCorp-EN.pdf"", - ""https://cdn.ecotree.green/documents/ecotree_2024_rapport_annuel_de_gestion_fr.pdf"", - ""https://cdn.ecotree.green/documents/EcoTree-2024-forestry-report.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ecotree.green/en/what-is-ecotree"", - ""productDescription"": ""https://ecotree.green/en/companies/csr"", - ""clientCategories"": ""https://ecotree.green/en/companies/client-success-stories"", - ""geographicFocus"": ""https://ecotree.green/en/contact"", - ""keyExecutives"": ""https://ecotree.green/en/blog/behind-the-trees"" - } -}",[],"{ - ""websiteURL"": ""https://ecotree.green/"", - ""companyDescription"": ""EcoTree is a leading European provider of Nature-Based Solutions focused on sustainable forest management and ecosystem restoration. Founded in 2016 and headquartered in France with operations across multiple European countries, EcoTree democratizes forest ownership by enabling individuals and businesses to invest in tree planting and sustainable forestry. Their innovative model combines ecological responsibility with financial returns, addressing environmental and social challenges related to biodiversity, carbon capture, and ecosystem conservation through high standards and strong partnerships."", - ""productDescription"": ""EcoTree offers nature-based solutions such as sustainable forest management, carbon capture, biodiversity conservation, and forestry investment opportunities. They enable clients to invest in forests, receive financial returns from timber harvests, and benefit from environmental impact metrics suitable for sustainability reporting. Their services include customer loyalty incentives and corporate gifting programs emphasizing ecological impact, delivered with local partners to maximize financial, environmental, and social benefits."", - ""clientCategories"": [ - ""Sustainable-Oriented Businesses"", - ""Companies Focused on ESG Goals"", - ""Businesses Aiming for Carbon Neutrality"", - ""Firms Investing in Biodiversity Conservation"", - ""Companies Using Customer Loyalty and Corporate Gift Programs"" - ], - ""sectorDescription"": ""Nature-based solutions sector specializing in sustainable forest management, biodiversity conservation, and environmental impact services across Europe."", - ""geographicFocus"": ""Headquartered in Brittany, France, with a sales and operational focus across Western and Northern Europe including Belgium, Denmark, France, and Germany."", - ""keyExecutives"": [ - { - ""name"": ""Théophane Bottinger"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous"" - }, - { - ""name"": ""Baudouin Montgauz"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous"" - }, - { - ""name"": ""Erwan Stéphan"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://ecotree.green/entreprises/qui-sommes-nous"" - }, - { - ""name"": ""Vianney Renard"", - ""title"": ""Forest Director"", - ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees"" - }, - { - ""name"": ""Pierre-François Dumont Saint Priest"", - ""title"": ""Co-founder and Product Director"", - ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees"" - }, - { - ""name"": ""Vianney de La Brosse"", - ""title"": ""Co-founder and Forestry Lead"", - ""sourceUrl"": ""https://ecotree.green/en/blog/behind-the-trees"" - }, - { - ""name"": ""Thomas Norman Canguilhem"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://dk.linkedin.com/in/thomascanguilhem"" - }, - { - ""name"": ""Christian Bergius"", - ""title"": ""Country Director DACH"", - ""sourceUrl"": ""https://de.linkedin.com/in/cbergius/en"" - } - ], - ""researcherNotes"": ""The entity has been confirmed as EcoTree operating primarily in Europe, with HQ in Brittany, France. The original SOURCE_JSON cited Copenhagen, Denmark, which likely reflects a sales focus or a satellite office; this was corrected to the company HQ per multiple sources including B Corp registry in France. LinkedIn data adds current CEO Thomas Norman Canguilhem and DACH Country Director Christian Bergius, updating executive leadership beyond the original co-founders and forestry leads listed on the company’s site. CFO Antoine Villedey is noted on LinkedIn as former CFO, excluded due to current status. Geographic focus was refined to Western and Northern Europe from company’s B Corp profile and other documents. No official regulatory filings were found to dispute these data points."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ecotree.green/en/what-is-ecotree"", - ""productDescription"": ""https://ecotree.green/en/companies/csr"", - ""clientCategories"": ""https://ecotree.green/en/companies/client-success-stories"", - ""geographicFocus"": ""https://www.bcorporation.net/find-a-b-corp/company/eco-tree/"", - ""keyExecutives"": ""https://ecotree.green/en/blog/behind-the-trees"" - } -}","{""clientCategories"":[""Sustainable-Oriented Businesses"",""Companies Focused on ESG Goals"",""Businesses Aiming for Carbon Neutrality"",""Firms Investing in Biodiversity Conservation"",""Companies Using Customer Loyalty and Corporate Gift Programs""],""companyDescription"":""EcoTree is a leading European provider of Nature-Based Solutions focused on sustainable forest management and ecosystem restoration. Founded in 2016 and headquartered in France with operations across multiple European countries, EcoTree democratizes forest ownership by enabling individuals and businesses to invest in tree planting and sustainable forestry. Their innovative model combines ecological responsibility with financial returns, addressing environmental and social challenges related to biodiversity, carbon capture, and ecosystem conservation through high standards and strong partnerships."",""geographicFocus"":""Headquartered in Brittany, France, with a sales and operational focus across Western and Northern Europe including Belgium, Denmark, France, and Germany."",""keyExecutives"":[{""name"":""Théophane Bottinger"",""sourceUrl"":""https://ecotree.green/entreprises/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Baudouin Montgauz"",""sourceUrl"":""https://ecotree.green/entreprises/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Erwan Stéphan"",""sourceUrl"":""https://ecotree.green/entreprises/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Vianney Renard"",""sourceUrl"":""https://ecotree.green/en/blog/behind-the-trees"",""title"":""Forest Director""},{""name"":""Pierre-François Dumont Saint Priest"",""sourceUrl"":""https://ecotree.green/en/blog/behind-the-trees"",""title"":""Co-founder and Product Director""},{""name"":""Vianney de La Brosse"",""sourceUrl"":""https://ecotree.green/en/blog/behind-the-trees"",""title"":""Co-founder and Forestry Lead""},{""name"":""Thomas Norman Canguilhem"",""sourceUrl"":""https://dk.linkedin.com/in/thomascanguilhem"",""title"":""CEO""},{""name"":""Christian Bergius"",""sourceUrl"":""https://de.linkedin.com/in/cbergius/en"",""title"":""Country Director DACH""}],""missingImportantFields"":[],""productDescription"":""EcoTree offers nature-based solutions such as sustainable forest management, carbon capture, biodiversity conservation, and forestry investment opportunities. They enable clients to invest in forests, receive financial returns from timber harvests, and benefit from environmental impact metrics suitable for sustainability reporting. Their services include customer loyalty incentives and corporate gifting programs emphasizing ecological impact, delivered with local partners to maximize financial, environmental, and social benefits."",""researcherNotes"":""The entity has been confirmed as EcoTree operating primarily in Europe, with HQ in Brittany, France. The original SOURCE_JSON cited Copenhagen, Denmark, which likely reflects a sales focus or a satellite office; this was corrected to the company HQ per multiple sources including B Corp registry in France. LinkedIn data adds current CEO Thomas Norman Canguilhem and DACH Country Director Christian Bergius, updating executive leadership beyond the original co-founders and forestry leads listed on the company’s site. CFO Antoine Villedey is noted on LinkedIn as former CFO, excluded due to current status. Geographic focus was refined to Western and Northern Europe from company’s B Corp profile and other documents. No official regulatory filings were found to dispute these data points."",""sectorDescription"":""Nature-based solutions sector specializing in sustainable forest management, biodiversity conservation, and environmental impact services across Europe."",""sources"":{""clientCategories"":""https://ecotree.green/en/companies/client-success-stories"",""companyDescription"":""https://ecotree.green/en/what-is-ecotree"",""geographicFocus"":""https://www.bcorporation.net/find-a-b-corp/company/eco-tree/"",""keyExecutives"":""https://ecotree.green/en/blog/behind-the-trees"",""productDescription"":""https://ecotree.green/en/companies/csr""},""websiteURL"":""https://ecotree.green/""}","Correctness: 97% Completeness: 95% The provided information about EcoTree is largely accurate and well-supported by multiple authoritative sources. The company was founded in 2014/2016 in France, with a focus on sustainable forest management and nature-based solutions to address biodiversity and carbon capture — confirmed by the official site and reputable French sources[2][4]. The headquarters is correctly stated as Brittany, France, aligning with the B Corp registry and company data, while the Copenhagen office reflects an international presence rather than the HQ itself[4][1]. Key executives including co-founders and current CEO Thomas Norman Canguilhem are confirmed by EcoTree’s blog and LinkedIn profiles, with roles like Forest Director and Country Director DACH documented[4]. The product description emphasizing tree ownership democratization, ecological responsibility combined with financial returns, customer loyalty, and corporate gifting programs is consistent with the company’s communications[4]. The geographic footprint spans Western and Northern Europe including Belgium, Denmark, France, and Germany[3][4]. Minor date discrepancies (2014 vs. 2016 founding) arise from company storytelling versus legal establishment but do not significantly affect correctness. No major omissions appear; leadership, geography, product scope, and ESG focus are all covered[1][4]. URLs supporting these details include https://ecotree.green/en/companies/about, https://ecotree.green/en/blog/behind-the-trees, and https://www.bcorporation.net/find-a-b-corp/company/eco-tree/.","{""clientCategories"":[""Sustainable-oriented businesses"",""Companies focused on ESG goals"",""Businesses aiming for carbon neutrality"",""Firms investing in biodiversity conservation"",""Companies using customer loyalty and corporate gift programs""],""companyDescription"":""EcoTree is a leading provider of Nature-Based Solutions in Europe, offering opportunities for individuals to engage in the protection, management, and restoration of ecosystems through sustainable forest management and tree planting. They democratize access to forest property with a return on investment model that also contributes to global environmental and social issues. Their values include goodwill, humility, and high standards, focusing on working in harmony with nature and maintaining integrity and commitment."",""geographicFocus"":""HQ: Vesterbrogade 26, 2, 1620 Copenhagen, Denmark; Sales Focus: Europe"",""keyExecutives"":[{""name"":""Théophane Bottinger"",""sourceUrl"":""https://ecotree.green/entreprises/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Baudouin Montgauz"",""sourceUrl"":""https://ecotree.green/entreprises/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Erwan Stéphan"",""sourceUrl"":""https://ecotree.green/entreprises/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Vianney Renard"",""sourceUrl"":""https://ecotree.green/en/blog/behind-the-trees"",""title"":""Forest Director""},{""name"":""Pierre-François Dumont Saint Priest"",""sourceUrl"":""https://ecotree.green/en/blog/behind-the-trees"",""title"":""Co-founder and Product Director""},{""name"":""Vianney de La Brosse"",""sourceUrl"":""https://ecotree.green/en/blog/behind-the-trees"",""title"":""Co-founder and Forestry Lead""}],""linkedDocuments"":[""https://cdn.ecotree.green/documents/EcoTree-BCorp-EN.pdf"",""https://cdn.ecotree.green/documents/ecotree_2024_rapport_annuel_de_gestion_fr.pdf"",""https://cdn.ecotree.green/documents/EcoTree-2024-forestry-report.pdf""],""missingImportantFields"":[],""productDescription"":""EcoTree offers nature-based solutions including sustainable forestry, carbon capture, planting forests, biodiversity conservation, forestry investment, customer incentives (such as loyalty rewards with trees), and corporate gifts that emphasize environmental impact. They work with local partners to deliver financial, environmental, and social benefits and provide KPIs for sustainability reporting."",""researcherNotes"":null,""sectorDescription"":""Operates in the nature-based solutions sector, focusing on sustainable forest management, biodiversity conservation, and environmental impact services for businesses across Europe."",""sources"":{""clientCategories"":""https://ecotree.green/en/companies/client-success-stories"",""companyDescription"":""https://ecotree.green/en/what-is-ecotree"",""geographicFocus"":""https://ecotree.green/en/contact"",""keyExecutives"":""https://ecotree.green/en/blog/behind-the-trees"",""productDescription"":""https://ecotree.green/en/companies/csr""},""websiteURL"":""https://ecotree.green/""}" -Talam Biotech,http://www.microgenbiotech.com/,"Fulcrum Global Capital, The Yield Lab Europe",microgenbiotech.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.microgenbiotech.com/"", - ""companyDescription"": ""Talam Biotech uses microbes found in the soil to develop solutions that help agriculture protect the integrity of our food and create a more sustainable planet. It develops environmental bio-remediation products designed to reduce toxins in crops and clean contaminated soil and water by reducing heavy metal uptake via natural microbial keys."", - ""productDescription"": ""Talam Biotech offers environmental bio-remediation products and microbial solutions including Talam Biological Seed Treatment that reduce toxins in crops, inhibit heavy metal uptake, reduce pollutants in arable soil, increase crop yields, and clean contaminated soil and water."", - ""clientCategories"": [""Agriculture industry"", ""Agriculture-based businesses concerned with food safety and sustainable crop production""], - ""sectorDescription"": ""Operates in the AgTech and Biotechnology sector, providing microbial-based natural solutions to enhance agricultural sustainability, food safety, and soil health."", - ""geographicFocus"": ""HQ: 93 Shennecossett Road, Groton, CT 06340, United States and Carlow, Ireland; Sales Focus: United States, Ireland"", - ""keyExecutives"": [ - {""name"": ""John Chrosniak"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""}, - {""name"": ""Thomas Malvar"", ""title"": ""Chief Scientific Officer"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""}, - {""name"": ""Eoin Grindley"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""}, - {""name"": ""Xuemei Germaine"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Company mission statement was not explicitly stated on the main website or profiles, inferred from product and company descriptions."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/microgen-biotech"", - ""productDescription"": ""https://pitchbook.com/profiles/company/102454-57"", - ""clientCategories"": ""https://www.crunchbase.com/organization/microgen-biotech"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/102454-57"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/microgen-biotech"" - } -}","{ - ""websiteURL"": ""http://www.microgenbiotech.com/"", - ""companyDescription"": ""Talam Biotech uses microbes found in the soil to develop solutions that help agriculture protect the integrity of our food and create a more sustainable planet. It develops environmental bio-remediation products designed to reduce toxins in crops and clean contaminated soil and water by reducing heavy metal uptake via natural microbial keys."", - ""productDescription"": ""Talam Biotech offers environmental bio-remediation products and microbial solutions including Talam Biological Seed Treatment that reduce toxins in crops, inhibit heavy metal uptake, reduce pollutants in arable soil, increase crop yields, and clean contaminated soil and water."", - ""clientCategories"": [""Agriculture industry"", ""Agriculture-based businesses concerned with food safety and sustainable crop production""], - ""sectorDescription"": ""Operates in the AgTech and Biotechnology sector, providing microbial-based natural solutions to enhance agricultural sustainability, food safety, and soil health."", - ""geographicFocus"": ""HQ: 93 Shennecossett Road, Groton, CT 06340, United States and Carlow, Ireland; Sales Focus: United States, Ireland"", - ""keyExecutives"": [ - {""name"": ""John Chrosniak"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""}, - {""name"": ""Thomas Malvar"", ""title"": ""Chief Scientific Officer"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""}, - {""name"": ""Eoin Grindley"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""}, - {""name"": ""Xuemei Germaine"", ""title"": ""Founder"", ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Company mission statement was not explicitly stated on the main website or profiles, inferred from product and company descriptions."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/microgen-biotech"", - ""productDescription"": ""https://pitchbook.com/profiles/company/102454-57"", - ""clientCategories"": ""https://www.crunchbase.com/organization/microgen-biotech"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/102454-57"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/microgen-biotech"" - } -}",[],"{ - ""websiteURL"": ""https://talam.com"", - ""companyDescription"": ""Talam Biotech uses microbes found in soil to develop natural microbial solutions that help agriculture protect food integrity and promote sustainability. The company focuses on reducing food-associated contaminants, remediating pollutants, and enabling farmers to produce healthier, more sustainable food by leveraging soil microbiomes."", - ""productDescription"": ""Talam Biotech offers environmental bio-remediation products and microbial solutions, including biological seed treatments that reduce toxins in crops, inhibit heavy metal uptake, reduce pollutants in arable soil, increase crop yields, and clean contaminated soil and water."", - ""clientCategories"": [ - ""Agriculture Industry"", - ""Agriculture-Based Businesses Concerned With Food Safety And Sustainable Crop Production"" - ], - ""sectorDescription"": ""Operates in the AgTech and Biotechnology sector, providing microbial-based natural solutions to enhance agricultural sustainability, food safety, and soil health."", - ""geographicFocus"": ""Headquartered in Groton, Connecticut, United States, and Carlow, Ireland, with a sales focus on the United States and Ireland."", - ""keyExecutives"": [ - { - ""name"": ""John Chrosniak"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech"" - }, - { - ""name"": ""Thomas Malvar"", - ""title"": ""Chief Scientific Officer"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech"" - }, - { - ""name"": ""Eoin Grindley"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech"" - }, - { - ""name"": ""Xuemei Germaine"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/microgen-biotech"" - } - ], - ""researcherNotes"": ""The company was previously known as MicroGen Biotech, which aligns with the provided key executives and product descriptions. The official domain is talam.com, differing from the initial source URL, which appeared outdated. The geographic focus is confirmed as the United States and Ireland, matching both company address and sales regions. No senior leadership was found on LinkedIn beyond existing sources, so existing executive data remains unchanged."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://bioct.org/member/talam-biotech/"", - ""productDescription"": ""https://pitchbook.com/profiles/company/102454-57"", - ""clientCategories"": ""https://bioct.org/member/talam-biotech/"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/102454-57"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/microgen-biotech"" - } -}","{""clientCategories"":[""Agriculture Industry"",""Agriculture-Based Businesses Concerned With Food Safety And Sustainable Crop Production""],""companyDescription"":""Talam Biotech uses microbes found in soil to develop natural microbial solutions that help agriculture protect food integrity and promote sustainability. The company focuses on reducing food-associated contaminants, remediating pollutants, and enabling farmers to produce healthier, more sustainable food by leveraging soil microbiomes."",""geographicFocus"":""Headquartered in Groton, Connecticut, United States, and Carlow, Ireland, with a sales focus on the United States and Ireland."",""keyExecutives"":[{""name"":""John Chrosniak"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""CEO""},{""name"":""Thomas Malvar"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""Chief Scientific Officer""},{""name"":""Eoin Grindley"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""Chief Financial Officer""},{""name"":""Xuemei Germaine"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Talam Biotech offers environmental bio-remediation products and microbial solutions, including biological seed treatments that reduce toxins in crops, inhibit heavy metal uptake, reduce pollutants in arable soil, increase crop yields, and clean contaminated soil and water."",""researcherNotes"":""The company was previously known as MicroGen Biotech, which aligns with the provided key executives and product descriptions. The official domain is talam.com, differing from the initial source URL, which appeared outdated. The geographic focus is confirmed as the United States and Ireland, matching both company address and sales regions. No senior leadership was found on LinkedIn beyond existing sources, so existing executive data remains unchanged."",""sectorDescription"":""Operates in the AgTech and Biotechnology sector, providing microbial-based natural solutions to enhance agricultural sustainability, food safety, and soil health."",""sources"":{""clientCategories"":""https://bioct.org/member/talam-biotech/"",""companyDescription"":""https://bioct.org/member/talam-biotech/"",""geographicFocus"":""https://pitchbook.com/profiles/company/102454-57"",""keyExecutives"":""https://www.crunchbase.com/organization/microgen-biotech"",""productDescription"":""https://pitchbook.com/profiles/company/102454-57""},""websiteURL"":""https://talam.com""}","Correctness: 98% Completeness: 95% The description of Talam Biotech as a company using naturally occurring soil microbes to develop microbial solutions that reduce food contaminants, heavy metals uptake, and pollutants aligns well with recent sources, including their official website and recent press releases[1][3][4]. The company is headquartered in Groton, Connecticut, with operations also noted in Ireland, consistent with the geographic focus cited[4]. The leadership data—John Chrosniak as CEO and others—matches the named executives listed on Crunchbase and the company’s announced news as of mid-2025[1][5]. Their product focus on environmental bio-remediation, seed treatments, and improving crop yields accurately reflects the technology described in multiple independent summaries[1][2][4]. Slight score reduction is due to the Crunchbase URL referencing the prior company name MicroGen Biotech rather than the updated talam.com domain, which might confuse new researchers, and no new senior executives beyond those already listed were found on LinkedIn or other leadership-specific sources as of 2025-09-11[3][5]. Overall, major claims are well-supported by official sources and recent company communications. https://www.prnewswire.com/news-releases/wilbur-ellis-talam-biotech-to-collaborate-on-us-food-crop-solution-for-heavy-metals-302487816.html https://worldbiomarketinsights.com/wilbur-ellis-and-talam-biotech-to-reduce-heavy-metals-in-crops/ https://bioct.org/member/talam-biotech/ https://talam.com/news-insights/category/talam-news/ https://www.lifesciencehistory.com/companies/talam-biotech/","{""clientCategories"":[""Agriculture industry"",""Agriculture-based businesses concerned with food safety and sustainable crop production""],""companyDescription"":""Talam Biotech uses microbes found in the soil to develop solutions that help agriculture protect the integrity of our food and create a more sustainable planet. It develops environmental bio-remediation products designed to reduce toxins in crops and clean contaminated soil and water by reducing heavy metal uptake via natural microbial keys."",""geographicFocus"":""HQ: 93 Shennecossett Road, Groton, CT 06340, United States and Carlow, Ireland; Sales Focus: United States, Ireland"",""keyExecutives"":[{""name"":""John Chrosniak"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""CEO""},{""name"":""Thomas Malvar"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""Chief Scientific Officer""},{""name"":""Eoin Grindley"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""Chief Financial Officer""},{""name"":""Xuemei Germaine"",""sourceUrl"":""https://www.crunchbase.com/organization/microgen-biotech"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Talam Biotech offers environmental bio-remediation products and microbial solutions including Talam Biological Seed Treatment that reduce toxins in crops, inhibit heavy metal uptake, reduce pollutants in arable soil, increase crop yields, and clean contaminated soil and water."",""researcherNotes"":""Company mission statement was not explicitly stated on the main website or profiles, inferred from product and company descriptions."",""sectorDescription"":""Operates in the AgTech and Biotechnology sector, providing microbial-based natural solutions to enhance agricultural sustainability, food safety, and soil health."",""sources"":{""clientCategories"":""https://www.crunchbase.com/organization/microgen-biotech"",""companyDescription"":""https://www.crunchbase.com/organization/microgen-biotech"",""geographicFocus"":""https://pitchbook.com/profiles/company/102454-57"",""keyExecutives"":""https://www.crunchbase.com/organization/microgen-biotech"",""productDescription"":""https://pitchbook.com/profiles/company/102454-57""},""websiteURL"":""http://www.microgenbiotech.com/""}" -Gaiago,https://www.gaiago.eu/,"A Plus Finance, Arkea Capital Investissement, Crédit Agricole, Telos Impact, Unexo",gaiago.eu,https://www.linkedin.com/company/gaiago,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.gaiago.eu/"", - ""companyDescription"": ""Gaïago revitalizes soils for the performance of regenerative agriculture by rapidly restoring agricultural soils to guarantee agronomic, economic, and environmental performance."", - ""productDescription"": ""Gaïago offers a range of soil biostimulants and prebiotic solutions including: \n- Nutrigeo: activates beneficial fungi and decomposer microorganisms\n- K1: accelerates decomposition by activating soil micro-organisms\n- Free N100: nitrogen fixer that stimulates root development and compensates for nitrogen deficiency\n- Free PK: solubilizes blocked minerals in calcareous or acidic soils to improve mineral availability\n- Stimulus: foliar prebiotic to enhance plant nutrition\n- Vitam'in, Elitho, Assainix: additional biostimulant products\nOther services include financing transitions, Gaïago Carbone carbon offer, knowledge transmission, and a university and club focused on soil fertility."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agriculture sector, specializing in soil health, soil revitalization, and regenerative agriculture practices."", - ""geographicFocus"": ""HQ: Saint-Malo, Bretagne, France; Sales Focus: Primarily France with agri-environmental focus."", - ""keyExecutives"": [ - {""name"": ""Francis Bucaille"", ""title"": ""Co-Founder & R&D Manager"", ""sourceUrl"": ""https://crunchbase.com/person/francis-bucaille""}, - {""name"": ""Samuel Marquet"", ""title"": ""Co-Founder, Director, Partner in charge of partnerships, sector and industrial relations"", ""sourceUrl"": ""https://crunchbase.com/person/samuel-marquet""}, - {""name"": ""Charles Vaury"", ""title"": ""Chief Transition Officer"", ""sourceUrl"": ""https://crunchbase.com/person/charles-vaury""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit client categories or detailed geographic sales regions were found on the website. No linked downloadable documents (PDFs) were discovered."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.gaiago.eu/"", - ""productDescription"": ""https://www.gaiago.eu/produits/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://crunchbase.com/organization/gaiago-3daf"", - ""keyExecutives"": ""https://crunchbase.com/organization/gaiago-3daf"" - } -}","{ - ""websiteURL"": ""https://www.gaiago.eu/"", - ""companyDescription"": ""Gaïago revitalizes soils for the performance of regenerative agriculture by rapidly restoring agricultural soils to guarantee agronomic, economic, and environmental performance."", - ""productDescription"": ""Gaïago offers a range of soil biostimulants and prebiotic solutions including: \n- Nutrigeo: activates beneficial fungi and decomposer microorganisms\n- K1: accelerates decomposition by activating soil micro-organisms\n- Free N100: nitrogen fixer that stimulates root development and compensates for nitrogen deficiency\n- Free PK: solubilizes blocked minerals in calcareous or acidic soils to improve mineral availability\n- Stimulus: foliar prebiotic to enhance plant nutrition\n- Vitam'in, Elitho, Assainix: additional biostimulant products\nOther services include financing transitions, Gaïago Carbone carbon offer, knowledge transmission, and a university and club focused on soil fertility."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agriculture sector, specializing in soil health, soil revitalization, and regenerative agriculture practices."", - ""geographicFocus"": ""HQ: Saint-Malo, Bretagne, France; Sales Focus: Primarily France with agri-environmental focus."", - ""keyExecutives"": [ - {""name"": ""Francis Bucaille"", ""title"": ""Co-Founder & R&D Manager"", ""sourceUrl"": ""https://crunchbase.com/person/francis-bucaille""}, - {""name"": ""Samuel Marquet"", ""title"": ""Co-Founder, Director, Partner in charge of partnerships, sector and industrial relations"", ""sourceUrl"": ""https://crunchbase.com/person/samuel-marquet""}, - {""name"": ""Charles Vaury"", ""title"": ""Chief Transition Officer"", ""sourceUrl"": ""https://crunchbase.com/person/charles-vaury""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit client categories or detailed geographic sales regions were found on the website. No linked downloadable documents (PDFs) were discovered."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.gaiago.eu/"", - ""productDescription"": ""https://www.gaiago.eu/produits/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://crunchbase.com/organization/gaiago-3daf"", - ""keyExecutives"": ""https://crunchbase.com/organization/gaiago-3daf"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.gaiago.eu/"", - ""companyDescription"": ""Gaïago revitalizes soils for the performance of regenerative agriculture by rapidly restoring agricultural soils to guarantee agronomic, economic, and environmental performance. The company develops innovative, natural agricultural inputs that stimulate soil microbiology, benefiting farmers and the environment in France and beyond."", - ""productDescription"": ""Gaïago offers a range of soil biostimulants and prebiotic solutions including Nutrigeo (activates beneficial fungi and decomposer microorganisms), K1 (accelerates decomposition by activating soil micro-organisms), Free N100 (nitrogen fixer that stimulates root development and compensates nitrogen deficiency), Free PK (solubilizes blocked minerals to improve availability), and Stimulus (a foliar prebiotic to enhance plant nutrition). Additional products include Vitam'in, Elitho, and Assainix. Services also comprise financing transitions, the Gaïago Carbone carbon offer, knowledge transmission, and a university and club focused on soil fertility."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Traders"", - ""Regenerative Agriculture Practitioners"", - ""Agri-businesses"" - ], - ""sectorDescription"": ""Agricultural technology company specializing in soil health and regenerative agriculture products and services for sustainable farming."", - ""geographicFocus"": ""Headquartered in Saint-Malo, Bretagne, France, with primary sales and operational focus in France serving farmers and agricultural stakeholders."", - ""keyExecutives"": [ - { - ""name"": ""Francis Bucaille"", - ""title"": ""Co-Founder & R&D Manager"", - ""sourceUrl"": ""https://crunchbase.com/person/francis-bucaille"" - }, - { - ""name"": ""Samuel Marquet"", - ""title"": ""Co-Founder, Director, Partner in charge of partnerships, sector and industrial relations"", - ""sourceUrl"": ""https://crunchbase.com/person/samuel-marquet"" - }, - { - ""name"": ""Charles Vaury"", - ""title"": ""Chief Transition Officer"", - ""sourceUrl"": ""https://crunchbase.com/person/charles-vaury"" - } - ], - ""researcherNotes"": ""Entity disambiguation is confirmed by domain match (gaiago.eu) and HQ location (Saint-Malo, Brittany, France), consistent across Crunchbase and company website. Client categories were not explicitly stated on the official website but extrapolated from descriptions referring to farmers and agricultural traders. Geographic focus beyond France is not clearly documented; thus, focus is specified as primarily France. No conflicting data found for leadership titles as Crunchbase profiles support current executive roles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.gaiago.eu/"", - ""productDescription"": ""https://www.gaiago.eu/produits/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://crunchbase.com/organization/gaiago-3daf"", - ""keyExecutives"": ""https://crunchbase.com/organization/gaiago-3daf"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Traders"",""Regenerative Agriculture Practitioners"",""Agri-businesses""],""companyDescription"":""Gaïago revitalizes soils for the performance of regenerative agriculture by rapidly restoring agricultural soils to guarantee agronomic, economic, and environmental performance. The company develops innovative, natural agricultural inputs that stimulate soil microbiology, benefiting farmers and the environment in France and beyond."",""geographicFocus"":""Headquartered in Saint-Malo, Bretagne, France, with primary sales and operational focus in France serving farmers and agricultural stakeholders."",""keyExecutives"":[{""name"":""Francis Bucaille"",""sourceUrl"":""https://crunchbase.com/person/francis-bucaille"",""title"":""Co-Founder & R&D Manager""},{""name"":""Samuel Marquet"",""sourceUrl"":""https://crunchbase.com/person/samuel-marquet"",""title"":""Co-Founder, Director, Partner in charge of partnerships, sector and industrial relations""},{""name"":""Charles Vaury"",""sourceUrl"":""https://crunchbase.com/person/charles-vaury"",""title"":""Chief Transition Officer""}],""missingImportantFields"":[],""productDescription"":""Gaïago offers a range of soil biostimulants and prebiotic solutions including Nutrigeo (activates beneficial fungi and decomposer microorganisms), K1 (accelerates decomposition by activating soil micro-organisms), Free N100 (nitrogen fixer that stimulates root development and compensates nitrogen deficiency), Free PK (solubilizes blocked minerals to improve availability), and Stimulus (a foliar prebiotic to enhance plant nutrition). Additional products include Vitam'in, Elitho, and Assainix. Services also comprise financing transitions, the Gaïago Carbone carbon offer, knowledge transmission, and a university and club focused on soil fertility."",""researcherNotes"":""Entity disambiguation is confirmed by domain match (gaiago.eu) and HQ location (Saint-Malo, Brittany, France), consistent across Crunchbase and company website. Client categories were not explicitly stated on the official website but extrapolated from descriptions referring to farmers and agricultural traders. Geographic focus beyond France is not clearly documented; thus, focus is specified as primarily France. No conflicting data found for leadership titles as Crunchbase profiles support current executive roles."",""sectorDescription"":""Agricultural technology company specializing in soil health and regenerative agriculture products and services for sustainable farming."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.gaiago.eu/"",""geographicFocus"":""https://crunchbase.com/organization/gaiago-3daf"",""keyExecutives"":""https://crunchbase.com/organization/gaiago-3daf"",""productDescription"":""https://www.gaiago.eu/produits/""},""websiteURL"":""https://www.gaiago.eu/""}","Correctness: 98% Completeness: 95% The factual claims about Gaïago are largely accurate and well-supported. The company is headquartered in Saint-Malo, Brittany, France, with a primary operational focus in France, and it develops natural soil biostimulants and prebiotic agricultural inputs aimed at regenerative agriculture, as confirmed by multiple sources including the official website (https://www.gaiago.eu) and corroborated by Crunchbase and Dealroom data [2][3][5]. Key executives such as Francis Bucaille (Co-Founder & R&D Manager), Samuel Marquet (Co-Founder, Director), and Charles Vaury (Chief Transition Officer) match their listed roles on Crunchbase profiles [3]. The product range cited—including Nutrigeo, K1, Free N100, Free PK, Stimulus, Vitam'in, Elitho, and Assainix—is directly from the official Gaïago product page [5]. The company’s emphasis on soil revitalization linked to agronomic, economic, and environmental benefits aligns with descriptions from its own communications and third-party reporting [4][6]. The geographic footprint is primarily France-centric with some references to European activities, but no explicit global footprint is documented, justifying stating the focus as France and immediate European interests [2][6]. Completeness is high but slightly lower because client category details (farmers, agricultural traders, regenerative agriculture practitioners, agri-businesses) are extrapolated rather than explicitly stated on official sources, and no recent updates on funding beyond the €13M round reported in 2021 were identified [6]. No major contradictory or outdated information emerged in a freshness check as of September 2025. Overall, this yields high confidence in correctness and near-complete coverage given publicly available data. Sources: https://www.gaiago.eu/produits/, https://crunchbase.com/organization/gaiago-3daf, https://app.dealroom.co/companies/ga_ago_, https://agfundernews.com/gaiago-raises-15m-to-scale-up-natural-soil-solutions, https://www.gaiago.eu/","{""clientCategories"":[],""companyDescription"":""Gaïago revitalizes soils for the performance of regenerative agriculture by rapidly restoring agricultural soils to guarantee agronomic, economic, and environmental performance."",""geographicFocus"":""HQ: Saint-Malo, Bretagne, France; Sales Focus: Primarily France with agri-environmental focus."",""keyExecutives"":[{""name"":""Francis Bucaille"",""sourceUrl"":""https://crunchbase.com/person/francis-bucaille"",""title"":""Co-Founder & R&D Manager""},{""name"":""Samuel Marquet"",""sourceUrl"":""https://crunchbase.com/person/samuel-marquet"",""title"":""Co-Founder, Director, Partner in charge of partnerships, sector and industrial relations""},{""name"":""Charles Vaury"",""sourceUrl"":""https://crunchbase.com/person/charles-vaury"",""title"":""Chief Transition Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Gaïago offers a range of soil biostimulants and prebiotic solutions including: \n- Nutrigeo: activates beneficial fungi and decomposer microorganisms\n- K1: accelerates decomposition by activating soil micro-organisms\n- Free N100: nitrogen fixer that stimulates root development and compensates for nitrogen deficiency\n- Free PK: solubilizes blocked minerals in calcareous or acidic soils to improve mineral availability\n- Stimulus: foliar prebiotic to enhance plant nutrition\n- Vitam'in, Elitho, Assainix: additional biostimulant products\nOther services include financing transitions, Gaïago Carbone carbon offer, knowledge transmission, and a university and club focused on soil fertility."",""researcherNotes"":""No explicit client categories or detailed geographic sales regions were found on the website. No linked downloadable documents (PDFs) were discovered."",""sectorDescription"":""Operates in the agriculture sector, specializing in soil health, soil revitalization, and regenerative agriculture practices."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.gaiago.eu/"",""geographicFocus"":""https://crunchbase.com/organization/gaiago-3daf"",""keyExecutives"":""https://crunchbase.com/organization/gaiago-3daf"",""productDescription"":""https://www.gaiago.eu/produits/""},""websiteURL"":""https://www.gaiago.eu/""}" -KisanHub,https://www.kisanhub.com/,"Future Fund, IQ Capital, Low Carbon Innovation Fund, Notion Capital, Sistema_VC",kisanhub.com,https://www.linkedin.com/company/kisanhub,"{""seniorLeadership"":[{""name"":""Giles B."",""title"":""Chief Executive Officer"",""linkedinURL"":""https://www.linkedin.com/in/giles-barker""},{""name"":""Harshal Galgale"",""title"":""Chief Product and Technology Officer (CPTO)"",""linkedinURL"":""https://www.linkedin.com/in/harshalgalgale""}]}","{""seniorLeadership"":[{""name"":""Giles B."",""title"":""Chief Executive Officer"",""linkedinURL"":""https://www.linkedin.com/in/giles-barker""},{""name"":""Harshal Galgale"",""title"":""Chief Product and Technology Officer (CPTO)"",""linkedinURL"":""https://www.linkedin.com/in/harshalgalgale""}]}","{ - ""websiteURL"": ""https://www.kisanhub.com/"", - ""companyDescription"": ""We are part of a global community of technology innovators serving the food supply chain with a shared mission to build solutions to support feeding a population of 9 billion by 2050. KisanHub supports growers across multiple countries and crop types, committed to sustainable and adaptable supply chains. Our logo symbolizes a plant leaf and water droplet reflecting our sustainability commitment. 'Kisan' means farmer in Hindi, symbolizing our farming heritage and our aspiration to connect everyone in agri-food supply chains worldwide. Founded in 2013 by two co-founders with farming and software backgrounds, the company focuses on blending agriculture and technology expertise. We aim to create efficient, sustainable, and resilient food supply chains through data, software, and technology."", - ""productDescription"": ""KisanHub provides an online software platform for the agrifood industry to manage and communicate complex data, improve collaboration, and reduce waste. Their products and services include: \n- Monitor (remote crop monitoring with field photos and offline mobile access),\n- Inventories (real-time field and store inventories, replacing spreadsheets, shareable with customers),\n- Quality (customisable quality assessment templates, contract compliance, photo verification sharable with customers),\n- Supply (transparency and traceability features such as Paperless Load Passports, grower benchmarking, early quality awareness for customers, and digital certificate storage).\nThe platform supports from grower to integrated producer and offers monthly subscriptions starting from £416."", - ""clientCategories"": [ - ""growers"", - ""integrated producers"", - ""fresh produce businesses"" - ], - ""sectorDescription"": ""Operates in the agrifood technology sector, providing a multi-award-winning online software platform that transforms supply chains for fresh produce and food production companies."", - ""geographicFocus"": ""HQ: Allia Future Business Centre, Kings Hedges Road, Cambridge, CB4 2HY, UK; Sales Focus: International reach through trusted partnerships with global agri-food companies."", - ""keyExecutives"": [ - { - ""name"": ""Giles Barker"", - ""title"": ""CEO & Co-Founder"", - ""sourceUrl"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - }, - { - ""name"": ""Sachin Shende"", - ""title"": ""Co-Founder (former CEO)"", - ""sourceUrl"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - } - ], - ""linkedDocuments"": [ - ""https://static.kisanhub.com/pages/niab/niab_digital_terms_of_use.pdf"", - ""https://media.kisanhub.com/media/uploads/users/roslloydniabcom/d3adf30c-a5ce-11ea-820d-3ef5149af998.pdf"" - ], - ""researcherNotes"": ""No explicit geographic sales regions stated on the website. Leadership details limited to founders and CEO information from the available 'new CEO' announcement page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kisanhub.com/about-us"", - ""productDescription"": ""https://kisanhub.com/platform-overview"", - ""clientCategories"": ""https://www.kisanhub.com/customer-stories"", - ""geographicFocus"": ""https://www.kisanhub.com/contact-us"", - ""keyExecutives"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - } -}","{ - ""websiteURL"": ""https://www.kisanhub.com/"", - ""companyDescription"": ""We are part of a global community of technology innovators serving the food supply chain with a shared mission to build solutions to support feeding a population of 9 billion by 2050. KisanHub supports growers across multiple countries and crop types, committed to sustainable and adaptable supply chains. Our logo symbolizes a plant leaf and water droplet reflecting our sustainability commitment. 'Kisan' means farmer in Hindi, symbolizing our farming heritage and our aspiration to connect everyone in agri-food supply chains worldwide. Founded in 2013 by two co-founders with farming and software backgrounds, the company focuses on blending agriculture and technology expertise. We aim to create efficient, sustainable, and resilient food supply chains through data, software, and technology."", - ""productDescription"": ""KisanHub provides an online software platform for the agrifood industry to manage and communicate complex data, improve collaboration, and reduce waste. Their products and services include: \n- Monitor (remote crop monitoring with field photos and offline mobile access),\n- Inventories (real-time field and store inventories, replacing spreadsheets, shareable with customers),\n- Quality (customisable quality assessment templates, contract compliance, photo verification sharable with customers),\n- Supply (transparency and traceability features such as Paperless Load Passports, grower benchmarking, early quality awareness for customers, and digital certificate storage).\nThe platform supports from grower to integrated producer and offers monthly subscriptions starting from £416."", - ""clientCategories"": [ - ""growers"", - ""integrated producers"", - ""fresh produce businesses"" - ], - ""sectorDescription"": ""Operates in the agrifood technology sector, providing a multi-award-winning online software platform that transforms supply chains for fresh produce and food production companies."", - ""geographicFocus"": ""HQ: Allia Future Business Centre, Kings Hedges Road, Cambridge, CB4 2HY, UK; Sales Focus: International reach through trusted partnerships with global agri-food companies."", - ""keyExecutives"": [ - { - ""name"": ""Giles Barker"", - ""title"": ""CEO & Co-Founder"", - ""sourceUrl"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - }, - { - ""name"": ""Sachin Shende"", - ""title"": ""Co-Founder (former CEO)"", - ""sourceUrl"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - } - ], - ""linkedDocuments"": [ - ""https://static.kisanhub.com/pages/niab/niab_digital_terms_of_use.pdf"", - ""https://media.kisanhub.com/media/uploads/users/roslloydniabcom/d3adf30c-a5ce-11ea-820d-3ef5149af998.pdf"" - ], - ""researcherNotes"": ""No explicit geographic sales regions stated on the website. Leadership details limited to founders and CEO information from the available 'new CEO' announcement page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kisanhub.com/about-us"", - ""productDescription"": ""https://kisanhub.com/platform-overview"", - ""clientCategories"": ""https://www.kisanhub.com/customer-stories"", - ""geographicFocus"": ""https://www.kisanhub.com/contact-us"", - ""keyExecutives"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - } -}",[],"{ - ""websiteURL"": ""https://www.kisanhub.com"", - ""companyDescription"": ""We are part of a global community of technology innovators serving the food supply chain with a shared mission to build solutions to support feeding a population of 9 billion by 2050. KisanHub supports growers across multiple countries and crop types, committed to sustainable and adaptable supply chains. Our logo symbolizes a plant leaf and water droplet reflecting our sustainability commitment. 'Kisan' means farmer in Hindi, symbolizing our farming heritage and our aspiration to connect everyone in agri-food supply chains worldwide. Founded in 2013 by two co-founders with farming and software backgrounds, the company focuses on blending agriculture and technology expertise. We aim to create efficient, sustainable, and resilient food supply chains through data, software, and technology."", - ""productDescription"": ""KisanHub provides an online software platform for the agrifood industry to manage and communicate complex data, improve collaboration, and reduce waste. Their products and services include: \n- Monitor (remote crop monitoring with field photos and offline mobile access),\n- Inventories (real-time field and store inventories, replacing spreadsheets, shareable with customers),\n- Quality (customisable quality assessment templates, contract compliance, photo verification sharable with customers),\n- Supply (transparency and traceability features such as Paperless Load Passports, grower benchmarking, early quality awareness for customers, and digital certificate storage).\nThe platform supports from grower to integrated producer and offers monthly subscriptions starting from £416."", - ""clientCategories"": [ - ""Growers"", - ""Integrated Producers"", - ""Fresh Produce Businesses"" - ], - ""sectorDescription"": ""Operates in the agrifood technology sector, providing a multi-award-winning online software platform that transforms supply chains for fresh produce and food production companies."", - ""geographicFocus"": ""Headquartered in Cambridge, UK, with an international sales focus through trusted partnerships in global agri-food markets including the UK, Europe, and India."", - ""keyExecutives"": [ - { - ""name"": ""Giles Barker"", - ""title"": ""CEO & Co-Founder"", - ""sourceUrl"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - }, - { - ""name"": ""Sachin Shende"", - ""title"": ""Co-Founder (former CEO)"", - ""sourceUrl"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - }, - { - ""name"": ""Harshal Galgale"", - ""title"": ""Chief Product and Technology Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/harshalgalgale"" - } - ], - ""researcherNotes"": ""Geographic sales regions are not explicitly detailed on the official website; however, secondary sources and LinkedIn profiles suggest active operations in the UK, Europe, and India. Leadership information supplemented with LinkedIn data for the CPTO role. Company founding year noted as 2013 on the website, though Cambridge Judge Business School cites 2014, likely reflecting formal incorporation or accelerator cohort year. The company website domain and LinkedIn profiles confirm corporate identity without ambiguity."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kisanhub.com/about-us"", - ""productDescription"": ""https://kisanhub.com/platform-overview"", - ""clientCategories"": ""https://www.kisanhub.com/customer-stories"", - ""geographicFocus"": ""https://www.kisanhub.com/contact-us"", - ""keyExecutives"": ""https://www.kisanhub.com/post/new-ceo-at-kisanhub"" - } -}","{""clientCategories"":[""Growers"",""Integrated Producers"",""Fresh Produce Businesses""],""companyDescription"":""We are part of a global community of technology innovators serving the food supply chain with a shared mission to build solutions to support feeding a population of 9 billion by 2050. KisanHub supports growers across multiple countries and crop types, committed to sustainable and adaptable supply chains. Our logo symbolizes a plant leaf and water droplet reflecting our sustainability commitment. 'Kisan' means farmer in Hindi, symbolizing our farming heritage and our aspiration to connect everyone in agri-food supply chains worldwide. Founded in 2013 by two co-founders with farming and software backgrounds, the company focuses on blending agriculture and technology expertise. We aim to create efficient, sustainable, and resilient food supply chains through data, software, and technology."",""geographicFocus"":""Headquartered in Cambridge, UK, with an international sales focus through trusted partnerships in global agri-food markets including the UK, Europe, and India."",""keyExecutives"":[{""name"":""Giles Barker"",""sourceUrl"":""https://www.kisanhub.com/post/new-ceo-at-kisanhub"",""title"":""CEO & Co-Founder""},{""name"":""Sachin Shende"",""sourceUrl"":""https://www.kisanhub.com/post/new-ceo-at-kisanhub"",""title"":""Co-Founder (former CEO)""},{""name"":""Harshal Galgale"",""sourceUrl"":""https://www.linkedin.com/in/harshalgalgale"",""title"":""Chief Product and Technology Officer""}],""missingImportantFields"":[],""productDescription"":""KisanHub provides an online software platform for the agrifood industry to manage and communicate complex data, improve collaboration, and reduce waste. Their products and services include: \n- Monitor (remote crop monitoring with field photos and offline mobile access),\n- Inventories (real-time field and store inventories, replacing spreadsheets, shareable with customers),\n- Quality (customisable quality assessment templates, contract compliance, photo verification sharable with customers),\n- Supply (transparency and traceability features such as Paperless Load Passports, grower benchmarking, early quality awareness for customers, and digital certificate storage).\nThe platform supports from grower to integrated producer and offers monthly subscriptions starting from £416."",""researcherNotes"":""Geographic sales regions are not explicitly detailed on the official website; however, secondary sources and LinkedIn profiles suggest active operations in the UK, Europe, and India. Leadership information supplemented with LinkedIn data for the CPTO role. Company founding year noted as 2013 on the website, though Cambridge Judge Business School cites 2014, likely reflecting formal incorporation or accelerator cohort year. The company website domain and LinkedIn profiles confirm corporate identity without ambiguity."",""sectorDescription"":""Operates in the agrifood technology sector, providing a multi-award-winning online software platform that transforms supply chains for fresh produce and food production companies."",""sources"":{""clientCategories"":""https://www.kisanhub.com/customer-stories"",""companyDescription"":""https://www.kisanhub.com/about-us"",""geographicFocus"":""https://www.kisanhub.com/contact-us"",""keyExecutives"":""https://www.kisanhub.com/post/new-ceo-at-kisanhub"",""productDescription"":""https://kisanhub.com/platform-overview""},""websiteURL"":""https://www.kisanhub.com""}","Correctness: 98% Completeness: 95% The provided information about KisanHub is highly accurate and well-supported by official and secondary sources. The company was indeed founded around 2013 (with some sources citing 2012 or 2014 but 2013 is confirmed on the official about page), it is headquartered in Cambridge, UK, and operates internationally with a focus on the UK, Europe, and India[1][3]. The leadership details, including Giles Barker as CEO and Co-Founder and Sachin Shende as Co-Founder and former CEO, align with the official and LinkedIn sources[1][4]. Harshal Galgale is confirmed as Chief Product and Technology Officer via LinkedIn. The product offerings as described—Monitor, Inventories, Quality, and Supply modules—are consistent with the company's platform overview detailing remote monitoring, inventory management, quality assessment, and supply chain transparency[1][3]. The mission to support sustainable food supply chains feeding 9 billion by 2050 is prominently noted on their About Us page with emphasis on sustainability and technology[1]. Minor discrepancies in founding year (2012-2014) do not significantly impact correctness due to different interpretations (e.g., founding vs. incorporation vs. accelerator program)[1][4]. Completeness is slightly reduced due to the lack of explicit recent funding round details (Series A £3.4M noted from 2019 but no newer funding public) and limited detailed descriptions of geographic sales beyond general markets[1][3]. Overall, the data comprehensively reflects KisanHub's purpose, leadership, location, product suite, and market focus with very strong primary sources from the company website and leadership pages as of 2025-09-11. https://www.kisanhub.com/about-us https://www.kisanhub.com/post/new-ceo-at-kisanhub https://www.kisanhub.com/platform-overview https://www.linkedin.com/in/harshalgalgale","{""clientCategories"":[""growers"",""integrated producers"",""fresh produce businesses""],""companyDescription"":""We are part of a global community of technology innovators serving the food supply chain with a shared mission to build solutions to support feeding a population of 9 billion by 2050. KisanHub supports growers across multiple countries and crop types, committed to sustainable and adaptable supply chains. Our logo symbolizes a plant leaf and water droplet reflecting our sustainability commitment. 'Kisan' means farmer in Hindi, symbolizing our farming heritage and our aspiration to connect everyone in agri-food supply chains worldwide. Founded in 2013 by two co-founders with farming and software backgrounds, the company focuses on blending agriculture and technology expertise. We aim to create efficient, sustainable, and resilient food supply chains through data, software, and technology."",""geographicFocus"":""HQ: Allia Future Business Centre, Kings Hedges Road, Cambridge, CB4 2HY, UK; Sales Focus: International reach through trusted partnerships with global agri-food companies."",""keyExecutives"":[{""name"":""Giles Barker"",""sourceUrl"":""https://www.kisanhub.com/post/new-ceo-at-kisanhub"",""title"":""CEO & Co-Founder""},{""name"":""Sachin Shende"",""sourceUrl"":""https://www.kisanhub.com/post/new-ceo-at-kisanhub"",""title"":""Co-Founder (former CEO)""}],""linkedDocuments"":[""https://static.kisanhub.com/pages/niab/niab_digital_terms_of_use.pdf"",""https://media.kisanhub.com/media/uploads/users/roslloydniabcom/d3adf30c-a5ce-11ea-820d-3ef5149af998.pdf""],""missingImportantFields"":[],""productDescription"":""KisanHub provides an online software platform for the agrifood industry to manage and communicate complex data, improve collaboration, and reduce waste. Their products and services include: \n- Monitor (remote crop monitoring with field photos and offline mobile access),\n- Inventories (real-time field and store inventories, replacing spreadsheets, shareable with customers),\n- Quality (customisable quality assessment templates, contract compliance, photo verification sharable with customers),\n- Supply (transparency and traceability features such as Paperless Load Passports, grower benchmarking, early quality awareness for customers, and digital certificate storage).\nThe platform supports from grower to integrated producer and offers monthly subscriptions starting from £416."",""researcherNotes"":""No explicit geographic sales regions stated on the website. Leadership details limited to founders and CEO information from the available 'new CEO' announcement page."",""sectorDescription"":""Operates in the agrifood technology sector, providing a multi-award-winning online software platform that transforms supply chains for fresh produce and food production companies."",""sources"":{""clientCategories"":""https://www.kisanhub.com/customer-stories"",""companyDescription"":""https://www.kisanhub.com/about-us"",""geographicFocus"":""https://www.kisanhub.com/contact-us"",""keyExecutives"":""https://www.kisanhub.com/post/new-ceo-at-kisanhub"",""productDescription"":""https://kisanhub.com/platform-overview""},""websiteURL"":""https://www.kisanhub.com/""}" -Futura gaia,https://futuragaia.com/,"A Plus Finance, Abeille Impact Investing France, Alain Francois Raymond, Banque des Territoires, CAAP Creation, Colam Impact, Elpis, OCCIPAC, Région Sud Investissement, Sofilaro, Sowefund, UI Investissement",futuragaia.com,https://www.linkedin.com/company/futuragaia,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://futuragaia.com/"", - ""companyDescription"": ""Futura Gaïa is dedicated to producing high-value plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery by optimizing plant molecule content through expertise in plant physiology and metabolism and controlled-environment cultivation on living soil. Their mission includes replicating nature's best conditions for qualitative, secure sourcing with guaranteed traceability, stable quality, and scalable reproducibility. They emphasize zero pesticides, water and energy efficiency, automated and micro-dosed nutrition, and data analysis via AI and IT supervision. Their R&D agronomic center supports advanced research for their industries. They focus on enhanced plant qualities, environmental challenges, and reducing biodiversity loss. Their production biofactories ensure scalable, reproducible conditions from seed to ingredient with over 240t fresh or 24t dry matter yearly. Their vision is to safeguard biodiversity threatened by overexploitation and climate change by replicating optimal growth at scale, using less water and space, delivering high-quality natural products year-round."", - ""productDescription"": ""Futura Gaïa offers biofactories as a production solution complementing field cultivation, ensuring unmatched quality for cosmetic, pharmaceutical, nutraceutical, and perfumery industries. Their biofactories guarantee year-round, weather-protected production, demand-based supply, stable prices, assured quality and traceability, stable employment, custom-designed plants with optimized active molecule content. Features include 6-12 climate-controlled chambers with 40 culture systems each, real-time climate control (temperature, humidity, CO2, lighting), rotating cylinders with 48 cultivation trays, automated precise fertigation (NutriMix), AGVs for handling culture systems, AI-monitored plant growth, and a supervisory application for full operational control. Products mentioned: California poppy, marjoram."", - ""clientCategories"": [""Cosmetics Industry"", ""Pharmaceutical Industry"", ""Nutraceutical Industry"", ""Perfumery Industry""], - ""sectorDescription"": ""Operates in the controlled-environment agriculture sector, producing high-value natural plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery industries."", - ""geographicFocus"": ""HQ: Mas de Polvelière, Chemin du Pont des Iles, 30230 RODILHAN, France; Sales Focus: Not Available."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the website or in legal mentions; only the publication director Pascal Thomas was mentioned, but this is not a C-level executive."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://futuragaia.com"", - ""productDescription"": ""https://futuragaia.com/les-fermes"", - ""clientCategories"": ""https://futuragaia.com"", - ""geographicFocus"": ""https://futuragaia.com/contactez-nous"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://futuragaia.com/"", - ""companyDescription"": ""Futura Gaïa is dedicated to producing high-value plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery by optimizing plant molecule content through expertise in plant physiology and metabolism and controlled-environment cultivation on living soil. Their mission includes replicating nature's best conditions for qualitative, secure sourcing with guaranteed traceability, stable quality, and scalable reproducibility. They emphasize zero pesticides, water and energy efficiency, automated and micro-dosed nutrition, and data analysis via AI and IT supervision. Their R&D agronomic center supports advanced research for their industries. They focus on enhanced plant qualities, environmental challenges, and reducing biodiversity loss. Their production biofactories ensure scalable, reproducible conditions from seed to ingredient with over 240t fresh or 24t dry matter yearly. Their vision is to safeguard biodiversity threatened by overexploitation and climate change by replicating optimal growth at scale, using less water and space, delivering high-quality natural products year-round."", - ""productDescription"": ""Futura Gaïa offers biofactories as a production solution complementing field cultivation, ensuring unmatched quality for cosmetic, pharmaceutical, nutraceutical, and perfumery industries. Their biofactories guarantee year-round, weather-protected production, demand-based supply, stable prices, assured quality and traceability, stable employment, custom-designed plants with optimized active molecule content. Features include 6-12 climate-controlled chambers with 40 culture systems each, real-time climate control (temperature, humidity, CO2, lighting), rotating cylinders with 48 cultivation trays, automated precise fertigation (NutriMix), AGVs for handling culture systems, AI-monitored plant growth, and a supervisory application for full operational control. Products mentioned: California poppy, marjoram."", - ""clientCategories"": [""Cosmetics Industry"", ""Pharmaceutical Industry"", ""Nutraceutical Industry"", ""Perfumery Industry""], - ""sectorDescription"": ""Operates in the controlled-environment agriculture sector, producing high-value natural plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery industries."", - ""geographicFocus"": ""HQ: Mas de Polvelière, Chemin du Pont des Iles, 30230 RODILHAN, France; Sales Focus: Not Available."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the website or in legal mentions; only the publication director Pascal Thomas was mentioned, but this is not a C-level executive."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://futuragaia.com"", - ""productDescription"": ""https://futuragaia.com/les-fermes"", - ""clientCategories"": ""https://futuragaia.com"", - ""geographicFocus"": ""https://futuragaia.com/contactez-nous"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://futuragaia.com"", - ""companyDescription"": ""Futura Gaïa specializes in producing high-value plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery by optimizing plant molecule content using expertise in plant physiology, metabolism, and controlled-environment cultivation on living soil. Their mission is to replicate nature’s best growing conditions to provide qualitative, secure sourcing with guaranteed traceability, stable quality, and reproducible scalability. The company emphasizes zero pesticides, efficient use of water and energy, and automated micro-dosed nutrition supervised by AI and IT, supporting environmental challenges like biodiversity preservation amid climate change."", - ""productDescription"": ""Futura Gaïa offers turnkey biofactories with 6-12 climate-controlled chambers featuring automated fertigation, real-time environmental controls, and AI-monitored plant growth that guarantee year-round, weather-protected production of high-quality plant ingredients. Their solution complements traditional agriculture by ensuring demand-based supply, stable pricing, full traceability, and custom-designed plants with optimized active molecules for cosmetic, pharmaceutical, nutraceutical, and perfumery industries. Notable products include California poppy and marjoram."", - ""clientCategories"": [""Cosmetics Industry"", ""Pharmaceutical Industry"", ""Nutraceutical Industry"", ""Perfumery Industry""], - ""sectorDescription"": ""Operates in the controlled-environment agriculture sector, producing high-value natural plant ingredients tailored for cosmetics, pharmaceuticals, nutraceuticals, and perfumery industries."", - ""geographicFocus"": ""Headquartered in Rodilhan, France, with no publicly specified sales or operational footprint beyond this location."", - ""keyExecutives"": [ - { - ""name"": ""Pascal Thomas"", - ""title"": ""Co-founder and CEO"", - ""sourceUrl"": ""https://igrownews.com/futura-gaia-nets-an-11m-euro-funding-round/"" - } - ], - ""researcherNotes"": ""Key executive information was found from a reputable news source indicating Pascal Thomas as co-founder and CEO. No comprehensive official company leadership page or LinkedIn profiles listing senior executives were available. Geographic focus beyond French headquarters is not specified publicly. The company was founded in 2019 and specializes in rotary geoponics and turnkey vertical farms. Source corroborations include company website and recent funding news."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://futuragaia.com"", - ""productDescription"": ""https://futuragaia.com/en/farms/"", - ""clientCategories"": ""https://futuragaia.com"", - ""geographicFocus"": ""https://futuragaia.com/contactez-nous"", - ""keyExecutives"": ""https://igrownews.com/futura-gaia-nets-an-11m-euro-funding-round/"" - } -}","{""clientCategories"":[""Cosmetics Industry"",""Pharmaceutical Industry"",""Nutraceutical Industry"",""Perfumery Industry""],""companyDescription"":""Futura Gaïa specializes in producing high-value plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery by optimizing plant molecule content using expertise in plant physiology, metabolism, and controlled-environment cultivation on living soil. Their mission is to replicate nature’s best growing conditions to provide qualitative, secure sourcing with guaranteed traceability, stable quality, and reproducible scalability. The company emphasizes zero pesticides, efficient use of water and energy, and automated micro-dosed nutrition supervised by AI and IT, supporting environmental challenges like biodiversity preservation amid climate change."",""geographicFocus"":""Headquartered in Rodilhan, France, with no publicly specified sales or operational footprint beyond this location."",""keyExecutives"":[{""name"":""Pascal Thomas"",""sourceUrl"":""https://igrownews.com/futura-gaia-nets-an-11m-euro-funding-round/"",""title"":""Co-founder and CEO""}],""missingImportantFields"":[],""productDescription"":""Futura Gaïa offers turnkey biofactories with 6-12 climate-controlled chambers featuring automated fertigation, real-time environmental controls, and AI-monitored plant growth that guarantee year-round, weather-protected production of high-quality plant ingredients. Their solution complements traditional agriculture by ensuring demand-based supply, stable pricing, full traceability, and custom-designed plants with optimized active molecules for cosmetic, pharmaceutical, nutraceutical, and perfumery industries. Notable products include California poppy and marjoram."",""researcherNotes"":""Key executive information was found from a reputable news source indicating Pascal Thomas as co-founder and CEO. No comprehensive official company leadership page or LinkedIn profiles listing senior executives were available. Geographic focus beyond French headquarters is not specified publicly. The company was founded in 2019 and specializes in rotary geoponics and turnkey vertical farms. Source corroborations include company website and recent funding news."",""sectorDescription"":""Operates in the controlled-environment agriculture sector, producing high-value natural plant ingredients tailored for cosmetics, pharmaceuticals, nutraceuticals, and perfumery industries."",""sources"":{""clientCategories"":""https://futuragaia.com"",""companyDescription"":""https://futuragaia.com"",""geographicFocus"":""https://futuragaia.com/contactez-nous"",""keyExecutives"":""https://igrownews.com/futura-gaia-nets-an-11m-euro-funding-round/"",""productDescription"":""https://futuragaia.com/en/farms/""},""websiteURL"":""https://futuragaia.com""}","Correctness: 95% Completeness: 90% The factual claims about Futura Gaïa are largely confirmed by multiple independent and company sources. The company is headquartered in Rodilhan, France, specializing in controlled-environment vertical farming that produces high-value plant ingredients tailored to cosmetics, pharmaceuticals, nutraceuticals, and perfumery sectors, using expertise in plant physiology and metabolism combined with AI-supervised, pesticide-free, water- and energy-efficient cultivation on living soil[3][2]. Pascal Thomas is confirmed as co-founder and CEO as of at least 2023, per a reputable news article covering an €11 million funding round[2]. Their product offering includes turnkey biofactories with climate-controlled chambers and automated nutrition, supporting year-round scalable and traceable production of crops such as California poppy and marjoram[3]. The company was founded in 2019 and aims to complement traditional agriculture by providing stable supply and pricing[2][3]. Although exact sales or operational footprints beyond the French HQ are not publicly detailed, the company is planning international expansion[2]. Some minor gaps persist in granular leadership details beyond Pascal Thomas and in independent verification of all product lines. Also, while funding is disclosed (€11 million Series A), further investor details are not fully detailed in the sources reviewed[4]. Overall, the information is accurate with good coverage but could improve slightly on completeness regarding expanded leadership and detailed commercial footprint[2][3][4][5].","{""clientCategories"":[""Cosmetics Industry"",""Pharmaceutical Industry"",""Nutraceutical Industry"",""Perfumery Industry""],""companyDescription"":""Futura Gaïa is dedicated to producing high-value plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery by optimizing plant molecule content through expertise in plant physiology and metabolism and controlled-environment cultivation on living soil. Their mission includes replicating nature's best conditions for qualitative, secure sourcing with guaranteed traceability, stable quality, and scalable reproducibility. They emphasize zero pesticides, water and energy efficiency, automated and micro-dosed nutrition, and data analysis via AI and IT supervision. Their R&D agronomic center supports advanced research for their industries. They focus on enhanced plant qualities, environmental challenges, and reducing biodiversity loss. Their production biofactories ensure scalable, reproducible conditions from seed to ingredient with over 240t fresh or 24t dry matter yearly. Their vision is to safeguard biodiversity threatened by overexploitation and climate change by replicating optimal growth at scale, using less water and space, delivering high-quality natural products year-round."",""geographicFocus"":""HQ: Mas de Polvelière, Chemin du Pont des Iles, 30230 RODILHAN, France; Sales Focus: Not Available."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Futura Gaïa offers biofactories as a production solution complementing field cultivation, ensuring unmatched quality for cosmetic, pharmaceutical, nutraceutical, and perfumery industries. Their biofactories guarantee year-round, weather-protected production, demand-based supply, stable prices, assured quality and traceability, stable employment, custom-designed plants with optimized active molecule content. Features include 6-12 climate-controlled chambers with 40 culture systems each, real-time climate control (temperature, humidity, CO2, lighting), rotating cylinders with 48 cultivation trays, automated precise fertigation (NutriMix), AGVs for handling culture systems, AI-monitored plant growth, and a supervisory application for full operational control. Products mentioned: California poppy, marjoram."",""researcherNotes"":""No specific names or titles of founders or C-level executives were found on the website or in legal mentions; only the publication director Pascal Thomas was mentioned, but this is not a C-level executive."",""sectorDescription"":""Operates in the controlled-environment agriculture sector, producing high-value natural plant ingredients for cosmetics, pharmaceuticals, nutraceuticals, and perfumery industries."",""sources"":{""clientCategories"":""https://futuragaia.com"",""companyDescription"":""https://futuragaia.com"",""geographicFocus"":""https://futuragaia.com/contactez-nous"",""keyExecutives"":null,""productDescription"":""https://futuragaia.com/les-fermes""},""websiteURL"":""https://futuragaia.com/""}" -Inalve,http://www.inalve.com,"Angelor, Blue Forward fund, KREAXI",inalve.com,https://www.linkedin.com/company/inalve,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.inalve.com"", - ""companyDescription"": ""Inalve is a startup established in Nice, France, created in 2016, pioneering microalgae industry with a proprietary biofilm-based production process using rotating conveyors that maximizes light exposure and minimizes water use and environmental impact. To contribute to a more sustainable, inclusive, and prosperous future by building a high-performance microalgae industry that balances economic, environmental, and social impacts, initially focusing on sustainable food for aquaculture."", - ""productDescription"": ""Live microalgae in concentrated form, rich in nutrients and proteins, commercialized primarily for aquaculture hatcheries to improve productivity, simplify logistics, and preserve natural food chains. Potential markets include aquaculture, water depollution, nutraceuticals, cosmetics."", - ""clientCategories"": [""Aquaculture hatcheries"", ""Water depollution"", ""Nutraceutical"", ""Cosmetics""], - ""sectorDescription"": ""Operates in the sustainable biotechnology sector, specializing in microalgae production for animal nutrition and environmental applications."", - ""geographicFocus"": ""HQ: Nice, France"", - ""keyExecutives"": [ - { - ""name"": ""Véronique Raoul"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"" - }, - { - ""name"": ""Christophe Vasseur"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"" - }, - { - ""name"": ""Hubert Bonnefond"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"" - } - ], - ""linkedDocuments"": [""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""productDescription"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""clientCategories"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""geographicFocus"": ""https://linkedin.com/company/inalve"", - ""keyExecutives"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"" - } -}","{ - ""websiteURL"": ""http://www.inalve.com"", - ""companyDescription"": ""Inalve is a startup established in Nice, France, created in 2016, pioneering microalgae industry with a proprietary biofilm-based production process using rotating conveyors that maximizes light exposure and minimizes water use and environmental impact. To contribute to a more sustainable, inclusive, and prosperous future by building a high-performance microalgae industry that balances economic, environmental, and social impacts, initially focusing on sustainable food for aquaculture."", - ""productDescription"": ""Live microalgae in concentrated form, rich in nutrients and proteins, commercialized primarily for aquaculture hatcheries to improve productivity, simplify logistics, and preserve natural food chains. Potential markets include aquaculture, water depollution, nutraceuticals, cosmetics."", - ""clientCategories"": [""Aquaculture hatcheries"", ""Water depollution"", ""Nutraceutical"", ""Cosmetics""], - ""sectorDescription"": ""Operates in the sustainable biotechnology sector, specializing in microalgae production for animal nutrition and environmental applications."", - ""geographicFocus"": ""HQ: Nice, France"", - ""keyExecutives"": [ - { - ""name"": ""Véronique Raoul"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"" - }, - { - ""name"": ""Christophe Vasseur"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"" - }, - { - ""name"": ""Hubert Bonnefond"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"" - } - ], - ""linkedDocuments"": [""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""productDescription"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""clientCategories"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""geographicFocus"": ""https://linkedin.com/company/inalve"", - ""keyExecutives"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"" - } -}",[],"{ - ""websiteURL"": ""http://www.inalve.com"", - ""companyDescription"": ""Inalve is a startup established in Nice, France, created in 2016, pioneering the microalgae industry with a proprietary biofilm-based production process using rotating conveyors that maximizes light exposure and minimizes water use and environmental impact. The company aims to contribute to a more sustainable, inclusive, and prosperous future by building a high-performance microalgae industry that balances economic, environmental, and social impacts, initially focusing on sustainable food for aquaculture."", - ""productDescription"": ""Inalve delivers live microalgae in concentrated form, rich in nutrients and proteins, primarily commercialized for aquaculture hatcheries to improve productivity, simplify logistics, and preserve natural food chains. Its innovative biofilm technology enables large scale, sustainable microalgae production with minimized environmental footprint. Potential markets include aquaculture, water depollution, nutraceuticals, and cosmetics."", - ""clientCategories"": [ - ""Aquaculture Hatcheries"", - ""Water Depollution"", - ""Nutraceutical"", - ""Cosmetics"" - ], - ""sectorDescription"": ""Operates in the sustainable biotechnology sector, specializing in microalgae production for animal nutrition and environmental applications."", - ""geographicFocus"": ""HQ: Nice, France"", - ""keyExecutives"": [ - { - ""name"": ""Véronique Raoul"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"" - }, - { - ""name"": ""Christophe Vasseur"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"" - }, - { - ""name"": ""Hubert Bonnefond"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"" - } - ], - ""researcherNotes"": ""The company was disambiguated using domain, founding year (2016), HQ location (Nice, France), and proprietary microalgae biofilm technology. No significant gaps remain. The LinkedIn senior leadership data was empty, so only sourced from official documents and press coverage. Geographic focus is confirmed as Nice, France. No conflicting information was found regarding executives or company focus."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""productDescription"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""clientCategories"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"", - ""geographicFocus"": ""https://linkedin.com/company/inalve"", - ""keyExecutives"": ""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"" - } -}","{""clientCategories"":[""Aquaculture Hatcheries"",""Water Depollution"",""Nutraceutical"",""Cosmetics""],""companyDescription"":""Inalve is a startup established in Nice, France, created in 2016, pioneering the microalgae industry with a proprietary biofilm-based production process using rotating conveyors that maximizes light exposure and minimizes water use and environmental impact. The company aims to contribute to a more sustainable, inclusive, and prosperous future by building a high-performance microalgae industry that balances economic, environmental, and social impacts, initially focusing on sustainable food for aquaculture."",""geographicFocus"":""HQ: Nice, France"",""keyExecutives"":[{""name"":""Véronique Raoul"",""sourceUrl"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""title"":""CEO""},{""name"":""Christophe Vasseur"",""sourceUrl"":""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"",""title"":""President""},{""name"":""Hubert Bonnefond"",""sourceUrl"":""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""Inalve delivers live microalgae in concentrated form, rich in nutrients and proteins, primarily commercialized for aquaculture hatcheries to improve productivity, simplify logistics, and preserve natural food chains. Its innovative biofilm technology enables large scale, sustainable microalgae production with minimized environmental footprint. Potential markets include aquaculture, water depollution, nutraceuticals, and cosmetics."",""researcherNotes"":""The company was disambiguated using domain, founding year (2016), HQ location (Nice, France), and proprietary microalgae biofilm technology. No significant gaps remain. The LinkedIn senior leadership data was empty, so only sourced from official documents and press coverage. Geographic focus is confirmed as Nice, France. No conflicting information was found regarding executives or company focus."",""sectorDescription"":""Operates in the sustainable biotechnology sector, specializing in microalgae production for animal nutrition and environmental applications."",""sources"":{""clientCategories"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""companyDescription"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""geographicFocus"":""https://linkedin.com/company/inalve"",""keyExecutives"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""productDescription"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf""},""websiteURL"":""http://www.inalve.com""}","Correctness: 100% Completeness: 95% - -The information provided about Inalve is factually correct and well-supported by multiple authoritative sources. Inalve is indeed a startup founded in 2016 and headquartered in Nice, France, specializing in sustainable microalgae production with a proprietary biofilm technology using rotating conveyors that maximize light exposure and minimize water use and environmental impact[1][3][4]. Key executives are verified as Véronique Raoul (CEO since February 2022), Christophe Vasseur (President and co-founder), and Hubert Bonnefond (Co-founder and CTO)[1][2][3]. The company's focus on aquaculture hatcheries as its initial market, with expansions into nutraceuticals, cosmetics, and water depollution, is consistent across sources[3][5]. Their unique biofilm-based process enables efficient production with reduced environmental footprint[3][4]. The company recently closed a €2 million financing round led by Seventure Partners’ Blue Forward Fund, validating its growth and operational scale[3][4]. The only minor gap is that direct LinkedIn leadership data is missing but is sufficiently covered by official press and verified executive interviews[1][3]. Overall, the core claims are accurate and almost complete, well reflecting Inalve’s current status and activities as of late 2023 and 2024[1][3][4][5]. - -Sources: -https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf -https://www.investincotedazur.com/en/microalgae-inalve-is-preparing-for-a-new-phase-of-growth-towards-large-scale-and-responsible-production/ -https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/ -https://www.hatcheryfm.com/products/suppliers-news/inalve-raises-2-million-to-accelerate-biofilm-based-microalgae-production/ -https://www.hatcheryinternational.com/cultivating-green-gold/","{""clientCategories"":[""Aquaculture hatcheries"",""Water depollution"",""Nutraceutical"",""Cosmetics""],""companyDescription"":""Inalve is a startup established in Nice, France, created in 2016, pioneering microalgae industry with a proprietary biofilm-based production process using rotating conveyors that maximizes light exposure and minimizes water use and environmental impact. To contribute to a more sustainable, inclusive, and prosperous future by building a high-performance microalgae industry that balances economic, environmental, and social impacts, initially focusing on sustainable food for aquaculture."",""geographicFocus"":""HQ: Nice, France"",""keyExecutives"":[{""name"":""Véronique Raoul"",""sourceUrl"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""title"":""CEO""},{""name"":""Christophe Vasseur"",""sourceUrl"":""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"",""title"":""President""},{""name"":""Hubert Bonnefond"",""sourceUrl"":""https://www.nice-premium.com/inalve-an-environmentally-sustainable-company/"",""title"":""Co-founder""}],""linkedDocuments"":[""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf""],""missingImportantFields"":[],""productDescription"":""Live microalgae in concentrated form, rich in nutrients and proteins, commercialized primarily for aquaculture hatcheries to improve productivity, simplify logistics, and preserve natural food chains. Potential markets include aquaculture, water depollution, nutraceuticals, cosmetics."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable biotechnology sector, specializing in microalgae production for animal nutrition and environmental applications."",""sources"":{""clientCategories"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""companyDescription"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""geographicFocus"":""https://linkedin.com/company/inalve"",""keyExecutives"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf"",""productDescription"":""https://www.kreaxi.com/wp-content/uploads/2023/12/231214-CP-Inalve-EN-VF2.pdf""},""websiteURL"":""http://www.inalve.com""}" -Soil Steam,https://soilsteam.no/,,soilsteam.no,https://www.linkedin.com/company/soil-steam-international-as,"{""seniorLeadership"":[{""name"":""Oddbjørn Bergem"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Hans Kristian Westrum"",""title"":""Co-founder and Chief Growth Officer"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Mark W J Ferguson"",""title"":""Board Chair, European Innovation Expert"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Anita Krohn Traaseth"",""title"":""Board Member"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Einar Abrahamsen"",""title"":""Past Chair"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""}]}","{""seniorLeadership"":[{""name"":""Oddbjørn Bergem"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Hans Kristian Westrum"",""title"":""Co-founder and Chief Growth Officer"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Mark W J Ferguson"",""title"":""Board Chair, European Innovation Expert"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Anita Krohn Traaseth"",""title"":""Board Member"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""},{""name"":""Einar Abrahamsen"",""title"":""Past Chair"",""profileURL"":""https://www.linkedin.com/company/soil-steam-international-as""}]}","{ - ""websiteURL"": ""https://soilsteam.no/"", - ""companyDescription"": ""SoilSteam AS is a company based in Stokke, Norway, that specializes in sustainable soil treatment using chemical-free steam technology to eliminate pathogens and invasive species, enabling safe reuse of soil and substrates. Their SoilSaver™ machines inject steam into soil, substrate, compost, or peat to guarantee full eradication of invasive foreign species, weeds, pests, and diseases. The technology supports sustainable soil handling, reducing handling costs and promoting a unique soil value chain. SoilSteam emphasizes sustainable growth and eco-friendly soil management, serving applications from indoor high-value crop cultivation to handling contaminated soil at construction sites."", - ""productDescription"": ""SoilSteam AS offers products and solutions for soil treatment using steam technology to kill weeds, invasive species, and harmful organisms without chemicals. Core offerings include:\n- SoilSaver 5™ for smaller projects\n- SoilSaver 20™ for biologically contaminated soil\n- FieldSaver™ for restoring agricultural soil (not yet commercialized)\nTheir technology uses clean steam (only water and heat) to provide sustainable, long-lasting soil care."", - ""clientCategories"": [""Industrial partners"",""Commercial partners"",""Academic partners"",""Construction sites"",""Greenhouse production""], - ""sectorDescription"": ""Operates in the sustainable agricultural technology sector, specializing in chemical-free steam-based soil treatment solutions for agriculture and environmental management."", - ""geographicFocus"": ""HQ: Borgeskogen 15, 3160 Stokke, Norway; R&D: Kajaveien 7, 1433 Ås, Norway; Sales Focus: Global"", - ""keyExecutives"": [ - {""name"": ""Ken Roar Riis"", ""title"": ""CEO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Hans Kristian Westrum"", ""title"": ""Founder and CGO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Richard Nilsen"", ""title"": ""CFO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Tor Aksel Storbukås"", ""title"": ""COO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Mats Steier Bøvrecto"", ""title"": ""CTO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Founders are not explicitly detailed except for Hans Kristian Westrum being noted as Founder and CGO. No official linked documents found on site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://soilsteam.no/"", - ""productDescription"": ""https://soilsteam.no/products/"", - ""clientCategories"": ""https://soilsteam.no/partnere/"", - ""geographicFocus"": ""https://soilsteam.no/faq/"", - ""keyExecutives"": ""https://soilsteam.no/om-oss/"" - } -}","{ - ""websiteURL"": ""https://soilsteam.no/"", - ""companyDescription"": ""SoilSteam AS is a company based in Stokke, Norway, that specializes in sustainable soil treatment using chemical-free steam technology to eliminate pathogens and invasive species, enabling safe reuse of soil and substrates. Their SoilSaver™ machines inject steam into soil, substrate, compost, or peat to guarantee full eradication of invasive foreign species, weeds, pests, and diseases. The technology supports sustainable soil handling, reducing handling costs and promoting a unique soil value chain. SoilSteam emphasizes sustainable growth and eco-friendly soil management, serving applications from indoor high-value crop cultivation to handling contaminated soil at construction sites."", - ""productDescription"": ""SoilSteam AS offers products and solutions for soil treatment using steam technology to kill weeds, invasive species, and harmful organisms without chemicals. Core offerings include:\n- SoilSaver 5™ for smaller projects\n- SoilSaver 20™ for biologically contaminated soil\n- FieldSaver™ for restoring agricultural soil (not yet commercialized)\nTheir technology uses clean steam (only water and heat) to provide sustainable, long-lasting soil care."", - ""clientCategories"": [""Industrial partners"",""Commercial partners"",""Academic partners"",""Construction sites"",""Greenhouse production""], - ""sectorDescription"": ""Operates in the sustainable agricultural technology sector, specializing in chemical-free steam-based soil treatment solutions for agriculture and environmental management."", - ""geographicFocus"": ""HQ: Borgeskogen 15, 3160 Stokke, Norway; R&D: Kajaveien 7, 1433 Ås, Norway; Sales Focus: Global"", - ""keyExecutives"": [ - {""name"": ""Ken Roar Riis"", ""title"": ""CEO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Hans Kristian Westrum"", ""title"": ""Founder and CGO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Richard Nilsen"", ""title"": ""CFO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Tor Aksel Storbukås"", ""title"": ""COO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""}, - {""name"": ""Mats Steier Bøvrecto"", ""title"": ""CTO"", ""sourceUrl"": ""https://soilsteam.no/om-oss/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Founders are not explicitly detailed except for Hans Kristian Westrum being noted as Founder and CGO. No official linked documents found on site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://soilsteam.no/"", - ""productDescription"": ""https://soilsteam.no/products/"", - ""clientCategories"": ""https://soilsteam.no/partnere/"", - ""geographicFocus"": ""https://soilsteam.no/faq/"", - ""keyExecutives"": ""https://soilsteam.no/om-oss/"" - } -}",[],"{ - ""websiteURL"": ""https://soilsteam.no"", - ""companyDescription"": ""SoilSteam AS is a Norwegian technology company specializing in sustainable, chemical-free soil treatment using steam technology. Their patented SoilSaver™ machines eradicate invasive species, weeds, pests, and pathogens from soil, substrate, compost, or peat, enabling safe reuse and promoting circular soil value chains. Founded and developed in Norway with international reach, SoilSteam serves industrial, commercial, academic, construction, and greenhouse sectors focused on eco-friendly soil management and sustainable agriculture."", - ""productDescription"": ""SoilSteam AS offers steam-based soil treatment solutions using clean steam (water and heat) to kill harmful organisms without chemicals. Core products include SoilSaver 5™ for small projects, SoilSaver 20™ for biologically contaminated soils, and the upcoming FieldSaver™ for agricultural soil restoration. This technology supports sustainable, long-lasting soil care by safely eradicating invasive species and pathogens, reducing costs and chemical dependence in soil handling."", - ""clientCategories"": [ - ""Industrial Partners"", - ""Commercial Partners"", - ""Academic Partners"", - ""Construction Sites"", - ""Greenhouse Production"" - ], - ""sectorDescription"": ""Sustainable agricultural technology specializing in chemical-free, steam-based soil treatment solutions for agriculture and environmental management."", - ""geographicFocus"": ""Headquartered in Norway with R&D in Ås, SoilSteam serves a global market, collaborating with partners and clients throughout Europe and North America."", - ""keyExecutives"": [ - { - ""name"": ""Ken Roar Riis"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://soilsteam.no/om-oss/"" - }, - { - ""name"": ""Hans Kristian Westrum"", - ""title"": ""Founder and CGO"", - ""sourceUrl"": ""https://soilsteam.no/om-oss/"" - }, - { - ""name"": ""Richard Nilsen"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://soilsteam.no/om-oss/"" - }, - { - ""name"": ""Tor Aksel Storbukås"", - ""title"": ""COO"", - ""sourceUrl"": ""https://soilsteam.no/om-oss/"" - }, - { - ""name"": ""Mats Steier Bøvrecto"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://soilsteam.no/om-oss/"" - } - ], - ""researcherNotes"": ""Confirmed entity as SoilSteam AS in Norway based on website domain and HQ city (Stokke/Sandefjord area). LinkedIn lists Oddbjørn Bergem as CEO but company site states Ken Roar Riis as CEO; official site preferred for executive roles. Geographic footprint updated to reflect global reach including Europe and North America as noted in multiple sources. No missing key fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://soilsteam.no/"", - ""productDescription"": ""https://soilsteam.no/products/"", - ""clientCategories"": ""https://soilsteam.no/partnere/"", - ""geographicFocus"": ""https://soilsteam.no/faq/"", - ""keyExecutives"": ""https://soilsteam.no/om-oss/"" - } -}","{""clientCategories"":[""Industrial Partners"",""Commercial Partners"",""Academic Partners"",""Construction Sites"",""Greenhouse Production""],""companyDescription"":""SoilSteam AS is a Norwegian technology company specializing in sustainable, chemical-free soil treatment using steam technology. Their patented SoilSaver™ machines eradicate invasive species, weeds, pests, and pathogens from soil, substrate, compost, or peat, enabling safe reuse and promoting circular soil value chains. Founded and developed in Norway with international reach, SoilSteam serves industrial, commercial, academic, construction, and greenhouse sectors focused on eco-friendly soil management and sustainable agriculture."",""geographicFocus"":""Headquartered in Norway with R&D in Ås, SoilSteam serves a global market, collaborating with partners and clients throughout Europe and North America."",""keyExecutives"":[{""name"":""Ken Roar Riis"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""CEO""},{""name"":""Hans Kristian Westrum"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""Founder and CGO""},{""name"":""Richard Nilsen"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""CFO""},{""name"":""Tor Aksel Storbukås"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""COO""},{""name"":""Mats Steier Bøvrecto"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""SoilSteam AS offers steam-based soil treatment solutions using clean steam (water and heat) to kill harmful organisms without chemicals. Core products include SoilSaver 5™ for small projects, SoilSaver 20™ for biologically contaminated soils, and the upcoming FieldSaver™ for agricultural soil restoration. This technology supports sustainable, long-lasting soil care by safely eradicating invasive species and pathogens, reducing costs and chemical dependence in soil handling."",""researcherNotes"":""Confirmed entity as SoilSteam AS in Norway based on website domain and HQ city (Stokke/Sandefjord area). LinkedIn lists Oddbjørn Bergem as CEO but company site states Ken Roar Riis as CEO; official site preferred for executive roles. Geographic footprint updated to reflect global reach including Europe and North America as noted in multiple sources. No missing key fields remain."",""sectorDescription"":""Sustainable agricultural technology specializing in chemical-free, steam-based soil treatment solutions for agriculture and environmental management."",""sources"":{""clientCategories"":""https://soilsteam.no/partnere/"",""companyDescription"":""https://soilsteam.no/"",""geographicFocus"":""https://soilsteam.no/faq/"",""keyExecutives"":""https://soilsteam.no/om-oss/"",""productDescription"":""https://soilsteam.no/products/""},""websiteURL"":""https://soilsteam.no""}","Correctness: 95% Completeness: 85% - -The verified facts mostly align with the provided statement about SoilSteam AS: it is a Norwegian technology company specializing in sustainable, chemical-free soil treatment using patented steam technology, with a clear focus on eradicating invasive species, weeds, pests, and pathogens to promote circular soil value chains. The company was founded in 2016 by Hans Kristian Westrum and others with a family farming background, now headquartered near Sandefjord, Norway, and serving a global market including Europe and North America. The key executives named on the official website include CEO Ken Roar Riis and Founder/CGO Hans Kristian Westrum, confirming leadership details. The product line includes SoilSaver 5™, SoilSaver 20™, and an upcoming FieldSaver™, consistent with core steam-based soil treatment solutions aiming for chemical-free, sustainable agriculture approved by EU-funded research projects. The company’s sector focus and partner categories (industrial, commercial, academic, construction, greenhouse) are also confirmed. - -The few deductions in correctness arise because some sources reference Soil Steam International AS (2016) and SoilSteam AS as possibly related but distinct entities, requiring careful distinction. Also, a conflicting CEO name appears on LinkedIn (Oddbjørn Bergem), but the company’s own site and multiple trusted sources confirm Ken Roar Riis as current CEO as of 2025. Completeness is slightly lower due to absence of explicit recent financial or investment details and no detailed description of product performance metrics or user data, although these might not be publicly available. Overall, the statement is strongly supported by multiple official and independent sources as of 2025-09 [2][3][4][5]. - -Sources: https://soilsteam.no/ (company site) https://soilsteam.com/about/ https://www.eib.org/en/stories/organic-farming-technology https://soilsteam.com/news/the-history-behind-soil-steam-international-as/ https://businessnorway.com/company/soil-steam-international-as","{""clientCategories"":[""Industrial partners"",""Commercial partners"",""Academic partners"",""Construction sites"",""Greenhouse production""],""companyDescription"":""SoilSteam AS is a company based in Stokke, Norway, that specializes in sustainable soil treatment using chemical-free steam technology to eliminate pathogens and invasive species, enabling safe reuse of soil and substrates. Their SoilSaver™ machines inject steam into soil, substrate, compost, or peat to guarantee full eradication of invasive foreign species, weeds, pests, and diseases. The technology supports sustainable soil handling, reducing handling costs and promoting a unique soil value chain. SoilSteam emphasizes sustainable growth and eco-friendly soil management, serving applications from indoor high-value crop cultivation to handling contaminated soil at construction sites."",""geographicFocus"":""HQ: Borgeskogen 15, 3160 Stokke, Norway; R&D: Kajaveien 7, 1433 Ås, Norway; Sales Focus: Global"",""keyExecutives"":[{""name"":""Ken Roar Riis"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""CEO""},{""name"":""Hans Kristian Westrum"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""Founder and CGO""},{""name"":""Richard Nilsen"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""CFO""},{""name"":""Tor Aksel Storbukås"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""COO""},{""name"":""Mats Steier Bøvrecto"",""sourceUrl"":""https://soilsteam.no/om-oss/"",""title"":""CTO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""SoilSteam AS offers products and solutions for soil treatment using steam technology to kill weeds, invasive species, and harmful organisms without chemicals. Core offerings include:\n- SoilSaver 5™ for smaller projects\n- SoilSaver 20™ for biologically contaminated soil\n- FieldSaver™ for restoring agricultural soil (not yet commercialized)\nTheir technology uses clean steam (only water and heat) to provide sustainable, long-lasting soil care."",""researcherNotes"":""Founders are not explicitly detailed except for Hans Kristian Westrum being noted as Founder and CGO. No official linked documents found on site."",""sectorDescription"":""Operates in the sustainable agricultural technology sector, specializing in chemical-free steam-based soil treatment solutions for agriculture and environmental management."",""sources"":{""clientCategories"":""https://soilsteam.no/partnere/"",""companyDescription"":""https://soilsteam.no/"",""geographicFocus"":""https://soilsteam.no/faq/"",""keyExecutives"":""https://soilsteam.no/om-oss/"",""productDescription"":""https://soilsteam.no/products/""},""websiteURL"":""https://soilsteam.no/""}" -Farmer Connect,https://www.farmerconnect.com/,"ITOCHU Corporation, Sucafina",farmerconnect.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.farmerconnect.com/"", - ""companyDescription"": ""Swiss-based tech company farmer connect was born out of an identified industry need and a desire to integrate the farmer at origin into the supply chain. It delivers an automated end-to-end EU Deforestation Regulation (EUDR) compliance solution to global supply chains, enabling consolidation of relevant ESG data across entire supply chains to address compliance and reporting needs. The company is ISO 27001:2022 certified."", - ""productDescription"": ""farmer connect offers an EU Deforestation Regulation (EUDR) compliance solution that automates compliance with easy visualization and scalability, featuring precise origin tracing to polygon-level mapping using satellite imagery or GPS polygons in GeoJSON format. The platform supports commodities including coffee, cocoa, shea, rubber, timber, and vegetable oils, enabling mapping of supply chains, deforestation risk assessments, due diligence data collection, traceability report generation, and direct submission of EUDR Due Diligence Statements (DDS) to the EU Information System. The solution integrates seamlessly with ERP systems and supplier portals via APIs, supports GS1 standards, and provides audit-ready compliance data storage for five years. Partnerships enable automated deforestation assessments with satellite data and blockchain integration."", - ""clientCategories"": [ - ""Agribusinesses involved in global agriculture supply chains"" - ], - ""sectorDescription"": ""Operates in the ag-tech sector, providing automated regulatory compliance and traceability solutions for global agricultural supply chains focused on EU deforestation regulation."", - ""geographicFocus"": ""HQ: Boulevard James-Fazy 8, 1201 Geneva, Switzerland; Sales Focus: Global agriculture supply chains"", - ""keyExecutives"": [ - { - ""name"": ""David Behrends"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - }, - { - ""name"": ""Michael Chrisment"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - }, - { - ""name"": ""Christina Kaskoura"", - ""title"": ""CTO/COO"", - ""sourceUrl"": ""https://farmerconnect.com/about-us"" - } - ], - ""linkedDocuments"": [ - ""https://farmerconnect.com/hubfs/DDS%20facts.pdf?hsLang=en"", - ""https://farmerconnect.com/hubfs/Certificate%20-%20Farmer%20Connect%20-%20ISO%2027001%202022.pdf?hsLang=en"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://farmerconnect.com/about-us"", - ""productDescription"": ""https://farmerconnect.com/eudr-solutions"", - ""clientCategories"": ""https://farmerconnect.com/customers"", - ""geographicFocus"": ""https://farmerconnect.com/contact-us"", - ""keyExecutives"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - } -}","{ - ""websiteURL"": ""https://www.farmerconnect.com/"", - ""companyDescription"": ""Swiss-based tech company farmer connect was born out of an identified industry need and a desire to integrate the farmer at origin into the supply chain. It delivers an automated end-to-end EU Deforestation Regulation (EUDR) compliance solution to global supply chains, enabling consolidation of relevant ESG data across entire supply chains to address compliance and reporting needs. The company is ISO 27001:2022 certified."", - ""productDescription"": ""farmer connect offers an EU Deforestation Regulation (EUDR) compliance solution that automates compliance with easy visualization and scalability, featuring precise origin tracing to polygon-level mapping using satellite imagery or GPS polygons in GeoJSON format. The platform supports commodities including coffee, cocoa, shea, rubber, timber, and vegetable oils, enabling mapping of supply chains, deforestation risk assessments, due diligence data collection, traceability report generation, and direct submission of EUDR Due Diligence Statements (DDS) to the EU Information System. The solution integrates seamlessly with ERP systems and supplier portals via APIs, supports GS1 standards, and provides audit-ready compliance data storage for five years. Partnerships enable automated deforestation assessments with satellite data and blockchain integration."", - ""clientCategories"": [ - ""Agribusinesses involved in global agriculture supply chains"" - ], - ""sectorDescription"": ""Operates in the ag-tech sector, providing automated regulatory compliance and traceability solutions for global agricultural supply chains focused on EU deforestation regulation."", - ""geographicFocus"": ""HQ: Boulevard James-Fazy 8, 1201 Geneva, Switzerland; Sales Focus: Global agriculture supply chains"", - ""keyExecutives"": [ - { - ""name"": ""David Behrends"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - }, - { - ""name"": ""Michael Chrisment"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - }, - { - ""name"": ""Christina Kaskoura"", - ""title"": ""CTO/COO"", - ""sourceUrl"": ""https://farmerconnect.com/about-us"" - } - ], - ""linkedDocuments"": [ - ""https://farmerconnect.com/hubfs/DDS%20facts.pdf?hsLang=en"", - ""https://farmerconnect.com/hubfs/Certificate%20-%20Farmer%20Connect%20-%20ISO%2027001%202022.pdf?hsLang=en"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://farmerconnect.com/about-us"", - ""productDescription"": ""https://farmerconnect.com/eudr-solutions"", - ""clientCategories"": ""https://farmerconnect.com/customers"", - ""geographicFocus"": ""https://farmerconnect.com/contact-us"", - ""keyExecutives"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - } -}",[],"{ - ""websiteURL"": ""https://www.farmerconnect.com"", - ""companyDescription"": ""Swiss-based tech company farmer connect was born out of an identified industry need and a desire to integrate the farmer at origin into the supply chain. It delivers an automated end-to-end EU Deforestation Regulation (EUDR) compliance solution to global supply chains, enabling consolidation of relevant ESG data across entire supply chains to address compliance and reporting needs. The company is ISO 27001:2022 certified."", - ""productDescription"": ""farmer connect offers an EU Deforestation Regulation (EUDR) compliance solution that automates compliance with easy visualization and scalability, featuring precise origin tracing to polygon-level mapping using satellite imagery or GPS polygons in GeoJSON format. The platform supports commodities including coffee, cocoa, shea, rubber, timber, and vegetable oils, enabling mapping of supply chains, deforestation risk assessments, due diligence data collection, traceability report generation, and direct submission of EUDR Due Diligence Statements (DDS) to the EU Information System. The solution integrates seamlessly with ERP systems and supplier portals via APIs, supports GS1 standards, and provides audit-ready compliance data storage for five years. Partnerships enable automated deforestation assessments with satellite data and blockchain integration."", - ""clientCategories"": [ - ""Agribusinesses Involved In Global Agriculture Supply Chains"" - ], - ""sectorDescription"": ""Operates in the ag-tech sector, providing automated regulatory compliance and traceability solutions for global agricultural supply chains focused on EU deforestation regulation."", - ""geographicFocus"": ""Global agriculture supply chains with a strong presence in Europe, leveraging complementary integration with Asian supply chain expertise following acquisition by Singapore-based Agridence."", - ""keyExecutives"": [ - { - ""name"": ""David Behrends"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - }, - { - ""name"": ""Michael Chrisment"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - }, - { - ""name"": ""Christina Kaskoura"", - ""title"": ""CTO/COO"", - ""sourceUrl"": ""https://farmerconnect.com/about-us"" - } - ], - ""researcherNotes"": ""Confirmed company identity via official domain, Swiss HQ, and distinct product focus on EUDR compliance. Geographic focus expanded by recent acquisition by Singapore-based Agridence, integrating strong European and Asian agri-supply chain expertise. No conflicting executive data found. Geographic focus updated to reflect global operations post-acquisition."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://farmerconnect.com/about-us"", - ""productDescription"": ""https://farmerconnect.com/eudr-solutions"", - ""clientCategories"": ""https://farmerconnect.com/customers"", - ""geographicFocus"": ""https://agridence.com/2025/08/19/compliance-and-traceability-solutions/"", - ""keyExecutives"": ""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"" - } -}","{""clientCategories"":[""Agribusinesses Involved In Global Agriculture Supply Chains""],""companyDescription"":""Swiss-based tech company farmer connect was born out of an identified industry need and a desire to integrate the farmer at origin into the supply chain. It delivers an automated end-to-end EU Deforestation Regulation (EUDR) compliance solution to global supply chains, enabling consolidation of relevant ESG data across entire supply chains to address compliance and reporting needs. The company is ISO 27001:2022 certified."",""geographicFocus"":""Global agriculture supply chains with a strong presence in Europe, leveraging complementary integration with Asian supply chain expertise following acquisition by Singapore-based Agridence."",""keyExecutives"":[{""name"":""David Behrends"",""sourceUrl"":""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"",""title"":""Founder""},{""name"":""Michael Chrisment"",""sourceUrl"":""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"",""title"":""CEO""},{""name"":""Christina Kaskoura"",""sourceUrl"":""https://farmerconnect.com/about-us"",""title"":""CTO/COO""}],""missingImportantFields"":[],""productDescription"":""farmer connect offers an EU Deforestation Regulation (EUDR) compliance solution that automates compliance with easy visualization and scalability, featuring precise origin tracing to polygon-level mapping using satellite imagery or GPS polygons in GeoJSON format. The platform supports commodities including coffee, cocoa, shea, rubber, timber, and vegetable oils, enabling mapping of supply chains, deforestation risk assessments, due diligence data collection, traceability report generation, and direct submission of EUDR Due Diligence Statements (DDS) to the EU Information System. The solution integrates seamlessly with ERP systems and supplier portals via APIs, supports GS1 standards, and provides audit-ready compliance data storage for five years. Partnerships enable automated deforestation assessments with satellite data and blockchain integration."",""researcherNotes"":""Confirmed company identity via official domain, Swiss HQ, and distinct product focus on EUDR compliance. Geographic focus expanded by recent acquisition by Singapore-based Agridence, integrating strong European and Asian agri-supply chain expertise. No conflicting executive data found. Geographic focus updated to reflect global operations post-acquisition."",""sectorDescription"":""Operates in the ag-tech sector, providing automated regulatory compliance and traceability solutions for global agricultural supply chains focused on EU deforestation regulation."",""sources"":{""clientCategories"":""https://farmerconnect.com/customers"",""companyDescription"":""https://farmerconnect.com/about-us"",""geographicFocus"":""https://agridence.com/2025/08/19/compliance-and-traceability-solutions/"",""keyExecutives"":""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"",""productDescription"":""https://farmerconnect.com/eudr-solutions""},""websiteURL"":""https://www.farmerconnect.com""}","Correctness: 100% Completeness: 98% The profile of farmer connect is factually accurate and well-supported by multiple primary and authoritative sources. The company is Swiss-based with headquarters in Geneva and specializes in automated compliance solutions for the EU Deforestation Regulation (EUDR), providing polygon-level origin tracing, ESG data across global agriculture supply chains, and supporting commodities such as coffee, cocoa, rubber, shea, timber, and vegetable oils. The leadership information naming David Behrends as Founder, Michael Chrisment as CEO, and Christina Kaskoura as CTO/COO is consistent with official company information. The acquisition by Singapore-based Agridence in August 2025, which expanded geographic reach including strong European and Asian integration, is confirmed with details on enhanced combined platform capabilities and leadership integration, including the appointment of former farmer connect Chairman Stefano Rettore as Chairman of Agridence. The description of product features, API integrations, GS1 standards, audit-ready data storage, and partnerships for satellite data and blockchain traceability aligns with the company’s official EUDR offering. The slight deduction in completeness is due to the absence of explicit mention of the company’s ISO 27001:2022 certification in the acquisition announcements, although it is confirmed on the official company website. This coverage is current as of August 2025 and supported by company pages and credible corporate acquisition announcements [1][2][3][4][https://farmerconnect.com/about-us][https://farmerconnect.com/eudr-solutions].","{""clientCategories"":[""Agribusinesses involved in global agriculture supply chains""],""companyDescription"":""Swiss-based tech company farmer connect was born out of an identified industry need and a desire to integrate the farmer at origin into the supply chain. It delivers an automated end-to-end EU Deforestation Regulation (EUDR) compliance solution to global supply chains, enabling consolidation of relevant ESG data across entire supply chains to address compliance and reporting needs. The company is ISO 27001:2022 certified."",""geographicFocus"":""HQ: Boulevard James-Fazy 8, 1201 Geneva, Switzerland; Sales Focus: Global agriculture supply chains"",""keyExecutives"":[{""name"":""David Behrends"",""sourceUrl"":""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"",""title"":""Founder""},{""name"":""Michael Chrisment"",""sourceUrl"":""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"",""title"":""CEO""},{""name"":""Christina Kaskoura"",""sourceUrl"":""https://farmerconnect.com/about-us"",""title"":""CTO/COO""}],""linkedDocuments"":[""https://farmerconnect.com/hubfs/DDS%20facts.pdf?hsLang=en"",""https://farmerconnect.com/hubfs/Certificate%20-%20Farmer%20Connect%20-%20ISO%2027001%202022.pdf?hsLang=en""],""missingImportantFields"":[],""productDescription"":""farmer connect offers an EU Deforestation Regulation (EUDR) compliance solution that automates compliance with easy visualization and scalability, featuring precise origin tracing to polygon-level mapping using satellite imagery or GPS polygons in GeoJSON format. The platform supports commodities including coffee, cocoa, shea, rubber, timber, and vegetable oils, enabling mapping of supply chains, deforestation risk assessments, due diligence data collection, traceability report generation, and direct submission of EUDR Due Diligence Statements (DDS) to the EU Information System. The solution integrates seamlessly with ERP systems and supplier portals via APIs, supports GS1 standards, and provides audit-ready compliance data storage for five years. Partnerships enable automated deforestation assessments with satellite data and blockchain integration."",""researcherNotes"":null,""sectorDescription"":""Operates in the ag-tech sector, providing automated regulatory compliance and traceability solutions for global agricultural supply chains focused on EU deforestation regulation."",""sources"":{""clientCategories"":""https://farmerconnect.com/customers"",""companyDescription"":""https://farmerconnect.com/about-us"",""geographicFocus"":""https://farmerconnect.com/contact-us"",""keyExecutives"":""https://tracxn.com/d/companies/farmer-connect/__9W4Zg9Q4rb8UQS3j_FcEECOBOPjpgW46KMbP3yzYiF8/founders-and-board-of-directors"",""productDescription"":""https://farmerconnect.com/eudr-solutions""},""websiteURL"":""https://www.farmerconnect.com/""}" -Piavita,http://www.piavita.com,"FYRFLY Venture Partners, True Ventures, Zürcher Kantonal Bank",piavita.com,https://www.linkedin.com/company/piavitavet,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.piavita.com"", - ""companyDescription"": ""Piavita AG is a medtech start-up. We aim at revolutionizing the veterinary medicine. Thanks to state of the art sensor technologies our product, the Piavita-System, allows for easy and precise measurement of vital signs of horses - from anywhere and anytime. The Piavita-System functions wirelessly, non-invasively and through the fur of the horse. It replaces complex manual and costly procedures and offers completely new possibilities for veterinarians to examine and monitor horses."", - ""productDescription"": ""The Piavita-System measures Electrocardiography (ECG), Puls Sequence & Heart Rate, Respiration Sequence & Rate, Body Core Temperature, and Activity Level & Patterns. The system is wireless, non-invasive, and designed specifically for equine use. The company also offers the Piabreed product, enhancing their portfolio with early foaling detection capabilities."", - ""clientCategories"": [""Veterinarians of animal practices"", ""Veterinary clinics"", ""Breeders"", ""Riders""], - ""sectorDescription"": ""Operates in the veterinary medtech sector, specializing in advanced wearable medical devices and digital health monitoring technology for horses."", - ""geographicFocus"": ""HQ: Technoparkstrasse 1, Zürich, Zürich 8005, Switzerland; Sales Focus: Switzerland, Germany (Berlin), United States (Charlotte, NC)"", - ""keyExecutives"": [ - {""name"": ""Dorina Thiess"", ""title"": ""Co-Founder & CEO"", ""sourceUrl"": ""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021""}, - {""name"": ""Sascha Buehrle"", ""title"": ""Chief Technology Officer (CTO)"", ""sourceUrl"": ""https://www.cbinsights.com/company/piavita/people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/piavitavet"", - ""productDescription"": ""https://www.linkedin.com/company/piavitavet"", - ""clientCategories"": ""https://www.linkedin.com/company/piavitavet"", - ""geographicFocus"": ""https://www.linkedin.com/company/piavitavet"", - ""keyExecutives"": ""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"" - } -}","{ - ""websiteURL"": ""http://www.piavita.com"", - ""companyDescription"": ""Piavita AG is a medtech start-up. We aim at revolutionizing the veterinary medicine. Thanks to state of the art sensor technologies our product, the Piavita-System, allows for easy and precise measurement of vital signs of horses - from anywhere and anytime. The Piavita-System functions wirelessly, non-invasively and through the fur of the horse. It replaces complex manual and costly procedures and offers completely new possibilities for veterinarians to examine and monitor horses."", - ""productDescription"": ""The Piavita-System measures Electrocardiography (ECG), Puls Sequence & Heart Rate, Respiration Sequence & Rate, Body Core Temperature, and Activity Level & Patterns. The system is wireless, non-invasive, and designed specifically for equine use. The company also offers the Piabreed product, enhancing their portfolio with early foaling detection capabilities."", - ""clientCategories"": [""Veterinarians of animal practices"", ""Veterinary clinics"", ""Breeders"", ""Riders""], - ""sectorDescription"": ""Operates in the veterinary medtech sector, specializing in advanced wearable medical devices and digital health monitoring technology for horses."", - ""geographicFocus"": ""HQ: Technoparkstrasse 1, Zürich, Zürich 8005, Switzerland; Sales Focus: Switzerland, Germany (Berlin), United States (Charlotte, NC)"", - ""keyExecutives"": [ - {""name"": ""Dorina Thiess"", ""title"": ""Co-Founder & CEO"", ""sourceUrl"": ""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021""}, - {""name"": ""Sascha Buehrle"", ""title"": ""Chief Technology Officer (CTO)"", ""sourceUrl"": ""https://www.cbinsights.com/company/piavita/people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/piavitavet"", - ""productDescription"": ""https://www.linkedin.com/company/piavitavet"", - ""clientCategories"": ""https://www.linkedin.com/company/piavitavet"", - ""geographicFocus"": ""https://www.linkedin.com/company/piavitavet"", - ""keyExecutives"": ""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"" - } -}",[],"{ - ""websiteURL"": ""http://www.piavita.com"", - ""companyDescription"": ""Piavita AG is a Zurich-based medtech start-up revolutionizing veterinary medicine by providing veterinarians with an easy, wireless, and high-precision vital sign monitoring solution for horses. Its Piavita-System uses state-of-the-art sensor technology to measure vital parameters non-invasively and remotely, replacing complex manual and costly procedures and enabling continuous health monitoring of horses anywhere and anytime."", - ""productDescription"": ""The Piavita-System offers wireless, non-invasive monitoring designed specifically for equine use, measuring Electrocardiography (ECG), pulse sequence and heart rate, respiration sequence and rate, body core temperature, and activity levels and patterns. The company also provides the Piabreed product, extending capabilities with early foaling detection, enabling veterinarians to monitor horse health remotely and efficiently."", - ""clientCategories"": [ - ""Veterinarians of Animal Practices"", - ""Veterinary Clinics"", - ""Breeders"", - ""Riders"" - ], - ""sectorDescription"": ""Operates in the veterinary medtech sector, specializing in advanced wearable medical devices and digital health monitoring technology for horses."", - ""geographicFocus"": ""Primary sales focus in Switzerland, Germany (Berlin), and the United States (Charlotte, NC), with headquarters in Zurich, Switzerland."", - ""keyExecutives"": [ - { - ""name"": ""Dorina Thiess"", - ""title"": ""Co-Founder & CEO"", - ""sourceUrl"": ""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"" - }, - { - ""name"": ""Sascha Buehrle"", - ""title"": ""Chief Technology Officer (CTO)"", - ""sourceUrl"": ""https://www.cbinsights.com/company/piavita/people"" - } - ], - ""researcherNotes"": ""The company is clearly identified by its Zurich headquarters, domain piavita.com, and veterinary medtech products focused on horse vital sign monitoring. Geographic focus is confirmed by official sources and multiple press releases. No conflicting information was found on leadership titles or product scope. Client categories are consistent across company and media profiles. The company has expanded offices in the US and Germany. No missing fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.startup.ch/piavita"", - ""productDescription"": ""https://www.startupticker.ch/en/news/piavita-attracts-investors-from-the-silicon-valley"", - ""clientCategories"": ""https://www.linkedin.com/company/piavitavet"", - ""geographicFocus"": ""https://www.linkedin.com/company/piavitavet"", - ""keyExecutives"": ""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"" - } -}","{""clientCategories"":[""Veterinarians of Animal Practices"",""Veterinary Clinics"",""Breeders"",""Riders""],""companyDescription"":""Piavita AG is a Zurich-based medtech start-up revolutionizing veterinary medicine by providing veterinarians with an easy, wireless, and high-precision vital sign monitoring solution for horses. Its Piavita-System uses state-of-the-art sensor technology to measure vital parameters non-invasively and remotely, replacing complex manual and costly procedures and enabling continuous health monitoring of horses anywhere and anytime."",""geographicFocus"":""Primary sales focus in Switzerland, Germany (Berlin), and the United States (Charlotte, NC), with headquarters in Zurich, Switzerland."",""keyExecutives"":[{""name"":""Dorina Thiess"",""sourceUrl"":""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"",""title"":""Co-Founder & CEO""},{""name"":""Sascha Buehrle"",""sourceUrl"":""https://www.cbinsights.com/company/piavita/people"",""title"":""Chief Technology Officer (CTO)""}],""missingImportantFields"":[],""productDescription"":""The Piavita-System offers wireless, non-invasive monitoring designed specifically for equine use, measuring Electrocardiography (ECG), pulse sequence and heart rate, respiration sequence and rate, body core temperature, and activity levels and patterns. The company also provides the Piabreed product, extending capabilities with early foaling detection, enabling veterinarians to monitor horse health remotely and efficiently."",""researcherNotes"":""The company is clearly identified by its Zurich headquarters, domain piavita.com, and veterinary medtech products focused on horse vital sign monitoring. Geographic focus is confirmed by official sources and multiple press releases. No conflicting information was found on leadership titles or product scope. Client categories are consistent across company and media profiles. The company has expanded offices in the US and Germany. No missing fields remain."",""sectorDescription"":""Operates in the veterinary medtech sector, specializing in advanced wearable medical devices and digital health monitoring technology for horses."",""sources"":{""clientCategories"":""https://www.linkedin.com/company/piavitavet"",""companyDescription"":""https://www.startup.ch/piavita"",""geographicFocus"":""https://www.linkedin.com/company/piavitavet"",""keyExecutives"":""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"",""productDescription"":""https://www.startupticker.ch/en/news/piavita-attracts-investors-from-the-silicon-valley""},""websiteURL"":""http://www.piavita.com""}","Correctness: 100% Completeness: 100% The information about Piavita AG is factually accurate and complete according to multiple authoritative sources. Piavita AG is confirmed as a Zurich-based medtech startup specializing in veterinary technology with a focus on equine vital sign monitoring through a wireless, non-invasive system called the Piavita Vet System or Piavet System, measuring ECG, heart rate, respiration, temperature, and activity remotely, as described consistently across businessangels.ch, venturelab.swiss, and startup.ch sources[1][2][3]. Leadership roles are confirmed with Dorina Thiess as Co-Founder & CEO and Sascha Buehrle as CTO by an official profile and press releases including the Swiss startup award feature and Silicon Valley funding news[5]. The company’s geographic footprint is detailed with headquarters in Zurich and operational sales offices in Berlin and Charlotte, NC, USA[3][5]. The product details, including the Piabreed product for early foaling detection and continuous monitoring benefits through machine learning and proprietary sensors, are well documented in official press and startup media[4][5]. No discrepancies or omissions were found, matching the verified descriptions and newer press releases up to 2023. Supporting URLs: https://www.businessangels.ch/work/piavita; https://www.venturelab.swiss/piavita; https://www.startup.ch/piavita; https://eq-am.com/piavitas-veterinary-medtech-solution-brings-equine-healthcare-into-the-digital-age/; https://www.startupticker.ch/en/news/piavita-attracts-investors-from-the-silicon-valley","{""clientCategories"":[""Veterinarians of animal practices"",""Veterinary clinics"",""Breeders"",""Riders""],""companyDescription"":""Piavita AG is a medtech start-up. We aim at revolutionizing the veterinary medicine. Thanks to state of the art sensor technologies our product, the Piavita-System, allows for easy and precise measurement of vital signs of horses - from anywhere and anytime. The Piavita-System functions wirelessly, non-invasively and through the fur of the horse. It replaces complex manual and costly procedures and offers completely new possibilities for veterinarians to examine and monitor horses."",""geographicFocus"":""HQ: Technoparkstrasse 1, Zürich, Zürich 8005, Switzerland; Sales Focus: Switzerland, Germany (Berlin), United States (Charlotte, NC)"",""keyExecutives"":[{""name"":""Dorina Thiess"",""sourceUrl"":""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"",""title"":""Co-Founder & CEO""},{""name"":""Sascha Buehrle"",""sourceUrl"":""https://www.cbinsights.com/company/piavita/people"",""title"":""Chief Technology Officer (CTO)""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""The Piavita-System measures Electrocardiography (ECG), Puls Sequence & Heart Rate, Respiration Sequence & Rate, Body Core Temperature, and Activity Level & Patterns. The system is wireless, non-invasive, and designed specifically for equine use. The company also offers the Piabreed product, enhancing their portfolio with early foaling detection capabilities."",""researcherNotes"":null,""sectorDescription"":""Operates in the veterinary medtech sector, specializing in advanced wearable medical devices and digital health monitoring technology for horses."",""sources"":{""clientCategories"":""https://www.linkedin.com/company/piavitavet"",""companyDescription"":""https://www.linkedin.com/company/piavitavet"",""geographicFocus"":""https://www.linkedin.com/company/piavitavet"",""keyExecutives"":""https://www.unisg.ch/en/newsdetail/news/dorina-thiess-elected-founder-of-the-year-2021"",""productDescription"":""https://www.linkedin.com/company/piavitavet""},""websiteURL"":""http://www.piavita.com""}" -Ynsect,https://www.ynsect.com/,,ynsect.com,https://www.linkedin.com/company/ynsect,"{""seniorLeadership"":[{""name"":""Antoine Hubert"",""title"":""Chairman, CEO, Co-Founder, Director""},{""name"":""Elisabeth Fleuriot"",""title"":""Chairwoman""},{""name"":""Jean-Gabriel Levon"",""title"":""Chief Impact and Hseq Officer, Co-Founder, Director""},{""name"":""Nicolas Bernadi"",""title"":""Independent Board Member""},{""name"":""Shankar Krishnamoorthy"",""title"":""EVP, COO""},{""name"":""Isabelle Toledano-Koutsouris"",""title"":""EVP, Chief Financial and Administrative Officer""},{""name"":""Benjamin Armenjon"",""title"":""GM, Animal Nutrition and Health / Human Nutrition and Health""},{""name"":""Frederic Julien"",""title"":""Chief People Officer""},{""name"":""Françoise Lesage"",""title"":""General Secretary""},{""name"":""Alain Revah"",""title"":""Chief Corporate Affairs Officer""},{""name"":""Alain Davadant"",""title"":""Chief Construction Officer""},{""name"":""Nicolas Desombre"",""title"":""Chief Digital and Data Officer""},{""name"":""Jean Rappe"",""title"":""Chief Development Officer""},{""name"":""Philippe Pichol"",""title"":""Chief Operations and SC Officer""}]}","{""seniorLeadership"":[{""name"":""Antoine Hubert"",""title"":""Chairman, CEO, Co-Founder, Director""},{""name"":""Elisabeth Fleuriot"",""title"":""Chairwoman""},{""name"":""Jean-Gabriel Levon"",""title"":""Chief Impact and Hseq Officer, Co-Founder, Director""},{""name"":""Nicolas Bernadi"",""title"":""Independent Board Member""},{""name"":""Shankar Krishnamoorthy"",""title"":""EVP, COO""},{""name"":""Isabelle Toledano-Koutsouris"",""title"":""EVP, Chief Financial and Administrative Officer""},{""name"":""Benjamin Armenjon"",""title"":""GM, Animal Nutrition and Health / Human Nutrition and Health""},{""name"":""Frederic Julien"",""title"":""Chief People Officer""},{""name"":""Françoise Lesage"",""title"":""General Secretary""},{""name"":""Alain Revah"",""title"":""Chief Corporate Affairs Officer""},{""name"":""Alain Davadant"",""title"":""Chief Construction Officer""},{""name"":""Nicolas Desombre"",""title"":""Chief Digital and Data Officer""},{""name"":""Jean Rappe"",""title"":""Chief Development Officer""},{""name"":""Philippe Pichol"",""title"":""Chief Operations and SC Officer""}]}","{ - ""websiteURL"": ""https://www.ynsect.com/"", - ""companyDescription"": ""Ynsect is pioneering the alternative foods industry to make the world a safer, healthier place that respects the planet's boundaries by producing more food with much less impact. It is one of the world leaders in insect ingredient production for people, animals, and plants. The company aims to make the way we eat more nutritious and sustainable, offering premium nutrition ingredients for various species, including mealworms as a superfood. Ynsect operates in the food sector focusing on alternative proteins and sustainable food systems."", - ""productDescription"": ""Core products and services categories include Animals (Aquaculture, Pets, Poultry & Swine), Plants, and Food (Ingredients). Additional services relate to Partnering and Clients. Relevant links: https://ynsect.com/animals, https://ynsect.com/plants, https://ynsect.com/aquaculture, https://ynsect.com/pets, https://ynsect.com/chickens-pigs, https://ynsect.com/ingredients, https://ynsect.com/partnering, https://ynsect.com/clients."", - ""clientCategories"": [ - ""Sports Nutrition Protein Powders"", - ""Food Products (bars, burgers)"", - ""Planetarian Food"", - ""Supermarket Food Products"", - ""Insect-snack Brands"", - ""European Food and Sports Nutrition Sectors"" - ], - ""sectorDescription"": ""Operates in the food sector focusing on alternative proteins and sustainable food systems."", - ""geographicFocus"": ""HQ: 1 Rue Pierre Fontaine, 91000 Évry-Courcouronnes, France; Sales Focus: Europe"", - ""keyExecutives"": [ - {""name"": ""Shankar Krishnamoorthy"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Antoine Hubert"", ""title"": ""Chief Strategy Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Frédéric Julien"", ""title"": ""Chief People Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Philippe Pichol"", ""title"": ""Chief Sales & Marketing Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Françoise Lesage"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Jean Rappe"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Christian Gourlay"", ""title"": ""Chief Industrial Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""} - ], - ""linkedDocuments"": [ - ""https://ynsect.com/wp-content/uploads/2023/08/kit-presse.zip"", - ""https://ynsect.com/privacy-policy"", - ""https://ynsect.com/legal-information"", - ""https://ynsect.com/terms-of-use"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ynsect.com/"", - ""productDescription"": ""https://www.ynsect.com/animals"", - ""clientCategories"": ""https://ynsect.com/clients"", - ""geographicFocus"": ""https://www.ynsect.com/contact/"", - ""keyExecutives"": ""https://www.ynsect.com/team/"" - } -}","{ - ""websiteURL"": ""https://www.ynsect.com/"", - ""companyDescription"": ""Ynsect is pioneering the alternative foods industry to make the world a safer, healthier place that respects the planet's boundaries by producing more food with much less impact. It is one of the world leaders in insect ingredient production for people, animals, and plants. The company aims to make the way we eat more nutritious and sustainable, offering premium nutrition ingredients for various species, including mealworms as a superfood. Ynsect operates in the food sector focusing on alternative proteins and sustainable food systems."", - ""productDescription"": ""Core products and services categories include Animals (Aquaculture, Pets, Poultry & Swine), Plants, and Food (Ingredients). Additional services relate to Partnering and Clients. Relevant links: https://ynsect.com/animals, https://ynsect.com/plants, https://ynsect.com/aquaculture, https://ynsect.com/pets, https://ynsect.com/chickens-pigs, https://ynsect.com/ingredients, https://ynsect.com/partnering, https://ynsect.com/clients."", - ""clientCategories"": [ - ""Sports Nutrition Protein Powders"", - ""Food Products (bars, burgers)"", - ""Planetarian Food"", - ""Supermarket Food Products"", - ""Insect-snack Brands"", - ""European Food and Sports Nutrition Sectors"" - ], - ""sectorDescription"": ""Operates in the food sector focusing on alternative proteins and sustainable food systems."", - ""geographicFocus"": ""HQ: 1 Rue Pierre Fontaine, 91000 Évry-Courcouronnes, France; Sales Focus: Europe"", - ""keyExecutives"": [ - {""name"": ""Shankar Krishnamoorthy"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Antoine Hubert"", ""title"": ""Chief Strategy Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Frédéric Julien"", ""title"": ""Chief People Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Philippe Pichol"", ""title"": ""Chief Sales & Marketing Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Françoise Lesage"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Jean Rappe"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""}, - {""name"": ""Christian Gourlay"", ""title"": ""Chief Industrial Officer"", ""sourceUrl"": ""https://www.ynsect.com/team/""} - ], - ""linkedDocuments"": [ - ""https://ynsect.com/wp-content/uploads/2023/08/kit-presse.zip"", - ""https://ynsect.com/privacy-policy"", - ""https://ynsect.com/legal-information"", - ""https://ynsect.com/terms-of-use"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ynsect.com/"", - ""productDescription"": ""https://www.ynsect.com/animals"", - ""clientCategories"": ""https://ynsect.com/clients"", - ""geographicFocus"": ""https://www.ynsect.com/contact/"", - ""keyExecutives"": ""https://www.ynsect.com/team/"" - } -}",[],"{ - ""websiteURL"": ""https://www.ynsect.com"", - ""companyDescription"": ""Ynsect is a pioneer in the alternative foods industry, producing insect-based protein ingredients to promote a safer, healthier, and more sustainable food system that respects planetary boundaries. Founded in 2011, the company specializes in mealworm farming and transformation for premium nutrition products across animals, people, and plants. It leverages advanced vertical farming, AI, and robotics to deliver sustainable proteins primarily for European markets while aiming to reduce environmental impacts compared to traditional proteins."", - ""productDescription"": ""Ynsect produces insect-based ingredients primarily derived from mealworms, offering protein powders and organic fertilizers for aquaculture, pets, poultry, swine, and human nutrition. Its production model integrates vertical farming and AI-driven monitoring with robotics, producing sustainable, premium nutrition ingredients alongside specialized pet food brands such as Sprÿng. The company also offers partnering services and caters to diverse sectors including animal, plant, and food ingredients."", - ""clientCategories"": [ - ""Sports Nutrition Protein Powders"", - ""Food Products"", - ""Planetarian Food"", - ""Supermarket Food Products"", - ""Insect-snack Brands"", - ""European Food and Sports Nutrition Sectors"" - ], - ""sectorDescription"": ""Food sector specializing in alternative proteins and sustainable food systems using insect-based ingredients."", - ""geographicFocus"": ""Headquartered in Évry-Courcouronnes, France, with primary sales focus on Europe."", - ""keyExecutives"": [ - { - ""name"": ""Shankar Krishnamoorthy"", - ""title"": ""EVP, Chief Operating Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Antoine Hubert"", - ""title"": ""Chairman, CEO, Co-Founder, Director"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Frédéric Julien"", - ""title"": ""Chief People Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Philippe Pichol"", - ""title"": ""Chief Operations and Supply Chain Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Françoise Lesage"", - ""title"": ""General Secretary"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Jean Rappe"", - ""title"": ""Chief Development Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Alain Revah"", - ""title"": ""Chief Corporate Affairs Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Alain Davadant"", - ""title"": ""Chief Construction Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - }, - { - ""name"": ""Nicolas Desombre"", - ""title"": ""Chief Digital and Data Officer"", - ""sourceUrl"": ""https://www.ynsect.com/team/"" - } - ], - ""researcherNotes"": ""The company is confirmed as Ynsect, headquartered in France with a focus on insect-based protein production. Some executive titles differ slightly between the provided website data and LinkedIn sources; LinkedIn contains updates on roles like Antoine Hubert as Chairman and CEO, and Shankar Krishnamoorthy as EVP, COO. The company's industrial facility in Amiens is currently suspended amid financial restructuring and funding challenges, with a shift toward validating a new production model. Geographic sales focus is primarily Europe. The data is consistent with multiple sources including the official website and LinkedIn profiles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ynsect.com/"", - ""productDescription"": ""https://www.ynsect.com/animals"", - ""clientCategories"": ""https://ynsect.com/clients"", - ""geographicFocus"": ""https://www.ynsect.com/contact/"", - ""keyExecutives"": ""https://www.ynsect.com/team/"" - } -}","{""clientCategories"":[""Sports Nutrition Protein Powders"",""Food Products"",""Planetarian Food"",""Supermarket Food Products"",""Insect-snack Brands"",""European Food and Sports Nutrition Sectors""],""companyDescription"":""Ynsect is a pioneer in the alternative foods industry, producing insect-based protein ingredients to promote a safer, healthier, and more sustainable food system that respects planetary boundaries. Founded in 2011, the company specializes in mealworm farming and transformation for premium nutrition products across animals, people, and plants. It leverages advanced vertical farming, AI, and robotics to deliver sustainable proteins primarily for European markets while aiming to reduce environmental impacts compared to traditional proteins."",""geographicFocus"":""Headquartered in Évry-Courcouronnes, France, with primary sales focus on Europe."",""keyExecutives"":[{""name"":""Shankar Krishnamoorthy"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""EVP, Chief Operating Officer""},{""name"":""Antoine Hubert"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chairman, CEO, Co-Founder, Director""},{""name"":""Frédéric Julien"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief People Officer""},{""name"":""Philippe Pichol"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Operations and Supply Chain Officer""},{""name"":""Françoise Lesage"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""General Secretary""},{""name"":""Jean Rappe"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Development Officer""},{""name"":""Alain Revah"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Corporate Affairs Officer""},{""name"":""Alain Davadant"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Construction Officer""},{""name"":""Nicolas Desombre"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Digital and Data Officer""}],""missingImportantFields"":[],""productDescription"":""Ynsect produces insect-based ingredients primarily derived from mealworms, offering protein powders and organic fertilizers for aquaculture, pets, poultry, swine, and human nutrition. Its production model integrates vertical farming and AI-driven monitoring with robotics, producing sustainable, premium nutrition ingredients alongside specialized pet food brands such as Sprÿng. The company also offers partnering services and caters to diverse sectors including animal, plant, and food ingredients."",""researcherNotes"":""The company is confirmed as Ynsect, headquartered in France with a focus on insect-based protein production. Some executive titles differ slightly between the provided website data and LinkedIn sources; LinkedIn contains updates on roles like Antoine Hubert as Chairman and CEO, and Shankar Krishnamoorthy as EVP, COO. The company's industrial facility in Amiens is currently suspended amid financial restructuring and funding challenges, with a shift toward validating a new production model. Geographic sales focus is primarily Europe. The data is consistent with multiple sources including the official website and LinkedIn profiles."",""sectorDescription"":""Food sector specializing in alternative proteins and sustainable food systems using insect-based ingredients."",""sources"":{""clientCategories"":""https://ynsect.com/clients"",""companyDescription"":""https://www.ynsect.com/"",""geographicFocus"":""https://www.ynsect.com/contact/"",""keyExecutives"":""https://www.ynsect.com/team/"",""productDescription"":""https://www.ynsect.com/animals""},""websiteURL"":""https://www.ynsect.com""}","Correctness: 95% Completeness: 90% The provided company profile of Ynsect is largely accurate and well-supported by multiple sources. Ynsect was founded in 2011 by Antoine Hubert and others, specializing in insect-based protein ingredients mainly from mealworms, focusing on sustainable, premium nutrition products for animals, plants, and humans, with vertical farming and AI-driven processes as core technologies[1][2][3]. The company is headquartered in Évry-Courcouronnes, France, with primary sales focused on Europe, and leadership roles such as Antoine Hubert as Chairman and CEO, and Shankar Krishnamoorthy as EVP, COO, are confirmed by the official team page and recent updates[3][5]. Its product offering includes protein powders, organic fertilizers, and specialized pet food brands like Sprÿng[3], consistent with the description. Ynsect has raised significant funding (around $580 million) but faces financial restructuring challenges, including suspending operations at its Amiens facility and exploring strategic options, which is a recent critical development missing from the initial text[5]. This slightly lowers completeness due to absence of these financial and operational status details. Overall, the description accurately reflects Ynsect's market positioning, technology, leadership, and geography with minor gaps around the latest financial restructuring context. Sources: https://www.ynsect.com/team/, https://www.genopole.com/genopole-citizens/companies/ynsect/, https://agfundernews.com/insect-ag-pioneer-ynsect-exploring-all-possible-options-including-a-3rd-party-takeover-agronutris-files-safeguard-plan-with-court, https://forwardfooding.com/foodtech500/2021/company/ynsect/.","{""clientCategories"":[""Sports Nutrition Protein Powders"",""Food Products (bars, burgers)"",""Planetarian Food"",""Supermarket Food Products"",""Insect-snack Brands"",""European Food and Sports Nutrition Sectors""],""companyDescription"":""Ynsect is pioneering the alternative foods industry to make the world a safer, healthier place that respects the planet's boundaries by producing more food with much less impact. It is one of the world leaders in insect ingredient production for people, animals, and plants. The company aims to make the way we eat more nutritious and sustainable, offering premium nutrition ingredients for various species, including mealworms as a superfood. Ynsect operates in the food sector focusing on alternative proteins and sustainable food systems."",""geographicFocus"":""HQ: 1 Rue Pierre Fontaine, 91000 Évry-Courcouronnes, France; Sales Focus: Europe"",""keyExecutives"":[{""name"":""Shankar Krishnamoorthy"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""CEO""},{""name"":""Antoine Hubert"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Strategy Officer""},{""name"":""Frédéric Julien"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief People Officer""},{""name"":""Philippe Pichol"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Sales & Marketing Officer""},{""name"":""Françoise Lesage"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Financial Officer""},{""name"":""Jean Rappe"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Technical Officer""},{""name"":""Christian Gourlay"",""sourceUrl"":""https://www.ynsect.com/team/"",""title"":""Chief Industrial Officer""}],""linkedDocuments"":[""https://ynsect.com/wp-content/uploads/2023/08/kit-presse.zip"",""https://ynsect.com/privacy-policy"",""https://ynsect.com/legal-information"",""https://ynsect.com/terms-of-use""],""missingImportantFields"":[],""productDescription"":""Core products and services categories include Animals (Aquaculture, Pets, Poultry & Swine), Plants, and Food (Ingredients). Additional services relate to Partnering and Clients. Relevant links: https://ynsect.com/animals, https://ynsect.com/plants, https://ynsect.com/aquaculture, https://ynsect.com/pets, https://ynsect.com/chickens-pigs, https://ynsect.com/ingredients, https://ynsect.com/partnering, https://ynsect.com/clients."",""researcherNotes"":null,""sectorDescription"":""Operates in the food sector focusing on alternative proteins and sustainable food systems."",""sources"":{""clientCategories"":""https://ynsect.com/clients"",""companyDescription"":""https://www.ynsect.com/"",""geographicFocus"":""https://www.ynsect.com/contact/"",""keyExecutives"":""https://www.ynsect.com/team/"",""productDescription"":""https://www.ynsect.com/animals""},""websiteURL"":""https://www.ynsect.com/""}" -reNature,https://renature.co,Avocet Holdings,renature.co,https://www.linkedin.com/company/renature,"{""seniorLeadership"":[{""name"":""Evan Taylor"",""title"":""Founder & CEO"",""linkedinURL"":""https://www.linkedin.com/in/evan-d-taylor""}]}","{""seniorLeadership"":[{""name"":""Evan Taylor"",""title"":""Founder & CEO"",""linkedinURL"":""https://www.linkedin.com/in/evan-d-taylor""}]}","{""websiteURL"":""https://renature.co"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website and its subpages do not provide accessible content or detailed information on company mission, products, clients, leadership, or geographic footprint. The site appears to have no crawlable or extractable text content at the time of research."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""https://renature.co"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website and its subpages do not provide accessible content or detailed information on company mission, products, clients, leadership, or geographic footprint. The site appears to have no crawlable or extractable text content at the time of research."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://renature.co"", - ""companyDescription"": ""reNature is a private company based in Amsterdam focused on scaling regenerative agroforestry globally by restoring degraded landscapes and improving existing farms. Their mission is to make regenerative agriculture a viable business model for farmers by combining practical implementation with innovation and automation to accelerate adoption and transform land-based agricultural production."", - ""productDescription"": ""reNature delivers regenerative agroforestry solutions that revive degraded landscapes and enhance farm productivity. They provide implementation standards, combine on-the-ground project execution with technological innovation and automation, and offer farmers insights and tools to transition to sustainable, regenerative agricultural practices resulting in improved ecosystem health and farm viability."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Project Developers"", - ""Environmental Organizations"", - ""Agribusinesses"", - ""Sustainability-focused Investors"" - ], - ""sectorDescription"": ""Environmental services specialized in regenerative agroforestry and sustainable agriculture, focused on restoring nature and scaling regenerative farming practices worldwide."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Evan Taylor"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/evan-d-taylor"" - } - ], - ""researcherNotes"": ""The official website provides a clear focus on regenerative agroforestry and regenerative agriculture with emphasis on automation and business viability for farmers, confirming the company identity as Amsterdam-based reNature. No explicit geographic operational footprint was found. Key executive details were confirmed via LinkedIn profile of Founder & CEO Evan Taylor. Website text is limited but sufficient to support company and product descriptions. Missing fields are mostly geographicFocus, as no specific regional footprint is stated on primary sources."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://www.renature.co/about-us/"", - ""productDescription"": ""https://www.renature.co"", - ""clientCategories"": ""https://www.renature.co"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.linkedin.com/in/evan-d-taylor"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Project Developers"",""Environmental Organizations"",""Agribusinesses"",""Sustainability-focused Investors""],""companyDescription"":""reNature is a private company based in Amsterdam focused on scaling regenerative agroforestry globally by restoring degraded landscapes and improving existing farms. Their mission is to make regenerative agriculture a viable business model for farmers by combining practical implementation with innovation and automation to accelerate adoption and transform land-based agricultural production."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Evan Taylor"",""sourceUrl"":""https://www.linkedin.com/in/evan-d-taylor"",""title"":""Founder & CEO""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""reNature delivers regenerative agroforestry solutions that revive degraded landscapes and enhance farm productivity. They provide implementation standards, combine on-the-ground project execution with technological innovation and automation, and offer farmers insights and tools to transition to sustainable, regenerative agricultural practices resulting in improved ecosystem health and farm viability."",""researcherNotes"":""The official website provides a clear focus on regenerative agroforestry and regenerative agriculture with emphasis on automation and business viability for farmers, confirming the company identity as Amsterdam-based reNature. No explicit geographic operational footprint was found. Key executive details were confirmed via LinkedIn profile of Founder & CEO Evan Taylor. Website text is limited but sufficient to support company and product descriptions. Missing fields are mostly geographicFocus, as no specific regional footprint is stated on primary sources."",""sectorDescription"":""Environmental services specialized in regenerative agroforestry and sustainable agriculture, focused on restoring nature and scaling regenerative farming practices worldwide."",""sources"":{""clientCategories"":""https://www.renature.co"",""companyDescription"":""https://www.renature.co/about-us/"",""geographicFocus"":null,""keyExecutives"":""https://www.linkedin.com/in/evan-d-taylor"",""productDescription"":""https://www.renature.co""},""websiteURL"":""https://renature.co""}","Correctness: 98% Completeness: 85% The core details about reNature being an Amsterdam-based private company focused on regenerative agroforestry with a mission to scale regenerative agriculture, restore degraded landscapes, and improve farm productivity are well-supported by the official website and related foundation pages[3][5]. The company’s approach combining practical implementation with innovation and automation to make regenerative agriculture viable for farmers is explicitly mentioned on the official site[5]. The LinkedIn profile of Evan Taylor as Founder & CEO aligns with the leadership claim[2]. Seed funding of about €550,000 reported in 2021 supports financial backing but is slightly dated[2]. The key omission affecting completeness is the absence of a clear, explicit geographicFocus field or detailed operational footprint; however, project references span globally including Brazil, Portugal, and Indonesia, indicating international reach but without a fixed regional headquarters beyond Amsterdam[2][3]. Overall, correctness is high given consistent source confirmation, while completeness is modestly lowered by the missing precise geographic focus and somewhat limited current financial or project scale data publicly available. Sources: https://renature.co, https://www.linkedin.com/in/evan-d-taylor, https://agfundernews.com/renature-raises-seed-round-to-scale-regenerative-agroforestry, https://www.renaturefoundation.org/about-us/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website and its subpages do not provide accessible content or detailed information on company mission, products, clients, leadership, or geographic footprint. The site appears to have no crawlable or extractable text content at the time of research."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://renature.co""}" -Aqua Spark,http://www.aqua-spark.nl,"Imaginal Seeds, Silverstrand Capital",aqua-spark.nl,https://www.linkedin.com/company/aquaspark,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.aqua-spark.nl"", - ""companyDescription"": ""Aqua-Spark is a Netherlands-based investment fund focused on sustainable aquaculture, managing $500-999M in private equity assets with a 5-9 year operation history. Their mission is to demonstrate sustainable aquaculture combined with market-rate returns by investing across the value chain including sustainable feeds, disease treatments, and technology. They build a synergistic portfolio of 50-60 companies to influence industry development."", - ""productDescription"": ""Aqua-Spark invests across the aquaculture value chain in sustainable feeds, disease treatments, and technology to build a synergistic portfolio of companies focused on sustainable aquaculture."", - ""clientCategories"": [""Investors"", ""Sustainable Aquaculture Companies""], - ""sectorDescription"": ""Operates as an investment fund dedicated to sustainable aquaculture businesses worldwide."", - ""geographicFocus"": ""HQ: Nieuwegracht 32, Utrecht, 3512 LS, Netherlands; Sales Focus: Global aquaculture markets."", - ""keyExecutives"": [ - {""name"": ""Mike Velings"", ""title"": ""Founder, Managing Partner"", ""sourceUrl"": ""https://www.crunchbase.com/organization/aqua-sparks""}, - {""name"": ""Amy Novogratz"", ""title"": ""Founder, Managing Partner"", ""sourceUrl"": ""https://www.crunchbase.com/organization/aqua-sparks""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""productDescription"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""clientCategories"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""geographicFocus"": ""https://seafood.media/fis/companies/details.asp?l=e&company_id=166693"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/aqua-sparks"" - } -}","{ - ""websiteURL"": ""http://www.aqua-spark.nl"", - ""companyDescription"": ""Aqua-Spark is a Netherlands-based investment fund focused on sustainable aquaculture, managing $500-999M in private equity assets with a 5-9 year operation history. Their mission is to demonstrate sustainable aquaculture combined with market-rate returns by investing across the value chain including sustainable feeds, disease treatments, and technology. They build a synergistic portfolio of 50-60 companies to influence industry development."", - ""productDescription"": ""Aqua-Spark invests across the aquaculture value chain in sustainable feeds, disease treatments, and technology to build a synergistic portfolio of companies focused on sustainable aquaculture."", - ""clientCategories"": [""Investors"", ""Sustainable Aquaculture Companies""], - ""sectorDescription"": ""Operates as an investment fund dedicated to sustainable aquaculture businesses worldwide."", - ""geographicFocus"": ""HQ: Nieuwegracht 32, Utrecht, 3512 LS, Netherlands; Sales Focus: Global aquaculture markets."", - ""keyExecutives"": [ - {""name"": ""Mike Velings"", ""title"": ""Founder, Managing Partner"", ""sourceUrl"": ""https://www.crunchbase.com/organization/aqua-sparks""}, - {""name"": ""Amy Novogratz"", ""title"": ""Founder, Managing Partner"", ""sourceUrl"": ""https://www.crunchbase.com/organization/aqua-sparks""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""productDescription"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""clientCategories"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""geographicFocus"": ""https://seafood.media/fis/companies/details.asp?l=e&company_id=166693"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/aqua-sparks"" - } -}",[],"{ - ""websiteURL"": ""http://www.aqua-spark.nl"", - ""companyDescription"": ""Aqua-Spark is a Netherlands-based investment fund focused on sustainable aquaculture, managing $500-999M in private equity assets with a 5-9 year operation history. Their mission is to demonstrate sustainable aquaculture combined with market-rate returns by investing across the value chain including sustainable feeds, disease treatments, and technology. They build a synergistic portfolio of 50-60 companies to influence industry development."", - ""productDescription"": ""Aqua-Spark invests across the aquaculture value chain in sustainable feeds, disease treatments, and technology to build a synergistic portfolio of companies focused on sustainable aquaculture."", - ""clientCategories"": [""Investors"", ""Sustainable Aquaculture Companies""], - ""sectorDescription"": ""Operates as an investment fund dedicated to sustainable aquaculture businesses worldwide."", - ""geographicFocus"": ""Aqua-Spark is a global investment fund based in Utrecht, the Netherlands, with a worldwide sales and investment focus in sustainable aquaculture markets."", - ""keyExecutives"": [ - { - ""name"": ""Mike Velings"", - ""title"": ""Founder, Managing Partner"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/aqua-sparks"" - }, - { - ""name"": ""Amy Novogratz"", - ""title"": ""Founder, Managing Partner"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/aqua-sparks"" - } - ], - ""researcherNotes"": ""The entity was confirmed as Aqua-Spark, the sustainable aquaculture investment fund headquartered in Utrecht, Netherlands, based on company domain and location. Geographic focus was supplemented with publicly available descriptions confirming global operations in aquaculture markets. No senior leadership beyond founders was verified from LinkedIn or company sources. No conflicting data found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""productDescription"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""clientCategories"": ""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"", - ""geographicFocus"": ""https://seafood.media/fis/companies/details.asp?l=e&company_id=166693"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/aqua-sparks"" - } -}","{""clientCategories"":[""Investors"",""Sustainable Aquaculture Companies""],""companyDescription"":""Aqua-Spark is a Netherlands-based investment fund focused on sustainable aquaculture, managing $500-999M in private equity assets with a 5-9 year operation history. Their mission is to demonstrate sustainable aquaculture combined with market-rate returns by investing across the value chain including sustainable feeds, disease treatments, and technology. They build a synergistic portfolio of 50-60 companies to influence industry development."",""geographicFocus"":""Aqua-Spark is a global investment fund based in Utrecht, the Netherlands, with a worldwide sales and investment focus in sustainable aquaculture markets."",""keyExecutives"":[{""name"":""Mike Velings"",""sourceUrl"":""https://www.crunchbase.com/organization/aqua-sparks"",""title"":""Founder, Managing Partner""},{""name"":""Amy Novogratz"",""sourceUrl"":""https://www.crunchbase.com/organization/aqua-sparks"",""title"":""Founder, Managing Partner""}],""missingImportantFields"":[],""productDescription"":""Aqua-Spark invests across the aquaculture value chain in sustainable feeds, disease treatments, and technology to build a synergistic portfolio of companies focused on sustainable aquaculture."",""researcherNotes"":""The entity was confirmed as Aqua-Spark, the sustainable aquaculture investment fund headquartered in Utrecht, Netherlands, based on company domain and location. Geographic focus was supplemented with publicly available descriptions confirming global operations in aquaculture markets. No senior leadership beyond founders was verified from LinkedIn or company sources. No conflicting data found."",""sectorDescription"":""Operates as an investment fund dedicated to sustainable aquaculture businesses worldwide."",""sources"":{""clientCategories"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""companyDescription"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""geographicFocus"":""https://seafood.media/fis/companies/details.asp?l=e&company_id=166693"",""keyExecutives"":""https://www.crunchbase.com/organization/aqua-sparks"",""productDescription"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC""},""websiteURL"":""http://www.aqua-spark.nl""}","Correctness: 98% Completeness: 95% Aqua-Spark is correctly described as a Netherlands-based global investment fund focused on sustainable aquaculture, headquartered in Utrecht, investing across the aquaculture value chain including feeds, disease treatments, and technology. The founders and managing partners Mike Velings and Amy Novogratz are accurately listed per Crunchbase. The fund’s asset range (~$500-999M) and portfolio size (50-60 companies) align with available information, and the mission to unite sustainability with market-rate returns is confirmed. The fund's worldwide geographic focus in sustainable aquaculture markets is supported by multiple sources, including seafood.media and the official Aqua-Spark website. Slight limitations include the absence of a time-stamped confirmation of the exact asset size and a few very recent updates on senior leadership beyond the founders. However, no contradictory information was found, and key operational descriptions, investor base, and product lines were well covered. The portfolio and mission statements on the official site corroborate the investment across feeds, disease treatments, and technology sectors. Leading sources used: Aqua-Spark official site (https://aqua-spark.nl), seafood.media (https://seafood.media/fis/companies/details.asp?l=e&company_id=166693), Crunchbase (https://www.crunchbase.com/organization/aqua-sparks), and ImpactAssets (https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC) as of September 2025.","{""clientCategories"":[""Investors"",""Sustainable Aquaculture Companies""],""companyDescription"":""Aqua-Spark is a Netherlands-based investment fund focused on sustainable aquaculture, managing $500-999M in private equity assets with a 5-9 year operation history. Their mission is to demonstrate sustainable aquaculture combined with market-rate returns by investing across the value chain including sustainable feeds, disease treatments, and technology. They build a synergistic portfolio of 50-60 companies to influence industry development."",""geographicFocus"":""HQ: Nieuwegracht 32, Utrecht, 3512 LS, Netherlands; Sales Focus: Global aquaculture markets."",""keyExecutives"":[{""name"":""Mike Velings"",""sourceUrl"":""https://www.crunchbase.com/organization/aqua-sparks"",""title"":""Founder, Managing Partner""},{""name"":""Amy Novogratz"",""sourceUrl"":""https://www.crunchbase.com/organization/aqua-sparks"",""title"":""Founder, Managing Partner""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Aqua-Spark invests across the aquaculture value chain in sustainable feeds, disease treatments, and technology to build a synergistic portfolio of companies focused on sustainable aquaculture."",""researcherNotes"":null,""sectorDescription"":""Operates as an investment fund dedicated to sustainable aquaculture businesses worldwide."",""sources"":{""clientCategories"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""companyDescription"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""geographicFocus"":""https://seafood.media/fis/companies/details.asp?l=e&company_id=166693"",""keyExecutives"":""https://www.crunchbase.com/organization/aqua-sparks"",""productDescription"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC""},""websiteURL"":""http://www.aqua-spark.nl""}" -Agrigenius,https://agrigenius.shop/,OKX Ventures,agrigenius.shop,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://agrigenius.shop/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The provided domain https://agrigenius.shop/ is inaccessible or non-functional, and no relevant data was extracted from same-domain searches. Information found from other related domains (agrigenius.it) was not used because it is outside the specified domain scope."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://agrigenius.shop/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The provided domain https://agrigenius.shop/ is inaccessible or non-functional, and no relevant data was extracted from same-domain searches. Information found from other related domains (agrigenius.it) was not used because it is outside the specified domain scope."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://agrigenius.shop/"", - ""companyDescription"": ""Agrigenius Venture Private Limited is an Indian company incorporated in April 2023, operating in the animal husbandry sector. The company focuses on driving innovation within this industry, contributing to advancements in livestock management and related agricultural practices."", - ""productDescription"": ""The company delivers innovative solutions and services designed to improve efficiency and outcomes in the animal husbandry sector, supporting farmers and industry stakeholders in adopting modern practices for sustainable livestock production."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Producers"", - ""Livestock Managers"", - ""Agribusiness Companies"" - ], - ""sectorDescription"": ""Animal husbandry sector with a specialization in innovative solutions for livestock management and agricultural support."", - ""geographicFocus"": ""Primary operations in India, focused on regional markets in West Bengal and potentially broader Indian agricultural zones."", - ""keyExecutives"": [ - { - ""name"": ""Smitta Kejriwal"", - ""title"": ""Director"", - ""sourceUrl"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"" - }, - { - ""name"": ""Shashi Kant Kanoi"", - ""title"": ""Director"", - ""sourceUrl"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"" - } - ], - ""researcherNotes"": ""The provided domain agrigenius.shop is currently inaccessible, limiting direct company information retrieval. The company has been identified as Agrigenius Venture Private Limited, incorporated in Kolkata, India, in 2023, active in animal husbandry. Key executives and company details were sourced from Indian corporate registry data. Geographic focus is inferred from incorporation location and documented address; client categories and product descriptions are generally aligned with the sector activity. No data found on the inaccessible domain or linked LinkedIn profiles. Confusion with similarly named entities was avoided by focusing on exact corporate registry matching."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"", - ""productDescription"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"", - ""clientCategories"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"", - ""geographicFocus"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"", - ""keyExecutives"": ""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Producers"",""Livestock Managers"",""Agribusiness Companies""],""companyDescription"":""Agrigenius Venture Private Limited is an Indian company incorporated in April 2023, operating in the animal husbandry sector. The company focuses on driving innovation within this industry, contributing to advancements in livestock management and related agricultural practices."",""geographicFocus"":""Primary operations in India, focused on regional markets in West Bengal and potentially broader Indian agricultural zones."",""keyExecutives"":[{""name"":""Smitta Kejriwal"",""sourceUrl"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"",""title"":""Director""},{""name"":""Shashi Kant Kanoi"",""sourceUrl"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"",""title"":""Director""}],""missingImportantFields"":[],""productDescription"":""The company delivers innovative solutions and services designed to improve efficiency and outcomes in the animal husbandry sector, supporting farmers and industry stakeholders in adopting modern practices for sustainable livestock production."",""researcherNotes"":""The provided domain agrigenius.shop is currently inaccessible, limiting direct company information retrieval. The company has been identified as Agrigenius Venture Private Limited, incorporated in Kolkata, India, in 2023, active in animal husbandry. Key executives and company details were sourced from Indian corporate registry data. Geographic focus is inferred from incorporation location and documented address; client categories and product descriptions are generally aligned with the sector activity. No data found on the inaccessible domain or linked LinkedIn profiles. Confusion with similarly named entities was avoided by focusing on exact corporate registry matching."",""sectorDescription"":""Animal husbandry sector with a specialization in innovative solutions for livestock management and agricultural support."",""sources"":{""clientCategories"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"",""companyDescription"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"",""geographicFocus"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"",""keyExecutives"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235"",""productDescription"":""https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235""},""websiteURL"":""https://agrigenius.shop/""}","Correctness: 95% Completeness: 90% The information about Agrigenius Venture Private Limited is largely correct and well-supported by multiple official and secondary sources. The company is confirmed as incorporated on 18 April 2023 in Kolkata, West Bengal, India, with the Corporate Identification Number (CIN) U01271WB2023PTC261235, operating in the animal husbandry sector focused on innovation in livestock management and supporting agricultural stakeholders. Key executives are accurately identified as Directors Smitta Kejriwal (appointed 24 August 2024) and Shashi Kant Kanoi (appointed 18 April 2023)[1][2]. The company’s authorized capital is ₹1.5 million with a paid-up capital of ₹0.10 million, consistent across sources[1][2]. The geographic focus on West Bengal and expansion in the Indian agricultural zones is inferred from the registered office in Kolkata and sector activity. The company website agrigenius.shop is currently inaccessible, which limits direct official confirmation of product descriptions and detailed offerings, slightly reducing completeness[1]. No contradictory data on leadership or incorporation was found, but absence of publicly available funding, precise client categories beyond broad sector terms, or other external profiles leads to minor deductions in completeness[1][2]. Overall, the depiction is accurate and representative of publicly available registration and company database information. Sources: https://www.allindiaitr.com/company/agrigenius-venture-private-limited/U01271WB2023PTC261235, https://www.neusourcestartup.com/companies/agrigenius-venture-private-limited","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The provided domain https://agrigenius.shop/ is inaccessible or non-functional, and no relevant data was extracted from same-domain searches. Information found from other related domains (agrigenius.it) was not used because it is outside the specified domain scope."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://agrigenius.shop/""}" -MYCOPHYTO,https://www.mycophyto.fr,"Bpifrance, Caisse d’Epargne, CDG Invest, CIC Ouest, Créazur, Ey Ventures, Naos, Obsidiane, Olbia Invest, Riviera Realisation, Région Sud Investissement",mycophyto.fr,https://www.linkedin.com/company/mycophyto,"{""seniorLeadership"":[{""fullName"":""Mathilde CLEMENT, PhD"",""title"":""CTO"",""linkedInProfile"":""https://www.linkedin.com/in/mathilde-clement""},{""fullName"":""Daniel Dib"",""title"":""Senior Advisor"",""linkedInProfile"":""https://www.linkedin.com/company/mycophyto""},{""fullName"":""Pierre THOLOZAN"",""title"":""Chief Industrial Officer"",""linkedInProfile"":""https://www.linkedin.com/in/pierre-tholozan-bb3b7b26""},{""fullName"":""Justine Lipuma"",""title"":""CEO"",""linkedInProfile"":""https://www.linkedin.com/in/lipumajustine""}]}","{""seniorLeadership"":[{""fullName"":""Mathilde CLEMENT, PhD"",""title"":""CTO"",""linkedInProfile"":""https://www.linkedin.com/in/mathilde-clement""},{""fullName"":""Daniel Dib"",""title"":""Senior Advisor"",""linkedInProfile"":""https://www.linkedin.com/company/mycophyto""},{""fullName"":""Pierre THOLOZAN"",""title"":""Chief Industrial Officer"",""linkedInProfile"":""https://www.linkedin.com/in/pierre-tholozan-bb3b7b26""},{""fullName"":""Justine Lipuma"",""title"":""CEO"",""linkedInProfile"":""https://www.linkedin.com/in/lipumajustine""}]}","{ - ""websiteURL"": ""https://www.mycophyto.fr"", - ""companyDescription"": ""Mycophyto develops biological solutions for regenerative agriculture, enhancing soil biodiversity through selected mycorrhizal fungi adapted to each terroir and crop. Their mission includes producing more and better with less, positively impacting soil biodiversity, reducing the use of fossil and synthetic inputs, improving production quality, preserving farmer and population health, and making agriculture resilient to climate impacts. Mycophyto is a start-up focused on regenerating soils using mycorrhizal fungi to help farmers produce better with fewer resources. Their core values are balance, nature, engagement, independence, and scientific excellence. The CEO, Justine Lipuma, PhD, is committed to the future of soils and leads a team of over 25 people working on environmental solutions. The company emphasizes innovation and ecology to revolutionize agriculture sustainably."", - ""productDescription"": ""Our solution: biostimulants adapted to your needs with expert support in agroecological transition. Offer includes precise diagnostics (soil and microbiology analysis), creation and application of custom products (mixture of 5 to 20 species of mycorrhizal fungi, adapted formulation), plant treatment, rigorous monitoring (benefit measurement, reporting, recommendations), and an engagement of 1 to 10 hectares at a preferential rate. Demonstrated efficiency: +30% rose yield, +25% tomato yield, +45% vine yield, improved strawberry quality, increased lavender root biomass."", - ""clientCategories"": [""Farmers"", ""Distributors"", ""Cooperatives"", ""Businesses"", ""Public Collectivities"", ""Brands""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in biological solutions that enhance soil biodiversity and promote regenerative agriculture."", - ""geographicFocus"": ""HQ: 45 Boulevard Marcel Pagnol, Parc d'Activités Aroma, 06130 Grasse, France; Sales Focus: Not explicitly stated"", - ""keyExecutives"": [ - { - ""name"": ""Justine Lipuma, PhD"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.mycophyto.fr/a-propos"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit geographic sales regions were identified on the website beyond the headquarters location. No detailed list of founders besides the CEO was found."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.mycophyto.fr"", - ""productDescription"": ""https://www.mycophyto.fr/offre"", - ""clientCategories"": ""https://www.mycophyto.fr/offre"", - ""geographicFocus"": ""https://www.mycophyto.fr/contact"", - ""keyExecutives"": ""https://www.mycophyto.fr/a-propos"" - } -}","{ - ""websiteURL"": ""https://www.mycophyto.fr"", - ""companyDescription"": ""Mycophyto develops biological solutions for regenerative agriculture, enhancing soil biodiversity through selected mycorrhizal fungi adapted to each terroir and crop. Their mission includes producing more and better with less, positively impacting soil biodiversity, reducing the use of fossil and synthetic inputs, improving production quality, preserving farmer and population health, and making agriculture resilient to climate impacts. Mycophyto is a start-up focused on regenerating soils using mycorrhizal fungi to help farmers produce better with fewer resources. Their core values are balance, nature, engagement, independence, and scientific excellence. The CEO, Justine Lipuma, PhD, is committed to the future of soils and leads a team of over 25 people working on environmental solutions. The company emphasizes innovation and ecology to revolutionize agriculture sustainably."", - ""productDescription"": ""Our solution: biostimulants adapted to your needs with expert support in agroecological transition. Offer includes precise diagnostics (soil and microbiology analysis), creation and application of custom products (mixture of 5 to 20 species of mycorrhizal fungi, adapted formulation), plant treatment, rigorous monitoring (benefit measurement, reporting, recommendations), and an engagement of 1 to 10 hectares at a preferential rate. Demonstrated efficiency: +30% rose yield, +25% tomato yield, +45% vine yield, improved strawberry quality, increased lavender root biomass."", - ""clientCategories"": [""Farmers"", ""Distributors"", ""Cooperatives"", ""Businesses"", ""Public Collectivities"", ""Brands""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in biological solutions that enhance soil biodiversity and promote regenerative agriculture."", - ""geographicFocus"": ""HQ: 45 Boulevard Marcel Pagnol, Parc d'Activités Aroma, 06130 Grasse, France; Sales Focus: Not explicitly stated"", - ""keyExecutives"": [ - { - ""name"": ""Justine Lipuma, PhD"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.mycophyto.fr/a-propos"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit geographic sales regions were identified on the website beyond the headquarters location. No detailed list of founders besides the CEO was found."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.mycophyto.fr"", - ""productDescription"": ""https://www.mycophyto.fr/offre"", - ""clientCategories"": ""https://www.mycophyto.fr/offre"", - ""geographicFocus"": ""https://www.mycophyto.fr/contact"", - ""keyExecutives"": ""https://www.mycophyto.fr/a-propos"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.mycophyto.fr"", - ""companyDescription"": ""Mycophyto is a French biotechnology start-up dedicated to regenerative agriculture through the development of biological solutions that enhance soil biodiversity using selected mycorrhizal fungi adapted to specific terroirs and crops. Their mission is to enable farmers to produce more and better with fewer inputs, positively impacting soil biodiversity, reducing fossil and synthetic input usage, improving production quality, preserving health, and enhancing agricultural resilience to climate change. Led by CEO Justine Lipuma, PhD, Mycophyto combines deep scientific expertise with industrial scalability to revolutionize sustainable agriculture."", - ""productDescription"": ""Mycophyto offers customized biostimulant solutions featuring mixtures of 5 to 20 species of mycorrhizal fungi tailored to individual soil and crop needs. Their service includes precise soil and microbiological diagnostics, product creation and application, plant treatment, and rigorous monitoring with benefit measurement, reporting, and recommendations. Demonstrated efficiency includes yield increases of +30% for roses, +25% for tomatoes, +45% for vines, as well as improved quality in strawberries and enhanced lavender root biomass."", - ""clientCategories"": [ - ""Farmers"", - ""Distributors"", - ""Cooperatives"", - ""Businesses"", - ""Public Collectivities"", - ""Brands"" - ], - ""sectorDescription"": ""Biotechnology company specializing in biological solutions that promote regenerative agriculture by enhancing soil biodiversity through mycorrhizal fungi."", - ""geographicFocus"": ""Based in Grasse, France, with operations and research facilities linked to Sophia Antipolis; no explicit international sales regions detailed publicly."", - ""keyExecutives"": [ - { - ""name"": ""Justine Lipuma, PhD"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.mycophyto.fr/a-propos"" - }, - { - ""name"": ""Mathilde CLEMENT, PhD"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.linkedin.com/in/mathilde-clement"" - }, - { - ""name"": ""Pierre THOLOZAN"", - ""title"": ""Chief Industrial Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/pierre-tholozan-bb3b7b26"" - }, - { - ""name"": ""Daniel Dib"", - ""title"": ""Senior Advisor"", - ""sourceUrl"": ""https://www.linkedin.com/company/mycophyto"" - } - ], - ""researcherNotes"": ""The company is verified as Mycophyto based on domain, HQ location in Grasse, France, and key executive identities. While HQ and R&D locations are clarified (Grasse and Sophia Antipolis), no clear external sales or international geographic footprint is disclosed beyond France. The leadership team beyond the CEO was supplemented from LinkedIn profiles, which align with the company website data. No founding year was found explicitly. Geographic sales focus remains unspecified on official sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.mycophyto.fr"", - ""productDescription"": ""https://www.mycophyto.fr/offre"", - ""clientCategories"": ""https://www.mycophyto.fr/offre"", - ""geographicFocus"": ""https://www.mycophyto.fr/contact"", - ""keyExecutives"": ""https://www.mycophyto.fr/a-propos"" - } -}","{""clientCategories"":[""Farmers"",""Distributors"",""Cooperatives"",""Businesses"",""Public Collectivities"",""Brands""],""companyDescription"":""Mycophyto is a French biotechnology start-up dedicated to regenerative agriculture through the development of biological solutions that enhance soil biodiversity using selected mycorrhizal fungi adapted to specific terroirs and crops. Their mission is to enable farmers to produce more and better with fewer inputs, positively impacting soil biodiversity, reducing fossil and synthetic input usage, improving production quality, preserving health, and enhancing agricultural resilience to climate change. Led by CEO Justine Lipuma, PhD, Mycophyto combines deep scientific expertise with industrial scalability to revolutionize sustainable agriculture."",""geographicFocus"":""Based in Grasse, France, with operations and research facilities linked to Sophia Antipolis; no explicit international sales regions detailed publicly."",""keyExecutives"":[{""name"":""Justine Lipuma, PhD"",""sourceUrl"":""https://www.mycophyto.fr/a-propos"",""title"":""CEO""},{""name"":""Mathilde CLEMENT, PhD"",""sourceUrl"":""https://www.linkedin.com/in/mathilde-clement"",""title"":""CTO""},{""name"":""Pierre THOLOZAN"",""sourceUrl"":""https://www.linkedin.com/in/pierre-tholozan-bb3b7b26"",""title"":""Chief Industrial Officer""},{""name"":""Daniel Dib"",""sourceUrl"":""https://www.linkedin.com/company/mycophyto"",""title"":""Senior Advisor""}],""missingImportantFields"":[],""productDescription"":""Mycophyto offers customized biostimulant solutions featuring mixtures of 5 to 20 species of mycorrhizal fungi tailored to individual soil and crop needs. Their service includes precise soil and microbiological diagnostics, product creation and application, plant treatment, and rigorous monitoring with benefit measurement, reporting, and recommendations. Demonstrated efficiency includes yield increases of +30% for roses, +25% for tomatoes, +45% for vines, as well as improved quality in strawberries and enhanced lavender root biomass."",""researcherNotes"":""The company is verified as Mycophyto based on domain, HQ location in Grasse, France, and key executive identities. While HQ and R&D locations are clarified (Grasse and Sophia Antipolis), no clear external sales or international geographic footprint is disclosed beyond France. The leadership team beyond the CEO was supplemented from LinkedIn profiles, which align with the company website data. No founding year was found explicitly. Geographic sales focus remains unspecified on official sources."",""sectorDescription"":""Biotechnology company specializing in biological solutions that promote regenerative agriculture by enhancing soil biodiversity through mycorrhizal fungi."",""sources"":{""clientCategories"":""https://www.mycophyto.fr/offre"",""companyDescription"":""https://www.mycophyto.fr"",""geographicFocus"":""https://www.mycophyto.fr/contact"",""keyExecutives"":""https://www.mycophyto.fr/a-propos"",""productDescription"":""https://www.mycophyto.fr/offre""},""websiteURL"":""https://www.mycophyto.fr""}","Correctness: 95% Completeness: 90% The provided data about Mycophyto is largely accurate and aligns well with multiple authoritative sources. The company's core identity as a French biotechnology start-up focused on regenerative agriculture via mycorrhizal fungi is well supported by the official Mycophyto website and secondary regional sources (https://www.mycophyto.fr/en/a-propos, https://www.sophia-antipolis.fr/en/2022/07/15/mycophyto/). Key executives, including Justine Lipuma, PhD, as CEO and Pierre Tholozan as CIO, are confirmed on the official site with recent role updates as of 2023 (https://www.mycophyto.fr/en/a-propos). The description of their biological solutions and demonstrated benefits (such as yield improvements) matches the company’s claims and focus on enhancing soil biodiversity (https://www.mycophyto.fr/en). Mycophyto’s headquarters and R&D presence in Grasse and Sophia Antipolis are consistent across sources (https://www.sophia-antipolis.fr/en/2022/07/15/mycophyto/). The founding details, while not initially listed in the query, are established to be 2017 by Justine Lipuma and Christine Poncet according to press reports (https://news.agropages.com/News/NewsDetail---45493.htm). Minor completeness reduction stems from the lack of explicit transparency about international sales or client geographies beyond France and no mention of funding amounts except through indirect sources. Overall, the combined sources confirm the majority of key facts with a high degree of reliability.","{""clientCategories"":[""Farmers"",""Distributors"",""Cooperatives"",""Businesses"",""Public Collectivities"",""Brands""],""companyDescription"":""Mycophyto develops biological solutions for regenerative agriculture, enhancing soil biodiversity through selected mycorrhizal fungi adapted to each terroir and crop. Their mission includes producing more and better with less, positively impacting soil biodiversity, reducing the use of fossil and synthetic inputs, improving production quality, preserving farmer and population health, and making agriculture resilient to climate impacts. Mycophyto is a start-up focused on regenerating soils using mycorrhizal fungi to help farmers produce better with fewer resources. Their core values are balance, nature, engagement, independence, and scientific excellence. The CEO, Justine Lipuma, PhD, is committed to the future of soils and leads a team of over 25 people working on environmental solutions. The company emphasizes innovation and ecology to revolutionize agriculture sustainably."",""geographicFocus"":""HQ: 45 Boulevard Marcel Pagnol, Parc d'Activités Aroma, 06130 Grasse, France; Sales Focus: Not explicitly stated"",""keyExecutives"":[{""name"":""Justine Lipuma, PhD"",""sourceUrl"":""https://www.mycophyto.fr/a-propos"",""title"":""CEO""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Our solution: biostimulants adapted to your needs with expert support in agroecological transition. Offer includes precise diagnostics (soil and microbiology analysis), creation and application of custom products (mixture of 5 to 20 species of mycorrhizal fungi, adapted formulation), plant treatment, rigorous monitoring (benefit measurement, reporting, recommendations), and an engagement of 1 to 10 hectares at a preferential rate. Demonstrated efficiency: +30% rose yield, +25% tomato yield, +45% vine yield, improved strawberry quality, increased lavender root biomass."",""researcherNotes"":""No explicit geographic sales regions were identified on the website beyond the headquarters location. No detailed list of founders besides the CEO was found."",""sectorDescription"":""Operates in the agricultural biotechnology sector, specializing in biological solutions that enhance soil biodiversity and promote regenerative agriculture."",""sources"":{""clientCategories"":""https://www.mycophyto.fr/offre"",""companyDescription"":""https://www.mycophyto.fr"",""geographicFocus"":""https://www.mycophyto.fr/contact"",""keyExecutives"":""https://www.mycophyto.fr/a-propos"",""productDescription"":""https://www.mycophyto.fr/offre""},""websiteURL"":""https://www.mycophyto.fr""}" -MoA Technology,http://www.moa-technology.com/,"Bits x Bites, Business Growth Fund, IP Group, Lansdowne Partners, Oxford Science Enterprises, Parkwalk Advisors",moa-technology.com,https://www.linkedin.com/company/moa-technology,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.moa-technology.com/"", - ""companyDescription"": ""moa Technology is a UK-based company focused on discovering a new generation of safe and effective herbicides to support global farmers in producing high-quality food. It uses plant-led platforms and a unique, systematic, empirical search system for identifying herbicides with novel modes of action (MOAs). The company employs a team of scientists, technicians, and operational staff, led by CEO Virginia Corless, with headquarters at the Oxford Science Park and operations at the Stockbridge Technology Centre in Yorkshire."", - ""productDescription"": ""moa Technology develops new herbicides via plant-led screening platforms that identify compounds with novel modes of action faster than industry standards, focusing on both biological and synthetic herbicides to create safe, effective, and affordable crop protection solutions."", - ""clientCategories"": [""Farmers globally needing effective herbicides to combat resistant weeds and improve crop yields""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector specializing in the discovery and development of novel small molecule and biological herbicides."", - ""geographicFocus"": ""HQ: Oxford Science Park, Oxford, UK; Sales Focus: Global farmers worldwide through international field trials and partnerships."", - ""keyExecutives"": [ - {""name"": ""Virginia Corless"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.weforum.org/organizations/moa-technology/""}, - {""name"": ""Professor Liam Dolan"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/""}, - {""name"": ""Dr Clement Champion"", ""title"": ""Co-founder and Scientific Advisor"", ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/""}, - {""name"": ""Hartmut van Lengerich"", ""title"": ""Chairperson"", ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weforum.org/organizations/moa-technology/"", - ""productDescription"": ""https://www.weforum.org/organizations/moa-technology/"", - ""clientCategories"": ""https://www.weforum.org/organizations/moa-technology/"", - ""geographicFocus"": ""https://www.bioindustry.org/member/moa-technology-ltd/"", - ""keyExecutives"": ""https://www.bioindustry.org/member/moa-technology-ltd/"" - } -}","{ - ""websiteURL"": ""http://www.moa-technology.com/"", - ""companyDescription"": ""moa Technology is a UK-based company focused on discovering a new generation of safe and effective herbicides to support global farmers in producing high-quality food. It uses plant-led platforms and a unique, systematic, empirical search system for identifying herbicides with novel modes of action (MOAs). The company employs a team of scientists, technicians, and operational staff, led by CEO Virginia Corless, with headquarters at the Oxford Science Park and operations at the Stockbridge Technology Centre in Yorkshire."", - ""productDescription"": ""moa Technology develops new herbicides via plant-led screening platforms that identify compounds with novel modes of action faster than industry standards, focusing on both biological and synthetic herbicides to create safe, effective, and affordable crop protection solutions."", - ""clientCategories"": [""Farmers globally needing effective herbicides to combat resistant weeds and improve crop yields""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector specializing in the discovery and development of novel small molecule and biological herbicides."", - ""geographicFocus"": ""HQ: Oxford Science Park, Oxford, UK; Sales Focus: Global farmers worldwide through international field trials and partnerships."", - ""keyExecutives"": [ - {""name"": ""Virginia Corless"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.weforum.org/organizations/moa-technology/""}, - {""name"": ""Professor Liam Dolan"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/""}, - {""name"": ""Dr Clement Champion"", ""title"": ""Co-founder and Scientific Advisor"", ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/""}, - {""name"": ""Hartmut van Lengerich"", ""title"": ""Chairperson"", ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weforum.org/organizations/moa-technology/"", - ""productDescription"": ""https://www.weforum.org/organizations/moa-technology/"", - ""clientCategories"": ""https://www.weforum.org/organizations/moa-technology/"", - ""geographicFocus"": ""https://www.bioindustry.org/member/moa-technology-ltd/"", - ""keyExecutives"": ""https://www.bioindustry.org/member/moa-technology-ltd/"" - } -}",[],"{ - ""websiteURL"": ""https://www.moa-technology.com"", - ""companyDescription"": ""moa Technology is a UK-based agricultural biotechnology company dedicated to discovering a new generation of safe and effective herbicides to help farmers worldwide produce high-quality food. It employs a unique plant-led platform using proprietary technology and AI to identify herbicides with novel modes of action, screening compounds faster than industry standards. Headquartered at Oxford Science Park with operations at Stockbridge Technology Centre, moa Technology addresses herbicide resistance challenges while promoting environmental sustainability."", - ""productDescription"": ""moa Technology develops both synthetic and biological herbicides utilizing proprietary plant-led screening platforms that identify novel modes of action faster than conventional methods. Its products include new herbicidal chemistries and innovative amplifier molecules that enhance the efficacy of existing herbicides, enabling reduced chemical usage. These solutions aim to provide farmers globally with safe, affordable, and environmentally sustainable crop protection, validated through extensive international field trials."", - ""clientCategories"": [ - ""Farmers Globally"", - ""Agricultural Biotechnology Partners"", - ""Crop Protection Distributors"", - ""Agritech Investors"" - ], - ""sectorDescription"": ""Agricultural biotechnology specializing in the discovery and development of novel small molecule and biological herbicides with new modes of action."", - ""geographicFocus"": ""Headquartered in Oxford, UK with global sales and field trials conducted across North America, Europe, Australia, South America, and other farming regions."", - ""keyExecutives"": [ - { - ""name"": ""Virginia Corless"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.weforum.org/organizations/moa-technology/"" - }, - { - ""name"": ""Professor Liam Dolan"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/"" - }, - { - ""name"": ""Dr Clement Champion"", - ""title"": ""Co-founder and Scientific Advisor"", - ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/"" - }, - { - ""name"": ""Hartmut van Lengerich"", - ""title"": ""Chairperson"", - ""sourceUrl"": ""https://www.bioindustry.org/member/moa-technology-ltd/"" - } - ], - ""researcherNotes"": ""The entity was confirmed as moa Technology Ltd based on domain alignment (moa-technology.com), headquarters in Oxford, UK, unique focus on herbicide discovery, and founding origin at Oxford University in 2017. Geographic reach is global per multiple sources citing field trials and partnerships internationally. The company’s key executives and co-founders were corroborated from both bioindustry.org and weforum.org sources. The client categories and product descriptions were supplemented from recent announcements and the company website. No conflicting information found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.weforum.org/organizations/moa-technology/"", - ""productDescription"": ""https://www.moa-technology.com"", - ""clientCategories"": ""https://www.weforum.org/organizations/moa-technology/"", - ""geographicFocus"": ""https://www.bioindustry.org/member/moa-technology-ltd/"", - ""keyExecutives"": ""https://www.bioindustry.org/member/moa-technology-ltd/"" - } -}","{""clientCategories"":[""Farmers Globally"",""Agricultural Biotechnology Partners"",""Crop Protection Distributors"",""Agritech Investors""],""companyDescription"":""moa Technology is a UK-based agricultural biotechnology company dedicated to discovering a new generation of safe and effective herbicides to help farmers worldwide produce high-quality food. It employs a unique plant-led platform using proprietary technology and AI to identify herbicides with novel modes of action, screening compounds faster than industry standards. Headquartered at Oxford Science Park with operations at Stockbridge Technology Centre, moa Technology addresses herbicide resistance challenges while promoting environmental sustainability."",""geographicFocus"":""Headquartered in Oxford, UK with global sales and field trials conducted across North America, Europe, Australia, South America, and other farming regions."",""keyExecutives"":[{""name"":""Virginia Corless"",""sourceUrl"":""https://www.weforum.org/organizations/moa-technology/"",""title"":""CEO""},{""name"":""Professor Liam Dolan"",""sourceUrl"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""title"":""Co-founder""},{""name"":""Dr Clement Champion"",""sourceUrl"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""title"":""Co-founder and Scientific Advisor""},{""name"":""Hartmut van Lengerich"",""sourceUrl"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""title"":""Chairperson""}],""missingImportantFields"":[],""productDescription"":""moa Technology develops both synthetic and biological herbicides utilizing proprietary plant-led screening platforms that identify novel modes of action faster than conventional methods. Its products include new herbicidal chemistries and innovative amplifier molecules that enhance the efficacy of existing herbicides, enabling reduced chemical usage. These solutions aim to provide farmers globally with safe, affordable, and environmentally sustainable crop protection, validated through extensive international field trials."",""researcherNotes"":""The entity was confirmed as moa Technology Ltd based on domain alignment (moa-technology.com), headquarters in Oxford, UK, unique focus on herbicide discovery, and founding origin at Oxford University in 2017. Geographic reach is global per multiple sources citing field trials and partnerships internationally. The company’s key executives and co-founders were corroborated from both bioindustry.org and weforum.org sources. The client categories and product descriptions were supplemented from recent announcements and the company website. No conflicting information found."",""sectorDescription"":""Agricultural biotechnology specializing in the discovery and development of novel small molecule and biological herbicides with new modes of action."",""sources"":{""clientCategories"":""https://www.weforum.org/organizations/moa-technology/"",""companyDescription"":""https://www.weforum.org/organizations/moa-technology/"",""geographicFocus"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""keyExecutives"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""productDescription"":""https://www.moa-technology.com""},""websiteURL"":""https://www.moa-technology.com""}","Correctness: 98% Completeness: 95% The factual claims about moa Technology are highly accurate and well-supported by multiple credible sources. The company is confirmed as a UK-based agricultural biotechnology firm focused on discovering novel herbicides with new modes of action, spun out of Oxford University in 2017, headquartered at Oxford Science Park with operations at Stockbridge Technology Centre in Yorkshire[1][2][3]. The leadership team, including CEO Virginia Corless and co-founders Professor Liam Dolan and Dr Clement Champion, is consistently identified across bioindustry.org and weforum.org[1][2]. moa Technology’s proprietary plant-led platforms use AI and high-throughput screening to identify both synthetic and biological herbicides with novel modes of action faster than industry standards, addressing herbicide resistance and promoting sustainability[2][4][5]. Its global footprint is corroborated by ongoing field trials and partnerships across North America, Europe, Australia, South America, and other regions, supported by multiple international field trials and collaborations like the NAICONS biological partnership[1][4][5]. The product descriptions include new herbicidal chemistries and amplifier molecules designed to reduce chemical usage while enhancing efficacy, backed by extensive lab and field trial data[4][5]. The only small deduction in correctness arises from the minor absence of explicit, latest funding figures or detailed investor names beyond broad group mentions, though key investors are noted in the bioindustry profile[1]. Completeness is slightly reduced due to lack of explicit recent funding round detail or very latest field trial outcome data, which might be publicly available but were not presented in the included sources. Overall, the data is robust, contemporaneous as of at least 2025, and clearly sourced. Primary sources include the official company site and respected industry and bioscience platforms: https://www.moa-technology.com, https://www.bioindustry.org/member/moa-technology-ltd/, https://www.weforum.org/organizations/moa-technology/, and a recent partnership news release https://www.bioescalator.ox.ac.uk/news-and-events/news/moa-technology-forms-new-biological-partnership-with-naicons.","{""clientCategories"":[""Farmers globally needing effective herbicides to combat resistant weeds and improve crop yields""],""companyDescription"":""moa Technology is a UK-based company focused on discovering a new generation of safe and effective herbicides to support global farmers in producing high-quality food. It uses plant-led platforms and a unique, systematic, empirical search system for identifying herbicides with novel modes of action (MOAs). The company employs a team of scientists, technicians, and operational staff, led by CEO Virginia Corless, with headquarters at the Oxford Science Park and operations at the Stockbridge Technology Centre in Yorkshire."",""geographicFocus"":""HQ: Oxford Science Park, Oxford, UK; Sales Focus: Global farmers worldwide through international field trials and partnerships."",""keyExecutives"":[{""name"":""Virginia Corless"",""sourceUrl"":""https://www.weforum.org/organizations/moa-technology/"",""title"":""CEO""},{""name"":""Professor Liam Dolan"",""sourceUrl"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""title"":""Co-founder""},{""name"":""Dr Clement Champion"",""sourceUrl"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""title"":""Co-founder and Scientific Advisor""},{""name"":""Hartmut van Lengerich"",""sourceUrl"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""title"":""Chairperson""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""moa Technology develops new herbicides via plant-led screening platforms that identify compounds with novel modes of action faster than industry standards, focusing on both biological and synthetic herbicides to create safe, effective, and affordable crop protection solutions."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural biotechnology sector specializing in the discovery and development of novel small molecule and biological herbicides."",""sources"":{""clientCategories"":""https://www.weforum.org/organizations/moa-technology/"",""companyDescription"":""https://www.weforum.org/organizations/moa-technology/"",""geographicFocus"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""keyExecutives"":""https://www.bioindustry.org/member/moa-technology-ltd/"",""productDescription"":""https://www.weforum.org/organizations/moa-technology/""},""websiteURL"":""http://www.moa-technology.com/""}" -Urbanika Farms,https://www.urbanikafarms.com/,"Back in Black, LT Capital",urbanikafarms.com,https://www.linkedin.com/company/urbanika-farms,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.urbanikafarms.com/"", - ""companyDescription"": ""Jesteśmy polskim producentem jadalnych grzybów egzotycznych i funkcjonalnych, oferującym produkty z kategorii superfood. Wierzymy, że możemy dostarczać naszym klientom pełnowartościowe, zdrowe i świeże grzyby korzystając w pełni z możliwości, jakie daje nam rozwój technologiczny. Jesteśmy dumni z rezultatów naszej pracy, które osiągamy dzięki pasji i zaangażowaniu naszego zespołu. Grzyby, które uprawiamy są nie tylko doskonałe pod względem smaku czy jakości, ale także niosą ze sobą liczne korzyści zdrowotne."", - ""productDescription"": ""We produce unique, locally-grown microgreens, baby leaf and herbs of organic-like quality, clean of pesticides, fresh and nutritious. Our current portfolio includes: Nasturtium Blue Pepe (steel blue leaves with purplish undersides, peppery taste), Pak Choi Red Wizard (dark red baby leaf, crunchy texture, mild sweet flavor with mustard hint, can be used raw or cooked), Coriander Microgreens (elongated leaves, sweet bright aroma, stronger taste than mature coriander, slightly peppery), Red Cabbage (dark red stems, dark-green leaves with purple margins, mild cabbagy taste), Mustard Red Lace (typical mild mustard or wasabi flavor), Radish Rioja (peppery radish flavor, good for salads, cold soups, garnish), Chives (delicate taste, visually like miniature chives), Radish Sangria (colorful, spicy, light, refreshing), Greek Cress (piquant, peppery flavor, related to mustard and watercress), Leaf Beet Bulls Blood (intense red color, slightly earthy flavor), Green Broccoli (long stems, dark green heart-shaped leaves, mild fresh cabbage flavor)."", - ""clientCategories"": [ - ""HoReCa (Hotels, Restaurants, and Catering)"" - ], - ""sectorDescription"": ""Polish producer Urbanika Farms specializes in cultivating culinary, functional, and exotic mushrooms and microgreens in controlled environments."", - ""geographicFocus"": ""HQ: ul. Krakowiaków 26, 32-060 Kryspinów, Poland; Sales Focus: Primarily Poland and Europe"", - ""keyExecutives"": [ - { - ""name"": ""Michael Kotow"", - ""title"": ""Founding partner"", - ""sourceUrl"": ""https://urbanikafarms.com/team"" - }, - { - ""name"": ""Maxim Telish"", - ""title"": ""Founding partner"", - ""sourceUrl"": ""https://urbanikafarms.com/team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://urbanikafarms.com/o-firmie/"", - ""productDescription"": ""https://urbanikafarms.com/our-microgreens/"", - ""clientCategories"": ""https://urbanikafarms.com/horeca-3"", - ""geographicFocus"": ""https://urbanikafarms.com/kontakt/"", - ""keyExecutives"": ""https://urbanikafarms.com/team"" - } -}","{ - ""websiteURL"": ""https://www.urbanikafarms.com/"", - ""companyDescription"": ""Jesteśmy polskim producentem jadalnych grzybów egzotycznych i funkcjonalnych, oferującym produkty z kategorii superfood. Wierzymy, że możemy dostarczać naszym klientom pełnowartościowe, zdrowe i świeże grzyby korzystając w pełni z możliwości, jakie daje nam rozwój technologiczny. Jesteśmy dumni z rezultatów naszej pracy, które osiągamy dzięki pasji i zaangażowaniu naszego zespołu. Grzyby, które uprawiamy są nie tylko doskonałe pod względem smaku czy jakości, ale także niosą ze sobą liczne korzyści zdrowotne."", - ""productDescription"": ""We produce unique, locally-grown microgreens, baby leaf and herbs of organic-like quality, clean of pesticides, fresh and nutritious. Our current portfolio includes: Nasturtium Blue Pepe (steel blue leaves with purplish undersides, peppery taste), Pak Choi Red Wizard (dark red baby leaf, crunchy texture, mild sweet flavor with mustard hint, can be used raw or cooked), Coriander Microgreens (elongated leaves, sweet bright aroma, stronger taste than mature coriander, slightly peppery), Red Cabbage (dark red stems, dark-green leaves with purple margins, mild cabbagy taste), Mustard Red Lace (typical mild mustard or wasabi flavor), Radish Rioja (peppery radish flavor, good for salads, cold soups, garnish), Chives (delicate taste, visually like miniature chives), Radish Sangria (colorful, spicy, light, refreshing), Greek Cress (piquant, peppery flavor, related to mustard and watercress), Leaf Beet Bulls Blood (intense red color, slightly earthy flavor), Green Broccoli (long stems, dark green heart-shaped leaves, mild fresh cabbage flavor)."", - ""clientCategories"": [ - ""HoReCa (Hotels, Restaurants, and Catering)"" - ], - ""sectorDescription"": ""Polish producer Urbanika Farms specializes in cultivating culinary, functional, and exotic mushrooms and microgreens in controlled environments."", - ""geographicFocus"": ""HQ: ul. Krakowiaków 26, 32-060 Kryspinów, Poland; Sales Focus: Primarily Poland and Europe"", - ""keyExecutives"": [ - { - ""name"": ""Michael Kotow"", - ""title"": ""Founding partner"", - ""sourceUrl"": ""https://urbanikafarms.com/team"" - }, - { - ""name"": ""Maxim Telish"", - ""title"": ""Founding partner"", - ""sourceUrl"": ""https://urbanikafarms.com/team"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://urbanikafarms.com/o-firmie/"", - ""productDescription"": ""https://urbanikafarms.com/our-microgreens/"", - ""clientCategories"": ""https://urbanikafarms.com/horeca-3"", - ""geographicFocus"": ""https://urbanikafarms.com/kontakt/"", - ""keyExecutives"": ""https://urbanikafarms.com/team"" - } -}",[],"{ - ""websiteURL"": ""https://www.urbanikafarms.com"", - ""companyDescription"": ""Urbanika Farms is a Polish producer specializing in the cultivation of culinary, functional, and exotic edible mushrooms as well as microgreens grown in controlled environments. The company leverages technological advancements to deliver fresh, healthy, and high-quality mushrooms and microgreens that provide numerous health benefits. Their team is driven by passion and commitment to excellence in taste and nutritional value, serving customers primarily in the HoReCa sector."", - ""productDescription"": ""Urbanika Farms produces unique, locally-grown microgreens, baby leaf vegetables, and herbs of organic-like quality that are clean of pesticides, fresh, and nutritious. Their portfolio includes diverse microgreens such as Nasturtium Blue Pepe, Pak Choi Red Wizard, Coriander Microgreens, Red Cabbage, Mustard Red Lace, and more, each offering distinctive flavors and culinary uses. Mushrooms are cultivated indoors on hardwood sawdust substrates ensuring natural, chemical-free growth."", - ""clientCategories"": [ - ""HoReCa (Hotels, Restaurants, and Catering)"" - ], - ""sectorDescription"": ""Polish producer Urbanika Farms specializes in cultivating culinary, functional, and exotic mushrooms and microgreens in controlled environment agriculture."", - ""geographicFocus"": ""Headquartered in Kryspinów, Poland, Urbanika Farms primarily serves the Polish and broader European markets."", - ""keyExecutives"": [ - { - ""name"": ""Michael Kotow"", - ""title"": ""Founding partner"", - ""sourceUrl"": ""https://urbanikafarms.com/team"" - }, - { - ""name"": ""Maxim Telish"", - ""title"": ""Founding partner"", - ""sourceUrl"": ""https://urbanikafarms.com/team"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain matching and HQ location in Kryspinów, Poland. No senior leadership beyond founding partners found on LinkedIn or external sources. Geographic focus clarified from company site contact and about pages. No conflicting data identified."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://urbanikafarms.com/en/about-us/"", - ""productDescription"": ""https://urbanikafarms.com/our-microgreens/"", - ""clientCategories"": ""https://urbanikafarms.com/horeca-3"", - ""geographicFocus"": ""https://urbanikafarms.com/kontakt/"", - ""keyExecutives"": ""https://urbanikafarms.com/team"" - } -}","{""clientCategories"":[""HoReCa (Hotels, Restaurants, and Catering)""],""companyDescription"":""Urbanika Farms is a Polish producer specializing in the cultivation of culinary, functional, and exotic edible mushrooms as well as microgreens grown in controlled environments. The company leverages technological advancements to deliver fresh, healthy, and high-quality mushrooms and microgreens that provide numerous health benefits. Their team is driven by passion and commitment to excellence in taste and nutritional value, serving customers primarily in the HoReCa sector."",""geographicFocus"":""Headquartered in Kryspinów, Poland, Urbanika Farms primarily serves the Polish and broader European markets."",""keyExecutives"":[{""name"":""Michael Kotow"",""sourceUrl"":""https://urbanikafarms.com/team"",""title"":""Founding partner""},{""name"":""Maxim Telish"",""sourceUrl"":""https://urbanikafarms.com/team"",""title"":""Founding partner""}],""missingImportantFields"":[],""productDescription"":""Urbanika Farms produces unique, locally-grown microgreens, baby leaf vegetables, and herbs of organic-like quality that are clean of pesticides, fresh, and nutritious. Their portfolio includes diverse microgreens such as Nasturtium Blue Pepe, Pak Choi Red Wizard, Coriander Microgreens, Red Cabbage, Mustard Red Lace, and more, each offering distinctive flavors and culinary uses. Mushrooms are cultivated indoors on hardwood sawdust substrates ensuring natural, chemical-free growth."",""researcherNotes"":""Company identity confirmed by domain matching and HQ location in Kryspinów, Poland. No senior leadership beyond founding partners found on LinkedIn or external sources. Geographic focus clarified from company site contact and about pages. No conflicting data identified."",""sectorDescription"":""Polish producer Urbanika Farms specializes in cultivating culinary, functional, and exotic mushrooms and microgreens in controlled environment agriculture."",""sources"":{""clientCategories"":""https://urbanikafarms.com/horeca-3"",""companyDescription"":""https://urbanikafarms.com/en/about-us/"",""geographicFocus"":""https://urbanikafarms.com/kontakt/"",""keyExecutives"":""https://urbanikafarms.com/team"",""productDescription"":""https://urbanikafarms.com/our-microgreens/""},""websiteURL"":""https://www.urbanikafarms.com""}","Correctness: 100% Completeness: 95% Urbanika Farms is accurately described as a Polish producer specializing in culinary, functional, and exotic mushrooms and microgreens grown in controlled environments, with cultivation on hardwood sawdust substrates to ensure natural growth free from chemicals[1][4]. The leadership information naming founding partners Michael Kotow and Maxim Telish is confirmed on their official team page as of 2025-09-11[https://urbanikafarms.com/team]. The company’s headquarters in Kryspinów, Poland, and its primary market focus in Poland and broader Europe are consistent with the contact and about pages[https://urbanikafarms.com/kontakt/][https://urbanikafarms.com/en/about-us/]. Their product descriptions, including diverse microgreens (e.g., Nasturtium Blue Pepe, Pak Choi Red Wizard) and a portfolio of mushrooms such as Shiitake, Lion’s Mane, Oyster, Reishi, and others, align with their official product pages[https://urbanikafarms.com/our-microgreens/][https://urbanikafarms.com/en/mushrooms/]. No conflicting or outdated information was found. The only slight gap for completeness is the absence of wider public disclosure about any other senior executives beyond the founding partners, which is typical for smaller producers but worth noting. Overall, the information is well-supported, current, and comprehensive regarding Urbanika Farms’ identity, leadership, offerings, and market focus.","{""clientCategories"":[""HoReCa (Hotels, Restaurants, and Catering)""],""companyDescription"":""Jesteśmy polskim producentem jadalnych grzybów egzotycznych i funkcjonalnych, oferującym produkty z kategorii superfood. Wierzymy, że możemy dostarczać naszym klientom pełnowartościowe, zdrowe i świeże grzyby korzystając w pełni z możliwości, jakie daje nam rozwój technologiczny. Jesteśmy dumni z rezultatów naszej pracy, które osiągamy dzięki pasji i zaangażowaniu naszego zespołu. Grzyby, które uprawiamy są nie tylko doskonałe pod względem smaku czy jakości, ale także niosą ze sobą liczne korzyści zdrowotne."",""geographicFocus"":""HQ: ul. Krakowiaków 26, 32-060 Kryspinów, Poland; Sales Focus: Primarily Poland and Europe"",""keyExecutives"":[{""name"":""Michael Kotow"",""sourceUrl"":""https://urbanikafarms.com/team"",""title"":""Founding partner""},{""name"":""Maxim Telish"",""sourceUrl"":""https://urbanikafarms.com/team"",""title"":""Founding partner""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""We produce unique, locally-grown microgreens, baby leaf and herbs of organic-like quality, clean of pesticides, fresh and nutritious. Our current portfolio includes: Nasturtium Blue Pepe (steel blue leaves with purplish undersides, peppery taste), Pak Choi Red Wizard (dark red baby leaf, crunchy texture, mild sweet flavor with mustard hint, can be used raw or cooked), Coriander Microgreens (elongated leaves, sweet bright aroma, stronger taste than mature coriander, slightly peppery), Red Cabbage (dark red stems, dark-green leaves with purple margins, mild cabbagy taste), Mustard Red Lace (typical mild mustard or wasabi flavor), Radish Rioja (peppery radish flavor, good for salads, cold soups, garnish), Chives (delicate taste, visually like miniature chives), Radish Sangria (colorful, spicy, light, refreshing), Greek Cress (piquant, peppery flavor, related to mustard and watercress), Leaf Beet Bulls Blood (intense red color, slightly earthy flavor), Green Broccoli (long stems, dark green heart-shaped leaves, mild fresh cabbage flavor)."",""researcherNotes"":null,""sectorDescription"":""Polish producer Urbanika Farms specializes in cultivating culinary, functional, and exotic mushrooms and microgreens in controlled environments."",""sources"":{""clientCategories"":""https://urbanikafarms.com/horeca-3"",""companyDescription"":""https://urbanikafarms.com/o-firmie/"",""geographicFocus"":""https://urbanikafarms.com/kontakt/"",""keyExecutives"":""https://urbanikafarms.com/team"",""productDescription"":""https://urbanikafarms.com/our-microgreens/""},""websiteURL"":""https://www.urbanikafarms.com/""}" -Rodenburg Biopolymers,http://www.biopolymers.nl/,"BOM, Navus Ventures, StartGreen Capital",biopolymers.nl,https://nl.linkedin.com/company/rodenburg-biopolymers,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.biopolymers.nl/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website http://www.biopolymers.nl/ and its subpages are not providing accessible content to extract the required information. No textual data or linked documents were found during the visit attempts."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.biopolymers.nl/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website http://www.biopolymers.nl/ and its subpages are not providing accessible content to extract the required information. No textual data or linked documents were found during the visit attempts."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.biopolymers.nl"", - ""companyDescription"": ""Rodenburg Biopolymers develops and produces biobased biodegradable compounds primarily based on second generation potato starch. Founded in 1945, the company transforms waste streams from the potato processing industry into sustainable bioplastic materials, partnering across the entire product chain with industries seeking environmentally friendly alternatives to petroleum-based plastics. Their operations include advanced R&D and large-scale production facilities located in Oosterhout, The Netherlands."", - ""productDescription"": ""Rodenburg Biopolymers offers a range of biobased, biodegradable polymers such as full compounds, pre-compounds, and masterbatches tailored for various manufacturing processes. Their products, including Solanyl, FlourPlast, and Optinyl, serve as sustainable alternatives to fossil fuel plastics by valorizing side streams from the potato industry. They provide co-creation and technical assistance throughout production to consumption and disposal, enabling clients to achieve scalable and environmentally impactful solutions."", - ""clientCategories"": [ - ""Plastic Manufacturers"", - ""Packaging Companies"", - ""Bioplastic Innovators"", - ""Agricultural Processors"", - ""Sustainable Product Developers"" - ], - ""sectorDescription"": ""Biopolymers industry focused on biobased and biodegradable starch-based compounds derived from potato industry waste streams."", - ""geographicFocus"": ""Based in The Netherlands, Rodenburg Biopolymers services primarily European markets with its sustainable bioplastic solutions."", - ""keyExecutives"": [], - ""researcherNotes"": ""The company is confirmed as Rodenburg Biopolymers based on the domain biopolymers.nl, physical location in Oosterhout, Netherlands, founding year 1945, and specialty in starch-based bioplastics. Multiple sources including the company website and Dealroom corroborate this. Detailed executive information was not found on the official site or LinkedIn. Geographic focus is inferred from headquarters location and transport connectivity but not explicitly stated."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://biopolymers.nl/about/"", - ""productDescription"": ""https://biopolymers.nl"", - ""clientCategories"": ""https://biopolymers.nl"", - ""geographicFocus"": ""https://biopolymers.nl/about/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Plastic Manufacturers"",""Packaging Companies"",""Bioplastic Innovators"",""Agricultural Processors"",""Sustainable Product Developers""],""companyDescription"":""Rodenburg Biopolymers develops and produces biobased biodegradable compounds primarily based on second generation potato starch. Founded in 1945, the company transforms waste streams from the potato processing industry into sustainable bioplastic materials, partnering across the entire product chain with industries seeking environmentally friendly alternatives to petroleum-based plastics. Their operations include advanced R&D and large-scale production facilities located in Oosterhout, The Netherlands."",""geographicFocus"":""Based in The Netherlands, Rodenburg Biopolymers services primarily European markets with its sustainable bioplastic solutions."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Rodenburg Biopolymers offers a range of biobased, biodegradable polymers such as full compounds, pre-compounds, and masterbatches tailored for various manufacturing processes. Their products, including Solanyl, FlourPlast, and Optinyl, serve as sustainable alternatives to fossil fuel plastics by valorizing side streams from the potato industry. They provide co-creation and technical assistance throughout production to consumption and disposal, enabling clients to achieve scalable and environmentally impactful solutions."",""researcherNotes"":""The company is confirmed as Rodenburg Biopolymers based on the domain biopolymers.nl, physical location in Oosterhout, Netherlands, founding year 1945, and specialty in starch-based bioplastics. Multiple sources including the company website and Dealroom corroborate this. Detailed executive information was not found on the official site or LinkedIn. Geographic focus is inferred from headquarters location and transport connectivity but not explicitly stated."",""sectorDescription"":""Biopolymers industry focused on biobased and biodegradable starch-based compounds derived from potato industry waste streams."",""sources"":{""clientCategories"":""https://biopolymers.nl"",""companyDescription"":""https://biopolymers.nl/about/"",""geographicFocus"":""https://biopolymers.nl/about/"",""keyExecutives"":null,""productDescription"":""https://biopolymers.nl""},""websiteURL"":""https://www.biopolymers.nl""}","Correctness: 98% Completeness: 90% The key factual claims about Rodenburg Biopolymers are accurate and well supported by multiple authoritative sources, especially the company’s own website and industry profiles. Rodenburg was indeed founded in 1945, is headquartered in Oosterhout, The Netherlands, and produces biobased biodegradable compounds primarily using second generation potato starch derived from potato processing waste streams[2][4][6]. Their products include Solanyl, FlourPlast, and Optinyl, which serve as sustainable alternatives to fossil fuel based plastics and are suitable for common manufacturing processes[4]. The company’s strong focus on sustainability, R&D, large-scale production capacity (over 60,000 MT annually), and strategic European market orientation close to major ports are also confirmed[2][3]. The main gap reducing completeness slightly is the lack of publicly available information on key executives despite searches on official and LinkedIn sources, as noted. Overall, the description aligns closely with official data from Rodenburg Biopolymers’ website and corroborated industry summaries, with no significant contradictory or missing core claims for a company profile[2][4][6][1]. URLs: https://biopolymers.nl/about/, https://biopolymers.nl, https://www.knowde.com/stores/rodenburg-biopolymers, https://www.bccresearch.com/company-index/profile/rodenburg-biopolymers","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website http://www.biopolymers.nl/ and its subpages are not providing accessible content to extract the required information. No textual data or linked documents were found during the visit attempts."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://www.biopolymers.nl/""}" -Sapec,http://www.sapec.be/,Cobepa,sapec.be,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.sapec.be/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website sapec.be has very limited publicly accessible content and does not provide clear information about the company description, products, clients, leadership, or geographic footprint. Multiple pages and sections such as about, contact, and product-related pages appear not to have detailed or relevant data in English or French. No direct documents like PDFs were found."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.sapec.be/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website sapec.be has very limited publicly accessible content and does not provide clear information about the company description, products, clients, leadership, or geographic footprint. Multiple pages and sections such as about, contact, and product-related pages appear not to have detailed or relevant data in English or French. No direct documents like PDFs were found."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""http://www.sapec.be/"", - ""companyDescription"": ""Sapec is a Belgian industrial holding company founded in 1926, with a historic foundation in mining and chemicals. It operates primarily in the Iberian Peninsula through five business units focused on crop protection, crop nutrition, chemical distribution, raw materials for animal feeds, logistics including port handling, and renewable energy generation via hydroelectric power plants in Spain."", - ""productDescription"": ""Sapec delivers a diversified portfolio through its business units including formulation, packaging, and distribution of phytosanitary products under various subsidiary brands in the Iberian Peninsula; chemical products distribution across sectors such as construction and automotive; raw materials import and distribution for animal feed; logistics services including port and multimodal land terminals in Portugal; and renewable energy production from 13 mini hydropower stations in Spain totaling 55 MW capacity."", - ""clientCategories"": [ - ""Agricultural Producers"", - ""Chemical Manufacturers"", - ""Construction Companies"", - ""Automotive Manufacturers"", - ""Paper Industry"", - ""Environmental Services"", - ""Animal Feed Producers"", - ""Logistics Companies"", - ""Energy Consumers"" - ], - ""sectorDescription"": ""Industrial holdings specializing in crop protection and nutrition, chemical distribution, logistics, food processing raw materials, and renewable energy generation in the Iberian Peninsula."", - ""geographicFocus"": ""Primary operations and sales concentrated in Portugal and Spain, with corporate headquarters in Brussels, Belgium."", - ""keyExecutives"": [], - ""researcherNotes"": ""The company profile was principally assembled from Cobepa's detailed Sapec portfolio description and Sapec's own historical and operational data with confirmation of headquarters location from business directories. The sapec.be website lacks extensive public information, and there was no direct executive leadership data available on LinkedIn or other official sources. Geographic focus is confirmed as Iberian Peninsula operations with Belgian HQ. Missing leadership data remains unfilled due to lack of publicly accessible profiles or disclosures."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.cobepa.com/en/Investments/Sapec"", - ""productDescription"": ""https://www.cobepa.com/en/Investments/Sapec"", - ""clientCategories"": ""https://www.cobepa.com/en/Investments/Sapec"", - ""geographicFocus"": ""https://www.cobepa.com/en/Investments/Sapec"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Agricultural Producers"",""Chemical Manufacturers"",""Construction Companies"",""Automotive Manufacturers"",""Paper Industry"",""Environmental Services"",""Animal Feed Producers"",""Logistics Companies"",""Energy Consumers""],""companyDescription"":""Sapec is a Belgian industrial holding company founded in 1926, with a historic foundation in mining and chemicals. It operates primarily in the Iberian Peninsula through five business units focused on crop protection, crop nutrition, chemical distribution, raw materials for animal feeds, logistics including port handling, and renewable energy generation via hydroelectric power plants in Spain."",""geographicFocus"":""Primary operations and sales concentrated in Portugal and Spain, with corporate headquarters in Brussels, Belgium."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Sapec delivers a diversified portfolio through its business units including formulation, packaging, and distribution of phytosanitary products under various subsidiary brands in the Iberian Peninsula; chemical products distribution across sectors such as construction and automotive; raw materials import and distribution for animal feed; logistics services including port and multimodal land terminals in Portugal; and renewable energy production from 13 mini hydropower stations in Spain totaling 55 MW capacity."",""researcherNotes"":""The company profile was principally assembled from Cobepa's detailed Sapec portfolio description and Sapec's own historical and operational data with confirmation of headquarters location from business directories. The sapec.be website lacks extensive public information, and there was no direct executive leadership data available on LinkedIn or other official sources. Geographic focus is confirmed as Iberian Peninsula operations with Belgian HQ. Missing leadership data remains unfilled due to lack of publicly accessible profiles or disclosures."",""sectorDescription"":""Industrial holdings specializing in crop protection and nutrition, chemical distribution, logistics, food processing raw materials, and renewable energy generation in the Iberian Peninsula."",""sources"":{""clientCategories"":""https://www.cobepa.com/en/Investments/Sapec"",""companyDescription"":""https://www.cobepa.com/en/Investments/Sapec"",""geographicFocus"":""https://www.cobepa.com/en/Investments/Sapec"",""keyExecutives"":null,""productDescription"":""https://www.cobepa.com/en/Investments/Sapec""},""websiteURL"":""http://www.sapec.be/""}","Correctness: 98% Completeness: 90% The description of Sapec as a Belgian industrial holding company founded in 1926 with origins in mining and chemicals is confirmed by Cobepa’s detailed profile stating the company was founded in 1926 and has evolved into a holding operating five business units primarily in the Iberian Peninsula focused on crop protection, crop nutrition, chemical distribution, animal feed raw materials, logistics, and renewable energy generation via hydroelectric power plants in Spain, with headquarters in Brussels, Belgium[2]. The products and services portfolio including phytosanitary products, chemical distribution for sectors like construction and automotive, animal feed raw materials import and distribution, port and multimodal logistics in Portugal, and 13 mini hydropower stations in Spain totaling 55 MW aligns closely with the company summary from Cobepa[2]. The absence of publicly available data on key executives is consistent with the noted lack of leadership information on Sapec’s official site and other sources[2]. There are no conflicting sources found to dispute these claims; however, public leadership details remain incomplete due to limited disclosure. The provided sapec.be website does not contain extensive publicly accessible information to deepen completeness[2]. The firm’s geographic focus on Portugal and Spain operations with a Brussels HQ is likewise supported by Cobepa[2]. No relevant sources supporting or contradicting unrelated companies like SAP SE (software) were found in the results, ensuring the profile is correctly differentiated. URLs: https://www.cobepa.com/en/Investments/Sapec, http://www.sapec.be/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website sapec.be has very limited publicly accessible content and does not provide clear information about the company description, products, clients, leadership, or geographic footprint. Multiple pages and sections such as about, contact, and product-related pages appear not to have detailed or relevant data in English or French. No direct documents like PDFs were found."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://www.sapec.be/""}" -Embion Technologies,http://www.embiontech.com,Asahi Group Holdings,embiontech.com,https://www.linkedin.com/company/embion-technologies,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.embiontech.com"", - ""companyDescription"": ""Embion Technologies SA pioneers next-generation microbiome solutions for impactful problems, focusing on creating microbiome modulators for optimized gut health in the animal protein industry. Their mission is to imagine and pioneer cutting-edge microbiome solutions."", - ""productDescription"": ""PREMBION is a feed prebiotic ingredient made from carefully selected and recovered brewers' spent grains using a patented hydrolysis process that releases bioactive molecules. It modulates the animal gut microbiota to support animal performance and immune system health. PREMBION is thermostable above 100°C, non-GMO, complies with feed material regulations in Switzerland and Europe, and is supplied from qualified European suppliers. Scientific studies show brewers’ spent grains negatively affect monogastric animals, whereas PREMBION significantly improves performance, especially demonstrated in broilers. Limited data exists for ruminants."", - ""clientCategories"": [""Animal Protein Industry""], - ""sectorDescription"": ""Operates in the animal health biotechnology sector, specializing in innovative microbiome modulators for gut health optimization in the animal protein industry."", - ""geographicFocus"": ""HQ: En Courta Rama 10, 1163 Etoy, Switzerland; Sales Focus: Global with emphasis on sustainable microbiome solutions."", - ""keyExecutives"": [ - {""name"": ""Georgios Savoglidis"", ""title"": ""Founder, CEO and Chairman"", ""sourceUrl"": ""https://linkedin.com/in/georgios-savoglidis""}, - {""name"": ""Sviatlana Siankevich"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://linkedin.com/in/sviatlana-siankevich""}, - {""name"": ""Georgios Fengos"", ""title"": ""Founder and COO"", ""sourceUrl"": ""https://linkedin.com/in/georgios-fengos-52902019""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.embiontech.com/about-us"", - ""productDescription"": ""http://www.embiontech.com/products"", - ""clientCategories"": ""http://www.embiontech.com/about-us"", - ""geographicFocus"": ""http://www.embiontech.com"", - ""keyExecutives"": ""http://www.embiontech.com/about-us"" - } -}","{ - ""websiteURL"": ""http://www.embiontech.com"", - ""companyDescription"": ""Embion Technologies SA pioneers next-generation microbiome solutions for impactful problems, focusing on creating microbiome modulators for optimized gut health in the animal protein industry. Their mission is to imagine and pioneer cutting-edge microbiome solutions."", - ""productDescription"": ""PREMBION is a feed prebiotic ingredient made from carefully selected and recovered brewers' spent grains using a patented hydrolysis process that releases bioactive molecules. It modulates the animal gut microbiota to support animal performance and immune system health. PREMBION is thermostable above 100°C, non-GMO, complies with feed material regulations in Switzerland and Europe, and is supplied from qualified European suppliers. Scientific studies show brewers’ spent grains negatively affect monogastric animals, whereas PREMBION significantly improves performance, especially demonstrated in broilers. Limited data exists for ruminants."", - ""clientCategories"": [""Animal Protein Industry""], - ""sectorDescription"": ""Operates in the animal health biotechnology sector, specializing in innovative microbiome modulators for gut health optimization in the animal protein industry."", - ""geographicFocus"": ""HQ: En Courta Rama 10, 1163 Etoy, Switzerland; Sales Focus: Global with emphasis on sustainable microbiome solutions."", - ""keyExecutives"": [ - {""name"": ""Georgios Savoglidis"", ""title"": ""Founder, CEO and Chairman"", ""sourceUrl"": ""https://linkedin.com/in/georgios-savoglidis""}, - {""name"": ""Sviatlana Siankevich"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://linkedin.com/in/sviatlana-siankevich""}, - {""name"": ""Georgios Fengos"", ""title"": ""Founder and COO"", ""sourceUrl"": ""https://linkedin.com/in/georgios-fengos-52902019""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.embiontech.com/about-us"", - ""productDescription"": ""http://www.embiontech.com/products"", - ""clientCategories"": ""http://www.embiontech.com/about-us"", - ""geographicFocus"": ""http://www.embiontech.com"", - ""keyExecutives"": ""http://www.embiontech.com/about-us"" - } -}",[],"{ - ""websiteURL"": ""http://www.embiontech.com"", - ""companyDescription"": ""Embion Technologies SA pioneers next-generation microbiome solutions to address impactful problems, focusing on microbiome modulators that optimize gut health specifically for the animal protein industry. Founded in 2016 as an EPFL spin-off, the company leverages a patented, sustainable biomass processing technology to develop innovative, circular bioeconomy products with applications in animal health and nutrition."", - ""productDescription"": ""PREMBION is a thermostable, non-GMO feed prebiotic ingredient derived from brewers' spent grains through a patented hydrolysis process that releases bioactive molecules. It modulates animal gut microbiota to enhance animal performance and immune health, especially demonstrated in broilers, with compliance to Swiss and European feed regulations. The product supports sustainable antibiotic-free animal farming and is sourced from qualified European suppliers."", - ""clientCategories"": [ - ""Animal Protein Industry"" - ], - ""sectorDescription"": ""Operates in the animal health biotechnology sector, specializing in innovative microbiome modulators for gut health optimization in the animal protein industry."", - ""geographicFocus"": ""Headquartered in Etoy, Switzerland; sales focus is global with an emphasis on sustainable microbiome solutions."", - ""keyExecutives"": [ - { - ""name"": ""Georgios Savoglidis"", - ""title"": ""Founder, CEO and Chairman"", - ""sourceUrl"": ""https://linkedin.com/in/georgios-savoglidis"" - }, - { - ""name"": ""Sviatlana Siankevich"", - ""title"": ""Founder and CTO"", - ""sourceUrl"": ""https://linkedin.com/in/sviatlana-siankevich"" - }, - { - ""name"": ""Georgios Fengos"", - ""title"": ""Founder and COO"", - ""sourceUrl"": ""https://linkedin.com/in/georgios-fengos-52902019"" - } - ], - ""researcherNotes"": ""The company profile and details have been verified as related to the EPFL spin-off founded in 2016 in Switzerland with a focus on sustainable biomass technologies and microbiome solutions for animals, matching domain and executive data. Some web sources like ZoomInfo refer to a different U.S.-based 'Embion' unrelated to this entity. Geographic focus is derived from company website statements emphasizing global sales and headquartered location in Etoy, Switzerland."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.embiontech.com/about-us"", - ""productDescription"": ""http://www.embiontech.com/products"", - ""clientCategories"": ""http://www.embiontech.com/about-us"", - ""geographicFocus"": ""http://www.embiontech.com"", - ""keyExecutives"": ""http://www.embiontech.com/about-us"" - } -}","{""clientCategories"":[""Animal Protein Industry""],""companyDescription"":""Embion Technologies SA pioneers next-generation microbiome solutions to address impactful problems, focusing on microbiome modulators that optimize gut health specifically for the animal protein industry. Founded in 2016 as an EPFL spin-off, the company leverages a patented, sustainable biomass processing technology to develop innovative, circular bioeconomy products with applications in animal health and nutrition."",""geographicFocus"":""Headquartered in Etoy, Switzerland; sales focus is global with an emphasis on sustainable microbiome solutions."",""keyExecutives"":[{""name"":""Georgios Savoglidis"",""sourceUrl"":""https://linkedin.com/in/georgios-savoglidis"",""title"":""Founder, CEO and Chairman""},{""name"":""Sviatlana Siankevich"",""sourceUrl"":""https://linkedin.com/in/sviatlana-siankevich"",""title"":""Founder and CTO""},{""name"":""Georgios Fengos"",""sourceUrl"":""https://linkedin.com/in/georgios-fengos-52902019"",""title"":""Founder and COO""}],""missingImportantFields"":[],""productDescription"":""PREMBION is a thermostable, non-GMO feed prebiotic ingredient derived from brewers' spent grains through a patented hydrolysis process that releases bioactive molecules. It modulates animal gut microbiota to enhance animal performance and immune health, especially demonstrated in broilers, with compliance to Swiss and European feed regulations. The product supports sustainable antibiotic-free animal farming and is sourced from qualified European suppliers."",""researcherNotes"":""The company profile and details have been verified as related to the EPFL spin-off founded in 2016 in Switzerland with a focus on sustainable biomass technologies and microbiome solutions for animals, matching domain and executive data. Some web sources like ZoomInfo refer to a different U.S.-based 'Embion' unrelated to this entity. Geographic focus is derived from company website statements emphasizing global sales and headquartered location in Etoy, Switzerland."",""sectorDescription"":""Operates in the animal health biotechnology sector, specializing in innovative microbiome modulators for gut health optimization in the animal protein industry."",""sources"":{""clientCategories"":""http://www.embiontech.com/about-us"",""companyDescription"":""http://www.embiontech.com/about-us"",""geographicFocus"":""http://www.embiontech.com"",""keyExecutives"":""http://www.embiontech.com/about-us"",""productDescription"":""http://www.embiontech.com/products""},""websiteURL"":""http://www.embiontech.com""}","Correctness: 98% Completeness: 95% The description accurately reflects Embion Technologies SA as an EPFL spin-off founded in 2016, headquartered in Etoy, Switzerland, with a global sales focus on sustainable microbiome solutions for the animal protein industry. The company’s leadership, with Georgios Savoglidis as Founder, CEO and Chairman; Sviatlana Siankevich as Founder and CTO; and Georgios Fengos as Founder and COO, is confirmed on the official company site as of 2025-09-11[4]. The core technology involves patented biomass processing to produce PREMBION, a thermostable, non-GMO prebiotic feed ingredient sourced from brewers’ spent grains, which modulates gut microbiota to improve animal performance and immune health; this aligns with information from their product page and company ethos promoting antibiotic-free sustainable animal farming[4][1]. The company’s sector focus on animal health biotechnology and circular bioeconomy is consistent with multiple sources, including their participation in global networks supporting sustainable chemistry and bioeconomy innovations[1][5]. Minor limitations include no recent (2023-2025) funding details or explicitly dated regulatory filings in search results, slightly affecting completeness, and no in-depth detail on sales footprint beyond “global.” However, the majority of key facts are verified by at least two authoritative sources, primarily the company website and World Economic Forum profile[4][5]. URLs: https://embiontech.com/about-us/ , https://embiontech.com/wp-content/themes/uncode-child/files/EN_EMBION_Factsheet_July_2020.pdf , https://www.weforum.org/organizations/embion-technologies/","{""clientCategories"":[""Animal Protein Industry""],""companyDescription"":""Embion Technologies SA pioneers next-generation microbiome solutions for impactful problems, focusing on creating microbiome modulators for optimized gut health in the animal protein industry. Their mission is to imagine and pioneer cutting-edge microbiome solutions."",""geographicFocus"":""HQ: En Courta Rama 10, 1163 Etoy, Switzerland; Sales Focus: Global with emphasis on sustainable microbiome solutions."",""keyExecutives"":[{""name"":""Georgios Savoglidis"",""sourceUrl"":""https://linkedin.com/in/georgios-savoglidis"",""title"":""Founder, CEO and Chairman""},{""name"":""Sviatlana Siankevich"",""sourceUrl"":""https://linkedin.com/in/sviatlana-siankevich"",""title"":""Founder and CTO""},{""name"":""Georgios Fengos"",""sourceUrl"":""https://linkedin.com/in/georgios-fengos-52902019"",""title"":""Founder and COO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""PREMBION is a feed prebiotic ingredient made from carefully selected and recovered brewers' spent grains using a patented hydrolysis process that releases bioactive molecules. It modulates the animal gut microbiota to support animal performance and immune system health. PREMBION is thermostable above 100°C, non-GMO, complies with feed material regulations in Switzerland and Europe, and is supplied from qualified European suppliers. Scientific studies show brewers’ spent grains negatively affect monogastric animals, whereas PREMBION significantly improves performance, especially demonstrated in broilers. Limited data exists for ruminants."",""researcherNotes"":null,""sectorDescription"":""Operates in the animal health biotechnology sector, specializing in innovative microbiome modulators for gut health optimization in the animal protein industry."",""sources"":{""clientCategories"":""http://www.embiontech.com/about-us"",""companyDescription"":""http://www.embiontech.com/about-us"",""geographicFocus"":""http://www.embiontech.com"",""keyExecutives"":""http://www.embiontech.com/about-us"",""productDescription"":""http://www.embiontech.com/products""},""websiteURL"":""http://www.embiontech.com""}" -Treekly,https://www.treekly.org/,Anglia Capital Group,treekly.org,https://www.linkedin.com/company/treeklyorg,"{""seniorLeadership"":[{""name"":""Jon Bunning"",""title"":""Co-Founder"",""profileURL"":""https://www.linkedin.com/in/jon-bunning-4203204""}]}","{""seniorLeadership"":[{""name"":""Jon Bunning"",""title"":""Co-Founder"",""profileURL"":""https://www.linkedin.com/in/jon-bunning-4203204""}]}","{ - ""websiteURL"": ""https://www.treekly.org/"", - ""companyDescription"": ""Treekly® encourages a healthy lifestyle and supports global reforestation by having individuals walk 5000 steps a day to fund mangrove tree planting. The company plants trees in digital forests and supports mangrove reforestation projects, using technology like AI and IoT sensors to monitor tree growth. Treekly aims to create impact benefiting health, the planet, and communities, aligning with 10 UN Sustainable Development Goals. Their mission centers on turning footsteps into forests through community engagement and environmental action."", - ""productDescription"": ""Treekly® offers a walking app where individuals can turn their footsteps into trees, planting over 600k trees in 180+ countries. Users maintain a daily walking habit of 5000 steps to fund mangrove reforestation and can track their impact via the app. Treekly Plus is a subscription service costing £7.49/month that funds a mangrove tree daily when the user walks 5000 steps. The platform supports global reforestation projects and uses technology like AI and IoT sensors to monitor tree growth. Treekly also caters to organizations wanting to engage their community and fund trees on behalf of employees, customers, and members."", - ""clientCategories"": [ - ""Individuals interested in health and environmental impact"", - ""Corporates engaging employees and customers for CSR"", - ""Community groups focused on environmental commitments"" - ], - ""sectorDescription"": ""Operates in the consumer wellness and environmental technology sector, leveraging a mobile app platform to promote physical activity and global reforestation."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information on company headquarters location, specific sales regions, or detailed leadership names/titles, limiting the geographicFocus and keyExecutives data fields."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.treekly.org/"", - ""productDescription"": ""https://www.treekly.org/"", - ""clientCategories"": ""https://www.treekly.org/testimonials"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.treekly.org/"", - ""companyDescription"": ""Treekly® encourages a healthy lifestyle and supports global reforestation by having individuals walk 5000 steps a day to fund mangrove tree planting. The company plants trees in digital forests and supports mangrove reforestation projects, using technology like AI and IoT sensors to monitor tree growth. Treekly aims to create impact benefiting health, the planet, and communities, aligning with 10 UN Sustainable Development Goals. Their mission centers on turning footsteps into forests through community engagement and environmental action."", - ""productDescription"": ""Treekly® offers a walking app where individuals can turn their footsteps into trees, planting over 600k trees in 180+ countries. Users maintain a daily walking habit of 5000 steps to fund mangrove reforestation and can track their impact via the app. Treekly Plus is a subscription service costing £7.49/month that funds a mangrove tree daily when the user walks 5000 steps. The platform supports global reforestation projects and uses technology like AI and IoT sensors to monitor tree growth. Treekly also caters to organizations wanting to engage their community and fund trees on behalf of employees, customers, and members."", - ""clientCategories"": [ - ""Individuals interested in health and environmental impact"", - ""Corporates engaging employees and customers for CSR"", - ""Community groups focused on environmental commitments"" - ], - ""sectorDescription"": ""Operates in the consumer wellness and environmental technology sector, leveraging a mobile app platform to promote physical activity and global reforestation."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information on company headquarters location, specific sales regions, or detailed leadership names/titles, limiting the geographicFocus and keyExecutives data fields."", - ""missingImportantFields"": [""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.treekly.org/"", - ""productDescription"": ""https://www.treekly.org/"", - ""clientCategories"": ""https://www.treekly.org/testimonials"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.treekly.org/"", - ""companyDescription"": ""Treekly® encourages a healthy lifestyle and supports global reforestation by having individuals walk 5000 steps a day to fund mangrove tree planting. The company plants trees in digital forests and supports mangrove reforestation projects in countries such as Madagascar, Kenya, Indonesia, Mozambique, Brazil, and Haiti. Using technology like AI and IoT sensors to monitor tree growth, Treekly aims to create positive impact benefiting health, the planet, and communities, aligning with 10 UN Sustainable Development Goals. Their mission centers on turning footsteps into forests through community engagement and environmental action."", - ""productDescription"": ""Treekly® offers a walking app where individuals turn their footsteps into trees by maintaining a daily habit of 5000 steps, funding mangrove reforestation globally. Users can track their environmental impact within the app. The subscription service Treekly Plus costs £7.49/month and funds a mangrove tree daily when users meet the step goal. The platform also supports corporate and community groups wanting to engage employees, customers, and members in environmental efforts, leveraging technologies like AI and IoT sensors to monitor tree growth."", - ""clientCategories"": [ - ""Individuals Interested In Health And Environmental Impact"", - ""Corporates Engaging Employees And Customers For CSR"", - ""Community Groups Focused On Environmental Commitments"" - ], - ""sectorDescription"": ""Operates in the consumer wellness and environmental technology sector, leveraging a mobile app platform to promote physical activity and global reforestation through mangrove planting projects."", - ""geographicFocus"": ""Treekly supports reforestation projects and community engagement globally, with tree planting efforts in Madagascar, Kenya, Indonesia, Mozambique, Brazil, and Haiti."", - ""keyExecutives"": [ - { - ""name"": ""Jon Bunning"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.linkedin.com/in/jon-bunning-4203204"" - } - ], - ""researcherNotes"": ""The company's website and related official sources confirm that Treekly operates globally through reforestation projects in multiple countries, primarily in mangrove restoration. No explicit corporate headquarters location was found on the website; however, UK Companies House lists TREEKLY GROUP LTD with a registered office in Norwich, UK. Only one senior executive, Co-Founder Jon Bunning, was identified via LinkedIn. Geographic focus is summarized from project locations listed on Treekly’s About page and third-party sources. Missing detailed leadership and full geographic sales footprint data remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.treekly.org/"", - ""productDescription"": ""https://www.treekly.org/"", - ""clientCategories"": ""https://www.treekly.org/testimonials"", - ""geographicFocus"": ""https://www.treekly.org/about-us"", - ""keyExecutives"": ""https://www.linkedin.com/in/jon-bunning-4203204"" - } -}","{""clientCategories"":[""Individuals Interested In Health And Environmental Impact"",""Corporates Engaging Employees And Customers For CSR"",""Community Groups Focused On Environmental Commitments""],""companyDescription"":""Treekly® encourages a healthy lifestyle and supports global reforestation by having individuals walk 5000 steps a day to fund mangrove tree planting. The company plants trees in digital forests and supports mangrove reforestation projects in countries such as Madagascar, Kenya, Indonesia, Mozambique, Brazil, and Haiti. Using technology like AI and IoT sensors to monitor tree growth, Treekly aims to create positive impact benefiting health, the planet, and communities, aligning with 10 UN Sustainable Development Goals. Their mission centers on turning footsteps into forests through community engagement and environmental action."",""geographicFocus"":""Treekly supports reforestation projects and community engagement globally, with tree planting efforts in Madagascar, Kenya, Indonesia, Mozambique, Brazil, and Haiti."",""keyExecutives"":[{""name"":""Jon Bunning"",""sourceUrl"":""https://www.linkedin.com/in/jon-bunning-4203204"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Treekly® offers a walking app where individuals turn their footsteps into trees by maintaining a daily habit of 5000 steps, funding mangrove reforestation globally. Users can track their environmental impact within the app. The subscription service Treekly Plus costs £7.49/month and funds a mangrove tree daily when users meet the step goal. The platform also supports corporate and community groups wanting to engage employees, customers, and members in environmental efforts, leveraging technologies like AI and IoT sensors to monitor tree growth."",""researcherNotes"":""The company's website and related official sources confirm that Treekly operates globally through reforestation projects in multiple countries, primarily in mangrove restoration. No explicit corporate headquarters location was found on the website; however, UK Companies House lists TREEKLY GROUP LTD with a registered office in Norwich, UK. Only one senior executive, Co-Founder Jon Bunning, was identified via LinkedIn. Geographic focus is summarized from project locations listed on Treekly’s About page and third-party sources. Missing detailed leadership and full geographic sales footprint data remain."",""sectorDescription"":""Operates in the consumer wellness and environmental technology sector, leveraging a mobile app platform to promote physical activity and global reforestation through mangrove planting projects."",""sources"":{""clientCategories"":""https://www.treekly.org/testimonials"",""companyDescription"":""https://www.treekly.org/"",""geographicFocus"":""https://www.treekly.org/about-us"",""keyExecutives"":""https://www.linkedin.com/in/jon-bunning-4203204"",""productDescription"":""https://www.treekly.org/""},""websiteURL"":""https://www.treekly.org/""}","Correctness: 95% Completeness: 90% The factual claims about Treekly are largely accurate and well-supported by multiple official and third-party sources. Treekly encourages users to walk 5,000 steps daily and uses that activity to fund mangrove tree planting in six countries: Madagascar, Kenya, Indonesia, Mozambique, Brazil, and Haiti, partnering with Eden Reforestation Projects for planting efforts as confirmed on their official site and third-party articles[3][4][1]. The leadership listing identifies Jon Bunning as Co-Founder, which aligns with the LinkedIn profile cited[6]. The product described as a mobile app with a Treekly Plus subscription (£7.49/month) that funds a mangrove tree per day when the step goal is met is consistent across sources[5][6]. Treekly uses AI, computer vision, and IoT sensors via Veritree to monitor tree growth and survivability, which is also corroborated[5][7]. The company registered office is in the UK (Norwich), as noted but with no conflicting HQ information found[6]. Some minor gaps lower completeness: more details on full leadership beyond Jon Bunning are lacking, and the exact scope of the global sales footprint isn’t fully detailed publicly. Also, the claim of supporting 10 UN SDGs could be updated since one source states all 13, including one from 2023, suggesting slight inconsistency in scope[2][6]. Overall, the information is current through at least mid-2025 and comes from official Treekly web pages and reputable news/articles[3][4][5][6][7]. URLs: https://www.treekly.org/, https://www.treekly.org/about-us, https://www.treekly.org/reforestation-projects, https://www.smartertravel.uk.com/treekly-turning-your-footsteps-into-forests/, https://www.trustonic.com/news/the-trustonic-treekly-challenge-walking-our-way-to-a-healthier-team-and-a-healthier-planet/, https://www.benefitnews.com/news/how-treekly-is-making-esg-initiatives-engaging-for-workers, https://www.treekly.org/ourforests","{""clientCategories"":[""Individuals interested in health and environmental impact"",""Corporates engaging employees and customers for CSR"",""Community groups focused on environmental commitments""],""companyDescription"":""Treekly® encourages a healthy lifestyle and supports global reforestation by having individuals walk 5000 steps a day to fund mangrove tree planting. The company plants trees in digital forests and supports mangrove reforestation projects, using technology like AI and IoT sensors to monitor tree growth. Treekly aims to create impact benefiting health, the planet, and communities, aligning with 10 UN Sustainable Development Goals. Their mission centers on turning footsteps into forests through community engagement and environmental action."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Treekly® offers a walking app where individuals can turn their footsteps into trees, planting over 600k trees in 180+ countries. Users maintain a daily walking habit of 5000 steps to fund mangrove reforestation and can track their impact via the app. Treekly Plus is a subscription service costing £7.49/month that funds a mangrove tree daily when the user walks 5000 steps. The platform supports global reforestation projects and uses technology like AI and IoT sensors to monitor tree growth. Treekly also caters to organizations wanting to engage their community and fund trees on behalf of employees, customers, and members."",""researcherNotes"":""The website does not provide explicit information on company headquarters location, specific sales regions, or detailed leadership names/titles, limiting the geographicFocus and keyExecutives data fields."",""sectorDescription"":""Operates in the consumer wellness and environmental technology sector, leveraging a mobile app platform to promote physical activity and global reforestation."",""sources"":{""clientCategories"":""https://www.treekly.org/testimonials"",""companyDescription"":""https://www.treekly.org/"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.treekly.org/""},""websiteURL"":""https://www.treekly.org/""}" -InterMed Discovery,http://www.intermed-discovery.com,Biotropics Malaysia Berhad,intermed-discovery.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.intermed-discovery.com"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official website http://www.intermed-discovery.com was inaccessible for direct scraping. External sources provided limited information and no direct company data from the official site was extractable. Hence, many critical fields are not available."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.intermed-discovery.com"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official website http://www.intermed-discovery.com was inaccessible for direct scraping. External sources provided limited information and no direct company data from the official site was extractable. Hence, many critical fields are not available."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""http://www.intermed-discovery.com"", - ""companyDescription"": ""InterMed Discovery GmbH is a private company founded in 2006 and headquartered in Sachsen, Germany. It specializes in the discovery and development of natural bioactive compounds deriving from natural products. These compounds are used to provide innovative functional ingredients with clearly defined activity profiles and natural chemical properties, targeting life science applications such as food, beverages, flavour, fragrance, and cosmetic industries."", - ""productDescription"": ""InterMed Discovery provides a technology platform that integrates screening, discovery, and profiling of natural sources-derived functional ingredients. Their products include natural bioactive compounds developed through joint research efforts to benefit companies in the food, beverage, flavour, fragrance, and cosmetic sectors by offering innovative, naturally-derived functional ingredients with validated activity profiles."", - ""clientCategories"": [ - ""Food And Beverage Companies"", - ""Flavour And Fragrance Companies"", - ""Cosmetic Industry"", - ""Life Science Companies"" - ], - ""sectorDescription"": ""Life sciences company focused on natural product lead discovery and development of functional ingredients for food, beverage, fragrance, and cosmetic applications."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""The official website http://www.intermed-discovery.com was inaccessible for direct scraping, limiting direct company data extraction. Available information was gathered from credible external sources including Patsnap and Axxam press announcements. No detailed information on senior leadership or geographic footprint was found. The company is confirmed as InterMed Discovery GmbH, headquartered in Germany (Sachsen), founded in 2006, specializing in natural product bioactive compound discovery as corroborated by multiple sources[1][2][3]."", - ""missingImportantFields"": [ - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://discovery.patsnap.com/company/intermed-discovery/"", - ""productDescription"": ""https://axxam.com/intermed-discovery-gmbh-and-axxam-spa-announce-joint-research-agreement-for-the-identification-of-novel-natural-functional-ingredients/"", - ""clientCategories"": ""https://axxam.com/intermed-discovery-gmbh-and-axxam-spa-announce-joint-research-agreement-for-the-identification-of-novel-natural-functional-ingredients/"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{""clientCategories"":[""Food And Beverage Companies"",""Flavour And Fragrance Companies"",""Cosmetic Industry"",""Life Science Companies""],""companyDescription"":""InterMed Discovery GmbH is a private company founded in 2006 and headquartered in Sachsen, Germany. It specializes in the discovery and development of natural bioactive compounds deriving from natural products. These compounds are used to provide innovative functional ingredients with clearly defined activity profiles and natural chemical properties, targeting life science applications such as food, beverages, flavour, fragrance, and cosmetic industries."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""InterMed Discovery provides a technology platform that integrates screening, discovery, and profiling of natural sources-derived functional ingredients. Their products include natural bioactive compounds developed through joint research efforts to benefit companies in the food, beverage, flavour, fragrance, and cosmetic sectors by offering innovative, naturally-derived functional ingredients with validated activity profiles."",""researcherNotes"":""The official website http://www.intermed-discovery.com was inaccessible for direct scraping, limiting direct company data extraction. Available information was gathered from credible external sources including Patsnap and Axxam press announcements. No detailed information on senior leadership or geographic footprint was found. The company is confirmed as InterMed Discovery GmbH, headquartered in Germany (Sachsen), founded in 2006, specializing in natural product bioactive compound discovery as corroborated by multiple sources[1][2][3]."",""sectorDescription"":""Life sciences company focused on natural product lead discovery and development of functional ingredients for food, beverage, fragrance, and cosmetic applications."",""sources"":{""clientCategories"":""https://axxam.com/intermed-discovery-gmbh-and-axxam-spa-announce-joint-research-agreement-for-the-identification-of-novel-natural-functional-ingredients/"",""companyDescription"":""https://discovery.patsnap.com/company/intermed-discovery/"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://axxam.com/intermed-discovery-gmbh-and-axxam-spa-announce-joint-research-agreement-for-the-identification-of-novel-natural-functional-ingredients/""},""websiteURL"":""http://www.intermed-discovery.com""}","Correctness: 85% Completeness: 75% The core factual claims about InterMed Discovery GmbH being founded in 2006 as a management buyout of Bayer HealthCare AG’s natural products research unit and headquartered in Dortmund, Germany (not Sachsen) are well-supported by multiple sources including Pharmatching, BioSpace, and NewHope (dated 2006–2008) [1][4][5][6]. The company specializes in the discovery and development of natural bioactive compounds applied in life sciences sectors such as food, beverage, cosmetics, and pharmaceuticals, confirmed by these same sources [1][5][6]. The description of their technology platform integrating screening, bioinformatics (IMD BIOPROFILING, NPSilico), and large proprietary compound collections also matches several external accounts [1][5][6]. However, the claim that the company is headquartered in Sachsen is contradicted by multiple authoritative sources indicating Dortmund as the location [1][4][5]. The absence of detailed current leadership and geographic footprint information reduces completeness; although older sources cite about 22–30 staff as of circa 2007–2008, recent employee counts range from 10–50 per Patsnap without named executives [1][2]. Also, missing are recent corporate developments or partnerships apart from earlier ones mentioned (e.g., with Cognis) [5]. Overall, the description is largely accurate but with a notable error on headquarters location and lacks some key current operational details and leadership, lowering completeness. URLs: https://pharmatching.com/company/4653, https://discovery.patsnap.com/company/intermed-discovery/, https://www.biospace.com/intermed-discovery-and-axxam-srl-announce-joint-research-agreement-for-the-identification-of-novel-natural-functional-ingredients/, https://www.newhope.com/industry-insights/intermed-discovery-achieves-proof-of-principle-for-imd-026260, https://profiles.biocentury.com/companies/InterMed_Discovery_GmbH","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The official website http://www.intermed-discovery.com was inaccessible for direct scraping. External sources provided limited information and no direct company data from the official site was extractable. Hence, many critical fields are not available."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://www.intermed-discovery.com""}" -Cainthus,http://www.cainthus.com/index.html#OurMission,Cargill,cainthus.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.cainthus.com/index.html#OurMission"", - ""companyDescription"": ""Ever.Ag is an AgTech company focused on helping customers manage agricultural operations smarter through products and services across dairy, agribusiness, livestock and animal protein sectors. Their philosophy promotes sustainability alongside profitability."", - ""productDescription"": ""The company offers On-Farm Solutions such as Maternity Warden (AI-powered calf monitoring), Dairy Supply Chain services, In-Plant Solutions, Dairy Market Insights and Dairy Risk Management; Agribusiness solutions including Ag Retail ERP, Digital Agronomy Solutions, Bulk Hauling Logistics, Commodity Management, Grain Risk Management; and Livestock & Animal Protein systems like Feed Allocation System, Feed Mill Ordering, Livestock Procurement System, Livestock Risk Management. Additional tools include DPR Insurance, LRP Insurance, Feed Basis, Cheese Calculator, Class III/IV Calculator, Market Prices calculator, Energy corrected milk and feed efficiency calculator."", - ""clientCategories"": [""Dairy farms"", ""Agribusinesses"", ""Livestock and animal protein producers""], - ""sectorDescription"": ""Operates in the agriculture technology sector, providing technology solutions focused on dairy, agribusiness, livestock, and animal protein industries."", - ""geographicFocus"": ""HQ: 4400 State Highway 121, Suite 520, Lewisville, TX 75056, USA; Sales Focus: North America (implied)"", - ""keyExecutives"": [ - {""name"": ""Scott Sexton"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Steve Cornell"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Luis Arjona"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Tobias Lee"", ""title"": ""Chief Marketing & Business Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Scott Smith"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Darryl Lewis"", ""title"": ""Chief Growth Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable document links (PDF, DOCX, etc.) were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.cainthus.com/index.html#OurMission"", - ""productDescription"": ""http://www.cainthus.com/index.html#OurMission"", - ""clientCategories"": ""http://www.cainthus.com/index.html#OurMission"", - ""geographicFocus"": ""http://www.cainthus.com/index.html#OurMission"", - ""keyExecutives"": ""https://ever.ag/who-we-are#leadership2"" - } -}","{ - ""websiteURL"": ""http://www.cainthus.com/index.html#OurMission"", - ""companyDescription"": ""Ever.Ag is an AgTech company focused on helping customers manage agricultural operations smarter through products and services across dairy, agribusiness, livestock and animal protein sectors. Their philosophy promotes sustainability alongside profitability."", - ""productDescription"": ""The company offers On-Farm Solutions such as Maternity Warden (AI-powered calf monitoring), Dairy Supply Chain services, In-Plant Solutions, Dairy Market Insights and Dairy Risk Management; Agribusiness solutions including Ag Retail ERP, Digital Agronomy Solutions, Bulk Hauling Logistics, Commodity Management, Grain Risk Management; and Livestock & Animal Protein systems like Feed Allocation System, Feed Mill Ordering, Livestock Procurement System, Livestock Risk Management. Additional tools include DPR Insurance, LRP Insurance, Feed Basis, Cheese Calculator, Class III/IV Calculator, Market Prices calculator, Energy corrected milk and feed efficiency calculator."", - ""clientCategories"": [""Dairy farms"", ""Agribusinesses"", ""Livestock and animal protein producers""], - ""sectorDescription"": ""Operates in the agriculture technology sector, providing technology solutions focused on dairy, agribusiness, livestock, and animal protein industries."", - ""geographicFocus"": ""HQ: 4400 State Highway 121, Suite 520, Lewisville, TX 75056, USA; Sales Focus: North America (implied)"", - ""keyExecutives"": [ - {""name"": ""Scott Sexton"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Steve Cornell"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Luis Arjona"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Tobias Lee"", ""title"": ""Chief Marketing & Business Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Scott Smith"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""}, - {""name"": ""Darryl Lewis"", ""title"": ""Chief Growth Officer"", ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable document links (PDF, DOCX, etc.) were found on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.cainthus.com/index.html#OurMission"", - ""productDescription"": ""http://www.cainthus.com/index.html#OurMission"", - ""clientCategories"": ""http://www.cainthus.com/index.html#OurMission"", - ""geographicFocus"": ""http://www.cainthus.com/index.html#OurMission"", - ""keyExecutives"": ""https://ever.ag/who-we-are#leadership2"" - } -}",[],"{ - ""websiteURL"": ""https://ever.ag"", - ""companyDescription"": ""Ever.Ag is an agriculture technology company delivering software and services designed to empower the entire food and agriculture supply chain, from farm to table. Their product portfolio supports dairy, agribusiness, livestock, and animal protein sectors, promoting sustainability alongside profitability through AI and data-driven solutions. The company focuses on solving real-world agricultural challenges by integrating expertise, innovation, and technology to maximize operational efficiency and profitability across their customers’ businesses."", - ""productDescription"": ""Ever.Ag offers a broad range of on-farm and supply chain solutions including AI-powered calf monitoring (Maternity Warden), dairy supply chain services, dairy market insights and risk management, agribusiness ERP and digital agronomy, bulk hauling logistics, commodity and grain risk management, and livestock management systems such as feed allocation and procurement. Additional tools include insurance offerings, cheese yield and milk/feed efficiency calculators, and logistics platforms that provide transparency and traceability, all designed to optimize operations and decision-making throughout the agriculture supply chain."", - ""clientCategories"": [ - ""Dairy Farms"", - ""Agribusinesses"", - ""Livestock And Animal Protein Producers"" - ], - ""sectorDescription"": ""Agriculture technology company specializing in solutions for dairy, agribusiness, livestock, and animal protein industries."", - ""geographicFocus"": ""Primarily focused on the North American market, headquartered in Lewisville, Texas, USA."", - ""keyExecutives"": [ - { - ""name"": ""Scott Sexton"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2"" - }, - { - ""name"": ""Steve Cornell"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2"" - }, - { - ""name"": ""Luis Arjona"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2"" - }, - { - ""name"": ""Tobias Lee"", - ""title"": ""Chief Marketing & Business Officer"", - ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2"" - }, - { - ""name"": ""Scott Smith"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2"" - }, - { - ""name"": ""Darryl Lewis"", - ""title"": ""Chief Growth Officer"", - ""sourceUrl"": ""https://ever.ag/who-we-are#leadership2"" - } - ], - ""researcherNotes"": ""The company is correctly identified via website domain ever.ag and HQ in Lewisville, Texas. The geographic focus is primarily North America as implied by their headquarters and market focus described on their site. There were no conflicting details found in leadership or product offerings. No downloadable documents were available on the website. Source URLs include direct company pages and leadership info to ensure accuracy."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ever.ag/what-we-do"", - ""productDescription"": ""https://ever.ag"", - ""clientCategories"": ""https://ever.ag"", - ""geographicFocus"": ""https://ever.ag/index.html#OurMission"", - ""keyExecutives"": ""https://ever.ag/who-we-are#leadership2"" - } -}","{""clientCategories"":[""Dairy Farms"",""Agribusinesses"",""Livestock And Animal Protein Producers""],""companyDescription"":""Ever.Ag is an agriculture technology company delivering software and services designed to empower the entire food and agriculture supply chain, from farm to table. Their product portfolio supports dairy, agribusiness, livestock, and animal protein sectors, promoting sustainability alongside profitability through AI and data-driven solutions. The company focuses on solving real-world agricultural challenges by integrating expertise, innovation, and technology to maximize operational efficiency and profitability across their customers’ businesses."",""geographicFocus"":""Primarily focused on the North American market, headquartered in Lewisville, Texas, USA."",""keyExecutives"":[{""name"":""Scott Sexton"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Executive Officer""},{""name"":""Steve Cornell"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Financial Officer""},{""name"":""Luis Arjona"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Operating Officer""},{""name"":""Tobias Lee"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Marketing & Business Officer""},{""name"":""Scott Smith"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Technology Officer""},{""name"":""Darryl Lewis"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Growth Officer""}],""missingImportantFields"":[],""productDescription"":""Ever.Ag offers a broad range of on-farm and supply chain solutions including AI-powered calf monitoring (Maternity Warden), dairy supply chain services, dairy market insights and risk management, agribusiness ERP and digital agronomy, bulk hauling logistics, commodity and grain risk management, and livestock management systems such as feed allocation and procurement. Additional tools include insurance offerings, cheese yield and milk/feed efficiency calculators, and logistics platforms that provide transparency and traceability, all designed to optimize operations and decision-making throughout the agriculture supply chain."",""researcherNotes"":""The company is correctly identified via website domain ever.ag and HQ in Lewisville, Texas. The geographic focus is primarily North America as implied by their headquarters and market focus described on their site. There were no conflicting details found in leadership or product offerings. No downloadable documents were available on the website. Source URLs include direct company pages and leadership info to ensure accuracy."",""sectorDescription"":""Agriculture technology company specializing in solutions for dairy, agribusiness, livestock, and animal protein industries."",""sources"":{""clientCategories"":""https://ever.ag"",""companyDescription"":""https://ever.ag/what-we-do"",""geographicFocus"":""https://ever.ag/index.html#OurMission"",""keyExecutives"":""https://ever.ag/who-we-are#leadership2"",""productDescription"":""https://ever.ag""},""websiteURL"":""https://ever.ag""}","Correctness: 95% Completeness: 85% The key facts about Ever.Ag are mostly accurate and supported by multiple official and credible sources as of 2025. Ever.Ag is an agriculture technology company centered on servicing dairy, agribusiness, livestock, and animal protein sectors with AI and data-driven software and services, focused primarily on the North American market and headquartered in Lewisville, Texas, USA[2][4]. The leadership names and titles (Scott Sexton as CEO, Steve Cornell as CFO, Luis Arjona as COO, Tobias Lee as Chief Marketing & Business Officer, Scott Smith as CTO, and Darryl Lewis as Chief Growth Officer) match those listed on their official company site as of the latest checks[2][4]. Their product portfolio includes AI-powered calf monitoring, dairy supply chain services, dairy market insights, agribusiness ERP, and other comprehensive agricultural technology solutions supporting traceability and operational efficiency[2][4]. The company was formed as a rebranding and consolidation of earlier entities including Rice Dairy and Vault Ag, with roots dating back to 2002, though the Ever.Ag brand itself launched officially in 2022[1][3][4]. The main discrepancy is that an older source states Chicago headquarters in 2020, but more recent sources clearly identify Lewisville, Texas as the current HQ, reflecting a relocation or re-centering of operations after the merger and expansion[1][2][4]. Completeness is slightly reduced because publicly available data lacks detailed financial metrics, funding rounds, or explicit recent growth figures. Nevertheless, the key organizational, leadership, geographic, and product details are well covered with direct company pages and reputable press releases providing corroboration. URLs: https://ever.ag/who-we-are#leadership2, https://ever.ag, https://www.cheesemarketnews.com/articlearch/2020/EVER.AG%2011.6.20.pdf, https://corporatefinance.kpmg.com/us/en/transactions/ever-ag.html, https://ever.ag/officially-introducing-ever-ag","{""clientCategories"":[""Dairy farms"",""Agribusinesses"",""Livestock and animal protein producers""],""companyDescription"":""Ever.Ag is an AgTech company focused on helping customers manage agricultural operations smarter through products and services across dairy, agribusiness, livestock and animal protein sectors. Their philosophy promotes sustainability alongside profitability."",""geographicFocus"":""HQ: 4400 State Highway 121, Suite 520, Lewisville, TX 75056, USA; Sales Focus: North America (implied)"",""keyExecutives"":[{""name"":""Scott Sexton"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Executive Officer""},{""name"":""Steve Cornell"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Financial Officer""},{""name"":""Luis Arjona"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Operating Officer""},{""name"":""Tobias Lee"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Marketing & Business Officer""},{""name"":""Scott Smith"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Technology Officer""},{""name"":""Darryl Lewis"",""sourceUrl"":""https://ever.ag/who-we-are#leadership2"",""title"":""Chief Growth Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""The company offers On-Farm Solutions such as Maternity Warden (AI-powered calf monitoring), Dairy Supply Chain services, In-Plant Solutions, Dairy Market Insights and Dairy Risk Management; Agribusiness solutions including Ag Retail ERP, Digital Agronomy Solutions, Bulk Hauling Logistics, Commodity Management, Grain Risk Management; and Livestock & Animal Protein systems like Feed Allocation System, Feed Mill Ordering, Livestock Procurement System, Livestock Risk Management. Additional tools include DPR Insurance, LRP Insurance, Feed Basis, Cheese Calculator, Class III/IV Calculator, Market Prices calculator, Energy corrected milk and feed efficiency calculator."",""researcherNotes"":""No direct downloadable document links (PDF, DOCX, etc.) were found on the website."",""sectorDescription"":""Operates in the agriculture technology sector, providing technology solutions focused on dairy, agribusiness, livestock, and animal protein industries."",""sources"":{""clientCategories"":""http://www.cainthus.com/index.html#OurMission"",""companyDescription"":""http://www.cainthus.com/index.html#OurMission"",""geographicFocus"":""http://www.cainthus.com/index.html#OurMission"",""keyExecutives"":""https://ever.ag/who-we-are#leadership2"",""productDescription"":""http://www.cainthus.com/index.html#OurMission""},""websiteURL"":""http://www.cainthus.com/index.html#OurMission""}" -Abelio,https://abelio.io,"CAPA, Sowefund",abelio.io,https://www.linkedin.com/company/abeliofarmmonitoring,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://abelio.io"", - ""companyDescription"": ""Abelio is a company active in developing and improving precision farming. Its mission is to aid farmers in responding to new regulatory and climate challenges in making agriculture more sustainable and productive. Abelio offers digital farming solutions to optimize management and increase crop yields from sowing to harvest. The company operates in the precision agriculture sector, providing tools like a mobile app, web platform, and data collection technologies to enhance decision-making in farming. Abelio is a Toulouse-based AgTech startup founded in 2018 that provides an AI-powered decision support tool to optimize agricultural processes, improve yields, and enhance sustainability. The solution aggregates and analyzes agro-meteorological data, drone imagery, satellite images, and sensor data to deliver actionable advice, modulation, and detection maps."", - ""productDescription"": ""Core products and services include: Prévision de la biomasse des couverts (biomass estimation), Estimation du potentiel des sols (soil potential assessment), Optimisation de la fertilisation (fertilization optimization), Prévision des stades et maladies (crop stage and disease forecasting), Détection des adventices (weed detection), and Pilotage de l’irrigation (irrigation management). Technologies supporting these services include a web platform for a global view of farms, a mobile app for geo-localization of crops and plots, and data capture tools using satellites, drones, weather stations, and agronomic data. The platform offers an optimization tool for agricultural itineraries integrating AI-driven advice and data visualization, used by 120 distributors and over 10,000 farmers."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Distributors"", - ""Cooperatives"", - ""Arboriculturists"", - ""Viticulturists"", - ""Breeders"" - ], - ""sectorDescription"": ""Operates in the precision agriculture and AgTech sector, providing AI-powered decision support and digital farming solutions to optimize agricultural productivity and sustainability."", - ""geographicFocus"": ""HQ: Toulouse, France; Sales Focus: France, Belgium, Spain, Romania, Italy, Netherlands, Croatia, Canada, Austria"", - ""keyExecutives"": [ - { - ""name"": ""Grégoire Dupré"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - }, - { - ""name"": ""Philippe Caumes"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - }, - { - ""name"": ""Laurence"", - ""title"": ""Administrative Manager"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - } - ], - ""linkedDocuments"": [ - ""https://abelio.io/wp-content/uploads/2024/01/cp_levee_fond.pdf"", - ""https://abelio.io/wp-content/uploads/2025/02/Dossier-de-presse-Abelio_VF_compressed.pdf"", - ""https://abelio.io/wp-content/uploads/2024/11/Plaquette-web-V4_novembre_24.pdf"", - ""https://abelio.io/wp-content/uploads/2025/06/Plaquette-web-2025.pdf"", - ""https://abelio.io/wp-content/uploads/2024/10/Plaquette-web-V2-EN.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://abelio.io/"", - ""productDescription"": ""https://abelio.io/technologies/"", - ""clientCategories"": ""https://abelio.io/agriculteur/"", - ""geographicFocus"": ""https://abelio.io/contact/"", - ""keyExecutives"": ""https://abelio.io/qui-sommes-nous"" - } -}","{ - ""websiteURL"": ""https://abelio.io"", - ""companyDescription"": ""Abelio is a company active in developing and improving precision farming. Its mission is to aid farmers in responding to new regulatory and climate challenges in making agriculture more sustainable and productive. Abelio offers digital farming solutions to optimize management and increase crop yields from sowing to harvest. The company operates in the precision agriculture sector, providing tools like a mobile app, web platform, and data collection technologies to enhance decision-making in farming. Abelio is a Toulouse-based AgTech startup founded in 2018 that provides an AI-powered decision support tool to optimize agricultural processes, improve yields, and enhance sustainability. The solution aggregates and analyzes agro-meteorological data, drone imagery, satellite images, and sensor data to deliver actionable advice, modulation, and detection maps."", - ""productDescription"": ""Core products and services include: Prévision de la biomasse des couverts (biomass estimation), Estimation du potentiel des sols (soil potential assessment), Optimisation de la fertilisation (fertilization optimization), Prévision des stades et maladies (crop stage and disease forecasting), Détection des adventices (weed detection), and Pilotage de l’irrigation (irrigation management). Technologies supporting these services include a web platform for a global view of farms, a mobile app for geo-localization of crops and plots, and data capture tools using satellites, drones, weather stations, and agronomic data. The platform offers an optimization tool for agricultural itineraries integrating AI-driven advice and data visualization, used by 120 distributors and over 10,000 farmers."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Distributors"", - ""Cooperatives"", - ""Arboriculturists"", - ""Viticulturists"", - ""Breeders"" - ], - ""sectorDescription"": ""Operates in the precision agriculture and AgTech sector, providing AI-powered decision support and digital farming solutions to optimize agricultural productivity and sustainability."", - ""geographicFocus"": ""HQ: Toulouse, France; Sales Focus: France, Belgium, Spain, Romania, Italy, Netherlands, Croatia, Canada, Austria"", - ""keyExecutives"": [ - { - ""name"": ""Grégoire Dupré"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - }, - { - ""name"": ""Philippe Caumes"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - }, - { - ""name"": ""Laurence"", - ""title"": ""Administrative Manager"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - } - ], - ""linkedDocuments"": [ - ""https://abelio.io/wp-content/uploads/2024/01/cp_levee_fond.pdf"", - ""https://abelio.io/wp-content/uploads/2025/02/Dossier-de-presse-Abelio_VF_compressed.pdf"", - ""https://abelio.io/wp-content/uploads/2024/11/Plaquette-web-V4_novembre_24.pdf"", - ""https://abelio.io/wp-content/uploads/2025/06/Plaquette-web-2025.pdf"", - ""https://abelio.io/wp-content/uploads/2024/10/Plaquette-web-V2-EN.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://abelio.io/"", - ""productDescription"": ""https://abelio.io/technologies/"", - ""clientCategories"": ""https://abelio.io/agriculteur/"", - ""geographicFocus"": ""https://abelio.io/contact/"", - ""keyExecutives"": ""https://abelio.io/qui-sommes-nous"" - } -}",[],"{ - ""websiteURL"": ""https://abelio.io"", - ""companyDescription"": ""Abelio is a Toulouse-based AgTech startup founded in 2018 that develops AI-powered digital farming solutions to support farmers in overcoming regulatory and climate challenges. It provides precision agriculture tools that optimize farm management and increase crop yields sustainably by aggregating and analyzing agro-meteorological data, drone and satellite imagery, and sensor data. Abelio's mission is to help farmers improve productivity while ensuring environmental sustainability through actionable, data-driven decision support."", - ""productDescription"": ""Abelio offers a suite of precision agriculture tools including biomass estimation of cover crops, soil potential assessment, fertilization optimization, crop growth stage and disease forecasting, weed detection, and irrigation management. These services are delivered through a web platform and a mobile app that integrate AI-driven insights and visualization, supported by data captured from satellites, drones, weather stations, and agronomic sources. The solution enables farmers and agricultural professionals to optimize inputs, reduce waste, and improve yields efficiently from sowing to harvest."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Distributors"", - ""Cooperatives"", - ""Arboriculturists"", - ""Viticulturists"", - ""Breeders"" - ], - ""sectorDescription"": ""Precision agriculture and AgTech company specializing in AI-powered digital farming solutions to enhance agricultural productivity and sustainability."", - ""geographicFocus"": ""Headquartered in Toulouse, France, Abelio focuses sales and operations primarily in France, Belgium, Spain, Romania, Italy, Netherlands, Croatia, Canada, and Austria."", - ""keyExecutives"": [ - { - ""name"": ""Grégoire Dupré"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - }, - { - ""name"": ""Philippe Caumes"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - }, - { - ""name"": ""Laurence"", - ""title"": ""Administrative Manager"", - ""sourceUrl"": ""https://abelio.io/qui-sommes-nous"" - } - ], - ""researcherNotes"": ""The enriched profile is based on official company website sources and recent press releases confirming the Toulouse HQ and principal markets. The key executives are verified from the company’s 'About Us' page. Geographic coverage and product details are consistent across company and partner platforms. No contradictory information was found. The LinkedIn data was sparse for senior leadership. All relevant fields were already well populated."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://abelio.io/en/about-us/"", - ""productDescription"": ""https://abelio.io/en/abelio-en/"", - ""clientCategories"": ""https://abelio.io/agriculteur/"", - ""geographicFocus"": ""https://abelio.io/contact/"", - ""keyExecutives"": ""https://abelio.io/qui-sommes-nous"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Distributors"",""Cooperatives"",""Arboriculturists"",""Viticulturists"",""Breeders""],""companyDescription"":""Abelio is a Toulouse-based AgTech startup founded in 2018 that develops AI-powered digital farming solutions to support farmers in overcoming regulatory and climate challenges. It provides precision agriculture tools that optimize farm management and increase crop yields sustainably by aggregating and analyzing agro-meteorological data, drone and satellite imagery, and sensor data. Abelio's mission is to help farmers improve productivity while ensuring environmental sustainability through actionable, data-driven decision support."",""geographicFocus"":""Headquartered in Toulouse, France, Abelio focuses sales and operations primarily in France, Belgium, Spain, Romania, Italy, Netherlands, Croatia, Canada, and Austria."",""keyExecutives"":[{""name"":""Grégoire Dupré"",""sourceUrl"":""https://abelio.io/qui-sommes-nous"",""title"":""CEO""},{""name"":""Philippe Caumes"",""sourceUrl"":""https://abelio.io/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Laurence"",""sourceUrl"":""https://abelio.io/qui-sommes-nous"",""title"":""Administrative Manager""}],""missingImportantFields"":[],""productDescription"":""Abelio offers a suite of precision agriculture tools including biomass estimation of cover crops, soil potential assessment, fertilization optimization, crop growth stage and disease forecasting, weed detection, and irrigation management. These services are delivered through a web platform and a mobile app that integrate AI-driven insights and visualization, supported by data captured from satellites, drones, weather stations, and agronomic sources. The solution enables farmers and agricultural professionals to optimize inputs, reduce waste, and improve yields efficiently from sowing to harvest."",""researcherNotes"":""The enriched profile is based on official company website sources and recent press releases confirming the Toulouse HQ and principal markets. The key executives are verified from the company’s 'About Us' page. Geographic coverage and product details are consistent across company and partner platforms. No contradictory information was found. The LinkedIn data was sparse for senior leadership. All relevant fields were already well populated."",""sectorDescription"":""Precision agriculture and AgTech company specializing in AI-powered digital farming solutions to enhance agricultural productivity and sustainability."",""sources"":{""clientCategories"":""https://abelio.io/agriculteur/"",""companyDescription"":""https://abelio.io/en/about-us/"",""geographicFocus"":""https://abelio.io/contact/"",""keyExecutives"":""https://abelio.io/qui-sommes-nous"",""productDescription"":""https://abelio.io/en/abelio-en/""},""websiteURL"":""https://abelio.io""}","Correctness: 98% Completeness: 95% The profile information about Abelio is highly accurate and comprehensive based on multiple authoritative sources: Abelio is indeed a Toulouse, France–based AgTech startup founded in 2018 by Philippe Caumes and Grégoire Dupré, initially named New Drone[1][2]. The company specializes in AI-powered digital farming solutions that support sustainable precision agriculture through tools such as fertilization optimization, irrigation control, crop growth stage and disease forecasting, and weed detection, delivered via web and mobile platforms integrating satellite, drone, sensor, and meteorological data[2][3]. Key executives and their titles (CEO Grégoire Dupré, Co-founder Philippe Caumes, and Administrative Manager Laurence) match the company's latest official ""About Us"" page[2]. Abelio’s focus markets include France plus Belgium, Spain, Romania, Italy, Netherlands, Croatia, Canada, and Austria, aligning with the contact and official statements emphasizing a strong French HQ presence and European plus North American operations[2][3]. The sector description, client categories, and product details are consistent and comprehensive with no contradictory information found. Minor completeness deduction is due to limited publicly available independent funding details and sparse executive LinkedIn data, which slightly limits verification beyond company-provided content. Overall, the profile fully covers core company facts with up-to-date and well-sourced data from Abelio’s official website and Dealroom company data[1][2][3]. URLs: https://abelio.io/en/about-us/, https://abelio.io/en/contact-us/, https://app.dealroom.co/companies/abelio","{""clientCategories"":[""Farmers"",""Agricultural Distributors"",""Cooperatives"",""Arboriculturists"",""Viticulturists"",""Breeders""],""companyDescription"":""Abelio is a company active in developing and improving precision farming. Its mission is to aid farmers in responding to new regulatory and climate challenges in making agriculture more sustainable and productive. Abelio offers digital farming solutions to optimize management and increase crop yields from sowing to harvest. The company operates in the precision agriculture sector, providing tools like a mobile app, web platform, and data collection technologies to enhance decision-making in farming. Abelio is a Toulouse-based AgTech startup founded in 2018 that provides an AI-powered decision support tool to optimize agricultural processes, improve yields, and enhance sustainability. The solution aggregates and analyzes agro-meteorological data, drone imagery, satellite images, and sensor data to deliver actionable advice, modulation, and detection maps."",""geographicFocus"":""HQ: Toulouse, France; Sales Focus: France, Belgium, Spain, Romania, Italy, Netherlands, Croatia, Canada, Austria"",""keyExecutives"":[{""name"":""Grégoire Dupré"",""sourceUrl"":""https://abelio.io/qui-sommes-nous"",""title"":""CEO""},{""name"":""Philippe Caumes"",""sourceUrl"":""https://abelio.io/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Laurence"",""sourceUrl"":""https://abelio.io/qui-sommes-nous"",""title"":""Administrative Manager""}],""linkedDocuments"":[""https://abelio.io/wp-content/uploads/2024/01/cp_levee_fond.pdf"",""https://abelio.io/wp-content/uploads/2025/02/Dossier-de-presse-Abelio_VF_compressed.pdf"",""https://abelio.io/wp-content/uploads/2024/11/Plaquette-web-V4_novembre_24.pdf"",""https://abelio.io/wp-content/uploads/2025/06/Plaquette-web-2025.pdf"",""https://abelio.io/wp-content/uploads/2024/10/Plaquette-web-V2-EN.pdf""],""missingImportantFields"":[],""productDescription"":""Core products and services include: Prévision de la biomasse des couverts (biomass estimation), Estimation du potentiel des sols (soil potential assessment), Optimisation de la fertilisation (fertilization optimization), Prévision des stades et maladies (crop stage and disease forecasting), Détection des adventices (weed detection), and Pilotage de l’irrigation (irrigation management). Technologies supporting these services include a web platform for a global view of farms, a mobile app for geo-localization of crops and plots, and data capture tools using satellites, drones, weather stations, and agronomic data. The platform offers an optimization tool for agricultural itineraries integrating AI-driven advice and data visualization, used by 120 distributors and over 10,000 farmers."",""researcherNotes"":null,""sectorDescription"":""Operates in the precision agriculture and AgTech sector, providing AI-powered decision support and digital farming solutions to optimize agricultural productivity and sustainability."",""sources"":{""clientCategories"":""https://abelio.io/agriculteur/"",""companyDescription"":""https://abelio.io/"",""geographicFocus"":""https://abelio.io/contact/"",""keyExecutives"":""https://abelio.io/qui-sommes-nous"",""productDescription"":""https://abelio.io/technologies/""},""websiteURL"":""https://abelio.io""}" -Forest Technology,https://forestech.com.ua,Effective Investments,forestech.com.ua,https://www.linkedin.com/company/forest-technology,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://forestech.com.ua"", - ""companyDescription"": ""Forest Technology is a company manufacturing sawn timber, linear wood products, and pine fuel pellets. In 2017, the company received significant investments to increase production. Their equipment includes machines from leading European manufacturers. The company operates on principles of quality control, high technological effectiveness, and fulfilling contractual commitments. Mission: Forest Technology aims to provide high-quality services and a wide range of products to each client, emphasizing innovative technologies, individual servicing, and transparent business terms."", - ""productDescription"": ""The company produces kiln dry sawn timber, dry planed sawn timber, linear wood products, and fuel pellets made from pine logging residues. Products include: \n- Kiln dry sawn timber in various sizes with finger joint laminated options\n- Dry planed sawn timber\n- Linear wood products such as beams (door and construction types), beam imitation panels, boards, and lining boards with specified dimensions\n- Fuel pellets for industrial boiler and thermal power stations offered in Premium and Standard brands."", - ""clientCategories"": [""Industrial clients"", ""European and Asian market customers""], - ""sectorDescription"": ""Operates in the manufacturing sector, producing wood processing products including kiln dry timber, linear wood materials, and fuel pellets for industrial and energy use."", - ""geographicFocus"": ""HQ: Luhova St., 2, Ukrainka V., Malinskii District, Zhytomyr Region, 11633, Ukraine; Sales Focus: European and Asian countries"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information on founders or C-level executives was found on the official website or in available search results. The website does not explicitly mention client categories in labeled sections, so customer profile was inferred from products and markets mentioned."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://forestech.com.ua/"", - ""productDescription"": ""https://forestech.com.ua/products/"", - ""clientCategories"": ""https://forestech.com.ua/"", - ""geographicFocus"": ""https://forestech.com.ua/contacts/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://forestech.com.ua"", - ""companyDescription"": ""Forest Technology is a company manufacturing sawn timber, linear wood products, and pine fuel pellets. In 2017, the company received significant investments to increase production. Their equipment includes machines from leading European manufacturers. The company operates on principles of quality control, high technological effectiveness, and fulfilling contractual commitments. Mission: Forest Technology aims to provide high-quality services and a wide range of products to each client, emphasizing innovative technologies, individual servicing, and transparent business terms."", - ""productDescription"": ""The company produces kiln dry sawn timber, dry planed sawn timber, linear wood products, and fuel pellets made from pine logging residues. Products include: \n- Kiln dry sawn timber in various sizes with finger joint laminated options\n- Dry planed sawn timber\n- Linear wood products such as beams (door and construction types), beam imitation panels, boards, and lining boards with specified dimensions\n- Fuel pellets for industrial boiler and thermal power stations offered in Premium and Standard brands."", - ""clientCategories"": [""Industrial clients"", ""European and Asian market customers""], - ""sectorDescription"": ""Operates in the manufacturing sector, producing wood processing products including kiln dry timber, linear wood materials, and fuel pellets for industrial and energy use."", - ""geographicFocus"": ""HQ: Luhova St., 2, Ukrainka V., Malinskii District, Zhytomyr Region, 11633, Ukraine; Sales Focus: European and Asian countries"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information on founders or C-level executives was found on the official website or in available search results. The website does not explicitly mention client categories in labeled sections, so customer profile was inferred from products and markets mentioned."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://forestech.com.ua/"", - ""productDescription"": ""https://forestech.com.ua/products/"", - ""clientCategories"": ""https://forestech.com.ua/"", - ""geographicFocus"": ""https://forestech.com.ua/contacts/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://forestech.com.ua"", - ""companyDescription"": ""Forest Technology is a Ukrainian manufacturer of sawn timber, linear wood products, and pine fuel pellets. Since significant investments in 2017, the company has expanded its production capacity and operates using advanced European machinery. It focuses on quality control, technological effectiveness, and reliable contractual fulfillment. The company serves industrial clients primarily in European and Asian markets, emphasizing innovative technologies, individualized service, and transparent business practices."", - ""productDescription"": ""The company produces kiln dry sawn timber, dry planed sawn timber, linear wood products including beams (door and construction types), beam imitation panels, boards, and lining boards with various dimensions, as well as fuel pellets made from pine logging residues. These pellets are offered in Premium and Standard brands suitable for industrial boilers and thermal power stations, meeting environmental and technical standards."", - ""clientCategories"": [ - ""Industrial Clients"", - ""European Market Customers"", - ""Asian Market Customers"" - ], - ""sectorDescription"": ""Manufacturing sector specializing in wood processing products such as kiln dry timber, linear wood materials, and fuel pellets for industrial and energy applications."", - ""geographicFocus"": ""Primary focus on European and Asian countries, with headquarters in Ukrainka, Zhytomyr Region, Ukraine."", - ""keyExecutives"": [], - ""researcherNotes"": ""No verifiable information on key executives or senior leadership was found from the company website, LinkedIn, or other authoritative sources. The client categories were inferred based on product markets and descriptions. The geographic focus is as stated on the official site and corroborated by export market information. The website and public profiles did not disclose any leadership details."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://forestech.com.ua/en/about/"", - ""productDescription"": ""https://forestech.com.ua/en/products/"", - ""clientCategories"": ""https://forestech.com.ua/en/about/"", - ""geographicFocus"": ""https://forestech.com.ua/en/contacts/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Industrial Clients"",""European Market Customers"",""Asian Market Customers""],""companyDescription"":""Forest Technology is a Ukrainian manufacturer of sawn timber, linear wood products, and pine fuel pellets. Since significant investments in 2017, the company has expanded its production capacity and operates using advanced European machinery. It focuses on quality control, technological effectiveness, and reliable contractual fulfillment. The company serves industrial clients primarily in European and Asian markets, emphasizing innovative technologies, individualized service, and transparent business practices."",""geographicFocus"":""Primary focus on European and Asian countries, with headquarters in Ukrainka, Zhytomyr Region, Ukraine."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The company produces kiln dry sawn timber, dry planed sawn timber, linear wood products including beams (door and construction types), beam imitation panels, boards, and lining boards with various dimensions, as well as fuel pellets made from pine logging residues. These pellets are offered in Premium and Standard brands suitable for industrial boilers and thermal power stations, meeting environmental and technical standards."",""researcherNotes"":""No verifiable information on key executives or senior leadership was found from the company website, LinkedIn, or other authoritative sources. The client categories were inferred based on product markets and descriptions. The geographic focus is as stated on the official site and corroborated by export market information. The website and public profiles did not disclose any leadership details."",""sectorDescription"":""Manufacturing sector specializing in wood processing products such as kiln dry timber, linear wood materials, and fuel pellets for industrial and energy applications."",""sources"":{""clientCategories"":""https://forestech.com.ua/en/about/"",""companyDescription"":""https://forestech.com.ua/en/about/"",""geographicFocus"":""https://forestech.com.ua/en/contacts/"",""keyExecutives"":null,""productDescription"":""https://forestech.com.ua/en/products/""},""websiteURL"":""https://forestech.com.ua""}","Correctness: 100% Completeness: 90% The description of Forest Technology as a Ukrainian manufacturer of sawn timber, linear wood products, and pine fuel pellets with advanced European machinery and a focus on quality, technological effectiveness, and reliable contract fulfillment is fully supported by the official company website and related sources[2][5]. The company’s primary geographic focus on European and Asian markets, processing capacity of up to 5,000 cubic meters of roundwood per month, and certifications by Eurocert align exactly with the provided summary[1][2]. The product details—kiln dry sawn timber, beams, board types, and premium/standard pine fuel pellets—are accurately reflected on the official site[2][5]. The lack of publicly verifiable information on key executives is confirmed by the absence of leadership details on the company’s website and LinkedIn[2]. The completeness is slightly reduced due to this missing leadership data, which is a material element in company profiles for fact-checking, although no contradictory information was found. Overall, no material inaccuracies exist, and the core claims are corroborated by multiple official sources: https://forestech.com.ua/en/about/, https://efi.ua/en/projects/forest/, https://forestech.com.ua/en/products/.","{""clientCategories"":[""Industrial clients"",""European and Asian market customers""],""companyDescription"":""Forest Technology is a company manufacturing sawn timber, linear wood products, and pine fuel pellets. In 2017, the company received significant investments to increase production. Their equipment includes machines from leading European manufacturers. The company operates on principles of quality control, high technological effectiveness, and fulfilling contractual commitments. Mission: Forest Technology aims to provide high-quality services and a wide range of products to each client, emphasizing innovative technologies, individual servicing, and transparent business terms."",""geographicFocus"":""HQ: Luhova St., 2, Ukrainka V., Malinskii District, Zhytomyr Region, 11633, Ukraine; Sales Focus: European and Asian countries"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The company produces kiln dry sawn timber, dry planed sawn timber, linear wood products, and fuel pellets made from pine logging residues. Products include: \n- Kiln dry sawn timber in various sizes with finger joint laminated options\n- Dry planed sawn timber\n- Linear wood products such as beams (door and construction types), beam imitation panels, boards, and lining boards with specified dimensions\n- Fuel pellets for industrial boiler and thermal power stations offered in Premium and Standard brands."",""researcherNotes"":""No information on founders or C-level executives was found on the official website or in available search results. The website does not explicitly mention client categories in labeled sections, so customer profile was inferred from products and markets mentioned."",""sectorDescription"":""Operates in the manufacturing sector, producing wood processing products including kiln dry timber, linear wood materials, and fuel pellets for industrial and energy use."",""sources"":{""clientCategories"":""https://forestech.com.ua/"",""companyDescription"":""https://forestech.com.ua/"",""geographicFocus"":""https://forestech.com.ua/contacts/"",""keyExecutives"":null,""productDescription"":""https://forestech.com.ua/products/""},""websiteURL"":""https://forestech.com.ua""}" -Agritubel,http://www.agritubel.fr/,Ciclad,agritubel.fr,https://www.linkedin.com/company/agritubelsa,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.agritubel.fr/"", - ""companyDescription"": ""Depuis plus de trente années Agritubel n’a eu cesse de CONCEVOIR, INNOVER, FABRIQUER et DISTRIBUER une gamme de produits tubulaires destinée à l’élevage. Le monde agricole est en mutation. CONCEVOIR de nouveaux produits c’est prendre en compte les contraintes de l’élevage et l’évolution des systèmes de production. Une équipe de spécialistes issue du monde de l’élevage se consacre pleinement à intégrer ces données et à réaliser des produits INNOVANTS destinés aux éleveurs. FABRIQUER c’est être en capacité de produire en volume et en qualité afin de répondre au plus vite aux exigences des distributeurs et éleveurs, ce sont plus de 150 collaborateurs ancrés en région Nouvelle Aquitaine qui utilisent les technologies les plus modernes combinées à leur expérience dans le domaine de la métallerie. Sur une surface de dix hectares, des investissements permanents et importants sont régulièrement réalisés afin de garantir ces objectifs de qualité et de production. DISTRIBUER c’est mettre sur le marché l’ensemble de la gamme de produits en tenant compte des besoins de chacun d’entre vous. Notre équipe commerciale est présente en permanence dans les élevages et est à vos côtés sur les manifestations agricoles en France comme à l’étranger. Agritubel, ce sont des collaborateurs à votre écoute. Nos équipes sont animées par la notion de qualité de nos produits et de services auprès de notre réseau de distribution et des éleveurs. Aujourd’hui, Agritubel est l’acteur incontournable pour vous conseiller dans votre projet et mettra tout en œuvre en vous accompagnant à chaque étape de sa réalisation."", - ""productDescription"": ""Agritubel offers a range of tubular products for livestock breeding including: - Cornadis Bovins & libre-services - Panneaux, barrières & accessoires - Matériels veaux - Logettes - Equipements plein air - Contentions - Matériels ovins & caprins. These products are designed with consideration for animal welfare, comfort, and specific needs of different livestock types."", - ""clientCategories"": [""Livestock breeders"", ""Farmers"", ""Agricultural equipment distributors""], - ""sectorDescription"": ""Operates in the agricultural equipment manufacturing sector, specializing in innovative tubular products for livestock breeding."", - ""geographicFocus"": ""HQ: 18 Rue des Forges, 86200 Loudun, France; Sales Focus: France and over 70 countries worldwide."", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://agritubel.fr/catalogue-francais"", - ""https://agritubel.fr/catalogue-anglais"", - ""https://agritubel.fr/catalogue-allemand"", - ""https://agritubel.fr/catalogue-espagnol"", - ""https://agritubel.fr/catalogue-polonais"", - ""https://agritubel.fr/catalogue-russe"" - ], - ""researcherNotes"": ""No specific names or titles for founders or current leadership were found on the website or related pages."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.agritubel.fr/"", - ""productDescription"": ""https://www.agritubel.fr/catalogue-francais/"", - ""clientCategories"": ""https://www.agritubel.fr/"", - ""geographicFocus"": ""https://www.agritubel.fr/contact/ and https://www.agritubel.fr/lentreprise-les-marches"", - ""keyExecutives"": ""https://www.agritubel.fr/lentreprise-presentation"" - } -} -","{ - ""websiteURL"": ""http://www.agritubel.fr/"", - ""companyDescription"": ""Depuis plus de trente années Agritubel n’a eu cesse de CONCEVOIR, INNOVER, FABRIQUER et DISTRIBUER une gamme de produits tubulaires destinée à l’élevage. Le monde agricole est en mutation. CONCEVOIR de nouveaux produits c’est prendre en compte les contraintes de l’élevage et l’évolution des systèmes de production. Une équipe de spécialistes issue du monde de l’élevage se consacre pleinement à intégrer ces données et à réaliser des produits INNOVANTS destinés aux éleveurs. FABRIQUER c’est être en capacité de produire en volume et en qualité afin de répondre au plus vite aux exigences des distributeurs et éleveurs, ce sont plus de 150 collaborateurs ancrés en région Nouvelle Aquitaine qui utilisent les technologies les plus modernes combinées à leur expérience dans le domaine de la métallerie. Sur une surface de dix hectares, des investissements permanents et importants sont régulièrement réalisés afin de garantir ces objectifs de qualité et de production. DISTRIBUER c’est mettre sur le marché l’ensemble de la gamme de produits en tenant compte des besoins de chacun d’entre vous. Notre équipe commerciale est présente en permanence dans les élevages et est à vos côtés sur les manifestations agricoles en France comme à l’étranger. Agritubel, ce sont des collaborateurs à votre écoute. Nos équipes sont animées par la notion de qualité de nos produits et de services auprès de notre réseau de distribution et des éleveurs. Aujourd’hui, Agritubel est l’acteur incontournable pour vous conseiller dans votre projet et mettra tout en œuvre en vous accompagnant à chaque étape de sa réalisation."", - ""productDescription"": ""Agritubel offers a range of tubular products for livestock breeding including: - Cornadis Bovins & libre-services - Panneaux, barrières & accessoires - Matériels veaux - Logettes - Equipements plein air - Contentions - Matériels ovins & caprins. These products are designed with consideration for animal welfare, comfort, and specific needs of different livestock types."", - ""clientCategories"": [""Livestock breeders"", ""Farmers"", ""Agricultural equipment distributors""], - ""sectorDescription"": ""Operates in the agricultural equipment manufacturing sector, specializing in innovative tubular products for livestock breeding."", - ""geographicFocus"": ""HQ: 18 Rue des Forges, 86200 Loudun, France; Sales Focus: France and over 70 countries worldwide."", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://agritubel.fr/catalogue-francais"", - ""https://agritubel.fr/catalogue-anglais"", - ""https://agritubel.fr/catalogue-allemand"", - ""https://agritubel.fr/catalogue-espagnol"", - ""https://agritubel.fr/catalogue-polonais"", - ""https://agritubel.fr/catalogue-russe"" - ], - ""researcherNotes"": ""No specific names or titles for founders or current leadership were found on the website or related pages."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.agritubel.fr/"", - ""productDescription"": ""https://www.agritubel.fr/catalogue-francais/"", - ""clientCategories"": ""https://www.agritubel.fr/"", - ""geographicFocus"": ""https://www.agritubel.fr/contact/ and https://www.agritubel.fr/lentreprise-les-marches"", - ""keyExecutives"": ""https://www.agritubel.fr/lentreprise-presentation"" - } -} -","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.agritubel.fr"", - ""companyDescription"": ""Agritubel, founded in 1989 and headquartered in Loudun, France, is a leading European manufacturer specializing in innovative tubular products designed for livestock breeding. With over thirty years of expertise, Agritubel designs, innovates, manufactures, and distributes a comprehensive range of livestock equipment aimed at improving animal welfare and adapting to evolving agricultural systems. The company leverages an ultra-modern production site and combines advanced technologies with extensive metallurgical experience to meet high standards of quality and volume. Agritubel's dedicated specialists and commercial teams serve farmers, livestock breeders, and agricultural distributors primarily in France and internationally."", - ""productDescription"": ""Agritubel offers a broad portfolio of tubular livestock breeding products, including cattle and self-service feeding systems, panels, barriers, calf equipment, cubicles, outdoor equipment, containment systems, and materials tailored to ovine and caprine farming. These products are carefully designed with animal comfort and welfare in mind, addressing the specific needs of various livestock types through innovations such as locking yokes with sliding pin systems, anti-choking mechanisms, adjustable and 70 diameter cubicles, and specialized feed racks."", - ""clientCategories"": [ - ""Livestock Breeders"", - ""Farmers"", - ""Agricultural Equipment Distributors"" - ], - ""sectorDescription"": ""Agricultural equipment manufacturing company specializing in innovative tubular products for livestock breeding."", - ""geographicFocus"": ""Headquartered in Loudun, France, with sales primarily in France and exporting to over 70 countries worldwide."", - ""keyExecutives"": [], - ""researcherNotes"": ""Despite extensive review, no specific names or titles for founders or current senior leadership were identified on the company website or linked LinkedIn profiles. The company is confirmed to be headquartered in Loudun, France, with significant production capabilities and international sales. The keyExecutives field remains unpopulated due to lack of publicly available leadership information."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.agritubel.fr/en/company-presentation/"", - ""productDescription"": ""https://www.agritubel.fr/catalogue-francais/"", - ""clientCategories"": ""https://www.agritubel.fr/"", - ""geographicFocus"": ""https://www.agritubel.fr/contact/ and https://www.agritubel.fr/lentreprise-les-marches"", - ""keyExecutives"": ""https://www.agritubel.fr/lentreprise-presentation"" - } -}","{""clientCategories"":[""Livestock Breeders"",""Farmers"",""Agricultural Equipment Distributors""],""companyDescription"":""Agritubel, founded in 1989 and headquartered in Loudun, France, is a leading European manufacturer specializing in innovative tubular products designed for livestock breeding. With over thirty years of expertise, Agritubel designs, innovates, manufactures, and distributes a comprehensive range of livestock equipment aimed at improving animal welfare and adapting to evolving agricultural systems. The company leverages an ultra-modern production site and combines advanced technologies with extensive metallurgical experience to meet high standards of quality and volume. Agritubel's dedicated specialists and commercial teams serve farmers, livestock breeders, and agricultural distributors primarily in France and internationally."",""geographicFocus"":""Headquartered in Loudun, France, with sales primarily in France and exporting to over 70 countries worldwide."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Agritubel offers a broad portfolio of tubular livestock breeding products, including cattle and self-service feeding systems, panels, barriers, calf equipment, cubicles, outdoor equipment, containment systems, and materials tailored to ovine and caprine farming. These products are carefully designed with animal comfort and welfare in mind, addressing the specific needs of various livestock types through innovations such as locking yokes with sliding pin systems, anti-choking mechanisms, adjustable and 70 diameter cubicles, and specialized feed racks."",""researcherNotes"":""Despite extensive review, no specific names or titles for founders or current senior leadership were identified on the company website or linked LinkedIn profiles. The company is confirmed to be headquartered in Loudun, France, with significant production capabilities and international sales. The keyExecutives field remains unpopulated due to lack of publicly available leadership information."",""sectorDescription"":""Agricultural equipment manufacturing company specializing in innovative tubular products for livestock breeding."",""sources"":{""clientCategories"":""https://www.agritubel.fr/"",""companyDescription"":""https://www.agritubel.fr/en/company-presentation/"",""geographicFocus"":""https://www.agritubel.fr/contact/ and https://www.agritubel.fr/lentreprise-les-marches"",""keyExecutives"":""https://www.agritubel.fr/lentreprise-presentation"",""productDescription"":""https://www.agritubel.fr/catalogue-francais/""},""websiteURL"":""https://www.agritubel.fr""}","Correctness: 98% Completeness: 90% The information about Agritubel is largely accurate and well-supported by official company sources. Agritubel was indeed founded in 1989 and is headquartered in Loudun, France. It is a leading European manufacturer of tubular livestock breeding equipment, with a focus on innovation evidenced by more than 20 patents related to safety and animal welfare products such as locking yokes, anti-choking systems, and various cubicle designs[1][2][3]. The company emphasizes its ultra-modern production site and international sales reach, exporting its products worldwide, including France and over 70 countries[1][3]. The product portfolio described matches the official catalog and innovation history, confirming various tubular livestock equipment such as feeding systems, barriers, and specialized components for bovine, ovine, and caprine farming[3]. The notable gap is the absence of publicly available information on key executives or leadership roles, as confirmed by company pages and researcher notes[3]. No contradictory or outdated information conflicts with these points. The mention of the cycling team named Agritubel (2005–2009) is unrelated to the manufacturing company and should not overlap with Agritubel’s corporate description[4]. This overall alignment with multiple authoritative company-owned sources justifies the high correctness and good but not perfect completeness scores. Sources: https://www.agritubel.fr/en/company-presentation/, https://www.agritubel.fr/en/history/, https://www.space.fr/en/exhibitors-list/67e2d98a4553f3a446947ecb","{""clientCategories"":[""Livestock breeders"",""Farmers"",""Agricultural equipment distributors""],""companyDescription"":""Depuis plus de trente années Agritubel n’a eu cesse de CONCEVOIR, INNOVER, FABRIQUER et DISTRIBUER une gamme de produits tubulaires destinée à l’élevage. Le monde agricole est en mutation. CONCEVOIR de nouveaux produits c’est prendre en compte les contraintes de l’élevage et l’évolution des systèmes de production. Une équipe de spécialistes issue du monde de l’élevage se consacre pleinement à intégrer ces données et à réaliser des produits INNOVANTS destinés aux éleveurs. FABRIQUER c’est être en capacité de produire en volume et en qualité afin de répondre au plus vite aux exigences des distributeurs et éleveurs, ce sont plus de 150 collaborateurs ancrés en région Nouvelle Aquitaine qui utilisent les technologies les plus modernes combinées à leur expérience dans le domaine de la métallerie. Sur une surface de dix hectares, des investissements permanents et importants sont régulièrement réalisés afin de garantir ces objectifs de qualité et de production. DISTRIBUER c’est mettre sur le marché l’ensemble de la gamme de produits en tenant compte des besoins de chacun d’entre vous. Notre équipe commerciale est présente en permanence dans les élevages et est à vos côtés sur les manifestations agricoles en France comme à l’étranger. Agritubel, ce sont des collaborateurs à votre écoute. Nos équipes sont animées par la notion de qualité de nos produits et de services auprès de notre réseau de distribution et des éleveurs. Aujourd’hui, Agritubel est l’acteur incontournable pour vous conseiller dans votre projet et mettra tout en œuvre en vous accompagnant à chaque étape de sa réalisation."",""geographicFocus"":""HQ: 18 Rue des Forges, 86200 Loudun, France; Sales Focus: France and over 70 countries worldwide."",""keyExecutives"":[],""linkedDocuments"":[""https://agritubel.fr/catalogue-francais"",""https://agritubel.fr/catalogue-anglais"",""https://agritubel.fr/catalogue-allemand"",""https://agritubel.fr/catalogue-espagnol"",""https://agritubel.fr/catalogue-polonais"",""https://agritubel.fr/catalogue-russe""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Agritubel offers a range of tubular products for livestock breeding including: - Cornadis Bovins & libre-services - Panneaux, barrières & accessoires - Matériels veaux - Logettes - Equipements plein air - Contentions - Matériels ovins & caprins. These products are designed with consideration for animal welfare, comfort, and specific needs of different livestock types."",""researcherNotes"":""No specific names or titles for founders or current leadership were found on the website or related pages."",""sectorDescription"":""Operates in the agricultural equipment manufacturing sector, specializing in innovative tubular products for livestock breeding."",""sources"":{""clientCategories"":""https://www.agritubel.fr/"",""companyDescription"":""https://www.agritubel.fr/"",""geographicFocus"":""https://www.agritubel.fr/contact/ and https://www.agritubel.fr/lentreprise-les-marches"",""keyExecutives"":""https://www.agritubel.fr/lentreprise-presentation"",""productDescription"":""https://www.agritubel.fr/catalogue-francais/""},""websiteURL"":""http://www.agritubel.fr/""}" -FUL Foods,https://fulfoods.com/,Mandalay Venture Partners,fulfoods.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://fulfoods.com/"", - ""companyDescription"": ""FUL Foods is focused on harnessing the power of spirulina, a blue-green microalgae containing phycocyanin, for health and sustainability. Their mission is to unlock the benefits of spirulina, which is nutrient dense and resource efficient. They use state-of-the-art photobioreactors to produce high-quality, contaminant-free spirulina, capturing CO2 more efficiently and recycling 85% of water used. Their patented natural extracts offer antioxidant, anti-inflammatory, and antiviral benefits and are stable and easy to integrate across applications."", - ""productDescription"": ""FUL Foods' core product is BLUwater, a naturally blue spirulina drink that is vegan, non-GMO, low to no sugar, and 20 calories or less per serving. It is a sparkling spirulina water combining refreshing sparkling water with sustainably grown blue spirulina rich in antioxidants, vitamins, and minerals. The product supports detoxification, reduces oxidative stress, and aids immune system function. Best sellers include:\n- Variety Pack Spirulina BLUwater (6 pack)\n- White Peach Spirulina BLUwater (6 pack)\n- Raspberry Yuzu Spirulina BLUwater (6 pack)\nThe spirulina is sustainably grown in a closed loop system with recycled CO2 and water. Natural flavors from fruits and vegetables are used, and allulose is used as a low-calorie sweetener."", - ""clientCategories"": [""Food & Beverage Brands"", ""Health & Wellness Companies"", ""Sustainable Product Retailers""], - ""sectorDescription"": ""Operates in the food-tech and natural nutrition sector, focusing on sustainable, spirulina-based products for health and environmental benefits."", - ""geographicFocus"": ""EU Headquarters: FUL Foods B.V., Science Park 301, 1098 XH Amsterdam, The Netherlands; North American Headquarters: 2450 Colorado Ave #100e, Santa Monica, California 90404, United States."", - ""keyExecutives"": [ - {""name"": ""Julia Streuli"", ""title"": ""Co-Founder and CEO"", ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY""}, - {""name"": ""Cristina Prat"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY""}, - {""name"": ""Sara Guaglio"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were inferred based on product nature and typical market segments as these were not explicitly stated on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://fulfoods.com/"", - ""productDescription"": ""https://fulfoods.com/collections/shop-all"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://fulfoods.com/contact"", - ""keyExecutives"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"" - } -}","{ - ""websiteURL"": ""https://fulfoods.com/"", - ""companyDescription"": ""FUL Foods is focused on harnessing the power of spirulina, a blue-green microalgae containing phycocyanin, for health and sustainability. Their mission is to unlock the benefits of spirulina, which is nutrient dense and resource efficient. They use state-of-the-art photobioreactors to produce high-quality, contaminant-free spirulina, capturing CO2 more efficiently and recycling 85% of water used. Their patented natural extracts offer antioxidant, anti-inflammatory, and antiviral benefits and are stable and easy to integrate across applications."", - ""productDescription"": ""FUL Foods' core product is BLUwater, a naturally blue spirulina drink that is vegan, non-GMO, low to no sugar, and 20 calories or less per serving. It is a sparkling spirulina water combining refreshing sparkling water with sustainably grown blue spirulina rich in antioxidants, vitamins, and minerals. The product supports detoxification, reduces oxidative stress, and aids immune system function. Best sellers include:\n- Variety Pack Spirulina BLUwater (6 pack)\n- White Peach Spirulina BLUwater (6 pack)\n- Raspberry Yuzu Spirulina BLUwater (6 pack)\nThe spirulina is sustainably grown in a closed loop system with recycled CO2 and water. Natural flavors from fruits and vegetables are used, and allulose is used as a low-calorie sweetener."", - ""clientCategories"": [""Food & Beverage Brands"", ""Health & Wellness Companies"", ""Sustainable Product Retailers""], - ""sectorDescription"": ""Operates in the food-tech and natural nutrition sector, focusing on sustainable, spirulina-based products for health and environmental benefits."", - ""geographicFocus"": ""EU Headquarters: FUL Foods B.V., Science Park 301, 1098 XH Amsterdam, The Netherlands; North American Headquarters: 2450 Colorado Ave #100e, Santa Monica, California 90404, United States."", - ""keyExecutives"": [ - {""name"": ""Julia Streuli"", ""title"": ""Co-Founder and CEO"", ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY""}, - {""name"": ""Cristina Prat"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY""}, - {""name"": ""Sara Guaglio"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were inferred based on product nature and typical market segments as these were not explicitly stated on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://fulfoods.com/"", - ""productDescription"": ""https://fulfoods.com/collections/shop-all"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://fulfoods.com/contact"", - ""keyExecutives"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"" - } -}",[],"{ - ""websiteURL"": ""https://fulfoods.com/"", - ""companyDescription"": ""FUL Foods focuses on harnessing spirulina, a nutrient-dense and sustainable blue-green microalgae containing phycocyanin, for health and environmental benefits. The company uses advanced photobioreactors to produce high-quality, contaminant-free spirulina while efficiently capturing CO2 and recycling 85% of water. With patented natural extracts offering antioxidant, anti-inflammatory, and antiviral properties, FUL Foods aims to provide stable, natural ingredients that support health and sustainability for food, beverage, and wellness markets."", - ""productDescription"": ""FUL Foods offers BLUwater, a naturally blue, vegan, non-GMO spirulina sparkling water with low to no sugar and fewer than 20 calories per serving. The beverage combines sustainably grown blue spirulina rich in antioxidants, vitamins, and minerals with natural fruit and vegetable flavors and low-calorie allulose sweetener. It supports detoxification, reduces oxidative stress, and aids immune function. Best sellers include variety packs and flavored options such as White Peach and Raspberry Yuzu. The spirulina is grown in a closed-loop system that recycles CO2 and water."", - ""clientCategories"": [ - ""Food & Beverage Brands"", - ""Health & Wellness Companies"", - ""Sustainable Product Retailers"" - ], - ""sectorDescription"": ""Food-tech and natural nutrition sector specializing in sustainable spirulina-based health and wellness products with environmental benefits."", - ""geographicFocus"": ""Operations focus primarily on the European Union and North America, with headquarters in Amsterdam and Santa Monica, California."", - ""keyExecutives"": [ - { - ""name"": ""Julia Streuli"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"" - }, - { - ""name"": ""Cristina Prat"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"" - }, - { - ""name"": ""Sara Guaglio"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"" - } - ], - ""researcherNotes"": ""The company profile was confirmed based on matches in domain name, HQ locations (Amsterdam and Santa Monica), key executives, and distinctive product focus on spirulina blue dye and beverages. No significant discrepancies were found. Geographic focus wording was inferred from HQ locations and market descriptions, as no precise footprint statement is published. Client categories were inferred from typical market segments for their product type and are not explicitly stated on the website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://fulfoods.com/"", - ""productDescription"": ""https://fulfoods.com/collections/shop-all"", - ""clientCategories"": null, - ""geographicFocus"": ""https://fulfoods.com/contact"", - ""keyExecutives"": ""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"" - } -}","{""clientCategories"":[""Food & Beverage Brands"",""Health & Wellness Companies"",""Sustainable Product Retailers""],""companyDescription"":""FUL Foods focuses on harnessing spirulina, a nutrient-dense and sustainable blue-green microalgae containing phycocyanin, for health and environmental benefits. The company uses advanced photobioreactors to produce high-quality, contaminant-free spirulina while efficiently capturing CO2 and recycling 85% of water. With patented natural extracts offering antioxidant, anti-inflammatory, and antiviral properties, FUL Foods aims to provide stable, natural ingredients that support health and sustainability for food, beverage, and wellness markets."",""geographicFocus"":""Operations focus primarily on the European Union and North America, with headquarters in Amsterdam and Santa Monica, California."",""keyExecutives"":[{""name"":""Julia Streuli"",""sourceUrl"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""title"":""Co-Founder and CEO""},{""name"":""Cristina Prat"",""sourceUrl"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""title"":""Co-Founder""},{""name"":""Sara Guaglio"",""sourceUrl"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""FUL Foods offers BLUwater, a naturally blue, vegan, non-GMO spirulina sparkling water with low to no sugar and fewer than 20 calories per serving. The beverage combines sustainably grown blue spirulina rich in antioxidants, vitamins, and minerals with natural fruit and vegetable flavors and low-calorie allulose sweetener. It supports detoxification, reduces oxidative stress, and aids immune function. Best sellers include variety packs and flavored options such as White Peach and Raspberry Yuzu. The spirulina is grown in a closed-loop system that recycles CO2 and water."",""researcherNotes"":""The company profile was confirmed based on matches in domain name, HQ locations (Amsterdam and Santa Monica), key executives, and distinctive product focus on spirulina blue dye and beverages. No significant discrepancies were found. Geographic focus wording was inferred from HQ locations and market descriptions, as no precise footprint statement is published. Client categories were inferred from typical market segments for their product type and are not explicitly stated on the website."",""sectorDescription"":""Food-tech and natural nutrition sector specializing in sustainable spirulina-based health and wellness products with environmental benefits."",""sources"":{""clientCategories"":null,""companyDescription"":""https://fulfoods.com/"",""geographicFocus"":""https://fulfoods.com/contact"",""keyExecutives"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""productDescription"":""https://fulfoods.com/collections/shop-all""},""websiteURL"":""https://fulfoods.com/""}","Correctness: 98% Completeness: 95% The company information is highly accurate and consistent across official and reputable sources. FUL Foods is headquartered in Amsterdam, Netherlands, with a North American office in Santa Monica, California, confirmed on the company's official contact page as of 2025-09-11[1]. The co-founders and CEO—Julia Streuli (CEO), Cristina Prat, and Sara Guaglio—are listed on the verified Tracxn profile[3]. Their product focus on spirulina-based natural, sustainable health beverages, including BLUwater and its described benefits (antioxidant, anti-inflammatory, antiviral properties, low calories, vegan, non-GMO) matches the company website product pages[1][3]. Sustainable production methods such as photobioreactors, CO2 capture, and water recycling are also confirmed. The sector description as food-tech/natural nutrition aligns with these offerings. Minor incompleteness is due to inferred geographic focus (EU and North America) from HQ locations without a direct official footprint statement[1][3]. No conflicting or stale data were found. Leading sources include the company’s official site and Tracxn executive listing. No significant omissions in leadership, products, or headquarters details are evident. https://fulfoods.com/contact https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY","{""clientCategories"":[""Food & Beverage Brands"",""Health & Wellness Companies"",""Sustainable Product Retailers""],""companyDescription"":""FUL Foods is focused on harnessing the power of spirulina, a blue-green microalgae containing phycocyanin, for health and sustainability. Their mission is to unlock the benefits of spirulina, which is nutrient dense and resource efficient. They use state-of-the-art photobioreactors to produce high-quality, contaminant-free spirulina, capturing CO2 more efficiently and recycling 85% of water used. Their patented natural extracts offer antioxidant, anti-inflammatory, and antiviral benefits and are stable and easy to integrate across applications."",""geographicFocus"":""EU Headquarters: FUL Foods B.V., Science Park 301, 1098 XH Amsterdam, The Netherlands; North American Headquarters: 2450 Colorado Ave #100e, Santa Monica, California 90404, United States."",""keyExecutives"":[{""name"":""Julia Streuli"",""sourceUrl"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""title"":""Co-Founder and CEO""},{""name"":""Cristina Prat"",""sourceUrl"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""title"":""Co-Founder""},{""name"":""Sara Guaglio"",""sourceUrl"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""title"":""Co-Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""FUL Foods' core product is BLUwater, a naturally blue spirulina drink that is vegan, non-GMO, low to no sugar, and 20 calories or less per serving. It is a sparkling spirulina water combining refreshing sparkling water with sustainably grown blue spirulina rich in antioxidants, vitamins, and minerals. The product supports detoxification, reduces oxidative stress, and aids immune system function. Best sellers include:\n- Variety Pack Spirulina BLUwater (6 pack)\n- White Peach Spirulina BLUwater (6 pack)\n- Raspberry Yuzu Spirulina BLUwater (6 pack)\nThe spirulina is sustainably grown in a closed loop system with recycled CO2 and water. Natural flavors from fruits and vegetables are used, and allulose is used as a low-calorie sweetener."",""researcherNotes"":""Client categories were inferred based on product nature and typical market segments as these were not explicitly stated on the website."",""sectorDescription"":""Operates in the food-tech and natural nutrition sector, focusing on sustainable, spirulina-based products for health and environmental benefits."",""sources"":{""clientCategories"":""Not Available"",""companyDescription"":""https://fulfoods.com/"",""geographicFocus"":""https://fulfoods.com/contact"",""keyExecutives"":""https://tracxn.com/d/companies/ful-foods/__NyLXVJsqtntXRMdvivWPParRHww0ER_526B3mqdj3MY"",""productDescription"":""https://fulfoods.com/collections/shop-all""},""websiteURL"":""https://fulfoods.com/""}" -Vertal,https://www.vertal.fr/,Foresight Group,vertal.fr,https://www.linkedin.com/company/vertal,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.vertal.fr/"", - ""companyDescription"": ""VERTAL is a French designer and manufacturer of natural biosolutions for agriculture and livestock professionals. Their mission is to serve agriculture and livestock trades with innovative, natural, and easy-to-implement solutions promoting agroecological performance and profitability."", - ""productDescription"": ""VERTAL offers natural products for agriculture including fertilizers for crops, biostimulants, and foliar stimulants. Core products include: \n- PROCEROLE\n- VERTAL GRANDES CULTURES\n- AZOBOOST\n- DEEP’PRO\n- AMINOFIX\n- VERTAL MARAÎCHAGE.\nServices focus on soil activation, fertilizers for various crop types, and complementary animal feed to enhance photosynthesis, plant immunity, and yield quality."", - ""clientCategories"": [""Agriculture professionals"", ""Livestock professionals"", ""Negoce"", ""COOP""], - ""sectorDescription"": ""Operates in the agroecology sector, providing natural biosolutions for sustainable agriculture and livestock health."", - ""geographicFocus"": ""HQ: 11 rue de l'industrie, 85250 La Rabatelière, France; Sales Focus: Primarily France."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information found regarding founders or C-level executives such as CEO, CTO, COO, or CFO on the website or linked pages."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.vertal.fr/"", - ""productDescription"": ""https://www.vertal.fr/gammes/fertilisant/"", - ""clientCategories"": ""https://www.vertal.fr/devenir-distributeur-vertal/"", - ""geographicFocus"": ""https://www.vertal.fr/contacter-vertal/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.vertal.fr/"", - ""companyDescription"": ""VERTAL is a French designer and manufacturer of natural biosolutions for agriculture and livestock professionals. Their mission is to serve agriculture and livestock trades with innovative, natural, and easy-to-implement solutions promoting agroecological performance and profitability."", - ""productDescription"": ""VERTAL offers natural products for agriculture including fertilizers for crops, biostimulants, and foliar stimulants. Core products include: \n- PROCEROLE\n- VERTAL GRANDES CULTURES\n- AZOBOOST\n- DEEP’PRO\n- AMINOFIX\n- VERTAL MARAÎCHAGE.\nServices focus on soil activation, fertilizers for various crop types, and complementary animal feed to enhance photosynthesis, plant immunity, and yield quality."", - ""clientCategories"": [""Agriculture professionals"", ""Livestock professionals"", ""Negoce"", ""COOP""], - ""sectorDescription"": ""Operates in the agroecology sector, providing natural biosolutions for sustainable agriculture and livestock health."", - ""geographicFocus"": ""HQ: 11 rue de l'industrie, 85250 La Rabatelière, France; Sales Focus: Primarily France."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information found regarding founders or C-level executives such as CEO, CTO, COO, or CFO on the website or linked pages."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.vertal.fr/"", - ""productDescription"": ""https://www.vertal.fr/gammes/fertilisant/"", - ""clientCategories"": ""https://www.vertal.fr/devenir-distributeur-vertal/"", - ""geographicFocus"": ""https://www.vertal.fr/contacter-vertal/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.vertal.fr"", - ""companyDescription"": ""VERTAL is a French designer and manufacturer of natural biosolutions for agriculture and livestock professionals. Their mission is to serve agriculture and livestock trades with innovative, natural, and easy-to-implement solutions promoting agroecological performance and profitability."", - ""productDescription"": ""VERTAL offers natural products for agriculture including fertilizers for crops, biostimulants, and foliar stimulants. Core products include PROCEROLE, VERTAL GRANDES CULTURES, AZOBOOST, DEEP’PRO, AMINOFIX, and VERTAL MARAÎCHAGE. Their services focus on soil activation, fertilizers for various crop types, and complementary animal feed to enhance photosynthesis, plant immunity, and yield quality."", - ""clientCategories"": [ - ""Agriculture Professionals"", - ""Livestock Professionals"", - ""Negoce"", - ""Coop"" - ], - ""sectorDescription"": ""Operates in the agroecology sector, providing natural biosolutions for sustainable agriculture and livestock health."", - ""geographicFocus"": ""HQ: 11 rue de l'industrie, 85250 La Rabatelière, France; Sales Focus: Primarily France."", - ""keyExecutives"": [], - ""researcherNotes"": ""No verifiable information was found on founders or senior leadership including CEO, CTO, COO, or CFO on the company website or LinkedIn profile. The geographic footprint is primarily France as indicated on the company site. Distinct entity confirmed by domain (vertal.fr), sector (agriculture biosolutions), and headquarters location. Vertical farming companies found in France (e.g., Jungle, Futura Gaïa, Champerché) are unrelated and distinct from VERTAL."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.vertal.fr/"", - ""productDescription"": ""https://www.vertal.fr/gammes/fertilisant/"", - ""clientCategories"": ""https://www.vertal.fr/devenir-distributeur-vertal/"", - ""geographicFocus"": ""https://www.vertal.fr/contacter-vertal/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Agriculture Professionals"",""Livestock Professionals"",""Negoce"",""Coop""],""companyDescription"":""VERTAL is a French designer and manufacturer of natural biosolutions for agriculture and livestock professionals. Their mission is to serve agriculture and livestock trades with innovative, natural, and easy-to-implement solutions promoting agroecological performance and profitability."",""geographicFocus"":""HQ: 11 rue de l'industrie, 85250 La Rabatelière, France; Sales Focus: Primarily France."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""VERTAL offers natural products for agriculture including fertilizers for crops, biostimulants, and foliar stimulants. Core products include PROCEROLE, VERTAL GRANDES CULTURES, AZOBOOST, DEEP’PRO, AMINOFIX, and VERTAL MARAÎCHAGE. Their services focus on soil activation, fertilizers for various crop types, and complementary animal feed to enhance photosynthesis, plant immunity, and yield quality."",""researcherNotes"":""No verifiable information was found on founders or senior leadership including CEO, CTO, COO, or CFO on the company website or LinkedIn profile. The geographic footprint is primarily France as indicated on the company site. Distinct entity confirmed by domain (vertal.fr), sector (agriculture biosolutions), and headquarters location. Vertical farming companies found in France (e.g., Jungle, Futura Gaïa, Champerché) are unrelated and distinct from VERTAL."",""sectorDescription"":""Operates in the agroecology sector, providing natural biosolutions for sustainable agriculture and livestock health."",""sources"":{""clientCategories"":""https://www.vertal.fr/devenir-distributeur-vertal/"",""companyDescription"":""https://www.vertal.fr/"",""geographicFocus"":""https://www.vertal.fr/contacter-vertal/"",""keyExecutives"":null,""productDescription"":""https://www.vertal.fr/gammes/fertilisant/""},""websiteURL"":""https://www.vertal.fr""}","Correctness: 95% Completeness: 85% The description of VERTAL as a French designer and manufacturer of natural biosolutions for agriculture and livestock professionals, with a focus on innovative, natural, and easy-to-implement solutions promoting agroecological performance and profitability, is fully supported by the company's official website and profile[1][2][4]. The geographic focus primarily on France, headquartered at 11 rue de l'industrie, 85250 La Rabatelière, France, aligns with contact details from the official site[1]. The product offering, including fertilizers for various crops, biostimulants, and complementary animal feed products like PROCEROLE, VERTAL GRANDES CULTURES, AZOBOOST, DEEP’PRO, AMINOFIX, and VERTAL MARAÎCHAGE, is confirmed on their product pages[1]. The emphasis on soil activation, photosynthesis enhancement, plant immunity, and yield quality is consistent with VERTAL’s agronomic expertise and claimed benefits[1][3]. However, the absence of verifiable information on company leadership (CEO, CTO, COO, CFO) notably reduces completeness, as such leadership data is generally standard for company profiles but is confirmed missing here after a review of both website and LinkedIn[1][2]. Moreover, while the company is clearly distinct from vertical farming firms in France, this distinction primarily clarifies scope rather than completeness of the company description[2]. No regulatory filings or press releases are found that add or contradict these facts. Overall, the core descriptions and offerings are accurate and substantiated, but completeness scores lower due to omitted leadership details and lack of broader market positioning beyond France and key products[1][2][3][4].","{""clientCategories"":[""Agriculture professionals"",""Livestock professionals"",""Negoce"",""COOP""],""companyDescription"":""VERTAL is a French designer and manufacturer of natural biosolutions for agriculture and livestock professionals. Their mission is to serve agriculture and livestock trades with innovative, natural, and easy-to-implement solutions promoting agroecological performance and profitability."",""geographicFocus"":""HQ: 11 rue de l'industrie, 85250 La Rabatelière, France; Sales Focus: Primarily France."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""VERTAL offers natural products for agriculture including fertilizers for crops, biostimulants, and foliar stimulants. Core products include: \n- PROCEROLE\n- VERTAL GRANDES CULTURES\n- AZOBOOST\n- DEEP’PRO\n- AMINOFIX\n- VERTAL MARAÎCHAGE.\nServices focus on soil activation, fertilizers for various crop types, and complementary animal feed to enhance photosynthesis, plant immunity, and yield quality."",""researcherNotes"":""No information found regarding founders or C-level executives such as CEO, CTO, COO, or CFO on the website or linked pages."",""sectorDescription"":""Operates in the agroecology sector, providing natural biosolutions for sustainable agriculture and livestock health."",""sources"":{""clientCategories"":""https://www.vertal.fr/devenir-distributeur-vertal/"",""companyDescription"":""https://www.vertal.fr/"",""geographicFocus"":""https://www.vertal.fr/contacter-vertal/"",""keyExecutives"":null,""productDescription"":""https://www.vertal.fr/gammes/fertilisant/""},""websiteURL"":""https://www.vertal.fr/""}" -Sorex Holdings,https://www.sorex.com,"Alcuin Capital Partners, Indigo Capital",sorex.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""https://www.sorex.com"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://www.sorex.com and its subpages contain no visible or accessible information related to company description, products, clients, leadership, geographic focus, or linked documents. No contact or about pages with relevant data could be found."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""https://www.sorex.com"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://www.sorex.com and its subpages contain no visible or accessible information related to company description, products, clients, leadership, geographic focus, or linked documents. No contact or about pages with relevant data could be found."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.sorex.com"", - ""companyDescription"": ""Sorex is a distributor focused on sanitary ware products, including washbasins, showers, sauna steam spa equipment, and related items. Founded in 1991 and headquartered in Waterloo, Belgium, the company serves retail and home improvement sectors by providing a range of consumer goods and distribution services in the sanitary and bathroom accessories industry."", - ""productDescription"": ""Sorex delivers a portfolio of sanitary ware products such as washbasins, showers, and sauna steam spa systems, supplying these products primarily through distribution channels targeting retailers and home improvement businesses. Their offerings enable residential and commercial customers to access quality bathroom and wellness fixtures."", - ""clientCategories"": [ - ""Retailers"", - ""Home Improvement Businesses"", - ""Distributors"", - ""Consumer Goods Companies"" - ], - ""sectorDescription"": ""Distribution of sanitary ware products focused on home improvement and retail sectors within consumer goods."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""The company matching the domain sorex.com is identified as the sanitary ware distributor headquartered in Waterloo, Belgium, founded in 1991. The official company website and LinkedIn provided no additional leadership details. No clear geographic focus beyond HQ city and country was available. Sorex Limited (UK company) officers found are likely unrelated due to different country and industry. The data is consolidated from Craft.co and UK Companies House for disambiguation and company description. No conflicting information found. Sources https://craft.co/sorex-787 and https://find-and-update.company-information.service.gov.uk/company/00469788/officers were used for disambiguation and data enrichment."", - ""missingImportantFields"": [ - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://craft.co/sorex-787"", - ""productDescription"": ""https://craft.co/sorex-787"", - ""clientCategories"": ""https://craft.co/sorex-787"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{""clientCategories"":[""Retailers"",""Home Improvement Businesses"",""Distributors"",""Consumer Goods Companies""],""companyDescription"":""Sorex is a distributor focused on sanitary ware products, including washbasins, showers, sauna steam spa equipment, and related items. Founded in 1991 and headquartered in Waterloo, Belgium, the company serves retail and home improvement sectors by providing a range of consumer goods and distribution services in the sanitary and bathroom accessories industry."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""geographicFocus"",""keyExecutives""],""productDescription"":""Sorex delivers a portfolio of sanitary ware products such as washbasins, showers, and sauna steam spa systems, supplying these products primarily through distribution channels targeting retailers and home improvement businesses. Their offerings enable residential and commercial customers to access quality bathroom and wellness fixtures."",""researcherNotes"":""The company matching the domain sorex.com is identified as the sanitary ware distributor headquartered in Waterloo, Belgium, founded in 1991. The official company website and LinkedIn provided no additional leadership details. No clear geographic focus beyond HQ city and country was available. Sorex Limited (UK company) officers found are likely unrelated due to different country and industry. The data is consolidated from Craft.co and UK Companies House for disambiguation and company description. No conflicting information found. Sources https://craft.co/sorex-787 and https://find-and-update.company-information.service.gov.uk/company/00469788/officers were used for disambiguation and data enrichment."",""sectorDescription"":""Distribution of sanitary ware products focused on home improvement and retail sectors within consumer goods."",""sources"":{""clientCategories"":""https://craft.co/sorex-787"",""companyDescription"":""https://craft.co/sorex-787"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://craft.co/sorex-787""},""websiteURL"":""https://www.sorex.com""}","Correctness: 95% Completeness: 80% The description of Sorex as a sanitary ware distributor founded in 1991 and headquartered in Waterloo, Belgium is corroborated by authoritative Belgian business registry data indicating wholesale trade of sanitary equipment with 28 years in business at Chemin des Postes, 151, 1410 Waterloo[1]. The company’s product focus on washbasins, showers, sauna steam spa equipment, and bathroom accessories distributed primarily to retailers and home improvement sectors matches information on their official site stating exclusive distribution of high-quality sanitary ware in the BeNeLux region[2]. However, explicit mention of geographic focus beyond the headquarters or detailed current leadership information is not publicly available or confirmed from official or company sources, thus reducing completeness. No contradictory facts were found and product descriptions align well with the validated core business scope. Key missing elements include a clearly stated geographic footprint and named key executives, which limits full profile completeness. Sources used: Belgian corporate registry[1], official company site[2], UK Companies House for disambiguation[provided in prompt].","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website https://www.sorex.com and its subpages contain no visible or accessible information related to company description, products, clients, leadership, geographic focus, or linked documents. No contact or about pages with relevant data could be found."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://www.sorex.com""}" -Poolhouse,https://www.poulehouse.fr/,Jaina Capital,poulehouse.fr,https://www.linkedin.com/company/poulehouse,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.poulehouse.fr/"", - ""companyDescription"": ""Poulehouse, l'œuf qui ne tue pas la poule. Nous offrons des œufs éthiques et bio, garantissant le bien-être de nos poules tout au long de leur vie."", - ""productDescription"": ""Poulehouse offers ethical and organic eggs that ensure the well-being of their hens throughout their lives."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the ethical organic egg production sector, focusing on animal welfare."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website has very limited information. Key details such as client categories, geographic focus, and leadership are not disclosed or easily found on the site."", - ""missingImportantFields"": [""clientCategories"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.poulehouse.fr/"", - ""productDescription"": ""https://www.poulehouse.fr/"", - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.poulehouse.fr/"", - ""companyDescription"": ""Poulehouse, l'œuf qui ne tue pas la poule. Nous offrons des œufs éthiques et bio, garantissant le bien-être de nos poules tout au long de leur vie."", - ""productDescription"": ""Poulehouse offers ethical and organic eggs that ensure the well-being of their hens throughout their lives."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the ethical organic egg production sector, focusing on animal welfare."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website has very limited information. Key details such as client categories, geographic focus, and leadership are not disclosed or easily found on the site."", - ""missingImportantFields"": [""clientCategories"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.poulehouse.fr/"", - ""productDescription"": ""https://www.poulehouse.fr/"", - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""clientCategories"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.poulehouse.fr"", - ""companyDescription"": ""Poulehouse was a French ethical egg production company founded in 2017, focused on producing organic eggs while ensuring the lifelong well-being of their hens by avoiding the traditional practice of slaughtering hens at 18 months. The company partnered with farmers to extend the laying cycle of hens from 18 months to 3.5 years, then retired the hens to a special farm to live out their natural lifespan, promoting animal welfare and sustainability."", - ""productDescription"": ""Poulehouse offered organic, ethical eggs from hens raised in free-range environments with non-GMO feed, extending hens' egg-laying cycles to around three and a half years. After their laying period, hens were retired to a dedicated facility to live naturally until death, ensuring no hens were culled prematurely. The product emphasized animal welfare, farm partner fairness, and environmental responsibility."", - ""clientCategories"": [""Retailers"", ""Distributors"", ""Business Customers""], - ""sectorDescription"": ""Ethical organic egg production with a focus on animal welfare and sustainable farming practices."", - ""geographicFocus"": ""France, with farm operations and distribution primarily within the country."", - ""keyExecutives"": [ - { - ""name"": ""Fabien Sauleman"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://fr.wikipedia.org/wiki/Poulehouse"" - }, - { - ""name"": ""Sébastien Neusch"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://fr.wikipedia.org/wiki/Poulehouse"" - }, - { - ""name"": ""Élodie Pellegrain"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://fr.wikipedia.org/wiki/Poulehouse"" - } - ], - ""researcherNotes"": ""Poulehouse was founded in 2017 in France by Fabien Sauleman, Sébastien Neusch, and Élodie Pellegrain and specialized in ethical organic egg production that avoids hen culling. The company ceased operations around 2022, and the website's current information is limited. Leadership is confirmed by Wikipedia and multiple sources. Geographic focus is France based on farm and distribution information. Client categories are inferred from distribution channels including supermarkets and B2B customers."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://fr.wikipedia.org/wiki/Poulehouse"", - ""productDescription"": ""https://fr.wikipedia.org/wiki/Poulehouse"", - ""clientCategories"": null, - ""geographicFocus"": ""https://fr.wikipedia.org/wiki/Poulehouse"", - ""keyExecutives"": ""https://fr.wikipedia.org/wiki/Poulehouse"" - } -}","{""clientCategories"":[""Retailers"",""Distributors"",""Business Customers""],""companyDescription"":""Poulehouse was a French ethical egg production company founded in 2017, focused on producing organic eggs while ensuring the lifelong well-being of their hens by avoiding the traditional practice of slaughtering hens at 18 months. The company partnered with farmers to extend the laying cycle of hens from 18 months to 3.5 years, then retired the hens to a special farm to live out their natural lifespan, promoting animal welfare and sustainability."",""geographicFocus"":""France, with farm operations and distribution primarily within the country."",""keyExecutives"":[{""name"":""Fabien Sauleman"",""sourceUrl"":""https://fr.wikipedia.org/wiki/Poulehouse"",""title"":""Co-Founder""},{""name"":""Sébastien Neusch"",""sourceUrl"":""https://fr.wikipedia.org/wiki/Poulehouse"",""title"":""Co-Founder""},{""name"":""Élodie Pellegrain"",""sourceUrl"":""https://fr.wikipedia.org/wiki/Poulehouse"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Poulehouse offered organic, ethical eggs from hens raised in free-range environments with non-GMO feed, extending hens' egg-laying cycles to around three and a half years. After their laying period, hens were retired to a dedicated facility to live naturally until death, ensuring no hens were culled prematurely. The product emphasized animal welfare, farm partner fairness, and environmental responsibility."",""researcherNotes"":""Poulehouse was founded in 2017 in France by Fabien Sauleman, Sébastien Neusch, and Élodie Pellegrain and specialized in ethical organic egg production that avoids hen culling. The company ceased operations around 2022, and the website's current information is limited. Leadership is confirmed by Wikipedia and multiple sources. Geographic focus is France based on farm and distribution information. Client categories are inferred from distribution channels including supermarkets and B2B customers."",""sectorDescription"":""Ethical organic egg production with a focus on animal welfare and sustainable farming practices."",""sources"":{""clientCategories"":null,""companyDescription"":""https://fr.wikipedia.org/wiki/Poulehouse"",""geographicFocus"":""https://fr.wikipedia.org/wiki/Poulehouse"",""keyExecutives"":""https://fr.wikipedia.org/wiki/Poulehouse"",""productDescription"":""https://fr.wikipedia.org/wiki/Poulehouse""},""websiteURL"":""https://www.poulehouse.fr""}","Correctness: 95% Completeness: 90% The description of Poulehouse as a French ethical egg production company founded in 2017, focused on organic eggs and extending the laying cycle of hens to around 3.5 years while avoiding their slaughter at 18 months, is accurate and well supported by multiple sources, including the French Wikipedia page and news articles[1][3][5]. The founders Fabien Sauleman, Sébastien Neusch, and Élodie Pellegrain are confirmed by these sources[1]. The company’s model of partnering with farmers to extend hens’ laying periods and retiring hens to a dedicated facility until their natural death aligns with the verified details of the “La Maison des Poules” farm in Limousin[1]. The geographic focus on France and farm operations primarily in France is consistent with the reported operations and distribution channels[1][2]. The company ceased operations around 2022 after insolvency proceedings, which is a significant recent fact included here[2][3]. The product description emphasizing free-range, non-GMO feed, organic production, and animal welfare matches reported information[1][3]. Some minor nuances, such as the exact mechanisms of farmer contracts and the innovations like in-ovo sexing introduced in 2019, are also corroborated but less detailed in the summary[1]. The client categories (retailers, distributors, business customers) are inferred but logically consistent given the distribution through supermarkets and B2B partnerships mentioned in reports[2][3]. Slight completeness deductions arise because recent developments on the company’s financial troubles and adoption campaigns to place retired hens (a unique post-operation activity) are not fully included in the overview[2]. Also, governance beyond the founders or detailed financial/funding information is absent. Key source URLs include https://fr.wikipedia.org/wiki/Poulehouse, https://www.peuple-animal.com/clap-de-fin-pour-poulehouse/, and https://www.novethic.fr/actualite/social/consommation/isr-rse/poulehouse-la-marque-d-ufs-qui-sauve-les-poules-de-l-abattoir-est-en-peril-150335.html.","{""clientCategories"":[],""companyDescription"":""Poulehouse, l'œuf qui ne tue pas la poule. Nous offrons des œufs éthiques et bio, garantissant le bien-être de nos poules tout au long de leur vie."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""geographicFocus"",""keyExecutives""],""productDescription"":""Poulehouse offers ethical and organic eggs that ensure the well-being of their hens throughout their lives."",""researcherNotes"":""The website has very limited information. Key details such as client categories, geographic focus, and leadership are not disclosed or easily found on the site."",""sectorDescription"":""Operates in the ethical organic egg production sector, focusing on animal welfare."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.poulehouse.fr/"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":""https://www.poulehouse.fr/""},""websiteURL"":""https://www.poulehouse.fr/""}" -LettUs Grow,http://www.lettusgrow.com,Parkwalk Advisors,lettusgrow.com,https://www.linkedin.com/company/lettus-grow,"{""seniorLeadership"":[{""name"":""Charlie Guy"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/charlie-guy""},{""name"":""Ben Crowther"",""title"":""CTO and co-founder"",""linkedinProfile"":""https://www.linkedin.com/in/bencrowther""},{""name"":""Paolo Del-Greco"",""title"":""Chief Financial Officer"",""linkedinProfile"":""https://www.linkedin.com/in/paolo-del-greco-275b792a3""},{""name"":""Nick Green"",""title"":""Head Of Commercial"",""linkedinProfile"":""https://www.linkedin.com/in/nick-green-37360921""}]}","{""seniorLeadership"":[{""name"":""Charlie Guy"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/charlie-guy""},{""name"":""Ben Crowther"",""title"":""CTO and co-founder"",""linkedinProfile"":""https://www.linkedin.com/in/bencrowther""},{""name"":""Paolo Del-Greco"",""title"":""Chief Financial Officer"",""linkedinProfile"":""https://www.linkedin.com/in/paolo-del-greco-275b792a3""},{""name"":""Nick Green"",""title"":""Head Of Commercial"",""linkedinProfile"":""https://www.linkedin.com/in/nick-green-37360921""}]}","{ - ""websiteURL"": ""http://www.lettusgrow.com"", - ""companyDescription"": ""LettUs Grow is a team of growers, plant scientists, engineers, commercial experts, and operational specialists focused on designing and building aeroponic technology for greenhouses, indoor, and vertical farms. Founded in Bristol in 2015 by University of Bristol alumni, LettUs Grow integrates sustainable technology and a drive to improve the food system through patented Advanced Aeroponics™ technology. Their mission is to reduce the waste and carbon footprint of fresh produce by empowering anyone, anywhere, to grow delicious food near its point of consumption. They emphasize sustainability, ethical food production, and resilience in food supply networks."", - ""productDescription"": ""The company provides Advanced Aeroponics™ technology, Aeroponic Rolling Benches™, and Container farms™. They offer training and support and collaborate with partners to deliver sites across the UK and Europe. Major projects include greenhouse installations and aeroponic farms for commercial and research use."", - ""clientCategories"": [""Research Institutions"", ""Horticulture Sector"", ""Greenhouses"", ""Vertical Farms""], - ""sectorDescription"": ""Operates in the sustainable agriculture technology sector, specializing in advanced aeroponic systems for indoor, greenhouse, and vertical farming."", - ""geographicFocus"": ""HQ: Unit 4 Avon Valley Business Park, Chapel Way, Bristol, BS4 4EU, United Kingdom; Sales Focus: United Kingdom and Europe"", - ""keyExecutives"": [ - {""name"": ""Charlie Guy"", ""title"": ""Chief Executive Officer & Co-founder"", ""sourceUrl"": ""https://www.lettusgrow.com/about-us""}, - {""name"": ""Jack Farmer"", ""title"": ""Chief Scientific Officer & Co-founder"", ""sourceUrl"": ""https://www.lettusgrow.com/about-us""}, - {""name"": ""Ben Crowther"", ""title"": ""Chief Technical Officer & Co-founder"", ""sourceUrl"": ""https://www.lettusgrow.com/about-us""} - ], - ""linkedDocuments"": [ - ""https://www.lettusgrow.com/s/Impact-Report-2022-hmpx.pdf"", - ""https://www.lettusgrow.com/s/2023-LettUs-Grow-Impact-Report.pdf"", - ""https://www.lettusgrow.com/s/Avon-Valley-Build-Case-Study-2021.pdf"", - ""https://www.lettusgrow.com/s/New-Phytologist-Viewpoints-Eldridge-et-al-nph16780.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.lettusgrow.com/about-us"", - ""productDescription"": ""https://www.lettusgrow.com/aeroponic-technology"", - ""clientCategories"": ""https://www.lettusgrow.com/about-us"", - ""geographicFocus"": ""https://www.lettusgrow.com/contact-us"", - ""keyExecutives"": ""https://www.lettusgrow.com/about-us"" - } -}","{ - ""websiteURL"": ""http://www.lettusgrow.com"", - ""companyDescription"": ""LettUs Grow is a team of growers, plant scientists, engineers, commercial experts, and operational specialists focused on designing and building aeroponic technology for greenhouses, indoor, and vertical farms. Founded in Bristol in 2015 by University of Bristol alumni, LettUs Grow integrates sustainable technology and a drive to improve the food system through patented Advanced Aeroponics™ technology. Their mission is to reduce the waste and carbon footprint of fresh produce by empowering anyone, anywhere, to grow delicious food near its point of consumption. They emphasize sustainability, ethical food production, and resilience in food supply networks."", - ""productDescription"": ""The company provides Advanced Aeroponics™ technology, Aeroponic Rolling Benches™, and Container farms™. They offer training and support and collaborate with partners to deliver sites across the UK and Europe. Major projects include greenhouse installations and aeroponic farms for commercial and research use."", - ""clientCategories"": [""Research Institutions"", ""Horticulture Sector"", ""Greenhouses"", ""Vertical Farms""], - ""sectorDescription"": ""Operates in the sustainable agriculture technology sector, specializing in advanced aeroponic systems for indoor, greenhouse, and vertical farming."", - ""geographicFocus"": ""HQ: Unit 4 Avon Valley Business Park, Chapel Way, Bristol, BS4 4EU, United Kingdom; Sales Focus: United Kingdom and Europe"", - ""keyExecutives"": [ - {""name"": ""Charlie Guy"", ""title"": ""Chief Executive Officer & Co-founder"", ""sourceUrl"": ""https://www.lettusgrow.com/about-us""}, - {""name"": ""Jack Farmer"", ""title"": ""Chief Scientific Officer & Co-founder"", ""sourceUrl"": ""https://www.lettusgrow.com/about-us""}, - {""name"": ""Ben Crowther"", ""title"": ""Chief Technical Officer & Co-founder"", ""sourceUrl"": ""https://www.lettusgrow.com/about-us""} - ], - ""linkedDocuments"": [ - ""https://www.lettusgrow.com/s/Impact-Report-2022-hmpx.pdf"", - ""https://www.lettusgrow.com/s/2023-LettUs-Grow-Impact-Report.pdf"", - ""https://www.lettusgrow.com/s/Avon-Valley-Build-Case-Study-2021.pdf"", - ""https://www.lettusgrow.com/s/New-Phytologist-Viewpoints-Eldridge-et-al-nph16780.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.lettusgrow.com/about-us"", - ""productDescription"": ""https://www.lettusgrow.com/aeroponic-technology"", - ""clientCategories"": ""https://www.lettusgrow.com/about-us"", - ""geographicFocus"": ""https://www.lettusgrow.com/contact-us"", - ""keyExecutives"": ""https://www.lettusgrow.com/about-us"" - } -}",[],"{ - ""websiteURL"": ""https://www.lettusgrow.com"", - ""companyDescription"": ""LettUs Grow is a Bristol-based team of growers, plant scientists, engineers, commercial experts, and operational specialists focused on designing and building aeroponic technology for greenhouses, indoor, and vertical farms. Founded in 2015 by University of Bristol alumni, the company integrates patented Advanced Aeroponics™ technology to improve sustainable food production by reducing waste and carbon footprint. Their mission is to empower anyone, anywhere, to grow fresh, delicious food close to its point of consumption, emphasizing sustainability, ethical practices, and resilience in food supply networks."", - ""productDescription"": ""LettUs Grow provides Advanced Aeroponics™ technology, including Aeroponic Rolling Benches™ and Container Farms™ designed for greenhouses and vertical farms. Their systems use ultrasonic atomizers to create a nutrient-rich mist that enhances oxygen availability in the root zone, leading to healthier, faster plant growth and approximately 20% higher yields with reduced water and land use. The company also offers training and support and collaborates on commercial and research projects across the UK and Europe."", - ""clientCategories"": [ - ""Research Institutions"", - ""Horticulture Sector"", - ""Greenhouses"", - ""Vertical Farms"" - ], - ""sectorDescription"": ""Sustainable agriculture technology company specializing in advanced aeroponic systems for indoor, greenhouse, and vertical farming."", - ""geographicFocus"": ""Primary focus on the United Kingdom and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Charlie Guy"", - ""title"": ""Chief Executive Officer & Co-founder"", - ""sourceUrl"": ""https://www.lettusgrow.com/about-us"" - }, - { - ""name"": ""Jack Farmer"", - ""title"": ""Chief Scientific Officer & Co-founder"", - ""sourceUrl"": ""https://www.lettusgrow.com/about-us"" - }, - { - ""name"": ""Ben Crowther"", - ""title"": ""Chief Technical Officer & Co-founder"", - ""sourceUrl"": ""https://www.lettusgrow.com/about-us"" - }, - { - ""name"": ""Paolo Del-Greco"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/paolo-del-greco-275b792a3"" - }, - { - ""name"": ""Nick Green"", - ""title"": ""Head Of Commercial"", - ""sourceUrl"": ""https://www.linkedin.com/in/nick-green-37360921"" - } - ], - ""researcherNotes"": ""The company is confirmed as LettUs Grow Ltd, registered in the UK with HQ in Bristol, founded 2015, matching the domain lettusgrow.com and sector keywords like aeroponics and sustainable farming. The geographic focus was clarified as UK and Europe from company sources and event participation. Senior executives were enriched using LinkedIn profiles for CFO Paolo Del-Greco and Head of Commercial Nick Green, not listed on the official site. No discrepancies were found between company and LinkedIn data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.lettusgrow.com/about-us"", - ""productDescription"": ""https://www.lettusgrow.com/aeroponic-technology"", - ""clientCategories"": ""https://www.lettusgrow.com/about-us"", - ""geographicFocus"": ""https://www.lettusgrow.com/contact-us"", - ""keyExecutives"": ""https://www.lettusgrow.com/about-us"" - } -}","{""clientCategories"":[""Research Institutions"",""Horticulture Sector"",""Greenhouses"",""Vertical Farms""],""companyDescription"":""LettUs Grow is a Bristol-based team of growers, plant scientists, engineers, commercial experts, and operational specialists focused on designing and building aeroponic technology for greenhouses, indoor, and vertical farms. Founded in 2015 by University of Bristol alumni, the company integrates patented Advanced Aeroponics™ technology to improve sustainable food production by reducing waste and carbon footprint. Their mission is to empower anyone, anywhere, to grow fresh, delicious food close to its point of consumption, emphasizing sustainability, ethical practices, and resilience in food supply networks."",""geographicFocus"":""Primary focus on the United Kingdom and Europe."",""keyExecutives"":[{""name"":""Charlie Guy"",""sourceUrl"":""https://www.lettusgrow.com/about-us"",""title"":""Chief Executive Officer & Co-founder""},{""name"":""Jack Farmer"",""sourceUrl"":""https://www.lettusgrow.com/about-us"",""title"":""Chief Scientific Officer & Co-founder""},{""name"":""Ben Crowther"",""sourceUrl"":""https://www.lettusgrow.com/about-us"",""title"":""Chief Technical Officer & Co-founder""},{""name"":""Paolo Del-Greco"",""sourceUrl"":""https://www.linkedin.com/in/paolo-del-greco-275b792a3"",""title"":""Chief Financial Officer""},{""name"":""Nick Green"",""sourceUrl"":""https://www.linkedin.com/in/nick-green-37360921"",""title"":""Head Of Commercial""}],""missingImportantFields"":[],""productDescription"":""LettUs Grow provides Advanced Aeroponics™ technology, including Aeroponic Rolling Benches™ and Container Farms™ designed for greenhouses and vertical farms. Their systems use ultrasonic atomizers to create a nutrient-rich mist that enhances oxygen availability in the root zone, leading to healthier, faster plant growth and approximately 20% higher yields with reduced water and land use. The company also offers training and support and collaborates on commercial and research projects across the UK and Europe."",""researcherNotes"":""The company is confirmed as LettUs Grow Ltd, registered in the UK with HQ in Bristol, founded 2015, matching the domain lettusgrow.com and sector keywords like aeroponics and sustainable farming. The geographic focus was clarified as UK and Europe from company sources and event participation. Senior executives were enriched using LinkedIn profiles for CFO Paolo Del-Greco and Head of Commercial Nick Green, not listed on the official site. No discrepancies were found between company and LinkedIn data."",""sectorDescription"":""Sustainable agriculture technology company specializing in advanced aeroponic systems for indoor, greenhouse, and vertical farming."",""sources"":{""clientCategories"":""https://www.lettusgrow.com/about-us"",""companyDescription"":""https://www.lettusgrow.com/about-us"",""geographicFocus"":""https://www.lettusgrow.com/contact-us"",""keyExecutives"":""https://www.lettusgrow.com/about-us"",""productDescription"":""https://www.lettusgrow.com/aeroponic-technology""},""websiteURL"":""https://www.lettusgrow.com""}","Correctness: 98% Completeness: 92% The description of LettUs Grow is highly accurate and well-supported by multiple authoritative company sources from lettusgrow.com and reputable profiles. The company was indeed founded in Bristol in 2015 by University of Bristol alumni Charlie Guy (CEO), Jack Farmer (Chief Scientific Officer), and Ben Crowther (Chief Technical Officer)[1][3][4]. Its core business is the design and construction of Advanced Aeroponics™ technology for greenhouses, vertical, and indoor farms, featuring products like Aeroponic Rolling Benches™ and Container Farms™, using ultrasonic atomizers to enhance oxygen availability and optimize nutrient delivery, resulting in approximately 20% higher yields with reduced water and land usage[1][2][3]. The geographic focus on the UK and Europe matches the company’s stated operational footprint[1]. The executive leadership is confirmed from the official site and LinkedIn profiles, including Paolo Del-Greco as CFO and Nick Green as Head of Commercial, which are not listed on the company website but verified on LinkedIn[1][4]. Minor gaps include no explicit mention of revenue models or the Ostara software in the user data despite it being relevant from an external source[2], reducing completeness somewhat. No contradictory or stale information was found. The company is registered in the UK under number 09893012, headquartered in Bristol, and maintains a strong sustainability mission across its products and research collaborations[1][4]. URLs: https://www.lettusgrow.com/about-us https://www.lettusgrow.com/aeroponic-technology https://techround.co.uk/startups/startup-of-the-week-lettus-grow/ https://www.linkedin.com/in/paolo-del-greco-275b792a3 https://www.linkedin.com/in/nick-green-37360921","{""clientCategories"":[""Research Institutions"",""Horticulture Sector"",""Greenhouses"",""Vertical Farms""],""companyDescription"":""LettUs Grow is a team of growers, plant scientists, engineers, commercial experts, and operational specialists focused on designing and building aeroponic technology for greenhouses, indoor, and vertical farms. Founded in Bristol in 2015 by University of Bristol alumni, LettUs Grow integrates sustainable technology and a drive to improve the food system through patented Advanced Aeroponics™ technology. Their mission is to reduce the waste and carbon footprint of fresh produce by empowering anyone, anywhere, to grow delicious food near its point of consumption. They emphasize sustainability, ethical food production, and resilience in food supply networks."",""geographicFocus"":""HQ: Unit 4 Avon Valley Business Park, Chapel Way, Bristol, BS4 4EU, United Kingdom; Sales Focus: United Kingdom and Europe"",""keyExecutives"":[{""name"":""Charlie Guy"",""sourceUrl"":""https://www.lettusgrow.com/about-us"",""title"":""Chief Executive Officer & Co-founder""},{""name"":""Jack Farmer"",""sourceUrl"":""https://www.lettusgrow.com/about-us"",""title"":""Chief Scientific Officer & Co-founder""},{""name"":""Ben Crowther"",""sourceUrl"":""https://www.lettusgrow.com/about-us"",""title"":""Chief Technical Officer & Co-founder""}],""linkedDocuments"":[""https://www.lettusgrow.com/s/Impact-Report-2022-hmpx.pdf"",""https://www.lettusgrow.com/s/2023-LettUs-Grow-Impact-Report.pdf"",""https://www.lettusgrow.com/s/Avon-Valley-Build-Case-Study-2021.pdf"",""https://www.lettusgrow.com/s/New-Phytologist-Viewpoints-Eldridge-et-al-nph16780.pdf""],""missingImportantFields"":[],""productDescription"":""The company provides Advanced Aeroponics™ technology, Aeroponic Rolling Benches™, and Container farms™. They offer training and support and collaborate with partners to deliver sites across the UK and Europe. Major projects include greenhouse installations and aeroponic farms for commercial and research use."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable agriculture technology sector, specializing in advanced aeroponic systems for indoor, greenhouse, and vertical farming."",""sources"":{""clientCategories"":""https://www.lettusgrow.com/about-us"",""companyDescription"":""https://www.lettusgrow.com/about-us"",""geographicFocus"":""https://www.lettusgrow.com/contact-us"",""keyExecutives"":""https://www.lettusgrow.com/about-us"",""productDescription"":""https://www.lettusgrow.com/aeroponic-technology""},""websiteURL"":""http://www.lettusgrow.com""}" -Galician Marine Aquaculture,http://abalonbygma.com/,Xesgalicia,abalonbygma.com,https://www.linkedin.com/company/abalonbygma,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://abalonbygma.com/"", - ""companyDescription"": ""Galician Marine Aquaculture (GMA) was founded in 2003 as a project at the University of Santiago de Compostela, not initially as a company. Its mission revolves around sustainable development and growth of new-market marine species with value-added potential. GMA achieved comprehensive growth in abalone production, a novel success in Spain."", - ""productDescription"": ""Galician Marine Aquaculture, S.L. specializes in the cultivation of abalone and is developing a cultivation plant on a 25,000 m² plot near Muros. Their goal is to become the European leader in abalone production and a key reference in Spain."", - ""clientCategories"": [""Asian market""], - ""sectorDescription"": ""Operates in the sustainable marine aquaculture sector, specializing in abalone cultivation."", - ""geographicFocus"": ""HQ: Rua das Hedras, 2-3ºC, Milladoiro (Ames), La Coruna, Spain; Sales Focus: Spain and Europe"", - ""keyExecutives"": [ - {""name"": ""Oscar Santamaría Estepar"", ""title"": ""Promoter"", ""sourceUrl"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=""}, - {""name"": ""Rodrigo Burgos Vega"", ""title"": ""Aquaculture Engineer"", ""sourceUrl"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Direct access to abalobygma.com website failed, thus external trusted sources related to the company were used to gather data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ani.seafdec.org.ph/handle/20.500.12174/1619"", - ""productDescription"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""clientCategories"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""geographicFocus"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""keyExecutives"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="" - } -}","{ - ""websiteURL"": ""http://abalonbygma.com/"", - ""companyDescription"": ""Galician Marine Aquaculture (GMA) was founded in 2003 as a project at the University of Santiago de Compostela, not initially as a company. Its mission revolves around sustainable development and growth of new-market marine species with value-added potential. GMA achieved comprehensive growth in abalone production, a novel success in Spain."", - ""productDescription"": ""Galician Marine Aquaculture, S.L. specializes in the cultivation of abalone and is developing a cultivation plant on a 25,000 m² plot near Muros. Their goal is to become the European leader in abalone production and a key reference in Spain."", - ""clientCategories"": [""Asian market""], - ""sectorDescription"": ""Operates in the sustainable marine aquaculture sector, specializing in abalone cultivation."", - ""geographicFocus"": ""HQ: Rua das Hedras, 2-3ºC, Milladoiro (Ames), La Coruna, Spain; Sales Focus: Spain and Europe"", - ""keyExecutives"": [ - {""name"": ""Oscar Santamaría Estepar"", ""title"": ""Promoter"", ""sourceUrl"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=""}, - {""name"": ""Rodrigo Burgos Vega"", ""title"": ""Aquaculture Engineer"", ""sourceUrl"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Direct access to abalobygma.com website failed, thus external trusted sources related to the company were used to gather data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ani.seafdec.org.ph/handle/20.500.12174/1619"", - ""productDescription"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""clientCategories"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""geographicFocus"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""keyExecutives"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="" - } -}",[],"{ - ""websiteURL"": ""http://abalonbygma.com/"", - ""companyDescription"": ""Galician Marine Aquaculture (GMA) was founded in 2003 at the University of Santiago de Compostela, initially as a project before becoming a company. It focuses on the sustainable development and growth of new-market marine species with high value-added potential, achieving notable advancement in abalone production, a pioneering success in Spain and a response to strong Asian market demand."", - ""productDescription"": ""Galician Marine Aquaculture, S.L. specializes in the cultivation of abalone, a highly prized gastropod mollusk. The company is developing a cultivation plant on a 25,000 m² plot near Muros to scale production. Their goal is to become the European leader in abalone volume production and establish a key reference point in Spain, addressing both regional diversification and international market needs."", - ""clientCategories"": [""Asian Market""], - ""sectorDescription"": ""Operates in the sustainable marine aquaculture sector, specializing in abalone cultivation."", - ""geographicFocus"": ""Primary focus on Spain and Europe, with a headquarters in Milladoiro (Ames), La Coruna, Spain."", - ""keyExecutives"": [ - { - ""name"": ""Oscar Santamaría Estepar"", - ""title"": ""Promoter"", - ""sourceUrl"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="" - }, - { - ""name"": ""Rodrigo Burgos Vega"", - ""title"": ""Aquaculture Engineer"", - ""sourceUrl"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="" - } - ], - ""researcherNotes"": ""Direct access to the company website abalonbygma.com was unsuccessful; therefore, external authoritative sources such as seafood.media and ani.seafdec.org.ph were used for data. The company has ceased operations and its facilities were auctioned as of recent reports, but public company data and leadership profiles remain relevant. Geographic focus and sector details derive from these trusted sources. No additional senior leadership information was found on LinkedIn."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ani.seafdec.org.ph/handle/20.500.12174/1619"", - ""productDescription"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""clientCategories"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""geographicFocus"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="", - ""keyExecutives"": ""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="" - } -}","{""clientCategories"":[""Asian Market""],""companyDescription"":""Galician Marine Aquaculture (GMA) was founded in 2003 at the University of Santiago de Compostela, initially as a project before becoming a company. It focuses on the sustainable development and growth of new-market marine species with high value-added potential, achieving notable advancement in abalone production, a pioneering success in Spain and a response to strong Asian market demand."",""geographicFocus"":""Primary focus on Spain and Europe, with a headquarters in Milladoiro (Ames), La Coruna, Spain."",""keyExecutives"":[{""name"":""Oscar Santamaría Estepar"",""sourceUrl"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""title"":""Promoter""},{""name"":""Rodrigo Burgos Vega"",""sourceUrl"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""title"":""Aquaculture Engineer""}],""missingImportantFields"":[],""productDescription"":""Galician Marine Aquaculture, S.L. specializes in the cultivation of abalone, a highly prized gastropod mollusk. The company is developing a cultivation plant on a 25,000 m² plot near Muros to scale production. Their goal is to become the European leader in abalone volume production and establish a key reference point in Spain, addressing both regional diversification and international market needs."",""researcherNotes"":""Direct access to the company website abalonbygma.com was unsuccessful; therefore, external authoritative sources such as seafood.media and ani.seafdec.org.ph were used for data. The company has ceased operations and its facilities were auctioned as of recent reports, but public company data and leadership profiles remain relevant. Geographic focus and sector details derive from these trusted sources. No additional senior leadership information was found on LinkedIn."",""sectorDescription"":""Operates in the sustainable marine aquaculture sector, specializing in abalone cultivation."",""sources"":{""clientCategories"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""companyDescription"":""https://ani.seafdec.org.ph/handle/20.500.12174/1619"",""geographicFocus"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""keyExecutives"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""productDescription"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=""},""websiteURL"":""http://abalonbygma.com/""}","Correctness: 95% Completeness: 90% The information provided about Galician Marine Aquaculture (GMA) is largely correct and consistent with external sources. The company was indeed founded in 2003, linked to the University of Santiago de Compostela, focusing on abalone cultivation with goals to become a leader in Europe and to meet Asian market demand. It had advanced R&D and high-value marine species ambitions, investing heavily in facilities near Muros, Galicia. Leadership names Oscar Santamaría Estepar (Promoter) and Rodrigo Burgos Vega (Aquaculture Engineer) are confirmed in seafood.media. The company ceased operations recently with its facilities auctioned, marking a notable but ultimately unsustainable venture despite significant regional backing and investments exceeding €10 million. The primary geographic focus on Spain and Europe, including headquarters in Milladoiro (Ames), La Coruna, matches official data. Missing from the original are recent operational status updates and historical investor details, which affect completeness. The official website is inactive, but seafood.media and ani.seafdec.org.ph provide credible corroboration as of late 2023 and 2024. Key sources include seafood.media company profile and mispeces.com auction report [1][2]. URL examples: https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=, https://www.mispeces.com/en/news/Galician-Marine-Aquaculture-Facilities-Put-Up-for-Auction/","{""clientCategories"":[""Asian market""],""companyDescription"":""Galician Marine Aquaculture (GMA) was founded in 2003 as a project at the University of Santiago de Compostela, not initially as a company. Its mission revolves around sustainable development and growth of new-market marine species with value-added potential. GMA achieved comprehensive growth in abalone production, a novel success in Spain."",""geographicFocus"":""HQ: Rua das Hedras, 2-3ºC, Milladoiro (Ames), La Coruna, Spain; Sales Focus: Spain and Europe"",""keyExecutives"":[{""name"":""Oscar Santamaría Estepar"",""sourceUrl"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""title"":""Promoter""},{""name"":""Rodrigo Burgos Vega"",""sourceUrl"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""title"":""Aquaculture Engineer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Galician Marine Aquaculture, S.L. specializes in the cultivation of abalone and is developing a cultivation plant on a 25,000 m² plot near Muros. Their goal is to become the European leader in abalone production and a key reference in Spain."",""researcherNotes"":""Direct access to abalobygma.com website failed, thus external trusted sources related to the company were used to gather data."",""sectorDescription"":""Operates in the sustainable marine aquaculture sector, specializing in abalone cultivation."",""sources"":{""clientCategories"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""companyDescription"":""https://ani.seafdec.org.ph/handle/20.500.12174/1619"",""geographicFocus"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""keyExecutives"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id="",""productDescription"":""https://www.seafood.media/fis/companies/details.asp?l=e&filterby=companies&company=galician%20marine%20aquaculture&page=1&company_id=75397&country_id=""},""websiteURL"":""http://abalonbygma.com/""}" -Entocycle,https://entocycle.com/,"ACE & Company, Antoine Brizard, Antoine Dupont, Climentum Capital, James Haskell, Lowercarbon Capital, Nazca Ventures, Nikola Karabatic, Teampact ventures, Unruly Capital",entocycle.com,https://www.linkedin.com/company/entocycle,"{""seniorLeadership"":[{""fullName"":""James Millar"",""title"":""Chief Executive Officer"",""profileUrl"":""https://www.linkedin.com/in/jamesmillaruk""},{""fullName"":""Amandine Collado"",""title"":""Head of Entomology"",""profileUrl"":""https://www.linkedin.com/in/amandinecolladophd""},{""fullName"":""Jonathan Smith"",""title"":""Finance Director"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Jude Bliss"",""title"":""Marketing Director"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Keiran Whitaker"",""title"":""Founder and CEO"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Martin Burkitt"",""title"":""Head of People & Operations"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Matt Simmonds"",""title"":""Managing Director"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Paul Hillmann"",""title"":""Chief Technical Officer"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Sul Handuleh"",""title"":""Head of New Product Development"",""profileUrl"":""https://www.linkedin.com/company/entocycle""}]}","{""seniorLeadership"":[{""fullName"":""James Millar"",""title"":""Chief Executive Officer"",""profileUrl"":""https://www.linkedin.com/in/jamesmillaruk""},{""fullName"":""Amandine Collado"",""title"":""Head of Entomology"",""profileUrl"":""https://www.linkedin.com/in/amandinecolladophd""},{""fullName"":""Jonathan Smith"",""title"":""Finance Director"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Jude Bliss"",""title"":""Marketing Director"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Keiran Whitaker"",""title"":""Founder and CEO"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Martin Burkitt"",""title"":""Head of People & Operations"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Matt Simmonds"",""title"":""Managing Director"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Paul Hillmann"",""title"":""Chief Technical Officer"",""profileUrl"":""https://www.linkedin.com/company/entocycle""},{""fullName"":""Sul Handuleh"",""title"":""Head of New Product Development"",""profileUrl"":""https://www.linkedin.com/company/entocycle""}]}","{ - ""websiteURL"": ""https://entocycle.com/"", - ""companyDescription"": ""Entocycle is a mission-led company composed of experts in entomology, engineering, automation, and animal feed and pet food markets, delivering end-to-end insect farming solutions that convert food waste and byproducts into high-value, low-carbon products for animal and plant nutrition. Their technology and equipment support the black soldier fly larvae production process with precision and reliability. Their mission is to accelerate a global transition to sustainable protein using insects, innovation, and technology, aiming to restore the natural world by revolutionising animal feed production to address the climate emergency."", - ""productDescription"": ""Our team collaborates to plan, design, and deliver insect facilities tailored to business needs. Many units within the facility, including Growth Units and Fly Systems, are modular and can be integrated and scaled to suit customer requirements. We provide complete insect farm solutions or individual systems and equipment."", - ""clientCategories"": [ - ""Farmers and Producers"", - ""Insect Companies"", - ""Waste Management companies"", - ""Entrepreneurs"" - ], - ""sectorDescription"": ""Operates in the sustainable protein production and insect farming technology sector, addressing agriculture's environmental impact, waste management, and sustainable animal feed."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Keiran Whitaker"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Jonathan Smith"", ""title"": ""Finance Director"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Jude Bliss"", ""title"": ""Marketing Director"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Martin Burkitt"", ""title"": ""Head of People & Operations"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Matt Simmonds"", ""title"": ""Managing Director"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Paul Hillmann"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic footprint details including headquarters and sales regions were not found on the website or contact page."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://entocycle.com/"", - ""productDescription"": ""https://entocycle.com/complete-insect-farm"", - ""clientCategories"": ""https://entocycle.com/who-we-help"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://entocycle.com/about/who-we-are"" - } -}","{ - ""websiteURL"": ""https://entocycle.com/"", - ""companyDescription"": ""Entocycle is a mission-led company composed of experts in entomology, engineering, automation, and animal feed and pet food markets, delivering end-to-end insect farming solutions that convert food waste and byproducts into high-value, low-carbon products for animal and plant nutrition. Their technology and equipment support the black soldier fly larvae production process with precision and reliability. Their mission is to accelerate a global transition to sustainable protein using insects, innovation, and technology, aiming to restore the natural world by revolutionising animal feed production to address the climate emergency."", - ""productDescription"": ""Our team collaborates to plan, design, and deliver insect facilities tailored to business needs. Many units within the facility, including Growth Units and Fly Systems, are modular and can be integrated and scaled to suit customer requirements. We provide complete insect farm solutions or individual systems and equipment."", - ""clientCategories"": [ - ""Farmers and Producers"", - ""Insect Companies"", - ""Waste Management companies"", - ""Entrepreneurs"" - ], - ""sectorDescription"": ""Operates in the sustainable protein production and insect farming technology sector, addressing agriculture's environmental impact, waste management, and sustainable animal feed."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - {""name"": ""Keiran Whitaker"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Jonathan Smith"", ""title"": ""Finance Director"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Jude Bliss"", ""title"": ""Marketing Director"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Martin Burkitt"", ""title"": ""Head of People & Operations"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Matt Simmonds"", ""title"": ""Managing Director"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""}, - {""name"": ""Paul Hillmann"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://entocycle.com/about/who-we-are""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Geographic footprint details including headquarters and sales regions were not found on the website or contact page."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://entocycle.com/"", - ""productDescription"": ""https://entocycle.com/complete-insect-farm"", - ""clientCategories"": ""https://entocycle.com/who-we-help"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://entocycle.com/about/who-we-are"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://entocycle.com"", - ""companyDescription"": ""Entocycle is a mission-led company made up of experts in entomology, engineering, automation, and animal feed and pet food markets. They deliver end-to-end insect farming solutions using black soldier fly larvae technology to convert food waste and byproducts into sustainable, high-value, low-carbon products for animal and plant nutrition. Their modular and scalable technology enables precision and reliability in insect farming, aiming to accelerate a global transition to sustainable protein and revolutionise animal feed production to address the climate emergency. Their customers include farmers, insect companies, waste management firms, and entrepreneurs seeking innovative insect protein solutions."", - ""productDescription"": ""Entocycle designs and delivers modular insect farming facilities tailored to customer needs, incorporating systems such as Growth Units and Fly Systems that can be scaled and integrated. They provide complete insect farms or individual components supporting the entire black soldier fly larvae production process, enabling customers to convert organic waste into low-carbon protein products for animal feed and plant nutrition. Their technology emphasizes automation, precision, and scalability to support sustainable insect protein production."", - ""clientCategories"": [ - ""Farmers and Producers"", - ""Insect Companies"", - ""Waste Management Companies"", - ""Entrepreneurs"" - ], - ""sectorDescription"": ""Operates in the sustainable protein production and insect farming technology sector, addressing agriculture's environmental impact, waste management, and sustainable animal feed."", - ""geographicFocus"": ""Primarily operates in the United Kingdom with expanding industrial-scale insect farming facilities, including sites in London and Leeds, aiming for international growth through partnerships such as with Siemens."", - ""keyExecutives"": [ - { - ""name"": ""Keiran Whitaker"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://entocycle.com/about/who-we-are"" - }, - { - ""name"": ""Jonathan Smith"", - ""title"": ""Finance Director"", - ""sourceUrl"": ""https://entocycle.com/about/who-we-are"" - }, - { - ""name"": ""Jude Bliss"", - ""title"": ""Marketing Director"", - ""sourceUrl"": ""https://entocycle.com/about/who-we-are"" - }, - { - ""name"": ""Martin Burkitt"", - ""title"": ""Head of People & Operations"", - ""sourceUrl"": ""https://entocycle.com/about/who-we-are"" - }, - { - ""name"": ""Matt Simmonds"", - ""title"": ""Managing Director"", - ""sourceUrl"": ""https://entocycle.com/about/who-we-are"" - }, - { - ""name"": ""Paul Hillmann"", - ""title"": ""Chief Technical Officer"", - ""sourceUrl"": ""https://entocycle.com/about/who-we-are"" - } - ], - ""researcherNotes"": ""While the company website and LinkedIn provide detailed leadership and product information, explicit geographic focus data is limited. External news sources show that Entocycle operates significant insect farming facilities in London and Leeds, UK, and pursues international expansion, including partnerships with Siemens to scale globally. The headquarters is in London, UK. No contradictory data was found. Key executives are consistent across company and LinkedIn sources. The company was founded in 2015, based in London, UK, confirming entity correctness."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://entocycle.com/"", - ""productDescription"": ""https://entocycle.com/complete-insect-farm"", - ""clientCategories"": ""https://entocycle.com/who-we-help"", - ""geographicFocus"": ""https://www.riskify.net/company/entocycle"", - ""keyExecutives"": ""https://entocycle.com/about/who-we-are"" - } -}","{""clientCategories"":[""Farmers and Producers"",""Insect Companies"",""Waste Management Companies"",""Entrepreneurs""],""companyDescription"":""Entocycle is a mission-led company made up of experts in entomology, engineering, automation, and animal feed and pet food markets. They deliver end-to-end insect farming solutions using black soldier fly larvae technology to convert food waste and byproducts into sustainable, high-value, low-carbon products for animal and plant nutrition. Their modular and scalable technology enables precision and reliability in insect farming, aiming to accelerate a global transition to sustainable protein and revolutionise animal feed production to address the climate emergency. Their customers include farmers, insect companies, waste management firms, and entrepreneurs seeking innovative insect protein solutions."",""geographicFocus"":""Primarily operates in the United Kingdom with expanding industrial-scale insect farming facilities, including sites in London and Leeds, aiming for international growth through partnerships such as with Siemens."",""keyExecutives"":[{""name"":""Keiran Whitaker"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Founder and CEO""},{""name"":""Jonathan Smith"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Finance Director""},{""name"":""Jude Bliss"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Marketing Director""},{""name"":""Martin Burkitt"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Head of People & Operations""},{""name"":""Matt Simmonds"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Managing Director""},{""name"":""Paul Hillmann"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Chief Technical Officer""}],""missingImportantFields"":[],""productDescription"":""Entocycle designs and delivers modular insect farming facilities tailored to customer needs, incorporating systems such as Growth Units and Fly Systems that can be scaled and integrated. They provide complete insect farms or individual components supporting the entire black soldier fly larvae production process, enabling customers to convert organic waste into low-carbon protein products for animal feed and plant nutrition. Their technology emphasizes automation, precision, and scalability to support sustainable insect protein production."",""researcherNotes"":""While the company website and LinkedIn provide detailed leadership and product information, explicit geographic focus data is limited. External news sources show that Entocycle operates significant insect farming facilities in London and Leeds, UK, and pursues international expansion, including partnerships with Siemens to scale globally. The headquarters is in London, UK. No contradictory data was found. Key executives are consistent across company and LinkedIn sources. The company was founded in 2015, based in London, UK, confirming entity correctness."",""sectorDescription"":""Operates in the sustainable protein production and insect farming technology sector, addressing agriculture's environmental impact, waste management, and sustainable animal feed."",""sources"":{""clientCategories"":""https://entocycle.com/who-we-help"",""companyDescription"":""https://entocycle.com/"",""geographicFocus"":""https://www.riskify.net/company/entocycle"",""keyExecutives"":""https://entocycle.com/about/who-we-are"",""productDescription"":""https://entocycle.com/complete-insect-farm""},""websiteURL"":""https://entocycle.com""}","Correctness: 98% Completeness: 95% The company description, leadership, geographic focus, and product details align closely with official and credible sources. Entocycle is a UK-based insect farming technology company headquartered in London, founded by Keiran Whitaker, who serves as CEO, with other confirmed executives including Jonathan Smith (Finance Director), Jude Bliss (Marketing Director), Martin Burkitt (Head of People & Operations), Matt Simmonds (Managing Director), and Paul Hillmann (CTO) as per their website (https://entocycle.com/about/who-we-are) and consistent with Companies House filings (https://find-and-update.company-information.service.gov.uk/company/FC040654/filing-history). The company specializes in modular black soldier fly larvae farming solutions that convert organic waste into sustainable protein products for animal feed and plant nutrition, emphasizing automation, scalability, and precision (https://entocycle.com/complete-insect-farm). Entocycle mainly operates in the UK with facilities in London and Leeds and is pursuing international growth including partnerships like with Siemens (https://www.riskify.net/company/entocycle). The founding date is 2015, consistent with Dealroom data (https://app.dealroom.co/companies/entocycle). The only minor deduction is due to limited explicit detail on recent expansions outside the UK in public sources and the absence of explicit funding round details beyond a 2023 raise covered in news but not detailed here. Overall, the statement is factually accurate and nearly complete with respect to publicly available authoritative information.","{""clientCategories"":[""Farmers and Producers"",""Insect Companies"",""Waste Management companies"",""Entrepreneurs""],""companyDescription"":""Entocycle is a mission-led company composed of experts in entomology, engineering, automation, and animal feed and pet food markets, delivering end-to-end insect farming solutions that convert food waste and byproducts into high-value, low-carbon products for animal and plant nutrition. Their technology and equipment support the black soldier fly larvae production process with precision and reliability. Their mission is to accelerate a global transition to sustainable protein using insects, innovation, and technology, aiming to restore the natural world by revolutionising animal feed production to address the climate emergency."",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Keiran Whitaker"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Founder and CEO""},{""name"":""Jonathan Smith"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Finance Director""},{""name"":""Jude Bliss"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Marketing Director""},{""name"":""Martin Burkitt"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Head of People & Operations""},{""name"":""Matt Simmonds"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Managing Director""},{""name"":""Paul Hillmann"",""sourceUrl"":""https://entocycle.com/about/who-we-are"",""title"":""Chief Technical Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Our team collaborates to plan, design, and deliver insect facilities tailored to business needs. Many units within the facility, including Growth Units and Fly Systems, are modular and can be integrated and scaled to suit customer requirements. We provide complete insect farm solutions or individual systems and equipment."",""researcherNotes"":""Geographic footprint details including headquarters and sales regions were not found on the website or contact page."",""sectorDescription"":""Operates in the sustainable protein production and insect farming technology sector, addressing agriculture's environmental impact, waste management, and sustainable animal feed."",""sources"":{""clientCategories"":""https://entocycle.com/who-we-help"",""companyDescription"":""https://entocycle.com/"",""geographicFocus"":null,""keyExecutives"":""https://entocycle.com/about/who-we-are"",""productDescription"":""https://entocycle.com/complete-insect-farm""},""websiteURL"":""https://entocycle.com/""}" -Valagro,http://www.valagro.com/,Metalmark Capital,valagro.com,https://www.linkedin.com/company/valagro,"{""seniorLeadership"":[{""fullName"":""Giuseppe Natale"",""title"":""Chairman of the Board"",""profileURL"":""https://www.linkedin.com/in/natale-giuseppe""},{""fullName"":""Prem Warrior"",""title"":""Board Member"",""profileURL"":""https://www.linkedin.com/in/prem-warrior-2aa8855""},{""fullName"":""Sanjay Kumar Tokala"",""title"":""Country Manager"",""profileURL"":""https://www.linkedin.com/in/sanjay-kumar-tokala-2a090536""},{""fullName"":""Raghurami Reddy Thummuru"",""title"":""Head of HR"",""profileURL"":""https://www.linkedin.com/in/raghurami-reddy-thummuru-74a45659""},{""fullName"":""Carlos Amaro"",""title"":""Entity Lead & Valagro - Finance Operations Lead @ Syngenta Group"",""profileURL"":""https://www.linkedin.com/in/carlosmcamaro""}]}","{""seniorLeadership"":[{""fullName"":""Giuseppe Natale"",""title"":""Chairman of the Board"",""profileURL"":""https://www.linkedin.com/in/natale-giuseppe""},{""fullName"":""Prem Warrior"",""title"":""Board Member"",""profileURL"":""https://www.linkedin.com/in/prem-warrior-2aa8855""},{""fullName"":""Sanjay Kumar Tokala"",""title"":""Country Manager"",""profileURL"":""https://www.linkedin.com/in/sanjay-kumar-tokala-2a090536""},{""fullName"":""Raghurami Reddy Thummuru"",""title"":""Head of HR"",""profileURL"":""https://www.linkedin.com/in/raghurami-reddy-thummuru-74a45659""},{""fullName"":""Carlos Amaro"",""title"":""Entity Lead & Valagro - Finance Operations Lead @ Syngenta Group"",""profileURL"":""https://www.linkedin.com/in/carlosmcamaro""}]}","{ - ""websiteURL"": ""http://www.valagro.com/"", - ""companyDescription"": ""We started this journey as Syngenta and Valagro, now we are one community, one team, shaping together the future of agriculture. We are Syngenta Biologicals. We have always created innovative solutions for the nutrition and well-being of plants. Using science to harness the potential of Nature. We follow a rigorous path in order to guarantee effectiveness to our customers. We are meeting the needs of humanity by helping to produce more using fewer resources."", - ""productDescription"": ""Core products and services offered by Valagro include: Plant biostimulants, Biocontrol products, Micronutrients, Water soluble nutrition under the Farm line; and under Industrials division: EDTA Chelates, EDDHA Chelates, LS Complexes, Humic Acids, and EDDHSA-Chelates."", - ""clientCategories"": [""Industrial manufacturing""], - ""sectorDescription"": ""Operates in the agricultural biologicals sector, producing biostimulants and specialty nutrients for plant nutrition and crop care."", - ""geographicFocus"": ""HQ: Via Cagliari 1 - Zona Industriale, 66041 Atessa (Chieti), Italy; Sales Focus: Europe, China, South America, United States"", - ""keyExecutives"": [ - { - ""name"": ""Giuseppe Natale"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://www.cbinsights.com/company/valagro/people"" - } - ], - ""linkedDocuments"": [ - ""https://www.valagro.com/usa/en-us/restricted/get-document/restricted_area/documents/Catalog_Farm_USA.pdf?id=2251"", - ""https://www.valagro.com/media/filer_public/ea/6b/ea6b175c-3752-408d-8813-08c3da1743a8/bsa_2018_en.pdf"", - ""https://www.valagro.com/usa/en-us/restricted/get-document/restricted_area/documents/SDS_11286_Fe_LSA_en.pdf?id=991"", - ""https://www.valagro.com/media/filer_public/52/ff/52ffc954-92da-4951-bf89-5e2c993bf2ae/issue_77_2b_monthly_2019_8_15_final.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.valagro.com/en/"", - ""productDescription"": ""https://www.valagro.com/en/products/"", - ""clientCategories"": ""https://www.hbs.group/en/case-study/valagro"", - ""geographicFocus"": ""https://www.syngentabiologicals.com/usa/en-us/about-us/our-company/"", - ""keyExecutives"": ""https://www.cbinsights.com/company/valagro/people"" - } -}","{ - ""websiteURL"": ""http://www.valagro.com/"", - ""companyDescription"": ""We started this journey as Syngenta and Valagro, now we are one community, one team, shaping together the future of agriculture. We are Syngenta Biologicals. We have always created innovative solutions for the nutrition and well-being of plants. Using science to harness the potential of Nature. We follow a rigorous path in order to guarantee effectiveness to our customers. We are meeting the needs of humanity by helping to produce more using fewer resources."", - ""productDescription"": ""Core products and services offered by Valagro include: Plant biostimulants, Biocontrol products, Micronutrients, Water soluble nutrition under the Farm line; and under Industrials division: EDTA Chelates, EDDHA Chelates, LS Complexes, Humic Acids, and EDDHSA-Chelates."", - ""clientCategories"": [""Industrial manufacturing""], - ""sectorDescription"": ""Operates in the agricultural biologicals sector, producing biostimulants and specialty nutrients for plant nutrition and crop care."", - ""geographicFocus"": ""HQ: Via Cagliari 1 - Zona Industriale, 66041 Atessa (Chieti), Italy; Sales Focus: Europe, China, South America, United States"", - ""keyExecutives"": [ - { - ""name"": ""Giuseppe Natale"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://www.cbinsights.com/company/valagro/people"" - } - ], - ""linkedDocuments"": [ - ""https://www.valagro.com/usa/en-us/restricted/get-document/restricted_area/documents/Catalog_Farm_USA.pdf?id=2251"", - ""https://www.valagro.com/media/filer_public/ea/6b/ea6b175c-3752-408d-8813-08c3da1743a8/bsa_2018_en.pdf"", - ""https://www.valagro.com/usa/en-us/restricted/get-document/restricted_area/documents/SDS_11286_Fe_LSA_en.pdf?id=991"", - ""https://www.valagro.com/media/filer_public/52/ff/52ffc954-92da-4951-bf89-5e2c993bf2ae/issue_77_2b_monthly_2019_8_15_final.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.valagro.com/en/"", - ""productDescription"": ""https://www.valagro.com/en/products/"", - ""clientCategories"": ""https://www.hbs.group/en/case-study/valagro"", - ""geographicFocus"": ""https://www.syngentabiologicals.com/usa/en-us/about-us/our-company/"", - ""keyExecutives"": ""https://www.cbinsights.com/company/valagro/people"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.valagro.com"", - ""companyDescription"": ""We started this journey as Syngenta and Valagro, now we are one community, one team, shaping together the future of agriculture. We are Syngenta Biologicals. We have always created innovative solutions for the nutrition and well-being of plants. Using science to harness the potential of Nature. We follow a rigorous path in order to guarantee effectiveness to our customers. We are meeting the needs of humanity by helping to produce more using fewer resources."", - ""productDescription"": ""Core products and services offered by Valagro include: Plant biostimulants, Biocontrol products, Micronutrients, Water soluble nutrition under the Farm line; and under Industrials division: EDTA Chelates, EDDHA Chelates, LS Complexes, Humic Acids, and EDDHSA-Chelates."", - ""clientCategories"": [""Industrial Manufacturing"", ""Agricultural Producers"", ""Distributors"", ""Research Institutions""], - ""sectorDescription"": ""Operates in the agricultural biologicals sector, producing biostimulants and specialty nutrients for plant nutrition and crop care."", - ""geographicFocus"": ""Headquartered in Atessa, Italy, with sales focus in Europe, China, South America, and the United States."", - ""keyExecutives"": [ - { - ""name"": ""Giuseppe Natale"", - ""title"": ""Chairman of the Board"", - ""sourceUrl"": ""https://www.linkedin.com/in/natale-giuseppe"" - }, - { - ""name"": ""Prem Warrior"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://www.linkedin.com/in/prem-warrior-2aa8855"" - }, - { - ""name"": ""Sanjay Kumar Tokala"", - ""title"": ""Country Manager"", - ""sourceUrl"": ""https://www.linkedin.com/in/sanjay-kumar-tokala-2a090536"" - }, - { - ""name"": ""Raghurami Reddy Thummuru"", - ""title"": ""Head of HR"", - ""sourceUrl"": ""https://www.linkedin.com/in/raghurami-reddy-thummuru-74a45659"" - }, - { - ""name"": ""Carlos Amaro"", - ""title"": ""Entity Lead & Valagro - Finance Operations Lead @ Syngenta Group"", - ""sourceUrl"": ""https://www.linkedin.com/in/carlosmcamaro"" - } - ], - ""researcherNotes"": ""The company is correctly identified by the domain valagro.com and HQ in Atessa, Italy. LinkedIn profiles confirm Giuseppe Natale as Chairman of the Board rather than CEO per LinkedIn, indicating possible title update. Geographic focus citation combines company website and Syngenta Biologicals data. Client categories expanded with reference to industry typical customers due to initial limited listing. No regulatory filings reviewed due to lack of direct access. Data triangulated from company website and LinkedIn profiles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.valagro.com/en/"", - ""productDescription"": ""https://www.valagro.com/en/products/"", - ""clientCategories"": ""https://www.hbs.group/en/case-study/valagro"", - ""geographicFocus"": ""https://www.syngentabiologicals.com/usa/en-us/about-us/our-company/"", - ""keyExecutives"": ""https://www.linkedin.com/in/natale-giuseppe"" - } -}","{""clientCategories"":[""Industrial Manufacturing"",""Agricultural Producers"",""Distributors"",""Research Institutions""],""companyDescription"":""We started this journey as Syngenta and Valagro, now we are one community, one team, shaping together the future of agriculture. We are Syngenta Biologicals. We have always created innovative solutions for the nutrition and well-being of plants. Using science to harness the potential of Nature. We follow a rigorous path in order to guarantee effectiveness to our customers. We are meeting the needs of humanity by helping to produce more using fewer resources."",""geographicFocus"":""Headquartered in Atessa, Italy, with sales focus in Europe, China, South America, and the United States."",""keyExecutives"":[{""name"":""Giuseppe Natale"",""sourceUrl"":""https://www.linkedin.com/in/natale-giuseppe"",""title"":""Chairman of the Board""},{""name"":""Prem Warrior"",""sourceUrl"":""https://www.linkedin.com/in/prem-warrior-2aa8855"",""title"":""Board Member""},{""name"":""Sanjay Kumar Tokala"",""sourceUrl"":""https://www.linkedin.com/in/sanjay-kumar-tokala-2a090536"",""title"":""Country Manager""},{""name"":""Raghurami Reddy Thummuru"",""sourceUrl"":""https://www.linkedin.com/in/raghurami-reddy-thummuru-74a45659"",""title"":""Head of HR""},{""name"":""Carlos Amaro"",""sourceUrl"":""https://www.linkedin.com/in/carlosmcamaro"",""title"":""Entity Lead & Valagro - Finance Operations Lead @ Syngenta Group""}],""missingImportantFields"":[],""productDescription"":""Core products and services offered by Valagro include: Plant biostimulants, Biocontrol products, Micronutrients, Water soluble nutrition under the Farm line; and under Industrials division: EDTA Chelates, EDDHA Chelates, LS Complexes, Humic Acids, and EDDHSA-Chelates."",""researcherNotes"":""The company is correctly identified by the domain valagro.com and HQ in Atessa, Italy. LinkedIn profiles confirm Giuseppe Natale as Chairman of the Board rather than CEO per LinkedIn, indicating possible title update. Geographic focus citation combines company website and Syngenta Biologicals data. Client categories expanded with reference to industry typical customers due to initial limited listing. No regulatory filings reviewed due to lack of direct access. Data triangulated from company website and LinkedIn profiles."",""sectorDescription"":""Operates in the agricultural biologicals sector, producing biostimulants and specialty nutrients for plant nutrition and crop care."",""sources"":{""clientCategories"":""https://www.hbs.group/en/case-study/valagro"",""companyDescription"":""https://www.valagro.com/en/"",""geographicFocus"":""https://www.syngentabiologicals.com/usa/en-us/about-us/our-company/"",""keyExecutives"":""https://www.linkedin.com/in/natale-giuseppe"",""productDescription"":""https://www.valagro.com/en/products/""},""websiteURL"":""https://www.valagro.com""}","Correctness: 96% Completeness: 92% The information is largely accurate and well-supported by multiple reputable sources. Valagro is confirmed as a leading biologicals company headquartered in Atessa, Italy, with a focus on plant biostimulants, specialty nutrients, and related products, now operating under Syngenta Crop Protection since its acquisition in 2020[1][2][5]. The geographic focus on Europe, China, South America, and the U.S. aligns with Valagro’s global footprint as described by Syngenta, which includes strong presences in these regions[2]. Leadership titles, such as Giuseppe Natale as Chairman of the Board rather than CEO per LinkedIn, are consistent with publicly available profiles and reflect updated roles[2]. The core products described (biostimulants, biocontrols, micronutrients, chelates, humic acids) match Valagro’s portfolio under Syngenta Biologicals[5]. The mention of joint identity formation as Syngenta Biologicals combining Valagro and Syngenta’s biological businesses is confirmed by recent company statements[5]. Minor deductions in correctness relate to absence of direct regulatory filings to confirm all executive titles and the exact revenue figure, though reported data ($175 million revenue, 700+ employees as of 2020) are consistent across several sources. Completeness is slightly reduced by the lack of explicit current CEO name (if different from Chairman) and full disclosure of recent milestones or financial data beyond the acquisition and organizational integration. Overall, the data is well triangulated from company-controlled sites and credible industry news covering the key claims as of 2025-09-11. https://www.valagro.com/en/, https://www.syngenta.com/media/media-releases/2020/syngenta-group-acquires-leading-biologicals-company-valagro, https://agfundernews.com/syngenta-acquires-biologics-company-valagro, https://www.syngentaturf.co.uk/news/greencast/syngenta-acquires-leading-global-biologicals-company-valagro, https://www.no-tillfarmer.com/articles/12620-syngenta-brings-together-biologicals-businesses-under-new-brand","{""clientCategories"":[""Industrial manufacturing""],""companyDescription"":""We started this journey as Syngenta and Valagro, now we are one community, one team, shaping together the future of agriculture. We are Syngenta Biologicals. We have always created innovative solutions for the nutrition and well-being of plants. Using science to harness the potential of Nature. We follow a rigorous path in order to guarantee effectiveness to our customers. We are meeting the needs of humanity by helping to produce more using fewer resources."",""geographicFocus"":""HQ: Via Cagliari 1 - Zona Industriale, 66041 Atessa (Chieti), Italy; Sales Focus: Europe, China, South America, United States"",""keyExecutives"":[{""name"":""Giuseppe Natale"",""sourceUrl"":""https://www.cbinsights.com/company/valagro/people"",""title"":""Chief Executive Officer (CEO)""}],""linkedDocuments"":[""https://www.valagro.com/usa/en-us/restricted/get-document/restricted_area/documents/Catalog_Farm_USA.pdf?id=2251"",""https://www.valagro.com/media/filer_public/ea/6b/ea6b175c-3752-408d-8813-08c3da1743a8/bsa_2018_en.pdf"",""https://www.valagro.com/usa/en-us/restricted/get-document/restricted_area/documents/SDS_11286_Fe_LSA_en.pdf?id=991"",""https://www.valagro.com/media/filer_public/52/ff/52ffc954-92da-4951-bf89-5e2c993bf2ae/issue_77_2b_monthly_2019_8_15_final.pdf""],""missingImportantFields"":[""clientCategories""],""productDescription"":""Core products and services offered by Valagro include: Plant biostimulants, Biocontrol products, Micronutrients, Water soluble nutrition under the Farm line; and under Industrials division: EDTA Chelates, EDDHA Chelates, LS Complexes, Humic Acids, and EDDHSA-Chelates."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural biologicals sector, producing biostimulants and specialty nutrients for plant nutrition and crop care."",""sources"":{""clientCategories"":""https://www.hbs.group/en/case-study/valagro"",""companyDescription"":""https://www.valagro.com/en/"",""geographicFocus"":""https://www.syngentabiologicals.com/usa/en-us/about-us/our-company/"",""keyExecutives"":""https://www.cbinsights.com/company/valagro/people"",""productDescription"":""https://www.valagro.com/en/products/""},""websiteURL"":""http://www.valagro.com/""}" -AlgaSpring,http://www.algaspring.nl/,MKB & Technofonds Flevoland,algaspring.nl,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.algaspring.nl/"", - ""companyDescription"": ""NannoStar and NutriSpring are producer brands of AlgaSpring products focusing on aquaculture and human nutrition. AlgaSpring produces 100% Dutch quality microalgae in a pristine location in the Netherlands, utilizing ancient, contamination-free seawater. The company emphasizes continuous quality control, zero additives, and sustainable production by a dedicated professional team ensuring high quality standards. Their mission centers on providing highly nutritious and sustainable marine microalgae products with multiple health benefits, aiming to be a leading European producer."", - ""productDescription"": ""AlgaSpring offers marine phytoplankton supplements including powder, capsules, and flakes of 100% Nannochloropsis gaditana with no additives and a three-year shelf life. The powder has an intense green color and strong umami flavor. Capsules are vegetarian HPMC of 500 mg each. Flakes are ultra-thin for flavor enhancement. They also provide high quality algae-based diets and enrichments for aquaculture including: - NannoStar+ (all-in-one rotifer diet) - NannoStar SHIELD (frozen algae concentrate for green water) - NannoStar GREEN (100% Nannochloropsis gaditana for green water) - NannoStar RED (rotifer enrichment product with DHA and EPA) - NannoStar GOLD (high quality enrichment for artemia). Products are ISO22000 certified and produced under human food grade conditions."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates as the European leading producer in the marine microalgae and phytoplankton sector, focusing on sustainable, high-quality aquaculture and human nutrition products."", - ""geographicFocus"": ""HQ: E. Heimansweg 16, 1331 AP Almere, The Netherlands; Sales Focus: Europe"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information on key executives or client categories served was found on the website."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.algaspring.nl/"", - ""productDescription"": ""https://www.algaspring.nl/marine-phytoplankton-supplements/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.algaspring.nl/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.algaspring.nl/"", - ""companyDescription"": ""NannoStar and NutriSpring are producer brands of AlgaSpring products focusing on aquaculture and human nutrition. AlgaSpring produces 100% Dutch quality microalgae in a pristine location in the Netherlands, utilizing ancient, contamination-free seawater. The company emphasizes continuous quality control, zero additives, and sustainable production by a dedicated professional team ensuring high quality standards. Their mission centers on providing highly nutritious and sustainable marine microalgae products with multiple health benefits, aiming to be a leading European producer."", - ""productDescription"": ""AlgaSpring offers marine phytoplankton supplements including powder, capsules, and flakes of 100% Nannochloropsis gaditana with no additives and a three-year shelf life. The powder has an intense green color and strong umami flavor. Capsules are vegetarian HPMC of 500 mg each. Flakes are ultra-thin for flavor enhancement. They also provide high quality algae-based diets and enrichments for aquaculture including: - NannoStar+ (all-in-one rotifer diet) - NannoStar SHIELD (frozen algae concentrate for green water) - NannoStar GREEN (100% Nannochloropsis gaditana for green water) - NannoStar RED (rotifer enrichment product with DHA and EPA) - NannoStar GOLD (high quality enrichment for artemia). Products are ISO22000 certified and produced under human food grade conditions."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates as the European leading producer in the marine microalgae and phytoplankton sector, focusing on sustainable, high-quality aquaculture and human nutrition products."", - ""geographicFocus"": ""HQ: E. Heimansweg 16, 1331 AP Almere, The Netherlands; Sales Focus: Europe"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information on key executives or client categories served was found on the website."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.algaspring.nl/"", - ""productDescription"": ""https://www.algaspring.nl/marine-phytoplankton-supplements/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.algaspring.nl/contact/"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.algaspring.nl"", - ""companyDescription"": ""AlgaSpring is a leading European producer of marine microalgae, specifically Nannochloropsis gaditana, cultivated in a pristine Dutch location using contamination-free seawater. The company focuses on sustainable, high-quality microalgae products for aquaculture and human nutrition markets, emphasizing continuous quality control, zero additives, and environmentally responsible production. Their mission is to provide highly nutritious and sustainable marine phytoplankton products with multiple health benefits, positioning themselves as a top European producer in this sector."", - ""productDescription"": ""AlgaSpring offers 100% Nannochloropsis gaditana marine phytoplankton supplements in powder, capsules, and flakes with no additives and a three-year shelf life. Their product line also includes specialized algae-based diets and enrichments for aquaculture, such as NannoStar+ (all-in-one rotifer diet), NannoStar SHIELD (frozen algae concentrate for green water), NannoStar GREEN (pure microalgae for green water), NannoStar RED (rotifer enrichment with DHA and EPA), and NannoStar GOLD (artemia enrichment). All products are ISO22000 certified and produced under human food-grade conditions."", - ""clientCategories"": [""Aquaculture Producers"", ""Human Nutrition Companies"", ""Marine Biotechnology Firms"", ""Health Supplement Manufacturers"", ""Feed Producers""], - ""sectorDescription"": ""Marine microalgae production specializing in sustainable, high-quality phytoplankton products for aquaculture and human nutrition."", - ""geographicFocus"": ""Headquartered in Almere, The Netherlands, with sales primarily focused across Europe."", - ""keyExecutives"": [], - ""researcherNotes"": ""No publicly available information was found on senior leadership or key executives from the company website or LinkedIn. The company is clearly identified as AlgaSpring B.V., headquartered in Almere, Netherlands, with strong European market orientation. Client categories were inferred based on product use cases and sector focus. The domain and HQ location both match across multiple sources, confirming entity disambiguation."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.algaspring.nl/"", - ""productDescription"": ""https://www.algaspring.nl/marine-phytoplankton-supplements/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.algaspring.nl/contact/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Aquaculture Producers"",""Human Nutrition Companies"",""Marine Biotechnology Firms"",""Health Supplement Manufacturers"",""Feed Producers""],""companyDescription"":""AlgaSpring is a leading European producer of marine microalgae, specifically Nannochloropsis gaditana, cultivated in a pristine Dutch location using contamination-free seawater. The company focuses on sustainable, high-quality microalgae products for aquaculture and human nutrition markets, emphasizing continuous quality control, zero additives, and environmentally responsible production. Their mission is to provide highly nutritious and sustainable marine phytoplankton products with multiple health benefits, positioning themselves as a top European producer in this sector."",""geographicFocus"":""Headquartered in Almere, The Netherlands, with sales primarily focused across Europe."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""AlgaSpring offers 100% Nannochloropsis gaditana marine phytoplankton supplements in powder, capsules, and flakes with no additives and a three-year shelf life. Their product line also includes specialized algae-based diets and enrichments for aquaculture, such as NannoStar+ (all-in-one rotifer diet), NannoStar SHIELD (frozen algae concentrate for green water), NannoStar GREEN (pure microalgae for green water), NannoStar RED (rotifer enrichment with DHA and EPA), and NannoStar GOLD (artemia enrichment). All products are ISO22000 certified and produced under human food-grade conditions."",""researcherNotes"":""No publicly available information was found on senior leadership or key executives from the company website or LinkedIn. The company is clearly identified as AlgaSpring B.V., headquartered in Almere, Netherlands, with strong European market orientation. Client categories were inferred based on product use cases and sector focus. The domain and HQ location both match across multiple sources, confirming entity disambiguation."",""sectorDescription"":""Marine microalgae production specializing in sustainable, high-quality phytoplankton products for aquaculture and human nutrition."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.algaspring.nl/"",""geographicFocus"":""https://www.algaspring.nl/contact/"",""keyExecutives"":null,""productDescription"":""https://www.algaspring.nl/marine-phytoplankton-supplements/""},""websiteURL"":""https://www.algaspring.nl""}","Correctness: 95% Completeness: 90% The description of AlgaSpring as a European producer of marine microalgae, specifically Nannochloropsis gaditana cultivated in Almere, The Netherlands, aligns well with multiple sources confirming the HQ address, focus on sustainable aquaculture and human nutrition markets, and contamination-free production using seawater[1][2][4]. Product details such as the 100% Nannochloropsis gaditana powders, capsules, flakes with no additives, long shelf life, and specialized aquaculture diets under the NannoStar brand are supported by the company’s website and corroborated in other summaries[1][4]. However, the absence of publicly available information on key executives or leadership reduces completeness since no verified senior management info appears in official or LinkedIn sources[2]. Also, while geographic focus on Europe is evident, few sources specify sales distribution beyond Holland but imply European outreach[1][2]. Overall, the factual claims on company identity, HQ, products, and sector are accurate and well-supported; leadership details and precise European market footprint lack full public verification as of 2025-09-11. Sources: https://www.algaspring.nl/company-information/, https://directory.startupluxembourg.com/companies/algaspring/team, https://craft.co/algaspring","{""clientCategories"":[],""companyDescription"":""NannoStar and NutriSpring are producer brands of AlgaSpring products focusing on aquaculture and human nutrition. AlgaSpring produces 100% Dutch quality microalgae in a pristine location in the Netherlands, utilizing ancient, contamination-free seawater. The company emphasizes continuous quality control, zero additives, and sustainable production by a dedicated professional team ensuring high quality standards. Their mission centers on providing highly nutritious and sustainable marine microalgae products with multiple health benefits, aiming to be a leading European producer."",""geographicFocus"":""HQ: E. Heimansweg 16, 1331 AP Almere, The Netherlands; Sales Focus: Europe"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""AlgaSpring offers marine phytoplankton supplements including powder, capsules, and flakes of 100% Nannochloropsis gaditana with no additives and a three-year shelf life. The powder has an intense green color and strong umami flavor. Capsules are vegetarian HPMC of 500 mg each. Flakes are ultra-thin for flavor enhancement. They also provide high quality algae-based diets and enrichments for aquaculture including: - NannoStar+ (all-in-one rotifer diet) - NannoStar SHIELD (frozen algae concentrate for green water) - NannoStar GREEN (100% Nannochloropsis gaditana for green water) - NannoStar RED (rotifer enrichment product with DHA and EPA) - NannoStar GOLD (high quality enrichment for artemia). Products are ISO22000 certified and produced under human food grade conditions."",""researcherNotes"":""No information on key executives or client categories served was found on the website."",""sectorDescription"":""Operates as the European leading producer in the marine microalgae and phytoplankton sector, focusing on sustainable, high-quality aquaculture and human nutrition products."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.algaspring.nl/"",""geographicFocus"":""https://www.algaspring.nl/contact/"",""keyExecutives"":null,""productDescription"":""https://www.algaspring.nl/marine-phytoplankton-supplements/""},""websiteURL"":""http://www.algaspring.nl/""}" -Agrilution,http://www.agrilution.de,"Fluxunit - Osram Ventures, TEV Ventures",agrilution.de,NOT FOUND,"{""seniorLeadership"":[{""name"":""Maximilian Loessl"",""title"":""Co-Founder and Chief Executive Officer""},{""name"":""Philipp Wagner"",""title"":""Co-founder & CTO""},{""name"":""Vanessa Blaser"",""title"":""Head Of Marketing""},{""name"":""Nicole Scheiba"",""title"":""Senior Procurement Manager""},{""name"":""Sylvie Fleischmann"",""title"":""Senior Human Resources Manager""},{""name"":""Ralf Huber"",""title"":""Head Of Seedbar Production""}]}","{""seniorLeadership"":[{""name"":""Maximilian Loessl"",""title"":""Co-Founder and Chief Executive Officer""},{""name"":""Philipp Wagner"",""title"":""Co-founder & CTO""},{""name"":""Vanessa Blaser"",""title"":""Head Of Marketing""},{""name"":""Nicole Scheiba"",""title"":""Senior Procurement Manager""},{""name"":""Sylvie Fleischmann"",""title"":""Senior Human Resources Manager""},{""name"":""Ralf Huber"",""title"":""Head Of Seedbar Production""}]}","{ - ""websiteURL"": ""http://www.agrilution.de"", - ""companyDescription"": ""Agrilution has ceased its business operations as of June 30, 2023, and its website will be shut down. The company thanked supporters but stated the business model lacked economic viability."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [""Private customers"", ""Professional"", ""Architects & Developers"", ""Marine"", ""Dealers"", ""Suppliers""], - ""sectorDescription"": ""Operated in the agriculture technology sector, focusing on innovative indoor farming solutions before ceasing operations."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company shut down operations on June 30, 2023, which severely limits available current data, including detailed product offerings, executive leadership, and geographic focus. Headquarters address was not explicitly found on the site post-closure."", - ""missingImportantFields"": [""productDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agrilution.de/"", - ""productDescription"": null, - ""clientCategories"": ""https://agrilution.de/de/project-business/index.htm"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.agrilution.de"", - ""companyDescription"": ""Agrilution has ceased its business operations as of June 30, 2023, and its website will be shut down. The company thanked supporters but stated the business model lacked economic viability."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [""Private customers"", ""Professional"", ""Architects & Developers"", ""Marine"", ""Dealers"", ""Suppliers""], - ""sectorDescription"": ""Operated in the agriculture technology sector, focusing on innovative indoor farming solutions before ceasing operations."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company shut down operations on June 30, 2023, which severely limits available current data, including detailed product offerings, executive leadership, and geographic focus. Headquarters address was not explicitly found on the site post-closure."", - ""missingImportantFields"": [""productDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agrilution.de/"", - ""productDescription"": null, - ""clientCategories"": ""https://agrilution.de/de/project-business/index.htm"", - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""productDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""http://www.agrilution.de"", - ""companyDescription"": ""Agrilution operated in the agriculture technology sector, developing smart indoor farming solutions that allowed consumers to grow fresh, healthy vegetables and herbs at home using fully automated, smart kitchen appliances. Their flagship product, the Plantcube, combined proprietary seed consumables with an app for tailored light, climate, and watering control, promoting healthier nutrition and sustainability by reducing transportation, packaging, and food waste. The company ceased its business operations on June 30, 2023, due to lack of economic viability."", - ""productDescription"": ""Agrilution's primary product was the Plantcube, a smart home appliance designed for fully automated indoor farming. It provided optimized lighting, climate, and watering conditions for proprietary Seedbars that grow vegetables and herbs year-round. The ecosystem included an app that enabled customers to remotely control the device, shop for seeds, and monitor growth, resulting in produce up to 30 times more nutritious and pesticide-free."", - ""clientCategories"": [""Private Customers"", ""Professional"", ""Architects & Developers"", ""Marine"", ""Dealers"", ""Suppliers""], - ""sectorDescription"": ""Agriculture technology focused on innovative indoor vertical farming solutions for home and professional use."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Maximilian Lössl"", - ""title"": ""Co-Founder and Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/agrilution/"" - }, - { - ""name"": ""Philipp Wagner"", - ""title"": ""Co-founder & CTO"", - ""sourceUrl"": ""https://www.linkedin.com/company/agrilution/"" - }, - { - ""name"": ""Vanessa Blaser"", - ""title"": ""Head Of Marketing"", - ""sourceUrl"": ""https://www.linkedin.com/company/agrilution/"" - }, - { - ""name"": ""Nicole Scheiba"", - ""title"": ""Senior Procurement Manager"", - ""sourceUrl"": ""https://www.linkedin.com/company/agrilution/"" - }, - { - ""name"": ""Sylvie Fleischmann"", - ""title"": ""Senior Human Resources Manager"", - ""sourceUrl"": ""https://www.linkedin.com/company/agrilution/"" - }, - { - ""name"": ""Ralf Huber"", - ""title"": ""Head Of Seedbar Production"", - ""sourceUrl"": ""https://www.linkedin.com/company/agrilution/"" - } - ], - ""researcherNotes"": ""Agrilution was confirmed as the correct entity based on domain match (agrilution.de), industry keywords (smart indoor farming, Plantcube), and confirmed Munich HQ. The company ceased operations on June 30, 2023, limiting recent data availability. The geographic focus remains unknown from available sources. Key executives were sourced from the company's LinkedIn profile. Product details were supplemented from third-party descriptions to fill gaps left by the now-defunct company website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""http://www.agrilution.de"", - ""productDescription"": ""https://www.yumda.com/en/companies/1034502/agrilution-gmbh.html"", - ""clientCategories"": ""http://www.agrilution.de/de/project-business/index.htm"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.linkedin.com/company/agrilution/"" - } -}","{""clientCategories"":[""Private Customers"",""Professional"",""Architects & Developers"",""Marine"",""Dealers"",""Suppliers""],""companyDescription"":""Agrilution operated in the agriculture technology sector, developing smart indoor farming solutions that allowed consumers to grow fresh, healthy vegetables and herbs at home using fully automated, smart kitchen appliances. Their flagship product, the Plantcube, combined proprietary seed consumables with an app for tailored light, climate, and watering control, promoting healthier nutrition and sustainability by reducing transportation, packaging, and food waste. The company ceased its business operations on June 30, 2023, due to lack of economic viability."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Maximilian Lössl"",""sourceUrl"":""https://www.linkedin.com/company/agrilution/"",""title"":""Co-Founder and Chief Executive Officer""},{""name"":""Philipp Wagner"",""sourceUrl"":""https://www.linkedin.com/company/agrilution/"",""title"":""Co-founder & CTO""},{""name"":""Vanessa Blaser"",""sourceUrl"":""https://www.linkedin.com/company/agrilution/"",""title"":""Head Of Marketing""},{""name"":""Nicole Scheiba"",""sourceUrl"":""https://www.linkedin.com/company/agrilution/"",""title"":""Senior Procurement Manager""},{""name"":""Sylvie Fleischmann"",""sourceUrl"":""https://www.linkedin.com/company/agrilution/"",""title"":""Senior Human Resources Manager""},{""name"":""Ralf Huber"",""sourceUrl"":""https://www.linkedin.com/company/agrilution/"",""title"":""Head Of Seedbar Production""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Agrilution's primary product was the Plantcube, a smart home appliance designed for fully automated indoor farming. It provided optimized lighting, climate, and watering conditions for proprietary Seedbars that grow vegetables and herbs year-round. The ecosystem included an app that enabled customers to remotely control the device, shop for seeds, and monitor growth, resulting in produce up to 30 times more nutritious and pesticide-free."",""researcherNotes"":""Agrilution was confirmed as the correct entity based on domain match (agrilution.de), industry keywords (smart indoor farming, Plantcube), and confirmed Munich HQ. The company ceased operations on June 30, 2023, limiting recent data availability. The geographic focus remains unknown from available sources. Key executives were sourced from the company's LinkedIn profile. Product details were supplemented from third-party descriptions to fill gaps left by the now-defunct company website."",""sectorDescription"":""Agriculture technology focused on innovative indoor vertical farming solutions for home and professional use."",""sources"":{""clientCategories"":""http://www.agrilution.de/de/project-business/index.htm"",""companyDescription"":""http://www.agrilution.de"",""geographicFocus"":null,""keyExecutives"":""https://www.linkedin.com/company/agrilution/"",""productDescription"":""https://www.yumda.com/en/companies/1034502/agrilution-gmbh.html""},""websiteURL"":""http://www.agrilution.de""}","Correctness: 95% Completeness: 85% The description of Agrilution as a Munich-based agtech company founded by Maximilian Lössl (Co-Founder and CEO) and Philipp Wagner (Co-Founder and CTO) developing smart indoor farming solutions, specifically the Plantcube, is accurate and well-supported. The Plantcube is confirmed as a fully automated kitchen appliance growing pesticide-free herbs and vegetables with app integration, offering tailored light, climate, and watering control, and results in produce up to 30 times more nutritious, as stated in multiple sources [1][2][3]. The company’s partnership with Miele and the focus on home consumers align with the known facts. The cessation of operations on June 30, 2023, due to economic viability issues is consistent with the information given, although this date is less directly evidenced in the current sources but matches researcher notes. Missing geographic focus and lack of direct evidence on employee count fluctuations or detailed post-2023 activity reduce completeness somewhat. Official sources like the company’s LinkedIn page confirm key executives [1][2][3]. Overall, the core claims are factually correct with minor completeness gaps typical for a ceased startup with limited public data beyond 2023. https://www.linkedin.com/company/agrilution/ https://www.verticalfarmdaily.com/article/9411515/to-me-it-seemed-weird-that-nobody-wanted-to-take-the-benefits-of-vertical-farming-directly-to-consumers/ https://www.munich-startup.de/en/startups/agrilution-gmbh/","{""clientCategories"":[""Private customers"",""Professional"",""Architects & Developers"",""Marine"",""Dealers"",""Suppliers""],""companyDescription"":""Agrilution has ceased its business operations as of June 30, 2023, and its website will be shut down. The company thanked supporters but stated the business model lacked economic viability."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""productDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The company shut down operations on June 30, 2023, which severely limits available current data, including detailed product offerings, executive leadership, and geographic focus. Headquarters address was not explicitly found on the site post-closure."",""sectorDescription"":""Operated in the agriculture technology sector, focusing on innovative indoor farming solutions before ceasing operations."",""sources"":{""clientCategories"":""https://agrilution.de/de/project-business/index.htm"",""companyDescription"":""https://agrilution.de/"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://www.agrilution.de""}" -Saumon d'Isigny,http://saumondisigny.fr/,Entrepreneur Venture,saumondisigny.fr,https://www.linkedin.com/company/saumon-de-france,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://saumondisigny.fr/"", - ""companyDescription"": ""GMG Saumon de France is an innovative company specializing in salmon farming in France, led by Pascal Goumain, headquartered in Cherbourg-en-Cotentin, Manche. Founded in 1991, the company operates an offshore salmon farm in Cherbourg harbor focused on animal welfare, environmental respect, and sustainability in aquaculture. GMG Saumon de France emphasizes quality and traceability of fresh salmon products and commits to sustainable, environmentally friendly farming practices. The company is a recognized leader in French salmon farming, investing continuously in research and development to promote innovation and durability in its supply chain."", - ""productDescription"": ""Products offered include fresh whole salmon available to professionals with seasonal availability from December to July, vacuum-packed fresh salmon fillets and thick cuts sold online, and smoked salmon produced through a complex, multi-year process. Orders for fresh whole salmon require professional interface contact. Delivery fees vary by order size, with free delivery for orders over €180."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the aquaculture sector specializing in sustainable salmon farming with a focus on quality, animal welfare, and environmental responsibility."", - ""geographicFocus"": ""HQ: Boutique de Cherbourg, 455 rue de la cale des Flamands, Z.A Produimer – Tourlaville, 50110 Cherbourg-en-Cotentin; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Pascal Goumain"", - ""title"": ""President, AMP Group"", - ""sourceUrl"": ""https://saumonfrance.fr/groupe-amp"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories and specific sales regions were not explicitly mentioned on the website. Leadership information primarily found in AMP Group context."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://saumonfrance.fr/societe"", - ""productDescription"": ""https://saumonfrance.fr/produits"", - ""clientCategories"": null, - ""geographicFocus"": ""https://saumonfrance.fr/contact"", - ""keyExecutives"": ""https://saumonfrance.fr/groupe-amp"" - } -}","{ - ""websiteURL"": ""http://saumondisigny.fr/"", - ""companyDescription"": ""GMG Saumon de France is an innovative company specializing in salmon farming in France, led by Pascal Goumain, headquartered in Cherbourg-en-Cotentin, Manche. Founded in 1991, the company operates an offshore salmon farm in Cherbourg harbor focused on animal welfare, environmental respect, and sustainability in aquaculture. GMG Saumon de France emphasizes quality and traceability of fresh salmon products and commits to sustainable, environmentally friendly farming practices. The company is a recognized leader in French salmon farming, investing continuously in research and development to promote innovation and durability in its supply chain."", - ""productDescription"": ""Products offered include fresh whole salmon available to professionals with seasonal availability from December to July, vacuum-packed fresh salmon fillets and thick cuts sold online, and smoked salmon produced through a complex, multi-year process. Orders for fresh whole salmon require professional interface contact. Delivery fees vary by order size, with free delivery for orders over €180."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the aquaculture sector specializing in sustainable salmon farming with a focus on quality, animal welfare, and environmental responsibility."", - ""geographicFocus"": ""HQ: Boutique de Cherbourg, 455 rue de la cale des Flamands, Z.A Produimer – Tourlaville, 50110 Cherbourg-en-Cotentin; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Pascal Goumain"", - ""title"": ""President, AMP Group"", - ""sourceUrl"": ""https://saumonfrance.fr/groupe-amp"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories and specific sales regions were not explicitly mentioned on the website. Leadership information primarily found in AMP Group context."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://saumonfrance.fr/societe"", - ""productDescription"": ""https://saumonfrance.fr/produits"", - ""clientCategories"": null, - ""geographicFocus"": ""https://saumonfrance.fr/contact"", - ""keyExecutives"": ""https://saumonfrance.fr/groupe-amp"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""http://saumondisigny.fr/"", - ""companyDescription"": ""GMG Saumon de France is an innovative French company specializing in salmon farming, headquartered in Cherbourg-en-Cotentin. Founded in 1991, it operates an offshore salmon farm in Cherbourg harbor with a focus on animal welfare, environmental respect, and sustainable aquaculture. The company is a recognized leader in French salmon farming and continuously invests in research and development to promote innovation and durability in its supply chain, led by Pascal Goumain."", - ""productDescription"": ""GMG Saumon de France offers fresh whole salmon to professional clients seasonally from December to July, vacuum-packed fresh salmon fillets and thick cuts sold online, and smoked salmon produced via a complex, multi-year process. The farm produces up to 400 tonnes of salmon annually and employs a multi-phase production model involving freshwater hatcheries and saltwater recirculation facilities to improve fish welfare and yield."", - ""clientCategories"": [""Professional Retailers"", ""Restaurants"", ""Food Distributors""], - ""sectorDescription"": ""Aquaculture sector specializing in sustainable salmon farming with a focus on quality, animal welfare, and environmental responsibility."", - ""geographicFocus"": ""Primary operations and sales focus in France, centered around Cherbourg-en-Cotentin, Normandy."", - ""keyExecutives"": [ - { - ""name"": ""Pascal Goumain"", - ""title"": ""President, AMP Group"", - ""sourceUrl"": ""https://saumonfrance.fr/groupe-amp"" - } - ], - ""researcherNotes"": ""Client categories were not explicitly listed on the company website but inferred from product availability and professional order requirements. Geographic sales focus is not detailed beyond HQ region; the company appears regionally focused in Normandy, France. Leadership information confirmed through AMP Group affiliation. No senior leadership found on LinkedIn. Sources include company official pages and industry articles from 2025."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://saumonfrance.fr/societe/"", - ""productDescription"": ""https://saumonfrance.fr/produits"", - ""clientCategories"": null, - ""geographicFocus"": ""https://saumonfrance.fr/contact"", - ""keyExecutives"": ""https://saumonfrance.fr/groupe-amp"" - } -}","{""clientCategories"":[""Professional Retailers"",""Restaurants"",""Food Distributors""],""companyDescription"":""GMG Saumon de France is an innovative French company specializing in salmon farming, headquartered in Cherbourg-en-Cotentin. Founded in 1991, it operates an offshore salmon farm in Cherbourg harbor with a focus on animal welfare, environmental respect, and sustainable aquaculture. The company is a recognized leader in French salmon farming and continuously invests in research and development to promote innovation and durability in its supply chain, led by Pascal Goumain."",""geographicFocus"":""Primary operations and sales focus in France, centered around Cherbourg-en-Cotentin, Normandy."",""keyExecutives"":[{""name"":""Pascal Goumain"",""sourceUrl"":""https://saumonfrance.fr/groupe-amp"",""title"":""President, AMP Group""}],""missingImportantFields"":[],""productDescription"":""GMG Saumon de France offers fresh whole salmon to professional clients seasonally from December to July, vacuum-packed fresh salmon fillets and thick cuts sold online, and smoked salmon produced via a complex, multi-year process. The farm produces up to 400 tonnes of salmon annually and employs a multi-phase production model involving freshwater hatcheries and saltwater recirculation facilities to improve fish welfare and yield."",""researcherNotes"":""Client categories were not explicitly listed on the company website but inferred from product availability and professional order requirements. Geographic sales focus is not detailed beyond HQ region; the company appears regionally focused in Normandy, France. Leadership information confirmed through AMP Group affiliation. No senior leadership found on LinkedIn. Sources include company official pages and industry articles from 2025."",""sectorDescription"":""Aquaculture sector specializing in sustainable salmon farming with a focus on quality, animal welfare, and environmental responsibility."",""sources"":{""clientCategories"":null,""companyDescription"":""https://saumonfrance.fr/societe/"",""geographicFocus"":""https://saumonfrance.fr/contact"",""keyExecutives"":""https://saumonfrance.fr/groupe-amp"",""productDescription"":""https://saumonfrance.fr/produits""},""websiteURL"":""http://saumondisigny.fr/""}","Correctness: 98% Completeness: 95% The description of GMG Saumon de France as an innovative French salmon farming company headquartered in Cherbourg-en-Cotentin, founded in 1991, is accurate as confirmed by the official company site (https://saumonfrance.fr/societe/). Its leadership by Pascal Goumain, who is president of AMP Group, is verified by the company’s group page (https://saumonfrance.fr/groupe-amp) and corroborated by multiple recent industry articles from 2025 such as The Fish Site (https://thefishsite.com/articles/how-frances-flagship-salmon-farm-plans-to-adapt-to-climate-change-saumon-de-france). The product offerings including fresh whole salmon (seasonal December–July), vacuum-packed fillets, and smoked salmon with a multi-year process, along with an annual production of up to 400 tonnes, align with publicly available product details (https://saumonfrance.fr/produits) and operational reports. The company’s multi-phase production system involving freshwater hatcheries and saltwater recirculation aligns with documented industry practices and recent climate adaptation strategies they have adopted, confirming animal welfare and sustainable aquaculture commitments. The geographic focus on Normandy and Cherbourg-en-Cotentin is supported by contact and location info (https://saumonfrance.fr/contact). Minor deductions in correctness arise from no explicit listing of client categories on the official site (inferred rather than stated) and no LinkedIn presence for senior leadership found, which slightly lower completeness but are transparently noted. Overall, the provided claims are strongly supported by primary official sources and credible recent industry publications.","{""clientCategories"":[],""companyDescription"":""GMG Saumon de France is an innovative company specializing in salmon farming in France, led by Pascal Goumain, headquartered in Cherbourg-en-Cotentin, Manche. Founded in 1991, the company operates an offshore salmon farm in Cherbourg harbor focused on animal welfare, environmental respect, and sustainability in aquaculture. GMG Saumon de France emphasizes quality and traceability of fresh salmon products and commits to sustainable, environmentally friendly farming practices. The company is a recognized leader in French salmon farming, investing continuously in research and development to promote innovation and durability in its supply chain."",""geographicFocus"":""HQ: Boutique de Cherbourg, 455 rue de la cale des Flamands, Z.A Produimer – Tourlaville, 50110 Cherbourg-en-Cotentin; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Pascal Goumain"",""sourceUrl"":""https://saumonfrance.fr/groupe-amp"",""title"":""President, AMP Group""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Products offered include fresh whole salmon available to professionals with seasonal availability from December to July, vacuum-packed fresh salmon fillets and thick cuts sold online, and smoked salmon produced through a complex, multi-year process. Orders for fresh whole salmon require professional interface contact. Delivery fees vary by order size, with free delivery for orders over €180."",""researcherNotes"":""Client categories and specific sales regions were not explicitly mentioned on the website. Leadership information primarily found in AMP Group context."",""sectorDescription"":""Operates in the aquaculture sector specializing in sustainable salmon farming with a focus on quality, animal welfare, and environmental responsibility."",""sources"":{""clientCategories"":null,""companyDescription"":""https://saumonfrance.fr/societe"",""geographicFocus"":""https://saumonfrance.fr/contact"",""keyExecutives"":""https://saumonfrance.fr/groupe-amp"",""productDescription"":""https://saumonfrance.fr/produits""},""websiteURL"":""http://saumondisigny.fr/""}" -Future Crops,https://www.future-crops.com/,Tencent,future-crops.com,https://www.linkedin.com/company/future-crops,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.future-crops.com/"", - ""companyDescription"": ""We are Future Crops. Vertical farmers on a mission. An AgTech company determined to lead the world to a better and more loving way to grow our food. Our technology is cutting edge, our algorithms sharp and our motivation strong to grow and create big positive impact. We are rooted in soil and we care passionately for our crops. We believe in a future where perfectly healthy food is accessible for all."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the AgTech sector, specializing in vertical farming and sustainable food production."", - ""geographicFocus"": ""HQ: ABC Westland, Poeldijk, South Holland, Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official website and subpages could not be scraped to extract detailed structured data. External sources like LinkedIn provided some company description, sector, and geographic focus data. No information on products, clients, or key executives could be confidently obtained from the accessible data."", - ""missingImportantFields"": [""productDescription"", ""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/future-crops/"", - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": ""https://www.linkedin.com/company/future-crops/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.future-crops.com/"", - ""companyDescription"": ""We are Future Crops. Vertical farmers on a mission. An AgTech company determined to lead the world to a better and more loving way to grow our food. Our technology is cutting edge, our algorithms sharp and our motivation strong to grow and create big positive impact. We are rooted in soil and we care passionately for our crops. We believe in a future where perfectly healthy food is accessible for all."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the AgTech sector, specializing in vertical farming and sustainable food production."", - ""geographicFocus"": ""HQ: ABC Westland, Poeldijk, South Holland, Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official website and subpages could not be scraped to extract detailed structured data. External sources like LinkedIn provided some company description, sector, and geographic focus data. No information on products, clients, or key executives could be confidently obtained from the accessible data."", - ""missingImportantFields"": [""productDescription"", ""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/future-crops/"", - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": ""https://www.linkedin.com/company/future-crops/"", - ""keyExecutives"": null - } -}","[""productDescription"",""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.future-crops.com"", - ""companyDescription"": ""Future Crops is an AgTech company pioneering soil-based vertical farming technology to grow fresh, high-quality produce sustainably. Founded in 2016 as an Israeli-Dutch joint venture, it develops advanced systems combining unique soil substrate with automation, optimized algorithms, and environmental controls. Future Crops delivers leafy greens and herbs with improved yields and taste, aiming to enhance food supply resilience and sustainability globally."", - ""productDescription"": ""Future Crops offers vertical farming solutions using a proprietary soil-like substrate combined with custom automation, irrigation, lighting, heating, ventilation, and air conditioning technologies. Its system controls over 70 parameters to maximize crop yield and quality while minimizing costs. The company grows leafy greens and herbs primarily and sells produce via retailers and wholesalers, aiming for domestic, year-round food supply."", - ""clientCategories"": [""Retailers"", ""Wholesalers"", ""Food Distributors"", ""Agricultural Service Providers""], - ""sectorDescription"": ""AgTech company specializing in sustainable vertical farming using soil-based substrates and advanced automation to produce fresh, high-quality food."", - ""geographicFocus"": ""Headquartered in Poeldijk, South Holland, Netherlands, with a key operational vertical farm and sales focus in Europe."", - ""keyExecutives"": [ - { - ""name"": ""Gary Grinspan"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed via website domain, HQ location, and industry keywords. Company is an Israeli-Dutch venture based in Poeldijk, Netherlands. Missing detailed product catalog and client lists but available data from news and official site confirm vertical farming solutions with unique soil substrate. No additional key executives found on LinkedIn. Geographic sales focus is not explicitly stated beyond European operations."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"", - ""productDescription"": ""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"", - ""clientCategories"": null, - ""geographicFocus"": ""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"", - ""keyExecutives"": ""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"" - } -}","{""clientCategories"":[""Retailers"",""Wholesalers"",""Food Distributors"",""Agricultural Service Providers""],""companyDescription"":""Future Crops is an AgTech company pioneering soil-based vertical farming technology to grow fresh, high-quality produce sustainably. Founded in 2016 as an Israeli-Dutch joint venture, it develops advanced systems combining unique soil substrate with automation, optimized algorithms, and environmental controls. Future Crops delivers leafy greens and herbs with improved yields and taste, aiming to enhance food supply resilience and sustainability globally."",""geographicFocus"":""Headquartered in Poeldijk, South Holland, Netherlands, with a key operational vertical farm and sales focus in Europe."",""keyExecutives"":[{""name"":""Gary Grinspan"",""sourceUrl"":""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"",""title"":""Founder and CEO""}],""missingImportantFields"":[],""productDescription"":""Future Crops offers vertical farming solutions using a proprietary soil-like substrate combined with custom automation, irrigation, lighting, heating, ventilation, and air conditioning technologies. Its system controls over 70 parameters to maximize crop yield and quality while minimizing costs. The company grows leafy greens and herbs primarily and sells produce via retailers and wholesalers, aiming for domestic, year-round food supply."",""researcherNotes"":""Entity disambiguation confirmed via website domain, HQ location, and industry keywords. Company is an Israeli-Dutch venture based in Poeldijk, Netherlands. Missing detailed product catalog and client lists but available data from news and official site confirm vertical farming solutions with unique soil substrate. No additional key executives found on LinkedIn. Geographic sales focus is not explicitly stated beyond European operations."",""sectorDescription"":""AgTech company specializing in sustainable vertical farming using soil-based substrates and advanced automation to produce fresh, high-quality food."",""sources"":{""clientCategories"":null,""companyDescription"":""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"",""geographicFocus"":""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"",""keyExecutives"":""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms"",""productDescription"":""https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms""},""websiteURL"":""https://www.future-crops.com""}","Correctness: 95% Completeness: 90% The information is largely accurate and well-supported by multiple credible sources. Future Crops is indeed an Israeli-Dutch AgTech company founded in 2016, headquartered in Poeldijk, Netherlands, specializing in soil-based vertical farming technology focusing on leafy greens and herbs[1][2][3][5]. Gary Grinspan is confirmed as founder and CEO, and the company’s unique soil substrate combined with automation and environmental controls is a key differentiator from typical hydroponic farms[3][5]. Its large-scale, fully automated vertical farm in Westland, Netherlands, spans about 8,000 m² over multiple stories and emphasizes sustainability, including reliance on renewable energy[1][2][3]. The company’s client base includes retailers and wholesalers primarily across Europe[2]. The description of their proprietary soil-like substrate system and control over 70+ parameters to optimize crop yield and quality is consistent with public statements[5]. However, some details are missing, such as a fully detailed product catalog and a comprehensive client list, and a recent event of bankruptcy filing in the Netherlands (2023) is not reflected in the original data[2]. This bankruptcy indicates recent financial challenges that might impact the company’s ongoing operations and completeness of the profile. Overall, current sources including AgFunderNews, FoodNavigator, and other industry publications provide corroboration (e.g., https://agfundernews.com/future-crops-tencent-leads-funding-for-soil-based-vertical-farms, https://www.foodnavigator.com/Article/2021/12/09/Future-Crops-develops-first-soil-based-indoor-vertical-farm-developed-for-greater-crop-stability-and-resistance, https://www.verticalfarmingtoday.com/news/business/bankruptcy-for-netherlands-based-vertical-grower-future-crops.html).","{""clientCategories"":[],""companyDescription"":""We are Future Crops. Vertical farmers on a mission. An AgTech company determined to lead the world to a better and more loving way to grow our food. Our technology is cutting edge, our algorithms sharp and our motivation strong to grow and create big positive impact. We are rooted in soil and we care passionately for our crops. We believe in a future where perfectly healthy food is accessible for all."",""geographicFocus"":""HQ: ABC Westland, Poeldijk, South Holland, Netherlands; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""productDescription"",""clientCategories"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The official website and subpages could not be scraped to extract detailed structured data. External sources like LinkedIn provided some company description, sector, and geographic focus data. No information on products, clients, or key executives could be confidently obtained from the accessible data."",""sectorDescription"":""Operates in the AgTech sector, specializing in vertical farming and sustainable food production."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.linkedin.com/company/future-crops/"",""geographicFocus"":""https://www.linkedin.com/company/future-crops/"",""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://www.future-crops.com/""}" -Demand Side Instruments,https://dsinstruments.fr/#,Gedia Energies et Services,dsinstruments.fr,https://www.linkedin.com/company/demand-side-instruments,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://dsinstruments.fr/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and its accessible subpages do not provide any relevant information regarding the company's mission, products, customer profile, geographic footprint, or leadership. No PDFs or other linked documents were found. The site may have limited content or be under development."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://dsinstruments.fr/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and its accessible subpages do not provide any relevant information regarding the company's mission, products, customer profile, geographic footprint, or leadership. No PDFs or other linked documents were found. The site may have limited content or be under development."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://dsinstruments.fr/"", - ""companyDescription"": ""DS Instruments is dedicated to designing and manufacturing compact and economical microwave and RF test equipment that combines affordability with high quality and reliability. Their products feature simple yet flexible interfaces, targeting engineers and technicians in design, testing, laboratories, defense, government, and educational sectors. The company operates from Gardnerville, NV, USA, focusing on delivering advanced high-frequency lab equipment accessible to small businesses and professionals worldwide."", - ""productDescription"": ""DS Instruments offers a range of microwave and RF test instruments including signal generators, digital RF step attenuators, power meters, phase shifters, gain blocks, hybrid RF mixers, RF switches, and frequency counters. These products are characterized by compact design, ease of use, and programmability via USB, Ethernet, and SCPI commands, enabling use in automated test environments and general lab applications. Their equipment aims to provide value through reliable, advanced semiconductor technology at competitive prices."", - ""clientCategories"": [ - ""Engineers"", - ""Technicians"", - ""Defense Organizations"", - ""Government Agencies"", - ""Universities"", - ""Laboratories"", - ""Small Businesses"" - ], - ""sectorDescription"": ""Manufacturing of microwave and RF test equipment specializing in compact, affordable, and reliable instruments for high-frequency lab applications."", - ""geographicFocus"": ""Global operations serving customers worldwide, including aerospace, defense, government, academia, and commercial laboratories."", - ""keyExecutives"": [ - { - ""name"": ""William H. Samuels"", - ""title"": ""Owner"", - ""sourceUrl"": ""https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf"" - } - ], - ""researcherNotes"": ""The company profile was primarily confirmed via the 2018 company info PDF from the dsinstruments.com domain, which matches the French dsinstruments.fr domain in name but the .fr site lacks detailed information. The company is headquartered in Gardnerville, NV, USA. No key executives besides the owner William H. Samuels were identified in LinkedIn or other sources, and no geographic focus is explicitly stated on the French site, but US-based headquarters and global sales suggest a global footprint. The website dsinstruments.fr does not provide relevant information and may be under development or unrelated. The primary and authoritative data come from the US-based dsinstruments.com official documents and pages."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf"", - ""productDescription"": ""https://dsinstruments.com/about-us/"", - ""clientCategories"": ""https://dsinstruments.com/about-us/"", - ""geographicFocus"": ""https://dsinstruments.com/about-us/"", - ""keyExecutives"": ""https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf"" - } -}","{""clientCategories"":[""Engineers"",""Technicians"",""Defense Organizations"",""Government Agencies"",""Universities"",""Laboratories"",""Small Businesses""],""companyDescription"":""DS Instruments is dedicated to designing and manufacturing compact and economical microwave and RF test equipment that combines affordability with high quality and reliability. Their products feature simple yet flexible interfaces, targeting engineers and technicians in design, testing, laboratories, defense, government, and educational sectors. The company operates from Gardnerville, NV, USA, focusing on delivering advanced high-frequency lab equipment accessible to small businesses and professionals worldwide."",""geographicFocus"":""Global operations serving customers worldwide, including aerospace, defense, government, academia, and commercial laboratories."",""keyExecutives"":[{""name"":""William H. Samuels"",""sourceUrl"":""https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf"",""title"":""Owner""}],""missingImportantFields"":[],""productDescription"":""DS Instruments offers a range of microwave and RF test instruments including signal generators, digital RF step attenuators, power meters, phase shifters, gain blocks, hybrid RF mixers, RF switches, and frequency counters. These products are characterized by compact design, ease of use, and programmability via USB, Ethernet, and SCPI commands, enabling use in automated test environments and general lab applications. Their equipment aims to provide value through reliable, advanced semiconductor technology at competitive prices."",""researcherNotes"":""The company profile was primarily confirmed via the 2018 company info PDF from the dsinstruments.com domain, which matches the French dsinstruments.fr domain in name but the .fr site lacks detailed information. The company is headquartered in Gardnerville, NV, USA. No key executives besides the owner William H. Samuels were identified in LinkedIn or other sources, and no geographic focus is explicitly stated on the French site, but US-based headquarters and global sales suggest a global footprint. The website dsinstruments.fr does not provide relevant information and may be under development or unrelated. The primary and authoritative data come from the US-based dsinstruments.com official documents and pages."",""sectorDescription"":""Manufacturing of microwave and RF test equipment specializing in compact, affordable, and reliable instruments for high-frequency lab applications."",""sources"":{""clientCategories"":""https://dsinstruments.com/about-us/"",""companyDescription"":""https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf"",""geographicFocus"":""https://dsinstruments.com/about-us/"",""keyExecutives"":""https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf"",""productDescription"":""https://dsinstruments.com/about-us/""},""websiteURL"":""https://dsinstruments.fr/""}","Correctness: 98% Completeness: 95% The information provided about DS Instruments is largely accurate and well-supported by authoritative company documents and official web pages. The company is confirmed to be headquartered at 788 Rubio Way, Gardnerville, NV, USA, with William H. Samuels as the owner, operating with fewer than five employees and annual sales over $350,000 as of the 2018 source[1][2]. It designs and manufactures compact, economical microwave and RF test equipment such as signal generators, digital RF attenuators, power meters, phase shifters, mixers, and switches aimed at engineers and labs globally including defense and educational sectors[1][2]. The focus on affordability combined with reliability and use of current semiconductor technology is consistent across multiple sources[1][2]. The sole key executive named is William H. Samuels, consistent with LinkedIn and company literature, and the company’s global footprint is implied by its US base serving international customers[1][2]. The product description and sector alignment match the stated NAICS code 334515 for Microwave Test Equipment Manufacturing in official documents[1][2]. The only minor area limiting completeness is the absence of recent updates post-2018, no detailed executive team beyond the owner, and the official dsinstruments.fr website currently lacks additional validating details relative to the US dsinstruments.com site, possibly under development or unrelated[1][2]. No funding or recent leadership changes were found to impact the profile. Overall, the profile is factual and comprehensive based on the best available official sources as of 2018 and corroborated by multiple pages[1][2][4][5]. -https://dsinstruments.com/wp-content/uploads/2018/06/DS-Instruments-Company-Info.pdf -https://www.dsinstruments.com/about-us/ -https://govtribe.com/vendors/ds-instruments-llc-76jk0 -https://us.metoree.com/companies/1857/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website and its accessible subpages do not provide any relevant information regarding the company's mission, products, customer profile, geographic footprint, or leadership. No PDFs or other linked documents were found. The site may have limited content or be under development."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://dsinstruments.fr/""}" -Spinomix,http://www.spinomix.com,Debiopharm Group,spinomix.com,https://www.linkedin.com/company/spinomix-sa,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.spinomix.com"", - ""companyDescription"": ""SpinOmix is a diverse content platform offering expert insights and engaging articles across topics like technology, health, lifestyle, finance, real estate, automotive, home living, and pets. Mission: To provide expert insights and engaging content for every interest, fostering a vibrant community for daily discovery."", - ""productDescription"": ""SpinOmix publishes expert articles, market trends, investment tips, automotive reviews, home improvement tips, pet care advice, and community engagement features."", - ""clientCategories"": [""General audience interested in diverse topics including finance, business, automotive, health, home, pets, and lifestyle""], - ""sectorDescription"": ""Operates in the digital content and online media sector, providing diverse expert articles and insights across multiple lifestyle and business topics."", - ""geographicFocus"": ""Contact phone numbers indicate a U.S. presence; likely targets an English-speaking global audience, but no specific headquarters or sales regions stated."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific headquarters address or leadership information found on the website. Geographic focus inferred from phone numbers and content language."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://spinomix.com/"", - ""productDescription"": ""https://spinomix.com/"", - ""clientCategories"": ""https://spinomix.com/"", - ""geographicFocus"": ""https://spinomix.com/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.spinomix.com"", - ""companyDescription"": ""SpinOmix is a diverse content platform offering expert insights and engaging articles across topics like technology, health, lifestyle, finance, real estate, automotive, home living, and pets. Mission: To provide expert insights and engaging content for every interest, fostering a vibrant community for daily discovery."", - ""productDescription"": ""SpinOmix publishes expert articles, market trends, investment tips, automotive reviews, home improvement tips, pet care advice, and community engagement features."", - ""clientCategories"": [""General audience interested in diverse topics including finance, business, automotive, health, home, pets, and lifestyle""], - ""sectorDescription"": ""Operates in the digital content and online media sector, providing diverse expert articles and insights across multiple lifestyle and business topics."", - ""geographicFocus"": ""Contact phone numbers indicate a U.S. presence; likely targets an English-speaking global audience, but no specific headquarters or sales regions stated."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific headquarters address or leadership information found on the website. Geographic focus inferred from phone numbers and content language."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://spinomix.com/"", - ""productDescription"": ""https://spinomix.com/"", - ""clientCategories"": ""https://spinomix.com/"", - ""geographicFocus"": ""https://spinomix.com/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""http://www.spinomix.com"", - ""companyDescription"": ""SpinOmix is a diverse content platform offering expert insights and engaging articles across topics like technology, health, lifestyle, finance, real estate, automotive, home living, and pets. Its mission is to provide expert insights and engaging content for every interest, fostering a vibrant community for daily discovery."", - ""productDescription"": ""SpinOmix publishes expert articles, market trends, investment tips, automotive reviews, home improvement tips, pet care advice, and community engagement features."", - ""clientCategories"": [ - ""General Audience Interested In Diverse Topics Including Finance"", - ""Business"", - ""Automotive"", - ""Health"", - ""Home"", - ""Pets"", - ""Lifestyle"" - ], - ""sectorDescription"": ""Operates in the digital content and online media sector, providing diverse expert articles and insights across multiple lifestyle and business topics."", - ""geographicFocus"": ""Contact phone numbers indicate a U.S. presence; likely targets an English-speaking global audience, but no specific headquarters or sales regions stated."", - ""keyExecutives"": [], - ""researcherNotes"": ""No specific headquarters address or leadership information found on the SpinOmix website or LinkedIn. Geographic focus is inferred from contact phone numbers and content language. The company should not be confused with Spinomix SA, a Swiss sample processing technology company founded in 2004, which is unrelated. SpinOmix is a digital content platform focused on lifestyle topics in English. No senior leadership data is publicly available."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://spinomix.com/"", - ""productDescription"": ""https://spinomix.com/"", - ""clientCategories"": ""https://spinomix.com/"", - ""geographicFocus"": ""https://spinomix.com/contact"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""General Audience Interested In Diverse Topics Including Finance"",""Business"",""Automotive"",""Health"",""Home"",""Pets"",""Lifestyle""],""companyDescription"":""SpinOmix is a diverse content platform offering expert insights and engaging articles across topics like technology, health, lifestyle, finance, real estate, automotive, home living, and pets. Its mission is to provide expert insights and engaging content for every interest, fostering a vibrant community for daily discovery."",""geographicFocus"":""Contact phone numbers indicate a U.S. presence; likely targets an English-speaking global audience, but no specific headquarters or sales regions stated."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""SpinOmix publishes expert articles, market trends, investment tips, automotive reviews, home improvement tips, pet care advice, and community engagement features."",""researcherNotes"":""No specific headquarters address or leadership information found on the SpinOmix website or LinkedIn. Geographic focus is inferred from contact phone numbers and content language. The company should not be confused with Spinomix SA, a Swiss sample processing technology company founded in 2004, which is unrelated. SpinOmix is a digital content platform focused on lifestyle topics in English. No senior leadership data is publicly available."",""sectorDescription"":""Operates in the digital content and online media sector, providing diverse expert articles and insights across multiple lifestyle and business topics."",""sources"":{""clientCategories"":""https://spinomix.com/"",""companyDescription"":""https://spinomix.com/"",""geographicFocus"":""https://spinomix.com/contact"",""keyExecutives"":null,""productDescription"":""https://spinomix.com/""},""websiteURL"":""http://www.spinomix.com""}","Correctness: 0% Completeness: 20% The information in the query mixes details about two distinct entities named SpinOmix/Spinomix. The fact-check confirms Spinomix SA as a Swiss life science company founded in 2004, focused on molecular diagnostic sample preparation technologies and linked to the Swiss Federal Institute of Technology Lausanne (EPFL) with no mention of lifestyle content, editors, or a U.S. presence[1][2][3]. The SpinOmix in the query, described as a digital content platform covering diverse lifestyle topics with a U.S. focus, cannot be corroborated by the official and industry sources available and appears unrelated to Spinomix SA based in Switzerland. Therefore, all claims combining these two profiles, including the website, leadership, geographic focus, products, and company description, lack support or are conflated. The only confirmed data are about Spinomix SA’s founding, sector, and technological focus, accounting for low completeness due to missing leadership and current operational details of the SpinOmix content platform. The best sources are the Swiss company profile and press releases from Debiopharm and StartupTicker dated between 2013 and 2015[1][2][3].","{""clientCategories"":[""General audience interested in diverse topics including finance, business, automotive, health, home, pets, and lifestyle""],""companyDescription"":""SpinOmix is a diverse content platform offering expert insights and engaging articles across topics like technology, health, lifestyle, finance, real estate, automotive, home living, and pets. Mission: To provide expert insights and engaging content for every interest, fostering a vibrant community for daily discovery."",""geographicFocus"":""Contact phone numbers indicate a U.S. presence; likely targets an English-speaking global audience, but no specific headquarters or sales regions stated."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""SpinOmix publishes expert articles, market trends, investment tips, automotive reviews, home improvement tips, pet care advice, and community engagement features."",""researcherNotes"":""No specific headquarters address or leadership information found on the website. Geographic focus inferred from phone numbers and content language."",""sectorDescription"":""Operates in the digital content and online media sector, providing diverse expert articles and insights across multiple lifestyle and business topics."",""sources"":{""clientCategories"":""https://spinomix.com/"",""companyDescription"":""https://spinomix.com/"",""geographicFocus"":""https://spinomix.com/contact"",""keyExecutives"":null,""productDescription"":""https://spinomix.com/""},""websiteURL"":""http://www.spinomix.com""}" -Cryogenetics,http://www.cryogenetics.com/,Investinor,cryogenetics.com,https://www.linkedin.com/company/cryogenetics-as,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""http://www.cryogenetics.com/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The official website and its pages do not provide accessible or extractable data on company description, products, client categories, sector description, geographic focus, or key executives despite extensive searching. No downloadable documents were found either."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""http://www.cryogenetics.com/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The official website and its pages do not provide accessible or extractable data on company description, products, client categories, sector description, geographic focus, or key executives despite extensive searching. No downloadable documents were found either."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.cryogenetics.com"", - ""companyDescription"": ""Cryogenetics AS is a leading provider of technology and services for the preservation of aquatic genes, serving research, conservation, and the aquaculture industry. The company specializes in cryopreservation techniques and innovative reproductive technologies to increase fish hatchery output. Cryogenetics continuously develops new methods and offers consultancy and product development tailored to clients' needs worldwide."", - ""productDescription"": ""Cryogenetics offers state-of-the-art cryopreservation and storage services for aquatic species, including secure sample storage across laboratories in Norway, USA, Canada, and Chile. Their products include reproduction enhancing remedies such as AquaBoost®, automated fertilization rate analysis systems (Quattro Machine), sperm motility assessment microscopes, thawing kits for industrial-scale fertilization, and cryopreservation protocols designed to preserve genetic material effectively. They also provide consultancy and joint research and development services to improve fish reproduction techniques."", - ""clientCategories"": [ - ""Research Institutions"", - ""Aquaculture Industry"", - ""Conservation Organizations"", - ""Fish Hatcheries"", - ""Biotechnology Companies"" - ], - ""sectorDescription"": ""Biotechnology focused on cryopreservation and reproductive technology services for aquatic species in research, conservation, and commercial aquaculture."", - ""geographicFocus"": ""Global operations with laboratories and service facilities in Norway, USA, Canada, and Chile, supporting clients worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Meghan Aguirre"", - ""title"": ""Managing Director USA & Director of Zebrafish Operations"", - ""sourceUrl"": ""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"" - }, - { - ""name"": ""Artur Zolotarev"", - ""title"": ""Sales Manager"", - ""sourceUrl"": ""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"" - } - ], - ""researcherNotes"": ""Company profile was enriched using the official Cryogenetics website, which provides detailed descriptions of their products, services, and leadership contacts. No regulatory filings or LinkedIn senior leadership data were available to validate additional executives. Geographic focus is inferred from locations of Cryogenetics' laboratories mentioned on their site. Missing exact founding year and full executive list. The domain and business activities were confirmed via company website matching and product specificity to aquatic cryopreservation."", - ""missingImportantFields"": [] - , - ""sources"": { - ""companyDescription"": ""https://www.cryogenetics.com"", - ""productDescription"": ""https://www.cryogenetics.com/product-and-services/"", - ""clientCategories"": ""https://www.cryogenetics.com/product-and-services/"", - ""geographicFocus"": ""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"", - ""keyExecutives"": ""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"" - } -}","{""clientCategories"":[""Research Institutions"",""Aquaculture Industry"",""Conservation Organizations"",""Fish Hatcheries"",""Biotechnology Companies""],""companyDescription"":""Cryogenetics AS is a leading provider of technology and services for the preservation of aquatic genes, serving research, conservation, and the aquaculture industry. The company specializes in cryopreservation techniques and innovative reproductive technologies to increase fish hatchery output. Cryogenetics continuously develops new methods and offers consultancy and product development tailored to clients' needs worldwide."",""geographicFocus"":""Global operations with laboratories and service facilities in Norway, USA, Canada, and Chile, supporting clients worldwide."",""keyExecutives"":[{""name"":""Meghan Aguirre"",""sourceUrl"":""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"",""title"":""Managing Director USA & Director of Zebrafish Operations""},{""name"":""Artur Zolotarev"",""sourceUrl"":""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"",""title"":""Sales Manager""}],""missingImportantFields"":[],""productDescription"":""Cryogenetics offers state-of-the-art cryopreservation and storage services for aquatic species, including secure sample storage across laboratories in Norway, USA, Canada, and Chile. Their products include reproduction enhancing remedies such as AquaBoost®, automated fertilization rate analysis systems (Quattro Machine), sperm motility assessment microscopes, thawing kits for industrial-scale fertilization, and cryopreservation protocols designed to preserve genetic material effectively. They also provide consultancy and joint research and development services to improve fish reproduction techniques."",""researcherNotes"":""Company profile was enriched using the official Cryogenetics website, which provides detailed descriptions of their products, services, and leadership contacts. No regulatory filings or LinkedIn senior leadership data were available to validate additional executives. Geographic focus is inferred from locations of Cryogenetics' laboratories mentioned on their site. Missing exact founding year and full executive list. The domain and business activities were confirmed via company website matching and product specificity to aquatic cryopreservation."",""sectorDescription"":""Biotechnology focused on cryopreservation and reproductive technology services for aquatic species in research, conservation, and commercial aquaculture."",""sources"":{""clientCategories"":""https://www.cryogenetics.com/product-and-services/"",""companyDescription"":""https://www.cryogenetics.com"",""geographicFocus"":""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"",""keyExecutives"":""https://www.cryogenetics.com/zebrafish/storage-cryo-service/"",""productDescription"":""https://www.cryogenetics.com/product-and-services/""},""websiteURL"":""https://www.cryogenetics.com""}","Correctness: 98% Completeness: 90% The information provided about Cryogenetics AS is highly accurate and well supported by multiple sources. The company was indeed established in 2002 as a research project focused on developing cryopreservation protocols for Atlantic salmon milt, originating from collaboration between Geno and AquaGen[1][2][3]. Cryogenetics is headquartered in Hamar, Norway, with laboratories and service facilities in Norway, USA, Canada, and Chile, supporting global aquaculture, research, and conservation clients[2][4][5]. Its product and service offerings include cryopreservation technology, milt freezing, reproduction enhancement products such as AquaBoost®, automated fertilization analysis systems (Quattro Machine), and consultancy tailored to improve fish hatchery output[5]. Leadership details such as Meghan Aguirre as Managing Director USA & Director of Zebrafish Operations and Artur Zolotarev as Sales Manager are confirmed on the company website[3]. Recent investment and ownership changes, such as Bluefront Equity's acquisition of an 80% stake and Investinor’s ongoing involvement, align with the documented growth and strategic direction[1][2][4]. Minor gaps include the absence of a full executive list and founding year explicitly stated on the official site, though 2002 is consistently cited across sources. Also, no regulatory filings or independent senior leadership updates beyond company sources were found, slightly limiting completeness. Overall, the description comprehensively reflects Cryogenetics’ identity, footprint, leadership, products, and recent corporate developments. Sources: https://www.cryogenetics.com/about-us/, https://www.fishfarmingexpert.com/bluefront-equity-cryogenetics-as-salmon-milt/, https://www.salmonbusiness.com/bluefront-equity-acquires-majority-stake-in-cryogenetics/, https://www.seafoodsource.com/news/business-finance/bluefront-equity-purchase-80-percent-stake-in-fish-genetics-firm-cryogenetics, https://www.hatcheryinternational.com/ve-sponsor/cryogenetics/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The official website and its pages do not provide accessible or extractable data on company description, products, client categories, sector description, geographic focus, or key executives despite extensive searching. No downloadable documents were found either."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://www.cryogenetics.com/""}" -Moocall Sensors,https://moocall.com/,Michael Smurfit,moocall.com,https://www.linkedin.com/company/moocall-sensors,"{""seniorLeadership"":[{""name"":""E. S."",""title"":""CEO""},{""name"":""D. J. S."",""title"":""Chief Operating Officer""},{""name"":""L. D."",""title"":""Chief Financial Officer""},{""name"":""C. G."",""title"":""Head Of Marketing""}]}","{""seniorLeadership"":[{""name"":""E. S."",""title"":""CEO""},{""name"":""D. J. S."",""title"":""Chief Operating Officer""},{""name"":""L. D."",""title"":""Chief Financial Officer""},{""name"":""C. G."",""title"":""Head Of Marketing""}]}","{ - ""websiteURL"": ""https://moocall.com/"", - ""companyDescription"": ""Moocall is an agri-tech company that has created two unique devices for livestock farmers to use in their herd. The first was a sensor that you strap to a pregnant cow's tail; the cow will then send the farmer an SMS two hours, and one hour prior to giving birth. This has proven to both free up farmers time and also increase live births and farm profitability. The latest is a heat detection system for cows and heifers. It comes in two parts - an electronic collar designed to be worn by a bull, and a specially designed Moocall RFID ear tag to be worn by each of the cows. The system then alerts the farmer when the cow enters a standing heat and from there the farmer can tell the best time for her to be submitted for Artificial Insemination."", - ""productDescription"": ""Moocall offers the following core products: - Calving Sensor: A wearable sensor that tracks tail movement of pregnant cows and sends SMS alerts to farmers when labor approaches to increase live births and reduce stress. - Heat Detection System: Comprises an electronic collar for bulls and RFID ear tags for cows to detect standing heat and optimize breeding timing."", - ""clientCategories"": [""Livestock Farmers"",""Agricultural Businesses""], - ""sectorDescription"": ""Operates in the agri-tech sector, providing wearable sensor technology and smart devices for livestock management to enhance breeding and calving processes."", - ""geographicFocus"": ""HQ: Irish Farm Centre, Old Naas Road, Bluebell, Dublin 12, Ireland; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company website and accessible subpages provided very limited direct detailed content. Key information was gathered mainly from LinkedIn and reputable business profile sources. No named executives were found. The primary geographic focus for headquarters is identified, but market sales regions were not disclosed."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""productDescription"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""clientCategories"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""geographicFocus"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://moocall.com/"", - ""companyDescription"": ""Moocall is an agri-tech company that has created two unique devices for livestock farmers to use in their herd. The first was a sensor that you strap to a pregnant cow's tail; the cow will then send the farmer an SMS two hours, and one hour prior to giving birth. This has proven to both free up farmers time and also increase live births and farm profitability. The latest is a heat detection system for cows and heifers. It comes in two parts - an electronic collar designed to be worn by a bull, and a specially designed Moocall RFID ear tag to be worn by each of the cows. The system then alerts the farmer when the cow enters a standing heat and from there the farmer can tell the best time for her to be submitted for Artificial Insemination."", - ""productDescription"": ""Moocall offers the following core products: - Calving Sensor: A wearable sensor that tracks tail movement of pregnant cows and sends SMS alerts to farmers when labor approaches to increase live births and reduce stress. - Heat Detection System: Comprises an electronic collar for bulls and RFID ear tags for cows to detect standing heat and optimize breeding timing."", - ""clientCategories"": [""Livestock Farmers"",""Agricultural Businesses""], - ""sectorDescription"": ""Operates in the agri-tech sector, providing wearable sensor technology and smart devices for livestock management to enhance breeding and calving processes."", - ""geographicFocus"": ""HQ: Irish Farm Centre, Old Naas Road, Bluebell, Dublin 12, Ireland; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company website and accessible subpages provided very limited direct detailed content. Key information was gathered mainly from LinkedIn and reputable business profile sources. No named executives were found. The primary geographic focus for headquarters is identified, but market sales regions were not disclosed."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""productDescription"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""clientCategories"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""geographicFocus"": ""https://ie.linkedin.com/company/moocall-sensors"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://moocall.com"", - ""companyDescription"": ""Moocall is a farmer-founded Irish agri-tech company established in 2014 that develops smart wearable sensor technology for the dairy and beef sectors. They create innovative IoT devices to help livestock farmers improve animal welfare and farm productivity through real-time monitoring. Their patented technology tracks animal behavior, such as calving and heat detection, delivering timely alerts directly to farmers via SMS to optimize herd management and breeding success."", - ""productDescription"": ""Moocall provides smart livestock monitoring products including a Calving Sensor, a wearable device strapped to the tail of pregnant cows that tracks tail movement and sends SMS alerts one to two hours before birth to improve survival rates and reduce stress. Their Heat Detection System consists of an electronic collar for bulls and RFID ear tags for cows to detect standing heat and inform optimal insemination timing. They also offer the Breedmanager app for herd management."", - ""clientCategories"": [ - ""Livestock Farmers"", - ""Agricultural Businesses"" - ], - ""sectorDescription"": ""Agri-tech company specializing in IoT wearable sensor technology for livestock health, breeding, and calving management."", - ""geographicFocus"": ""Headquartered in Dublin, Ireland, with products sold in over 36 countries globally. Specific regional sales focus is not publicly disclosed."", - ""keyExecutives"": [ - { - ""name"": ""E. S."", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.linkedin.com/company/moocall-sensors"" - }, - { - ""name"": ""D. J. S."", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/moocall-sensors"" - }, - { - ""name"": ""L. D."", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/moocall-sensors"" - }, - { - ""name"": ""C. G."", - ""title"": ""Head Of Marketing"", - ""sourceUrl"": ""https://www.linkedin.com/company/moocall-sensors"" - } - ], - ""researcherNotes"": ""The company is confirmed as the same entity by domain and product match with Dublin, Ireland headquarters. Executive names and titles were obtained from LinkedIn but with initials only; full names were not disclosed publicly. Geographic sales footprint is broadly global with presence in over 36 countries but without detailed regional segmentation. No official company leadership page was found; key executive data is LinkedIn-derived. The website strategically focuses on farmer-centric product innovation and IoT deployment in livestock farming."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.moocall.com/about-us/"", - ""productDescription"": ""https://www.moocall.com/about-us/"", - ""clientCategories"": ""https://www.linkedin.com/company/moocall-sensors"", - ""geographicFocus"": ""https://www.highperformr.ai/company/moocall-sensors"", - ""keyExecutives"": ""https://www.linkedin.com/company/moocall-sensors"" - } -}","{""clientCategories"":[""Livestock Farmers"",""Agricultural Businesses""],""companyDescription"":""Moocall is a farmer-founded Irish agri-tech company established in 2014 that develops smart wearable sensor technology for the dairy and beef sectors. They create innovative IoT devices to help livestock farmers improve animal welfare and farm productivity through real-time monitoring. Their patented technology tracks animal behavior, such as calving and heat detection, delivering timely alerts directly to farmers via SMS to optimize herd management and breeding success."",""geographicFocus"":""Headquartered in Dublin, Ireland, with products sold in over 36 countries globally. Specific regional sales focus is not publicly disclosed."",""keyExecutives"":[{""name"":""E. S."",""sourceUrl"":""https://www.linkedin.com/company/moocall-sensors"",""title"":""CEO""},{""name"":""D. J. S."",""sourceUrl"":""https://www.linkedin.com/company/moocall-sensors"",""title"":""Chief Operating Officer""},{""name"":""L. D."",""sourceUrl"":""https://www.linkedin.com/company/moocall-sensors"",""title"":""Chief Financial Officer""},{""name"":""C. G."",""sourceUrl"":""https://www.linkedin.com/company/moocall-sensors"",""title"":""Head Of Marketing""}],""missingImportantFields"":[],""productDescription"":""Moocall provides smart livestock monitoring products including a Calving Sensor, a wearable device strapped to the tail of pregnant cows that tracks tail movement and sends SMS alerts one to two hours before birth to improve survival rates and reduce stress. Their Heat Detection System consists of an electronic collar for bulls and RFID ear tags for cows to detect standing heat and inform optimal insemination timing. They also offer the Breedmanager app for herd management."",""researcherNotes"":""The company is confirmed as the same entity by domain and product match with Dublin, Ireland headquarters. Executive names and titles were obtained from LinkedIn but with initials only; full names were not disclosed publicly. Geographic sales footprint is broadly global with presence in over 36 countries but without detailed regional segmentation. No official company leadership page was found; key executive data is LinkedIn-derived. The website strategically focuses on farmer-centric product innovation and IoT deployment in livestock farming."",""sectorDescription"":""Agri-tech company specializing in IoT wearable sensor technology for livestock health, breeding, and calving management."",""sources"":{""clientCategories"":""https://www.linkedin.com/company/moocall-sensors"",""companyDescription"":""https://www.moocall.com/about-us/"",""geographicFocus"":""https://www.highperformr.ai/company/moocall-sensors"",""keyExecutives"":""https://www.linkedin.com/company/moocall-sensors"",""productDescription"":""https://www.moocall.com/about-us/""},""websiteURL"":""https://moocall.com""}","Correctness: 95% Completeness: 90% The provided description of Moocall as a farmer-founded Irish agri-tech company specializing in wearable sensor technology for dairy and beef sectors with IoT devices for calving and heat detection aligns closely with the official company website and multiple reputable sources confirming their founding in 2014, Dublin headquarters, and product offerings including a tail-mounted calving sensor and heat detection collars and tags[1][4][3]. The leadership details based on LinkedIn initials and titles are plausible given no full names are publicly listed, which is consistent with available data[1]. The global footprint claim of sales in over 36 countries is supported by third-party summaries though detailed regional data is not disclosed publicly[1][4]. The Breedmanager app existence and function is also confirmed[4]. Minor discrepancy appears in the founding year with one source citing 2015 likely referring to operational start or product launch phases rather than incorporation[2], causing a slight correctness deduction. Overall, the information is accurate, with completeness reduced slightly by lacking more granular leadership data and recent developments due to limited public disclosures. Key authoritative sources include the Moocall official about page (https://www.moocall.com/about-us/), related coverage (https://www.agdaily.com/livestock/moocall-releases-innovative-herd-management-app/), and media interviews (https://www.newstatesman.com/culture/nature/2018/09/moocall-farming-tech-company-modernising-cow-copulation).","{""clientCategories"":[""Livestock Farmers"",""Agricultural Businesses""],""companyDescription"":""Moocall is an agri-tech company that has created two unique devices for livestock farmers to use in their herd. The first was a sensor that you strap to a pregnant cow's tail; the cow will then send the farmer an SMS two hours, and one hour prior to giving birth. This has proven to both free up farmers time and also increase live births and farm profitability. The latest is a heat detection system for cows and heifers. It comes in two parts - an electronic collar designed to be worn by a bull, and a specially designed Moocall RFID ear tag to be worn by each of the cows. The system then alerts the farmer when the cow enters a standing heat and from there the farmer can tell the best time for her to be submitted for Artificial Insemination."",""geographicFocus"":""HQ: Irish Farm Centre, Old Naas Road, Bluebell, Dublin 12, Ireland; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Moocall offers the following core products: - Calving Sensor: A wearable sensor that tracks tail movement of pregnant cows and sends SMS alerts to farmers when labor approaches to increase live births and reduce stress. - Heat Detection System: Comprises an electronic collar for bulls and RFID ear tags for cows to detect standing heat and optimize breeding timing."",""researcherNotes"":""The company website and accessible subpages provided very limited direct detailed content. Key information was gathered mainly from LinkedIn and reputable business profile sources. No named executives were found. The primary geographic focus for headquarters is identified, but market sales regions were not disclosed."",""sectorDescription"":""Operates in the agri-tech sector, providing wearable sensor technology and smart devices for livestock management to enhance breeding and calving processes."",""sources"":{""clientCategories"":""https://ie.linkedin.com/company/moocall-sensors"",""companyDescription"":""https://ie.linkedin.com/company/moocall-sensors"",""geographicFocus"":""https://ie.linkedin.com/company/moocall-sensors"",""keyExecutives"":null,""productDescription"":""https://ie.linkedin.com/company/moocall-sensors""},""websiteURL"":""https://moocall.com/""}" -Groupe Sica Atlantique,https://www.sica-atlantique.com,Unigrains,sica-atlantique.com,https://www.linkedin.com/company/groupe-sica-atlantique,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.sica-atlantique.com"", - ""companyDescription"": ""The Groupe Sica Atlantique aims to sustain its historic position as a major operator in port logistics for regional agricultural productions and agrofournitures, facilitating agri-food logistics and adapting to the entire supply chain's expectations, especially end users. Groupe Sica Atlantique is a major operator on the Atlantic coast providing comprehensive, adapted, and diversified port logistics services through 10 métiers and 6 activity poles, including grain silos and terminals, solid bulk logistics and handling, liquid bulk terminals, green chemistry, maritime freight brokerage, ship consignment, road freight and logistics, and port handling."", - ""productDescription"": ""Groupe Sica Atlantique offers comprehensive port logistics products and services across multiple divisions: \n- Grain terminals and silos with advanced loading and storage capabilities.\n- Liquid bulk products handling including storage, conditioning, heating, mixing, dilution, homogenization, filtration, and additivation of agro-food products, fertilizers, petroleum products, lubricants, chemicals, and biofuels.\n- Bulk, break bulk, and heavy lift handling with specialized port operations and storage facilities for vessels up to 80,000 tonnes.\n- Industrial products such as mercury-free sodium methylate production for biodiesel, pharmaceutical, cosmetics, and agro-industrial clients.\n- Port handling and logistics services including specialized terminal operations, storage, loading and unloading, and freight transport via maritime, road, and rail.\n- Maritime freight brokerage and ship chartering services for solid and liquid bulk transport globally.\n- Renewable and recycling logistics for biomass, wood pellets, and environmental initiatives."", - ""clientCategories"": [""Agricultural producers and exporters"", ""Agro-industrial clients"", ""Importers and distributors in industry, agriculture, and energy sectors"", ""Maritime shipping and freight companies"", ""Biodiesel producers, pharmaceutical, and cosmetics industries""], - ""sectorDescription"": ""Operates in the port logistics sector, specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast."", - ""geographicFocus"": ""HQ: 69 rue Montcalm, 17026 Cedex 1 La Rochelle, France; Sales Focus: Atlantic coast region including La Rochelle-Pallice and Tonnay-Charente ports."", - ""keyExecutives"": [ - {""name"": ""Louis Tercinier"", ""title"": ""President of the Board"", ""sourceUrl"": ""https://www.sica-atlantique.com/qui-sommes-nous/""}, - {""name"": ""Vincent Poudevigne"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.sica-atlantique.com/qui-sommes-nous/""} - ], - ""linkedDocuments"": [ - ""https://sica-atlantique.com/wp-content/uploads/2017/10/FR_GSA_WEB_2017.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2017/10/RAPPORT_2016_WEB_1.pdf"", - ""https://www.sica-atlantique.com/wp-content/uploads/2018/07/GSA_RA2017_PDF_BD.pdf"", - ""https://www.sica-atlantique.com/wp-content/uploads/2019/06/GSA_RA2018_WEB.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2019/02/GB_GSA_2019_WEB.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SICA-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_EVA-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_ALLFAST-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.sica-atlantique.com/"", - ""productDescription"": ""https://www.sica-atlantique.com/nos-poles-et-filiales/sica-atlantique/"", - ""clientCategories"": ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"", - ""geographicFocus"": ""https://www.sica-atlantique.com/mentions-legales/"", - ""keyExecutives"": ""https://www.sica-atlantique.com/qui-sommes-nous/"" - } -}","{ - ""websiteURL"": ""https://www.sica-atlantique.com"", - ""companyDescription"": ""The Groupe Sica Atlantique aims to sustain its historic position as a major operator in port logistics for regional agricultural productions and agrofournitures, facilitating agri-food logistics and adapting to the entire supply chain's expectations, especially end users. Groupe Sica Atlantique is a major operator on the Atlantic coast providing comprehensive, adapted, and diversified port logistics services through 10 métiers and 6 activity poles, including grain silos and terminals, solid bulk logistics and handling, liquid bulk terminals, green chemistry, maritime freight brokerage, ship consignment, road freight and logistics, and port handling."", - ""productDescription"": ""Groupe Sica Atlantique offers comprehensive port logistics products and services across multiple divisions: \n- Grain terminals and silos with advanced loading and storage capabilities.\n- Liquid bulk products handling including storage, conditioning, heating, mixing, dilution, homogenization, filtration, and additivation of agro-food products, fertilizers, petroleum products, lubricants, chemicals, and biofuels.\n- Bulk, break bulk, and heavy lift handling with specialized port operations and storage facilities for vessels up to 80,000 tonnes.\n- Industrial products such as mercury-free sodium methylate production for biodiesel, pharmaceutical, cosmetics, and agro-industrial clients.\n- Port handling and logistics services including specialized terminal operations, storage, loading and unloading, and freight transport via maritime, road, and rail.\n- Maritime freight brokerage and ship chartering services for solid and liquid bulk transport globally.\n- Renewable and recycling logistics for biomass, wood pellets, and environmental initiatives."", - ""clientCategories"": [""Agricultural producers and exporters"", ""Agro-industrial clients"", ""Importers and distributors in industry, agriculture, and energy sectors"", ""Maritime shipping and freight companies"", ""Biodiesel producers, pharmaceutical, and cosmetics industries""], - ""sectorDescription"": ""Operates in the port logistics sector, specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast."", - ""geographicFocus"": ""HQ: 69 rue Montcalm, 17026 Cedex 1 La Rochelle, France; Sales Focus: Atlantic coast region including La Rochelle-Pallice and Tonnay-Charente ports."", - ""keyExecutives"": [ - {""name"": ""Louis Tercinier"", ""title"": ""President of the Board"", ""sourceUrl"": ""https://www.sica-atlantique.com/qui-sommes-nous/""}, - {""name"": ""Vincent Poudevigne"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.sica-atlantique.com/qui-sommes-nous/""} - ], - ""linkedDocuments"": [ - ""https://sica-atlantique.com/wp-content/uploads/2017/10/FR_GSA_WEB_2017.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2017/10/RAPPORT_2016_WEB_1.pdf"", - ""https://www.sica-atlantique.com/wp-content/uploads/2018/07/GSA_RA2017_PDF_BD.pdf"", - ""https://www.sica-atlantique.com/wp-content/uploads/2019/06/GSA_RA2018_WEB.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2019/02/GB_GSA_2019_WEB.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SICA-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_EVA-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_ALLFAST-_-07-2020.pdf"", - ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.sica-atlantique.com/"", - ""productDescription"": ""https://www.sica-atlantique.com/nos-poles-et-filiales/sica-atlantique/"", - ""clientCategories"": ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"", - ""geographicFocus"": ""https://www.sica-atlantique.com/mentions-legales/"", - ""keyExecutives"": ""https://www.sica-atlantique.com/qui-sommes-nous/"" - } -}",[],"{ - ""websiteURL"": ""https://www.sica-atlantique.com"", - ""companyDescription"": ""The Groupe Sica Atlantique is a major operator in port logistics specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast. Founded in the late 1950s by grain operators, it supports regional agricultural productions and agrofournitures by facilitating agri-food logistics and adapting to full supply chain needs, especially for end users. The group offers a comprehensive range of port logistics services through its 10 métiers and 6 activity poles, establishing itself as the leading port operator in La Rochelle-Pallice and surrounding Atlantic coast regions."", - ""productDescription"": ""Groupe Sica Atlantique delivers comprehensive port logistics services across multiple sectors including grain terminals and silos, liquid bulk handling for agro-food and energy products, bulk and break bulk operations, industrial products like mercury-free sodium methylate, maritime freight brokerage, and specialized port handling. Its logistics solutions span maritime, road, and rail freight, with advanced capabilities in storage, conditioning, and treatment of various bulk materials. The group also supports renewable and recycling logistics involving biomass and environmental initiatives."", - ""clientCategories"": [ - ""Agricultural Producers and Exporters"", - ""Agro-Industrial Clients"", - ""Importers and Distributors in Industry Agriculture and Energy Sectors"", - ""Maritime Shipping and Freight Companies"", - ""Biodiesel Producers Pharmaceutical and Cosmetics Industries"" - ], - ""sectorDescription"": ""Port logistics specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast."", - ""geographicFocus"": ""Primary operations and sales focus on the Atlantic coast region of France, including the La Rochelle-Pallice and Tonnay-Charente ports."", - ""keyExecutives"": [ - { - ""name"": ""Louis Tercinier"", - ""title"": ""President of the Board"", - ""sourceUrl"": ""https://www.sica-atlantique.com/qui-sommes-nous/"" - }, - { - ""name"": ""Vincent Poudevigne"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.sica-atlantique.com/qui-sommes-nous/"" - } - ], - ""researcherNotes"": ""The company profile and leadership details are confirmed by the official Sica Atlantique corporate website and corroborated by other business directories. Geographic focus is deduced from company site mentions and regional port activities. No senior management data were available from LinkedIn. The separation of divisions and product lines is consistent across official sources. No conflicting information found. Missing geographic nuance is minimal as focus is clearly regional."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.sica-atlantique.com/our-group/?lang=en"", - ""productDescription"": ""https://www.sica-atlantique.com/nos-poles-et-filiales/sica-atlantique/"", - ""clientCategories"": ""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"", - ""geographicFocus"": ""https://www.sica-atlantique.com/mentions-legales/"", - ""keyExecutives"": ""https://www.sica-atlantique.com/qui-sommes-nous/"" - } -}","{""clientCategories"":[""Agricultural Producers and Exporters"",""Agro-Industrial Clients"",""Importers and Distributors in Industry Agriculture and Energy Sectors"",""Maritime Shipping and Freight Companies"",""Biodiesel Producers Pharmaceutical and Cosmetics Industries""],""companyDescription"":""The Groupe Sica Atlantique is a major operator in port logistics specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast. Founded in the late 1950s by grain operators, it supports regional agricultural productions and agrofournitures by facilitating agri-food logistics and adapting to full supply chain needs, especially for end users. The group offers a comprehensive range of port logistics services through its 10 métiers and 6 activity poles, establishing itself as the leading port operator in La Rochelle-Pallice and surrounding Atlantic coast regions."",""geographicFocus"":""Primary operations and sales focus on the Atlantic coast region of France, including the La Rochelle-Pallice and Tonnay-Charente ports."",""keyExecutives"":[{""name"":""Louis Tercinier"",""sourceUrl"":""https://www.sica-atlantique.com/qui-sommes-nous/"",""title"":""President of the Board""},{""name"":""Vincent Poudevigne"",""sourceUrl"":""https://www.sica-atlantique.com/qui-sommes-nous/"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Groupe Sica Atlantique delivers comprehensive port logistics services across multiple sectors including grain terminals and silos, liquid bulk handling for agro-food and energy products, bulk and break bulk operations, industrial products like mercury-free sodium methylate, maritime freight brokerage, and specialized port handling. Its logistics solutions span maritime, road, and rail freight, with advanced capabilities in storage, conditioning, and treatment of various bulk materials. The group also supports renewable and recycling logistics involving biomass and environmental initiatives."",""researcherNotes"":""The company profile and leadership details are confirmed by the official Sica Atlantique corporate website and corroborated by other business directories. Geographic focus is deduced from company site mentions and regional port activities. No senior management data were available from LinkedIn. The separation of divisions and product lines is consistent across official sources. No conflicting information found. Missing geographic nuance is minimal as focus is clearly regional."",""sectorDescription"":""Port logistics specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast."",""sources"":{""clientCategories"":""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"",""companyDescription"":""https://www.sica-atlantique.com/our-group/?lang=en"",""geographicFocus"":""https://www.sica-atlantique.com/mentions-legales/"",""keyExecutives"":""https://www.sica-atlantique.com/qui-sommes-nous/"",""productDescription"":""https://www.sica-atlantique.com/nos-poles-et-filiales/sica-atlantique/""},""websiteURL"":""https://www.sica-atlantique.com""}","Correctness: 98% Completeness: 95% The company description largely aligns with the official Groupe Sica Atlantique website and PDF brochure confirming its specialization in port logistics for agricultural, agro-industrial, and bulk handling/storage along the Atlantic coast, particularly at La Rochelle-Pallice and Tonnay-Charente ports. The founding era (late 1950s), origin in grain export operator collaboration, and senior executives Louis Tercinier (President) and Vincent Poudevigne (CEO) are confirmed as of 2025-09-11 on the company’s official leadership page. The product and service offerings—grain terminals, liquid bulk handling, bulk and break bulk shipping, industrial products, maritime freight brokerage, and renewable logistics—match descriptions on the group’s site and brochure. The geographic focus on the Atlantic coast of France is validated through legal and historical mentions. Minor omissions include current employee numbers and more granular detail on activity poles, but no material inaccuracies or contradictory evidence were found. Missing fields or nuance around recent developments are negligible given the stability of leadership and core business lines. Sources include the official Groupe Sica Atlantique website (https://www.sica-atlantique.com/our-group/?lang=en, https://www.sica-atlantique.com/qui-sommes-nous/), its 2020 brochure (https://www.sica-atlantique.com/wp-content/uploads/2020/11/Plaquette-SICA-Ang-2020-_-10-2020.pdf), and corroborating business directories (https://theorg.com/org/groupe-sica-atlantique).","{""clientCategories"":[""Agricultural producers and exporters"",""Agro-industrial clients"",""Importers and distributors in industry, agriculture, and energy sectors"",""Maritime shipping and freight companies"",""Biodiesel producers, pharmaceutical, and cosmetics industries""],""companyDescription"":""The Groupe Sica Atlantique aims to sustain its historic position as a major operator in port logistics for regional agricultural productions and agrofournitures, facilitating agri-food logistics and adapting to the entire supply chain's expectations, especially end users. Groupe Sica Atlantique is a major operator on the Atlantic coast providing comprehensive, adapted, and diversified port logistics services through 10 métiers and 6 activity poles, including grain silos and terminals, solid bulk logistics and handling, liquid bulk terminals, green chemistry, maritime freight brokerage, ship consignment, road freight and logistics, and port handling."",""geographicFocus"":""HQ: 69 rue Montcalm, 17026 Cedex 1 La Rochelle, France; Sales Focus: Atlantic coast region including La Rochelle-Pallice and Tonnay-Charente ports."",""keyExecutives"":[{""name"":""Louis Tercinier"",""sourceUrl"":""https://www.sica-atlantique.com/qui-sommes-nous/"",""title"":""President of the Board""},{""name"":""Vincent Poudevigne"",""sourceUrl"":""https://www.sica-atlantique.com/qui-sommes-nous/"",""title"":""CEO""}],""linkedDocuments"":[""https://sica-atlantique.com/wp-content/uploads/2017/10/FR_GSA_WEB_2017.pdf"",""https://sica-atlantique.com/wp-content/uploads/2017/10/RAPPORT_2016_WEB_1.pdf"",""https://www.sica-atlantique.com/wp-content/uploads/2018/07/GSA_RA2017_PDF_BD.pdf"",""https://www.sica-atlantique.com/wp-content/uploads/2019/06/GSA_RA2018_WEB.pdf"",""https://sica-atlantique.com/wp-content/uploads/2019/02/GB_GSA_2019_WEB.pdf"",""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"",""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SICA-_-07-2020.pdf"",""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_EVA-_-07-2020.pdf"",""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_ALLFAST-_-07-2020.pdf"",""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf""],""missingImportantFields"":[],""productDescription"":""Groupe Sica Atlantique offers comprehensive port logistics products and services across multiple divisions: \n- Grain terminals and silos with advanced loading and storage capabilities.\n- Liquid bulk products handling including storage, conditioning, heating, mixing, dilution, homogenization, filtration, and additivation of agro-food products, fertilizers, petroleum products, lubricants, chemicals, and biofuels.\n- Bulk, break bulk, and heavy lift handling with specialized port operations and storage facilities for vessels up to 80,000 tonnes.\n- Industrial products such as mercury-free sodium methylate production for biodiesel, pharmaceutical, cosmetics, and agro-industrial clients.\n- Port handling and logistics services including specialized terminal operations, storage, loading and unloading, and freight transport via maritime, road, and rail.\n- Maritime freight brokerage and ship chartering services for solid and liquid bulk transport globally.\n- Renewable and recycling logistics for biomass, wood pellets, and environmental initiatives."",""researcherNotes"":null,""sectorDescription"":""Operates in the port logistics sector, specializing in agricultural, agro-industrial, and industrial bulk handling and storage along the Atlantic coast."",""sources"":{""clientCategories"":""https://sica-atlantique.com/wp-content/uploads/2020/11/GSA_PLAQUETTE_SISP-_-07-2020.pdf"",""companyDescription"":""https://www.sica-atlantique.com/"",""geographicFocus"":""https://www.sica-atlantique.com/mentions-legales/"",""keyExecutives"":""https://www.sica-atlantique.com/qui-sommes-nous/"",""productDescription"":""https://www.sica-atlantique.com/nos-poles-et-filiales/sica-atlantique/""},""websiteURL"":""https://www.sica-atlantique.com""}" -Senalia,https://www.senalia.com,Unigrains,senalia.com,https://www.linkedin.com/company/senalia,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.senalia.com"", - ""companyDescription"": ""Sénalia is a company that has been active since 1957, supporting nearly 60% of the French cereal collection through its cooperative structure and strong financial foundation. It operates in the agriculture-related industry, focusing on services for cereal export and agricultural product processing. The company offers customized and robust warehousing and logistics solutions, port logistics, storage, conditioning, and transport organization. Sénalia emphasizes collaboration, communication, and partnership in logistics to ensure quality and efficiency for its clients. The mission revolves around providing tailored and reliable logistics to support agricultural product flows domestically and internationally."", - ""productDescription"": ""Professionals in logistics since 1957, Sénalia offers tailored solutions including warehousing and logistics services, port logistics, storage, packaging, and transportation organization. Key services include: Custom Solutions, Distribution & E-commerce Solutions, Import & Export Solutions, Industrial Supply Chain Solutions, Warehousing & Logistics Services, Port Logistics, Storage Solutions adaptable to product nature, and a digital collaboration app called Telloo for managing rounds."", - ""clientCategories"": [""Agricultural Cooperatives"", ""Agro-industrial Partners"", ""Cereal Exporters""], - ""sectorDescription"": ""Operates in the agro-logistics sector, specializing in logistics and warehousing services for cereals, bioethanol, cocoa, sugar, and agro-industrial products."", - ""geographicFocus"": ""HQ: France, Rouen area; Sales Focus: France, USA (New York)"", - ""keyExecutives"": [ - {""name"": ""Didier VERBEKE"", ""title"": ""President"", ""sourceUrl"": ""https://www.senalia.com/les-elus/""}, - {""name"": ""François BONTE"", ""title"": ""President"", ""sourceUrl"": ""https://www.senalia.com/les-elus/""}, - {""name"": ""Gilles Kindelberger"", ""title"": ""Directeur Général (CEO equivalent)"", ""sourceUrl"": ""https://www.senalia.com/les-elus/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.senalia.com/"", - ""productDescription"": ""https://www.senalia.com/solutions/"", - ""clientCategories"": ""https://www.senalia.com/presentation/"", - ""geographicFocus"": ""https://www.senalia.com/contact/"", - ""keyExecutives"": ""https://www.senalia.com/les-elus/"" - } -}","{ - ""websiteURL"": ""https://www.senalia.com"", - ""companyDescription"": ""Sénalia is a company that has been active since 1957, supporting nearly 60% of the French cereal collection through its cooperative structure and strong financial foundation. It operates in the agriculture-related industry, focusing on services for cereal export and agricultural product processing. The company offers customized and robust warehousing and logistics solutions, port logistics, storage, conditioning, and transport organization. Sénalia emphasizes collaboration, communication, and partnership in logistics to ensure quality and efficiency for its clients. The mission revolves around providing tailored and reliable logistics to support agricultural product flows domestically and internationally."", - ""productDescription"": ""Professionals in logistics since 1957, Sénalia offers tailored solutions including warehousing and logistics services, port logistics, storage, packaging, and transportation organization. Key services include: Custom Solutions, Distribution & E-commerce Solutions, Import & Export Solutions, Industrial Supply Chain Solutions, Warehousing & Logistics Services, Port Logistics, Storage Solutions adaptable to product nature, and a digital collaboration app called Telloo for managing rounds."", - ""clientCategories"": [""Agricultural Cooperatives"", ""Agro-industrial Partners"", ""Cereal Exporters""], - ""sectorDescription"": ""Operates in the agro-logistics sector, specializing in logistics and warehousing services for cereals, bioethanol, cocoa, sugar, and agro-industrial products."", - ""geographicFocus"": ""HQ: France, Rouen area; Sales Focus: France, USA (New York)"", - ""keyExecutives"": [ - {""name"": ""Didier VERBEKE"", ""title"": ""President"", ""sourceUrl"": ""https://www.senalia.com/les-elus/""}, - {""name"": ""François BONTE"", ""title"": ""President"", ""sourceUrl"": ""https://www.senalia.com/les-elus/""}, - {""name"": ""Gilles Kindelberger"", ""title"": ""Directeur Général (CEO equivalent)"", ""sourceUrl"": ""https://www.senalia.com/les-elus/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.senalia.com/"", - ""productDescription"": ""https://www.senalia.com/solutions/"", - ""clientCategories"": ""https://www.senalia.com/presentation/"", - ""geographicFocus"": ""https://www.senalia.com/contact/"", - ""keyExecutives"": ""https://www.senalia.com/les-elus/"" - } -}",[],"{ - ""websiteURL"": ""https://www.senalia.com"", - ""companyDescription"": ""Sénalia is a French agro-logistics cooperative company, active since 1957, supporting nearly 60% of the French cereal collection through its cooperative structure and strong financial foundation. It specializes in logistics and warehousing services focused on cereals, bioethanol, cocoa, sugar, and agro-industrial products. The company emphasizes collaboration and partnership to ensure quality and efficiency in cereal export and agricultural product processing, serving both domestic and international markets."", - ""productDescription"": ""Sénalia offers tailored logistics solutions including warehousing, port logistics, storage, conditioning, packaging, and transportation organization. Their services cater to agricultural cooperatives and agro-industrial partners, enabling efficient flows of cereals and related products. They provide custom solutions adapted to product nature and volumes, including a digital collaboration app, Telloo, to manage operations effectively."", - ""clientCategories"": [ - ""Agricultural Cooperatives"", - ""Agro-industrial Partners"", - ""Cereal Exporters"" - ], - ""sectorDescription"": ""Agro-logistics company specializing in logistics and warehousing for cereals, bioethanol, cocoa, sugar, and agro-industrial products."", - ""geographicFocus"": ""Headquartered in Rouen, France, with a sales focus in France and the USA (New York)."", - ""keyExecutives"": [ - { - ""name"": ""Didier VERBEKE"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.senalia.com/les-elus/"" - }, - { - ""name"": ""François BONTE"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.senalia.com/les-elus/"" - }, - { - ""name"": ""Gilles Kindelberger"", - ""title"": ""Directeur Général (CEO equivalent)"", - ""sourceUrl"": ""https://www.senalia.com/les-elus/"" - } - ], - ""researcherNotes"": ""The entity Sénalia is confirmed accurately by domain match and consistent details on founding year (1957), industry keywords (agro-logistics, cereals), and HQ location (Rouen, France). Geographic focus is corroborated by company sources indicating activity in France and presence in the USA (New York). Key executives are sourced directly from Sénalia's official leadership page. No additional senior leadership details found on LinkedIn. All previously present fields were maintained; no missing required data remains."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.senalia.com/"", - ""productDescription"": ""https://www.senalia.com/solutions/"", - ""clientCategories"": ""https://www.senalia.com/presentation/"", - ""geographicFocus"": ""https://www.senalia.com/contact/"", - ""keyExecutives"": ""https://www.senalia.com/les-elus/"" - } -}","{""clientCategories"":[""Agricultural Cooperatives"",""Agro-industrial Partners"",""Cereal Exporters""],""companyDescription"":""Sénalia is a French agro-logistics cooperative company, active since 1957, supporting nearly 60% of the French cereal collection through its cooperative structure and strong financial foundation. It specializes in logistics and warehousing services focused on cereals, bioethanol, cocoa, sugar, and agro-industrial products. The company emphasizes collaboration and partnership to ensure quality and efficiency in cereal export and agricultural product processing, serving both domestic and international markets."",""geographicFocus"":""Headquartered in Rouen, France, with a sales focus in France and the USA (New York)."",""keyExecutives"":[{""name"":""Didier VERBEKE"",""sourceUrl"":""https://www.senalia.com/les-elus/"",""title"":""President""},{""name"":""François BONTE"",""sourceUrl"":""https://www.senalia.com/les-elus/"",""title"":""President""},{""name"":""Gilles Kindelberger"",""sourceUrl"":""https://www.senalia.com/les-elus/"",""title"":""Directeur Général (CEO equivalent)""}],""missingImportantFields"":[],""productDescription"":""Sénalia offers tailored logistics solutions including warehousing, port logistics, storage, conditioning, packaging, and transportation organization. Their services cater to agricultural cooperatives and agro-industrial partners, enabling efficient flows of cereals and related products. They provide custom solutions adapted to product nature and volumes, including a digital collaboration app, Telloo, to manage operations effectively."",""researcherNotes"":""The entity Sénalia is confirmed accurately by domain match and consistent details on founding year (1957), industry keywords (agro-logistics, cereals), and HQ location (Rouen, France). Geographic focus is corroborated by company sources indicating activity in France and presence in the USA (New York). Key executives are sourced directly from Sénalia's official leadership page. No additional senior leadership details found on LinkedIn. All previously present fields were maintained; no missing required data remains."",""sectorDescription"":""Agro-logistics company specializing in logistics and warehousing for cereals, bioethanol, cocoa, sugar, and agro-industrial products."",""sources"":{""clientCategories"":""https://www.senalia.com/presentation/"",""companyDescription"":""https://www.senalia.com/"",""geographicFocus"":""https://www.senalia.com/contact/"",""keyExecutives"":""https://www.senalia.com/les-elus/"",""productDescription"":""https://www.senalia.com/solutions/""},""websiteURL"":""https://www.senalia.com""}","Correctness: 98% Completeness: 95% The provided description of Sénalia is highly accurate and comprehensive. The founding year 1957 is confirmed by multiple sources, as well as the history involving the merger of UCACEL and SPR in 2002 forming Sénalia, headquartered in Rouen, France[1][2][6]. The company’s focus on agro-logistics services for cereals, bioethanol, cocoa, sugar, and agro-industrial products, as well as its support of around 60% of French cereal collection via its cooperative structure, matches official company claims[1][4]. Key executives Didier Verbeke and François Bonte as Presidents and Gilles Kindelberger as CEO are listed on the official Sénalia leadership page confirming titles and roles[2]. The product offerings including warehousing, port logistics, storage, packaging, and custom transport solutions with digital tools like Telloo are consistent with the company’s online solution descriptions[4]. The geographic focus on France (particularly Rouen) and presence in the USA (New York) is corroborated through company contact and market information[4]. Minor note: one source listed the founding location as Chartres, which does not conflict but is less precise than Rouen HQ[3]. No major omissions or inaccuracies were found concerning core identity, leadership, services, or footprint. Sources: https://www.senalia.com/les-elus/, https://www.senalia.com/, https://www.ibj-online.com/dedicated-s-nalia-rewarded-with-record-year/1654, https://www.senalia.com/uncategorized/inauguration-of-senalias-new-headquarters-le-109/?lang=en, https://www.preqin.com/data/profile/asset/s%C3%A9nalia/361021","{""clientCategories"":[""Agricultural Cooperatives"",""Agro-industrial Partners"",""Cereal Exporters""],""companyDescription"":""Sénalia is a company that has been active since 1957, supporting nearly 60% of the French cereal collection through its cooperative structure and strong financial foundation. It operates in the agriculture-related industry, focusing on services for cereal export and agricultural product processing. The company offers customized and robust warehousing and logistics solutions, port logistics, storage, conditioning, and transport organization. Sénalia emphasizes collaboration, communication, and partnership in logistics to ensure quality and efficiency for its clients. The mission revolves around providing tailored and reliable logistics to support agricultural product flows domestically and internationally."",""geographicFocus"":""HQ: France, Rouen area; Sales Focus: France, USA (New York)"",""keyExecutives"":[{""name"":""Didier VERBEKE"",""sourceUrl"":""https://www.senalia.com/les-elus/"",""title"":""President""},{""name"":""François BONTE"",""sourceUrl"":""https://www.senalia.com/les-elus/"",""title"":""President""},{""name"":""Gilles Kindelberger"",""sourceUrl"":""https://www.senalia.com/les-elus/"",""title"":""Directeur Général (CEO equivalent)""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Professionals in logistics since 1957, Sénalia offers tailored solutions including warehousing and logistics services, port logistics, storage, packaging, and transportation organization. Key services include: Custom Solutions, Distribution & E-commerce Solutions, Import & Export Solutions, Industrial Supply Chain Solutions, Warehousing & Logistics Services, Port Logistics, Storage Solutions adaptable to product nature, and a digital collaboration app called Telloo for managing rounds."",""researcherNotes"":null,""sectorDescription"":""Operates in the agro-logistics sector, specializing in logistics and warehousing services for cereals, bioethanol, cocoa, sugar, and agro-industrial products."",""sources"":{""clientCategories"":""https://www.senalia.com/presentation/"",""companyDescription"":""https://www.senalia.com/"",""geographicFocus"":""https://www.senalia.com/contact/"",""keyExecutives"":""https://www.senalia.com/les-elus/"",""productDescription"":""https://www.senalia.com/solutions/""},""websiteURL"":""https://www.senalia.com""}" -CybeleTech,https://www.cybeletech.com/,PhiTrust Impact Investors,cybeletech.com,https://www.linkedin.com/company/cybeletech/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.cybeletech.com/"", - ""companyDescription"": ""Cybeletech is a company formed from the collaboration between applied mathematics researchers and agribusiness professionals to reduce errors in agricultural processes and support sustainable, competitive agriculture. Founded by Marie Joseph Lambert and Paul Henry Cournède with origins in agribusiness and plant growth simulation research at CentraleSupélec. Acquired in 2022 by Christophe Shaw, now expanding into forestry solutions. The company values ecological awareness and optimization of resource exploitation. Their team includes 15 PhDs and engineers specialized in agriculture, applied mathematics, and software development. Cybeletech develops algorithms for agriculture and forestry, including the iLander platform, built from over 120 years of combined R&D."", - ""productDescription"": ""Cybeletech's core products revolve around its AI-powered iLander platform, which includes: \n- iLander Crop: An AI-based product leveraging satellite image analysis and mathematical modeling to analyze and anticipate crop development, optimize input use, detect anomalies, and forecast harvests with high-resolution agricultural diagnostics from parcel to country scale.\n- iLander Forêt: A forestry scanner that provides precise, up-to-date data on forest content and health, analyzing 13 million hectares of French forest, identifying tree species, diagnosing tree health, and tracking deterioration nearly in real-time, aiding forest management and wood valorization.\n- iLander ESG: Uses satellite imagery and AI to characterize agricultural, viticultural, and forestry parcels globally with 23 automated indicators updated every 5 days, supporting environmental commitments through detailed parcel-level insights."", - ""clientCategories"": [ - ""agricultural organizations"", - ""seed companies"", - ""industrial processors"", - ""forestry cooperatives"", - ""forestry experts"", - ""local governments"", - ""NGOs"", - ""agri-food companies"", - ""banks"", - ""insurance companies"", - ""governments"" - ], - ""sectorDescription"": ""Operates in the agriculture and forestry technology sector, focusing on environmental sustainability and climate change impact through AI-driven data analysis and digital twin platforms."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Primarily France (analyzing 13 million hectares of French forest) and global reach through agricultural, viticultural, and forestry parcel analysis."", - ""keyExecutives"": [ - { - ""name"": ""Christophe Shaw"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Marion Carrier"", - ""title"": ""Director of R&D and Datascience"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Antoine Roux"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Marie-Joseph Lambert"", - ""title"": ""Administrator & Advisor"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Paul-Henry Cournède"", - ""title"": ""PhD - Director of Research, CentraleSupélec, Administrator & Advisor"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company headquarters address was not specifically listed on the website. No direct downloadable linked documents (PDF, DOCX) were found. The mission statement is implicitly inferred from company description and activities but no explicit text was provided."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.cybeletech.com/a-propos-de-nous"", - ""productDescription"": ""https://www.cybeletech.com/solution-agricole"", - ""clientCategories"": ""https://www.cybeletech.com/a-propos-de-nous"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.cybeletech.com/a-propos-de-nous"" - } -}","{ - ""websiteURL"": ""https://www.cybeletech.com/"", - ""companyDescription"": ""Cybeletech is a company formed from the collaboration between applied mathematics researchers and agribusiness professionals to reduce errors in agricultural processes and support sustainable, competitive agriculture. Founded by Marie Joseph Lambert and Paul Henry Cournède with origins in agribusiness and plant growth simulation research at CentraleSupélec. Acquired in 2022 by Christophe Shaw, now expanding into forestry solutions. The company values ecological awareness and optimization of resource exploitation. Their team includes 15 PhDs and engineers specialized in agriculture, applied mathematics, and software development. Cybeletech develops algorithms for agriculture and forestry, including the iLander platform, built from over 120 years of combined R&D."", - ""productDescription"": ""Cybeletech's core products revolve around its AI-powered iLander platform, which includes: \n- iLander Crop: An AI-based product leveraging satellite image analysis and mathematical modeling to analyze and anticipate crop development, optimize input use, detect anomalies, and forecast harvests with high-resolution agricultural diagnostics from parcel to country scale.\n- iLander Forêt: A forestry scanner that provides precise, up-to-date data on forest content and health, analyzing 13 million hectares of French forest, identifying tree species, diagnosing tree health, and tracking deterioration nearly in real-time, aiding forest management and wood valorization.\n- iLander ESG: Uses satellite imagery and AI to characterize agricultural, viticultural, and forestry parcels globally with 23 automated indicators updated every 5 days, supporting environmental commitments through detailed parcel-level insights."", - ""clientCategories"": [ - ""agricultural organizations"", - ""seed companies"", - ""industrial processors"", - ""forestry cooperatives"", - ""forestry experts"", - ""local governments"", - ""NGOs"", - ""agri-food companies"", - ""banks"", - ""insurance companies"", - ""governments"" - ], - ""sectorDescription"": ""Operates in the agriculture and forestry technology sector, focusing on environmental sustainability and climate change impact through AI-driven data analysis and digital twin platforms."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Primarily France (analyzing 13 million hectares of French forest) and global reach through agricultural, viticultural, and forestry parcel analysis."", - ""keyExecutives"": [ - { - ""name"": ""Christophe Shaw"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Marion Carrier"", - ""title"": ""Director of R&D and Datascience"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Antoine Roux"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Marie-Joseph Lambert"", - ""title"": ""Administrator & Advisor"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Paul-Henry Cournède"", - ""title"": ""PhD - Director of Research, CentraleSupélec, Administrator & Advisor"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The company headquarters address was not specifically listed on the website. No direct downloadable linked documents (PDF, DOCX) were found. The mission statement is implicitly inferred from company description and activities but no explicit text was provided."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.cybeletech.com/a-propos-de-nous"", - ""productDescription"": ""https://www.cybeletech.com/solution-agricole"", - ""clientCategories"": ""https://www.cybeletech.com/a-propos-de-nous"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.cybeletech.com/a-propos-de-nous"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.cybeletech.com"", - ""companyDescription"": ""Cybeletech is a company formed from the collaboration between applied mathematics researchers and agribusiness professionals to reduce errors in agricultural processes and support sustainable, competitive agriculture. Founded by Marie Joseph Lambert and Paul Henry Cournède with origins in agribusiness and plant growth simulation research at CentraleSupélec. Acquired in 2022 by Christophe Shaw, now expanding into forestry solutions. The company values ecological awareness and optimization of resource exploitation. Their team includes 15 PhDs and engineers specialized in agriculture, applied mathematics, and software development. Cybeletech develops algorithms for agriculture and forestry, including the iLander platform, built from over 120 years of combined R&D."", - ""productDescription"": ""Cybeletech's core products revolve around its AI-powered iLander platform, which includes: \n- iLander Crop: An AI-based product leveraging satellite image analysis and mathematical modeling to analyze and anticipate crop development, optimize input use, detect anomalies, and forecast harvests with high-resolution agricultural diagnostics from parcel to country scale.\n- iLander Forêt: A forestry scanner that provides precise, up-to-date data on forest content and health, analyzing 13 million hectares of French forest, identifying tree species, diagnosing tree health, and tracking deterioration nearly in real-time, aiding forest management and wood valorization.\n- iLander ESG: Uses satellite imagery and AI to characterize agricultural, viticultural, and forestry parcels globally with 23 automated indicators updated every 5 days, supporting environmental commitments through detailed parcel-level insights."", - ""clientCategories"": [ - ""Agricultural Organizations"", - ""Seed Companies"", - ""Industrial Processors"", - ""Forestry Cooperatives"", - ""Forestry Experts"", - ""Local Governments"", - ""NGOs"", - ""Agri-Food Companies"", - ""Banks"", - ""Insurance Companies"", - ""Governments"" - ], - ""sectorDescription"": ""Operates in the agriculture and forestry technology sector, focusing on environmental sustainability and climate change impact through AI-driven data analysis and digital twin platforms."", - ""geographicFocus"": ""Primarily focused on France with analysis of 13 million hectares of French forest, while also providing global parcel analysis for agriculture, viticulture, and forestry sectors."", - ""keyExecutives"": [ - { - ""name"": ""Christophe Shaw"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Marion Carrier"", - ""title"": ""Director of R&D and Datascience"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Antoine Roux"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Marie-Joseph Lambert"", - ""title"": ""Administrator & Advisor"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - }, - { - ""name"": ""Paul-Henry Cournède"", - ""title"": ""PhD - Director of Research, CentraleSupélec, Administrator & Advisor"", - ""sourceUrl"": ""https://www.cybeletech.com/a-propos-de-nous"" - } - ], - ""researcherNotes"": ""The company headquarters address was not listed on the website or in other sources. Geographic focus was not explicitly stated but inferred from product and sales descriptions emphasizing French forest analysis and global parcel characterization. Key executive titles and roles were confirmed on the company 'About Us' page and corroborated by third-party sources confirming Christophe Shaw as President since 2022, based in Paris, France."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.cybeletech.com/a-propos-de-nous"", - ""productDescription"": ""https://www.cybeletech.com/solution-agricole"", - ""clientCategories"": ""https://www.cybeletech.com/a-propos-de-nous"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.cybeletech.com/a-propos-de-nous"" - } -}","{""clientCategories"":[""Agricultural Organizations"",""Seed Companies"",""Industrial Processors"",""Forestry Cooperatives"",""Forestry Experts"",""Local Governments"",""NGOs"",""Agri-Food Companies"",""Banks"",""Insurance Companies"",""Governments""],""companyDescription"":""Cybeletech is a company formed from the collaboration between applied mathematics researchers and agribusiness professionals to reduce errors in agricultural processes and support sustainable, competitive agriculture. Founded by Marie Joseph Lambert and Paul Henry Cournède with origins in agribusiness and plant growth simulation research at CentraleSupélec. Acquired in 2022 by Christophe Shaw, now expanding into forestry solutions. The company values ecological awareness and optimization of resource exploitation. Their team includes 15 PhDs and engineers specialized in agriculture, applied mathematics, and software development. Cybeletech develops algorithms for agriculture and forestry, including the iLander platform, built from over 120 years of combined R&D."",""geographicFocus"":""Primarily focused on France with analysis of 13 million hectares of French forest, while also providing global parcel analysis for agriculture, viticulture, and forestry sectors."",""keyExecutives"":[{""name"":""Christophe Shaw"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""President""},{""name"":""Marion Carrier"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""Director of R&D and Datascience""},{""name"":""Antoine Roux"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""CTO""},{""name"":""Marie-Joseph Lambert"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""Administrator & Advisor""},{""name"":""Paul-Henry Cournède"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""PhD - Director of Research, CentraleSupélec, Administrator & Advisor""}],""missingImportantFields"":[],""productDescription"":""Cybeletech's core products revolve around its AI-powered iLander platform, which includes: \n- iLander Crop: An AI-based product leveraging satellite image analysis and mathematical modeling to analyze and anticipate crop development, optimize input use, detect anomalies, and forecast harvests with high-resolution agricultural diagnostics from parcel to country scale.\n- iLander Forêt: A forestry scanner that provides precise, up-to-date data on forest content and health, analyzing 13 million hectares of French forest, identifying tree species, diagnosing tree health, and tracking deterioration nearly in real-time, aiding forest management and wood valorization.\n- iLander ESG: Uses satellite imagery and AI to characterize agricultural, viticultural, and forestry parcels globally with 23 automated indicators updated every 5 days, supporting environmental commitments through detailed parcel-level insights."",""researcherNotes"":""The company headquarters address was not listed on the website or in other sources. Geographic focus was not explicitly stated but inferred from product and sales descriptions emphasizing French forest analysis and global parcel characterization. Key executive titles and roles were confirmed on the company 'About Us' page and corroborated by third-party sources confirming Christophe Shaw as President since 2022, based in Paris, France."",""sectorDescription"":""Operates in the agriculture and forestry technology sector, focusing on environmental sustainability and climate change impact through AI-driven data analysis and digital twin platforms."",""sources"":{""clientCategories"":""https://www.cybeletech.com/a-propos-de-nous"",""companyDescription"":""https://www.cybeletech.com/a-propos-de-nous"",""geographicFocus"":null,""keyExecutives"":""https://www.cybeletech.com/a-propos-de-nous"",""productDescription"":""https://www.cybeletech.com/solution-agricole""},""websiteURL"":""https://www.cybeletech.com""}","Correctness: 98% Completeness: 95% The information provided about Cybeletech is highly accurate and largely complete. Key facts such as the company's founding by Marie Joseph Lambert and Paul Henry Cournède with origins at CentraleSupélec; the acquisition by Christophe Shaw in 2022; Shaw’s current role as President and CEO based in Paris; the team composition of approximately 15 PhDs and engineers; and the core AI-driven iLander platform covering agriculture and forestry (including products iLander Crop, iLander Forêt, and iLander ESG) are all well supported by official company sources and credible third-party profiles [2][3]. The focus on France’s 13 million hectares of forest and broader global parcel analyses align with company messaging [2]. Minor limitations include the absence of explicit listed headquarters address and detailed recent financials; however, these are not typically disclosed publicly. The description of the company’s values, research origin, geographic scope, and leadership titles are confirmed [2][3]. Overall, the core claims are fully substantiated by the company’s About Us page and Christophe Shaw’s professional profile [2][3]. The small deduction in correctness reflects that some numerical employee counts differ slightly over time (14 vs 15) in external mentions, though this is minor. Completeness is strong though could be improved by explicit mention of revenue or full executive roster beyond the key figures already named. Main sources: https://www.cybeletech.com/en/about-us/, https://clay.earth/profile/christophe-shaw","{""clientCategories"":[""agricultural organizations"",""seed companies"",""industrial processors"",""forestry cooperatives"",""forestry experts"",""local governments"",""NGOs"",""agri-food companies"",""banks"",""insurance companies"",""governments""],""companyDescription"":""Cybeletech is a company formed from the collaboration between applied mathematics researchers and agribusiness professionals to reduce errors in agricultural processes and support sustainable, competitive agriculture. Founded by Marie Joseph Lambert and Paul Henry Cournède with origins in agribusiness and plant growth simulation research at CentraleSupélec. Acquired in 2022 by Christophe Shaw, now expanding into forestry solutions. The company values ecological awareness and optimization of resource exploitation. Their team includes 15 PhDs and engineers specialized in agriculture, applied mathematics, and software development. Cybeletech develops algorithms for agriculture and forestry, including the iLander platform, built from over 120 years of combined R&D."",""geographicFocus"":""HQ: Not Available; Sales Focus: Primarily France (analyzing 13 million hectares of French forest) and global reach through agricultural, viticultural, and forestry parcel analysis."",""keyExecutives"":[{""name"":""Christophe Shaw"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""President""},{""name"":""Marion Carrier"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""Director of R&D and Datascience""},{""name"":""Antoine Roux"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""CTO""},{""name"":""Marie-Joseph Lambert"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""Administrator & Advisor""},{""name"":""Paul-Henry Cournède"",""sourceUrl"":""https://www.cybeletech.com/a-propos-de-nous"",""title"":""PhD - Director of Research, CentraleSupélec, Administrator & Advisor""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Cybeletech's core products revolve around its AI-powered iLander platform, which includes: \n- iLander Crop: An AI-based product leveraging satellite image analysis and mathematical modeling to analyze and anticipate crop development, optimize input use, detect anomalies, and forecast harvests with high-resolution agricultural diagnostics from parcel to country scale.\n- iLander Forêt: A forestry scanner that provides precise, up-to-date data on forest content and health, analyzing 13 million hectares of French forest, identifying tree species, diagnosing tree health, and tracking deterioration nearly in real-time, aiding forest management and wood valorization.\n- iLander ESG: Uses satellite imagery and AI to characterize agricultural, viticultural, and forestry parcels globally with 23 automated indicators updated every 5 days, supporting environmental commitments through detailed parcel-level insights."",""researcherNotes"":""The company headquarters address was not specifically listed on the website. No direct downloadable linked documents (PDF, DOCX) were found. The mission statement is implicitly inferred from company description and activities but no explicit text was provided."",""sectorDescription"":""Operates in the agriculture and forestry technology sector, focusing on environmental sustainability and climate change impact through AI-driven data analysis and digital twin platforms."",""sources"":{""clientCategories"":""https://www.cybeletech.com/a-propos-de-nous"",""companyDescription"":""https://www.cybeletech.com/a-propos-de-nous"",""geographicFocus"":null,""keyExecutives"":""https://www.cybeletech.com/a-propos-de-nous"",""productDescription"":""https://www.cybeletech.com/solution-agricole""},""websiteURL"":""https://www.cybeletech.com/""}" -Innovis,http://www.innovis.org.uk,Development Bank of Wales,innovis.org.uk,https://www.linkedin.com/company/innovis-breeding-sheep,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.innovis.org.uk"", - ""companyDescription"": ""Innovis is the leading supplier of sheep breeding technologies to the UK livestock industry; a young, dynamic and forward-thinking company passionate about making a difference. Their mission is 'To become the world leader in sheep breeding technologies.' Innovis focuses on sustainable UK sheep farming, generating maternal ram and terminal sheep breeds suited to modern sheep farmers' needs. Innovation is integral to their DNA."", - ""productDescription"": ""Innovis offers commercial services to sheep breeders across the UK including Genotyping and Backfat Scanning. They provide breeding products such as Maternal Rams, Meat Rams, and New Zealand Genetics. Their services and products include:\n- Commercial services (SNP Genotyping, Backfat Scanning)\n- Maternal Rams (Aberfield, Highlander)\n- Terminal Rams (Abermax, Primera)\n- New Zealand Genetics\nThese offerings support sustainable sheep farming and enhanced productivity."", - ""clientCategories"": [ - ""Commercial sheep breeders"", - ""Sheep farmers focused on sustainable farming"", - ""Farmers targeting improved lamb productivity on marginal or drought-prone land"", - ""Farmers seeking efficient and easy lambing outdoors"", - ""Farmers aiming for reduced labor costs and top carcass specifications at reduced cost"" - ], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in advanced sheep breeding technologies and genetic services for sustainable livestock farming in the UK."", - ""geographicFocus"": ""HQ: Peithyll, Capel Dewi, Aberystwyth, Mid Wales, UK; Sales Focus: UK livestock industry with services across the UK including a pig facility in Great Yarmouth, Norfolk."", - ""keyExecutives"": [ - { - ""name"": ""Dewi Jones"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.innovis.org.uk/sales-team/innovis-ceo/"" - }, - { - ""name"": ""Rosemary Davies"", - ""title"": ""Manages Scrapie Genotype Testing"", - ""sourceUrl"": ""https://www.innovis.org.uk/sales-team/head-office/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable documents such as PDFs or DOCs found on the website during deep scan. Some informational pages reference sale dates and programs but without direct file links."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innovis.org.uk/"", - ""productDescription"": ""https://www.innovis.org.uk/services/"", - ""clientCategories"": ""https://www.innovis.org.uk/breeding/"", - ""geographicFocus"": ""https://www.innovis.org.uk/contact/"", - ""keyExecutives"": ""https://www.innovis.org.uk/sales-team/innovis-ceo/"" - } -}","{ - ""websiteURL"": ""http://www.innovis.org.uk"", - ""companyDescription"": ""Innovis is the leading supplier of sheep breeding technologies to the UK livestock industry; a young, dynamic and forward-thinking company passionate about making a difference. Their mission is 'To become the world leader in sheep breeding technologies.' Innovis focuses on sustainable UK sheep farming, generating maternal ram and terminal sheep breeds suited to modern sheep farmers' needs. Innovation is integral to their DNA."", - ""productDescription"": ""Innovis offers commercial services to sheep breeders across the UK including Genotyping and Backfat Scanning. They provide breeding products such as Maternal Rams, Meat Rams, and New Zealand Genetics. Their services and products include:\n- Commercial services (SNP Genotyping, Backfat Scanning)\n- Maternal Rams (Aberfield, Highlander)\n- Terminal Rams (Abermax, Primera)\n- New Zealand Genetics\nThese offerings support sustainable sheep farming and enhanced productivity."", - ""clientCategories"": [ - ""Commercial sheep breeders"", - ""Sheep farmers focused on sustainable farming"", - ""Farmers targeting improved lamb productivity on marginal or drought-prone land"", - ""Farmers seeking efficient and easy lambing outdoors"", - ""Farmers aiming for reduced labor costs and top carcass specifications at reduced cost"" - ], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in advanced sheep breeding technologies and genetic services for sustainable livestock farming in the UK."", - ""geographicFocus"": ""HQ: Peithyll, Capel Dewi, Aberystwyth, Mid Wales, UK; Sales Focus: UK livestock industry with services across the UK including a pig facility in Great Yarmouth, Norfolk."", - ""keyExecutives"": [ - { - ""name"": ""Dewi Jones"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.innovis.org.uk/sales-team/innovis-ceo/"" - }, - { - ""name"": ""Rosemary Davies"", - ""title"": ""Manages Scrapie Genotype Testing"", - ""sourceUrl"": ""https://www.innovis.org.uk/sales-team/head-office/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable documents such as PDFs or DOCs found on the website during deep scan. Some informational pages reference sale dates and programs but without direct file links."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innovis.org.uk/"", - ""productDescription"": ""https://www.innovis.org.uk/services/"", - ""clientCategories"": ""https://www.innovis.org.uk/breeding/"", - ""geographicFocus"": ""https://www.innovis.org.uk/contact/"", - ""keyExecutives"": ""https://www.innovis.org.uk/sales-team/innovis-ceo/"" - } -}",[],"{ - ""websiteURL"": ""https://www.innovis.org.uk"", - ""companyDescription"": ""Innovis is the leading supplier of sheep breeding technologies to the UK livestock industry, established in 2004 as a spin-out from Aberystwyth University. The company is young, dynamic, and forward-thinking, focused on sustainable sheep farming by generating maternal and terminal sheep breeds suited to modern UK farmers' needs. Innovis is dedicated to innovation and aims to become the world leader in sheep breeding technologies, providing performance-recorded, forage-bred rams and commercial services to enhance profitability and sustainability."", - ""productDescription"": ""Innovis delivers a range of breeding products and commercial services to UK sheep breeders, including genotyping (SNP), backfat scanning, maternal and terminal rams (such as Aberfield, Highlander, Abermax, and Primera), and New Zealand genetics. Their offerings support sustainable sheep farming by improving lamb productivity, easy lambing outdoors, efficiency, and carcass quality at reduced costs, enabling sheep farmers to achieve better performance and profitability."", - ""clientCategories"": [ - ""Commercial Sheep Breeders"", - ""Sheep Farmers Focused on Sustainable Farming"", - ""Farmers Targeting Improved Lamb Productivity on Marginal or Drought-Prone Land"", - ""Farmers Seeking Efficient and Easy Lambing Outdoors"", - ""Farmers Aiming for Reduced Labor Costs and Top Carcass Specifications at Reduced Cost"" - ], - ""sectorDescription"": ""Agricultural biotechnology specializing in advanced sheep breeding technologies and genetic services for sustainable livestock farming in the UK."", - ""geographicFocus"": ""Primary focus on the UK livestock industry with headquarters in Peithyll, Capel Dewi, Aberystwyth, Mid Wales, and operations and sales services across the UK, including a pig facility in Great Yarmouth, Norfolk."", - ""keyExecutives"": [ - { - ""name"": ""Dewi Jones"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.innovis.org.uk/sales-team/innovis-ceo/"" - }, - { - ""name"": ""Rosemary Davies"", - ""title"": ""Manages Scrapie Genotype Testing"", - ""sourceUrl"": ""https://www.innovis.org.uk/sales-team/head-office/"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed via primary domain, headquarters location in Aberystwyth, and industry keywords. Company was established in 2004 as a spin-out from Aberystwyth University. No discrepancies found between company website and Companies House registry (Company number 05491202). Geographic focus clarified to cover UK livestock industry broadly, correcting minor ambiguity between registered office and operations. No senior leadership updates found on LinkedIn beyond company website listings."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.innovis.org.uk/"", - ""productDescription"": ""https://www.innovis.org.uk/services/"", - ""clientCategories"": ""https://www.innovis.org.uk/breeding/"", - ""geographicFocus"": ""https://www.innovis.org.uk/contact/"", - ""keyExecutives"": ""https://www.innovis.org.uk/sales-team/innovis-ceo/"" - } -}","{""clientCategories"":[""Commercial Sheep Breeders"",""Sheep Farmers Focused on Sustainable Farming"",""Farmers Targeting Improved Lamb Productivity on Marginal or Drought-Prone Land"",""Farmers Seeking Efficient and Easy Lambing Outdoors"",""Farmers Aiming for Reduced Labor Costs and Top Carcass Specifications at Reduced Cost""],""companyDescription"":""Innovis is the leading supplier of sheep breeding technologies to the UK livestock industry, established in 2004 as a spin-out from Aberystwyth University. The company is young, dynamic, and forward-thinking, focused on sustainable sheep farming by generating maternal and terminal sheep breeds suited to modern UK farmers' needs. Innovis is dedicated to innovation and aims to become the world leader in sheep breeding technologies, providing performance-recorded, forage-bred rams and commercial services to enhance profitability and sustainability."",""geographicFocus"":""Primary focus on the UK livestock industry with headquarters in Peithyll, Capel Dewi, Aberystwyth, Mid Wales, and operations and sales services across the UK, including a pig facility in Great Yarmouth, Norfolk."",""keyExecutives"":[{""name"":""Dewi Jones"",""sourceUrl"":""https://www.innovis.org.uk/sales-team/innovis-ceo/"",""title"":""CEO""},{""name"":""Rosemary Davies"",""sourceUrl"":""https://www.innovis.org.uk/sales-team/head-office/"",""title"":""Manages Scrapie Genotype Testing""}],""missingImportantFields"":[],""productDescription"":""Innovis delivers a range of breeding products and commercial services to UK sheep breeders, including genotyping (SNP), backfat scanning, maternal and terminal rams (such as Aberfield, Highlander, Abermax, and Primera), and New Zealand genetics. Their offerings support sustainable sheep farming by improving lamb productivity, easy lambing outdoors, efficiency, and carcass quality at reduced costs, enabling sheep farmers to achieve better performance and profitability."",""researcherNotes"":""Entity disambiguation confirmed via primary domain, headquarters location in Aberystwyth, and industry keywords. Company was established in 2004 as a spin-out from Aberystwyth University. No discrepancies found between company website and Companies House registry (Company number 05491202). Geographic focus clarified to cover UK livestock industry broadly, correcting minor ambiguity between registered office and operations. No senior leadership updates found on LinkedIn beyond company website listings."",""sectorDescription"":""Agricultural biotechnology specializing in advanced sheep breeding technologies and genetic services for sustainable livestock farming in the UK."",""sources"":{""clientCategories"":""https://www.innovis.org.uk/breeding/"",""companyDescription"":""https://www.innovis.org.uk/"",""geographicFocus"":""https://www.innovis.org.uk/contact/"",""keyExecutives"":""https://www.innovis.org.uk/sales-team/innovis-ceo/"",""productDescription"":""https://www.innovis.org.uk/services/""},""websiteURL"":""https://www.innovis.org.uk""}","Correctness: 95% Completeness: 90% The description of Innovis as a leading UK sheep breeding technology supplier, established in 2004 as a spin-out from Aberystwyth University, is corroborated by multiple sources, including the company's official site and a sector case study confirming their focus on maternal and terminal breeding lines suited to modern UK farmers' needs[1][2]. The company’s headquarters in Aberystwyth, Mid Wales, with broader UK operational presence including a pig facility in Norfolk, is confirmed by Innovis official contact details[2]. Key executives such as Dewi Jones (CEO) and Rosemary Davies (Scrapie Testing Head) are listed on Innovis’s official website, confirming leadership accuracy[2]. The product range cited, including genotyping, maternal and terminal rams (Aberfield, Highlander, Abermax, Primera), and New Zealand genetics collaborations, aligns with the company’s publicly stated offerings supporting improved lamb productivity, sustainable farming, and cost efficiencies[2][5]. The company’s focus on sustainable sheep farming with data-driven breeding and commercial services is well supported[1][4]. Minor discrepancies relate to geographic footprint specifics; while the narrative emphasizes ""operations and sales across the UK,"" Innovis’s facilities also include locations in Malvern, Edinburgh, and Belfast, which could be clarified for completeness[2]. Also, the pig facility in Great Yarmouth is specifically noted as one of two pig facilities (the other is in Shropshire), which may enrich geographic completeness. Overall, the factual claims are well-supported by primary company sources and independent profiles, with some room for additional detail on full geographic coverage and facility distribution for completeness. Relevant sources include Innovis official pages: https://www.innovis.org.uk/, https://www.innovis.org.uk/contact/, https://www.innovis.org.uk/sales-team/innovis-ceo/, and the Scottish Land & Estates case study https://www.scottishlandandestates.co.uk/helping-it-happen/case-studies/innovis plus news on genetics collaboration https://www.nzherald.co.nz/waikato-news/news/rural-kiwi-firm-signs-big-uk-genetics-deal/FAX5BUR7AY7LRNZQ67YZQIXENU/.","{""clientCategories"":[""Commercial sheep breeders"",""Sheep farmers focused on sustainable farming"",""Farmers targeting improved lamb productivity on marginal or drought-prone land"",""Farmers seeking efficient and easy lambing outdoors"",""Farmers aiming for reduced labor costs and top carcass specifications at reduced cost""],""companyDescription"":""Innovis is the leading supplier of sheep breeding technologies to the UK livestock industry; a young, dynamic and forward-thinking company passionate about making a difference. Their mission is 'To become the world leader in sheep breeding technologies.' Innovis focuses on sustainable UK sheep farming, generating maternal ram and terminal sheep breeds suited to modern sheep farmers' needs. Innovation is integral to their DNA."",""geographicFocus"":""HQ: Peithyll, Capel Dewi, Aberystwyth, Mid Wales, UK; Sales Focus: UK livestock industry with services across the UK including a pig facility in Great Yarmouth, Norfolk."",""keyExecutives"":[{""name"":""Dewi Jones"",""sourceUrl"":""https://www.innovis.org.uk/sales-team/innovis-ceo/"",""title"":""CEO""},{""name"":""Rosemary Davies"",""sourceUrl"":""https://www.innovis.org.uk/sales-team/head-office/"",""title"":""Manages Scrapie Genotype Testing""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Innovis offers commercial services to sheep breeders across the UK including Genotyping and Backfat Scanning. They provide breeding products such as Maternal Rams, Meat Rams, and New Zealand Genetics. Their services and products include:\n- Commercial services (SNP Genotyping, Backfat Scanning)\n- Maternal Rams (Aberfield, Highlander)\n- Terminal Rams (Abermax, Primera)\n- New Zealand Genetics\nThese offerings support sustainable sheep farming and enhanced productivity."",""researcherNotes"":""No direct downloadable documents such as PDFs or DOCs found on the website during deep scan. Some informational pages reference sale dates and programs but without direct file links."",""sectorDescription"":""Operates in the agricultural biotechnology sector, specializing in advanced sheep breeding technologies and genetic services for sustainable livestock farming in the UK."",""sources"":{""clientCategories"":""https://www.innovis.org.uk/breeding/"",""companyDescription"":""https://www.innovis.org.uk/"",""geographicFocus"":""https://www.innovis.org.uk/contact/"",""keyExecutives"":""https://www.innovis.org.uk/sales-team/innovis-ceo/"",""productDescription"":""https://www.innovis.org.uk/services/""},""websiteURL"":""http://www.innovis.org.uk""}" -InnovaFeed,http://innovafeed.com,"Creadev, Temasek Holdings",innovafeed.com,https://www.linkedin.com/company/innovafeed,"{""seniorLeadership"":[{""name"":""Clément Ray"",""title"":""CEO""},{""name"":""Aude Guo"",""title"":""Executive Director""},{""name"":""Bastien Oggeri"",""title"":""Executive Director""},{""name"":""Yves Amsellem"",""title"":""Chief Operating Officer – Acting as VP Engineering""},{""name"":""Jérémie Ruthmann"",""title"":""VP Nesle & Gouzeaucourt Site Operations""},{""name"":""Audrey Schuller"",""title"":""VP Industrial Projects, Methods and Performance""},{""name"":""Jean-Philippe Gross"",""title"":""Chief Information Officer""},{""name"":""Emmanuel Mernier"",""title"":""Chief Technology Officer""},{""name"":""Marie-Florence d'Arras"",""title"":""VP Insect Science""},{""name"":""Elizaveta Le Floch"",""title"":""Chief Business Officer""},{""name"":""Nicolas Regost"",""title"":""VP Product Development""},{""name"":""Mathilde Andrier"",""title"":""VP Industrial Deployment""},{""name"":""Clément Tiret"",""title"":""Chief Financial Officer""},{""name"":""Sophie Delplancke"",""title"":""General Secretary""},{""name"":""Maye Walraven"",""title"":""North American General Manager & Chief Impact Officer""}]}","{""seniorLeadership"":[{""name"":""Clément Ray"",""title"":""CEO""},{""name"":""Aude Guo"",""title"":""Executive Director""},{""name"":""Bastien Oggeri"",""title"":""Executive Director""},{""name"":""Yves Amsellem"",""title"":""Chief Operating Officer – Acting as VP Engineering""},{""name"":""Jérémie Ruthmann"",""title"":""VP Nesle & Gouzeaucourt Site Operations""},{""name"":""Audrey Schuller"",""title"":""VP Industrial Projects, Methods and Performance""},{""name"":""Jean-Philippe Gross"",""title"":""Chief Information Officer""},{""name"":""Emmanuel Mernier"",""title"":""Chief Technology Officer""},{""name"":""Marie-Florence d'Arras"",""title"":""VP Insect Science""},{""name"":""Elizaveta Le Floch"",""title"":""Chief Business Officer""},{""name"":""Nicolas Regost"",""title"":""VP Product Development""},{""name"":""Mathilde Andrier"",""title"":""VP Industrial Deployment""},{""name"":""Clément Tiret"",""title"":""Chief Financial Officer""},{""name"":""Sophie Delplancke"",""title"":""General Secretary""},{""name"":""Maye Walraven"",""title"":""North American General Manager & Chief Impact Officer""}]}","{ - ""websiteURL"": ""http://innovafeed.com"", - ""companyDescription"": ""Innovafeed is a biotechnology company and a leading insect producer for animal and plant nutrition. Their proprietary breakthrough technology returns the insect Hermetia Illucens to the heart of the food chain. Innovafeed's mission is to build the sustainable food system of tomorrow. They focus on building a pioneering agro-industrial value chain and offer sustainable and performant animal and plant nutrition products. Innovafeed produces sustainable insect-based ingredients (Hermetia illucens) for animal and plant nutrition, employing a circular, zero-waste agro-food system inspired by natural insect roles. They have the world\u0027s largest insect production capacity with two sites producing over 100,000 tons of ingredients per year, focusing on environmental performance and sustainability. The company develops a circular, large-scale production model that reduces carbon footprint by 80%, avoiding fossil energy use. It raised 290 million euros in 2022 and expanded to the US with ADM. Innovafeed is B Corp certified, emphasizing R&D, reindustrialization, and environmental impact."", - ""productDescription"": ""Innovafeed offers the following core products: - Hilucia\u2122 PROTEIN: insect protein for aqua and pets as an alternative to fish flour. - Hilucia\u2122 OIL: insect oil for poultry, swine, and pets as an alternative to palm/soy oils. - Hilucia\u2122 FRASS: insect dejections used as organic fertilizer for plants with proven efficacy. Their industrial-scale production uses AI, robotics, and industrial symbiosis to reduce carbon footprints and energy consumption."", - ""clientCategories"": [""Aquaculture"", ""Poultry Farming"", ""Swine Farming"", ""Pet Food Industry"", ""Agriculture and Plant Nutrition""], - ""sectorDescription"": ""Operates in the biotechnology and agro-industry sector specializing in sustainable insect protein production for animal feed and plant nutrition."", - ""geographicFocus"": ""HQ: Paris, France; Production Sites: Nesle and Gouzeaucourt, France; Sales Focus: Europe and United States."", - ""keyExecutives"": [ - {""name"": ""Clement Ray"", ""title"": ""CEO, Co-founder"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Aude Guo"", ""title"": ""Executive Director, Co-founder"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Bastien Oggeri"", ""title"": ""Executive Director, Co-founder"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Yves Amsellem"", ""title"": ""Chief Operating Officer, VP Engineering"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Jean-Philippe Gross"", ""title"": ""Chief Information Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Emmanuel Mernier"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Elizaveta Le Floch"", ""title"": ""Chief Business Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Clement Tiret"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""} - ], - ""linkedDocuments"": [ - ""https://innovafeed.com/wp-content/uploads/2023/02/CP_NEXT40.pdf"", - ""https://innovafeed.com/wp-content/uploads/2022/03/20220321_Innovafeed_branding_CP.pdf"", - ""https://innovafeed.com/wp-content/uploads/2023/04/Press_Release_Nesle_Inauguration_-_Innovafeed.pdf"", - ""https://innovafeed.com/wp-content/uploads/2023/01/Press-kit_Innovafeed_2021.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://innovafeed.com/en/"", - ""productDescription"": ""https://innovafeed.com/en/products/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://innovafeed.com/en/contact/"", - ""keyExecutives"": ""https://innovafeed.com/en/our-team/"" - } -}","{ - ""websiteURL"": ""http://innovafeed.com"", - ""companyDescription"": ""Innovafeed is a biotechnology company and a leading insect producer for animal and plant nutrition. Their proprietary breakthrough technology returns the insect Hermetia Illucens to the heart of the food chain. Innovafeed's mission is to build the sustainable food system of tomorrow. They focus on building a pioneering agro-industrial value chain and offer sustainable and performant animal and plant nutrition products. Innovafeed produces sustainable insect-based ingredients (Hermetia illucens) for animal and plant nutrition, employing a circular, zero-waste agro-food system inspired by natural insect roles. They have the world\u0027s largest insect production capacity with two sites producing over 100,000 tons of ingredients per year, focusing on environmental performance and sustainability. The company develops a circular, large-scale production model that reduces carbon footprint by 80%, avoiding fossil energy use. It raised 290 million euros in 2022 and expanded to the US with ADM. Innovafeed is B Corp certified, emphasizing R&D, reindustrialization, and environmental impact."", - ""productDescription"": ""Innovafeed offers the following core products: - Hilucia\u2122 PROTEIN: insect protein for aqua and pets as an alternative to fish flour. - Hilucia\u2122 OIL: insect oil for poultry, swine, and pets as an alternative to palm/soy oils. - Hilucia\u2122 FRASS: insect dejections used as organic fertilizer for plants with proven efficacy. Their industrial-scale production uses AI, robotics, and industrial symbiosis to reduce carbon footprints and energy consumption."", - ""clientCategories"": [""Aquaculture"", ""Poultry Farming"", ""Swine Farming"", ""Pet Food Industry"", ""Agriculture and Plant Nutrition""], - ""sectorDescription"": ""Operates in the biotechnology and agro-industry sector specializing in sustainable insect protein production for animal feed and plant nutrition."", - ""geographicFocus"": ""HQ: Paris, France; Production Sites: Nesle and Gouzeaucourt, France; Sales Focus: Europe and United States."", - ""keyExecutives"": [ - {""name"": ""Clement Ray"", ""title"": ""CEO, Co-founder"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Aude Guo"", ""title"": ""Executive Director, Co-founder"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Bastien Oggeri"", ""title"": ""Executive Director, Co-founder"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Yves Amsellem"", ""title"": ""Chief Operating Officer, VP Engineering"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Jean-Philippe Gross"", ""title"": ""Chief Information Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Emmanuel Mernier"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Elizaveta Le Floch"", ""title"": ""Chief Business Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""}, - {""name"": ""Clement Tiret"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://innovafeed.com/en/our-team/""} - ], - ""linkedDocuments"": [ - ""https://innovafeed.com/wp-content/uploads/2023/02/CP_NEXT40.pdf"", - ""https://innovafeed.com/wp-content/uploads/2022/03/20220321_Innovafeed_branding_CP.pdf"", - ""https://innovafeed.com/wp-content/uploads/2023/04/Press_Release_Nesle_Inauguration_-_Innovafeed.pdf"", - ""https://innovafeed.com/wp-content/uploads/2023/01/Press-kit_Innovafeed_2021.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://innovafeed.com/en/"", - ""productDescription"": ""https://innovafeed.com/en/products/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://innovafeed.com/en/contact/"", - ""keyExecutives"": ""https://innovafeed.com/en/our-team/"" - } -}",[],"{ - ""websiteURL"": ""https://innovafeed.com"", - ""companyDescription"": ""Innovafeed is a biotechnology company and a leading insect producer for animal and plant nutrition. Their proprietary breakthrough technology returns the insect Hermetia Illucens to the heart of the food chain. Innovafeed's mission is to build the sustainable food system of tomorrow. They focus on building a pioneering agro-industrial value chain and offer sustainable and performant animal and plant nutrition products. Innovafeed produces sustainable insect-based ingredients (Hermetia illucens) for animal and plant nutrition, employing a circular, zero-waste agro-food system inspired by natural insect roles. They have the world’s largest insect production capacity with two sites producing over 100,000 tons of ingredients per year, focusing on environmental performance and sustainability. The company develops a circular, large-scale production model that reduces carbon footprint by 80%, avoiding fossil energy use. It raised 290 million euros in 2022 and expanded to the US with ADM. Innovafeed is B Corp certified, emphasizing R&D, reindustrialization, and environmental impact."", - ""productDescription"": ""Innovafeed offers the following core products: - Hilucia™ PROTEIN: insect protein for aqua and pets as an alternative to fish flour. - Hilucia™ OIL: insect oil for poultry, swine, and pets as an alternative to palm/soy oils. - Hilucia™ FRASS: insect dejections used as organic fertilizer for plants with proven efficacy. Their industrial-scale production uses AI, robotics, and industrial symbiosis to reduce carbon footprints and energy consumption."", - ""clientCategories"": [ - ""Aquaculture"", - ""Poultry Farming"", - ""Swine Farming"", - ""Pet Food Industry"", - ""Agriculture and Plant Nutrition"" - ], - ""sectorDescription"": ""Operates in the biotechnology and agro-industry sector specializing in sustainable insect protein production for animal feed and plant nutrition."", - ""geographicFocus"": ""Headquartered in Paris, France, Innovafeed operates production sites in Nesle and Gouzeaucourt, France, with a primary sales focus on Europe and the United States, including a significant expansion with a facility in Decatur, Illinois."", - ""keyExecutives"": [ - { - ""name"": ""Clément Ray"", - ""title"": ""CEO, Co-founder"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Aude Guo"", - ""title"": ""Executive Director, Co-founder"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Bastien Oggeri"", - ""title"": ""Executive Director, Co-founder"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Yves Amsellem"", - ""title"": ""Chief Operating Officer, VP Engineering"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Jérémie Ruthmann"", - ""title"": ""VP Nesle & Gouzeaucourt Site Operations"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - }, - { - ""name"": ""Audrey Schuller"", - ""title"": ""VP Industrial Projects, Methods and Performance"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - }, - { - ""name"": ""Jean-Philippe Gross"", - ""title"": ""Chief Information Officer"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Emmanuel Mernier"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Marie-Florence d'Arras"", - ""title"": ""VP Insect Science"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - }, - { - ""name"": ""Elizaveta Le Floch"", - ""title"": ""Chief Business Officer"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Nicolas Regost"", - ""title"": ""VP Product Development"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - }, - { - ""name"": ""Mathilde Andrier"", - ""title"": ""VP Industrial Deployment"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - }, - { - ""name"": ""Clément Tiret"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://innovafeed.com/en/our-team/"" - }, - { - ""name"": ""Sophie Delplancke"", - ""title"": ""General Secretary"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - }, - { - ""name"": ""Maye Walraven"", - ""title"": ""North American General Manager & Chief Impact Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/innovafeed/"" - } - ], - ""researcherNotes"": ""The company profile was confirmed through matching the domain innovafeed.com, headquarters in Paris, and distinctive product focus on sustainable insect protein. The geographic footprint was expanded to mention the Decatur, Illinois US site, verified from press releases and company news. The leadership team was supplemented using the official company leadership page and cross-verified with LinkedIn profiles for additional VP roles. No significant conflicts were identified."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://innovafeed.com/en/"", - ""productDescription"": ""https://innovafeed.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://innovafeed.com/en/contact/"", - ""keyExecutives"": ""https://innovafeed.com/en/our-team/"" - } -}","{""clientCategories"":[""Aquaculture"",""Poultry Farming"",""Swine Farming"",""Pet Food Industry"",""Agriculture and Plant Nutrition""],""companyDescription"":""Innovafeed is a biotechnology company and a leading insect producer for animal and plant nutrition. Their proprietary breakthrough technology returns the insect Hermetia Illucens to the heart of the food chain. Innovafeed's mission is to build the sustainable food system of tomorrow. They focus on building a pioneering agro-industrial value chain and offer sustainable and performant animal and plant nutrition products. Innovafeed produces sustainable insect-based ingredients (Hermetia illucens) for animal and plant nutrition, employing a circular, zero-waste agro-food system inspired by natural insect roles. They have the world’s largest insect production capacity with two sites producing over 100,000 tons of ingredients per year, focusing on environmental performance and sustainability. The company develops a circular, large-scale production model that reduces carbon footprint by 80%, avoiding fossil energy use. It raised 290 million euros in 2022 and expanded to the US with ADM. Innovafeed is B Corp certified, emphasizing R&D, reindustrialization, and environmental impact."",""geographicFocus"":""Headquartered in Paris, France, Innovafeed operates production sites in Nesle and Gouzeaucourt, France, with a primary sales focus on Europe and the United States, including a significant expansion with a facility in Decatur, Illinois."",""keyExecutives"":[{""name"":""Clément Ray"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""CEO, Co-founder""},{""name"":""Aude Guo"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Executive Director, Co-founder""},{""name"":""Bastien Oggeri"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Executive Director, Co-founder""},{""name"":""Yves Amsellem"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Operating Officer, VP Engineering""},{""name"":""Jérémie Ruthmann"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""VP Nesle & Gouzeaucourt Site Operations""},{""name"":""Audrey Schuller"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""VP Industrial Projects, Methods and Performance""},{""name"":""Jean-Philippe Gross"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Information Officer""},{""name"":""Emmanuel Mernier"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Technology Officer""},{""name"":""Marie-Florence d'Arras"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""VP Insect Science""},{""name"":""Elizaveta Le Floch"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Business Officer""},{""name"":""Nicolas Regost"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""VP Product Development""},{""name"":""Mathilde Andrier"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""VP Industrial Deployment""},{""name"":""Clément Tiret"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Financial Officer""},{""name"":""Sophie Delplancke"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""General Secretary""},{""name"":""Maye Walraven"",""sourceUrl"":""https://www.linkedin.com/company/innovafeed/"",""title"":""North American General Manager & Chief Impact Officer""}],""missingImportantFields"":[],""productDescription"":""Innovafeed offers the following core products: - Hilucia™ PROTEIN: insect protein for aqua and pets as an alternative to fish flour. - Hilucia™ OIL: insect oil for poultry, swine, and pets as an alternative to palm/soy oils. - Hilucia™ FRASS: insect dejections used as organic fertilizer for plants with proven efficacy. Their industrial-scale production uses AI, robotics, and industrial symbiosis to reduce carbon footprints and energy consumption."",""researcherNotes"":""The company profile was confirmed through matching the domain innovafeed.com, headquarters in Paris, and distinctive product focus on sustainable insect protein. The geographic footprint was expanded to mention the Decatur, Illinois US site, verified from press releases and company news. The leadership team was supplemented using the official company leadership page and cross-verified with LinkedIn profiles for additional VP roles. No significant conflicts were identified."",""sectorDescription"":""Operates in the biotechnology and agro-industry sector specializing in sustainable insect protein production for animal feed and plant nutrition."",""sources"":{""clientCategories"":null,""companyDescription"":""https://innovafeed.com/en/"",""geographicFocus"":""https://innovafeed.com/en/contact/"",""keyExecutives"":""https://innovafeed.com/en/our-team/"",""productDescription"":""https://innovafeed.com/en/products/""},""websiteURL"":""https://innovafeed.com""}","Correctness: 98% Completeness: 95% The company description and details provided are largely accurate and well-supported by multiple authoritative sources. Innovafeed is confirmed as a Paris-headquartered biotechnology company specializing in insect protein production using Hermetia illucens, focusing on sustainable animal and plant nutrition, with a circular, zero-waste process and strong environmental performance goals[1][2][4][5]. Its largest production sites are in Nesle and Gouzeaucourt, France, and it has expanded to the U.S., with a pilot innovation center and planned large-scale facility at Decatur, Illinois, co-located with ADM's corn processing complex[2][3][5]. The leadership team matches official company pages, with Clément Ray as CEO and Maye Walraven managing North American operations[4][5]. Product lines including Hilucia™ PROTEIN, OIL, and FRASS are consistent with Innovafeed’s offerings leveraging insect-based proteins, oils, and organic fertilizers for various animal feeds and agriculture[4]. Funding is noted as 290 million euros raised by 2022, aligning with known investment rounds including significant investments from Creadev and Temasek by late 2023[2]. The plant expansions, production capacities (over 100,000 tons annually at multiple sites), and environmental claims (e.g., carbon footprint reduction by 80%) align with company disclosures and third-party coverage[1][2][5]. Minor gaps include the absence of the exact founding year (2016 is mentioned in sources), and some named VPs and executive titles were verified mostly from the company’s website and LinkedIn but without regulatory filings. Overall, the factual profile is precise and complete for the relevant time frame confirmed as of 2025-09-11. https://innovafeed.com/en/ https://www.petfoodprocessing.net/articles/18384-innovafeed-expands-insect-facility https://www.feedinfo.com/our-content/interview-innovafeed-sheds-light-on-present-and-future-expansion-plans/215392 https://innovafeed.com/en/our-story/ https://www.agtechnavigator.com/Article/2024/05/02/innovafeed-looks-to-expand-insect-protein-production-in-us/","{""clientCategories"":[""Aquaculture"",""Poultry Farming"",""Swine Farming"",""Pet Food Industry"",""Agriculture and Plant Nutrition""],""companyDescription"":""Innovafeed is a biotechnology company and a leading insect producer for animal and plant nutrition. Their proprietary breakthrough technology returns the insect Hermetia Illucens to the heart of the food chain. Innovafeed's mission is to build the sustainable food system of tomorrow. They focus on building a pioneering agro-industrial value chain and offer sustainable and performant animal and plant nutrition products. Innovafeed produces sustainable insect-based ingredients (Hermetia illucens) for animal and plant nutrition, employing a circular, zero-waste agro-food system inspired by natural insect roles. They have the world's largest insect production capacity with two sites producing over 100,000 tons of ingredients per year, focusing on environmental performance and sustainability. The company develops a circular, large-scale production model that reduces carbon footprint by 80%, avoiding fossil energy use. It raised 290 million euros in 2022 and expanded to the US with ADM. Innovafeed is B Corp certified, emphasizing R&D, reindustrialization, and environmental impact."",""geographicFocus"":""HQ: Paris, France; Production Sites: Nesle and Gouzeaucourt, France; Sales Focus: Europe and United States."",""keyExecutives"":[{""name"":""Clement Ray"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""CEO, Co-founder""},{""name"":""Aude Guo"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Executive Director, Co-founder""},{""name"":""Bastien Oggeri"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Executive Director, Co-founder""},{""name"":""Yves Amsellem"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Operating Officer, VP Engineering""},{""name"":""Jean-Philippe Gross"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Information Officer""},{""name"":""Emmanuel Mernier"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Technology Officer""},{""name"":""Elizaveta Le Floch"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Business Officer""},{""name"":""Clement Tiret"",""sourceUrl"":""https://innovafeed.com/en/our-team/"",""title"":""Chief Financial Officer""}],""linkedDocuments"":[""https://innovafeed.com/wp-content/uploads/2023/02/CP_NEXT40.pdf"",""https://innovafeed.com/wp-content/uploads/2022/03/20220321_Innovafeed_branding_CP.pdf"",""https://innovafeed.com/wp-content/uploads/2023/04/Press_Release_Nesle_Inauguration_-_Innovafeed.pdf"",""https://innovafeed.com/wp-content/uploads/2023/01/Press-kit_Innovafeed_2021.pdf""],""missingImportantFields"":[],""productDescription"":""Innovafeed offers the following core products: - Hilucia™ PROTEIN: insect protein for aqua and pets as an alternative to fish flour. - Hilucia™ OIL: insect oil for poultry, swine, and pets as an alternative to palm/soy oils. - Hilucia™ FRASS: insect dejections used as organic fertilizer for plants with proven efficacy. Their industrial-scale production uses AI, robotics, and industrial symbiosis to reduce carbon footprints and energy consumption."",""researcherNotes"":null,""sectorDescription"":""Operates in the biotechnology and agro-industry sector specializing in sustainable insect protein production for animal feed and plant nutrition."",""sources"":{""clientCategories"":""Not Available"",""companyDescription"":""https://innovafeed.com/en/"",""geographicFocus"":""https://innovafeed.com/en/contact/"",""keyExecutives"":""https://innovafeed.com/en/our-team/"",""productDescription"":""https://innovafeed.com/en/products/""},""websiteURL"":""http://innovafeed.com""}" -UV Boosting,http://www.uvboosting.com/contactez-nous/,Investisseurs privés,uvboosting.com,https://www.linkedin.com/company/uv-boosting/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.uvboosting.com/contactez-nous/"", - ""companyDescription"": ""UV Boosting is the world leader in plant care using light flashes technology. The company designs equipment that stimulates plants' natural defenses via UV-C flashes, boosting their resistance to pathogens, frost, and water stress, reducing the need for phytosanitary products and helping crops withstand climate change. Established in 2016 from research collaboration between the University of Avignon and Technofounders, with first patent filed in 2015 by researchers Laurent Urban and Jawad Aarrouf. UV Boosting continues to innovate, having launched products for vineyards in 2020, serving users in over 8 countries, and developing equipment for strawberries, orchards, and turf. Co-founder Yves Matton emphasizes adapting technology to growers' protection strategies to reduce inputs and improve crop protection."", - ""productDescription"": ""UV Boosting provides UV-C light technology equipment to stimulate plants' natural defense mechanisms against pathogens and environmental stress. Their main products include:\n- Helios Vigne for vineyards to combat mildew\n- Helios Gazon for turf disease resistance and visual quality\n- Helios Verger for orchard protection against powdery mildew and travelures\n- Helios Fraise for above-ground strawberries protection. These products help reduce synthetic fungicide use, are residue-free, weather independent, and allow immediate harvest after application."", - ""clientCategories"": [""Vineyard owners"", ""Wine producers"", ""Strawberry farmers"", ""Turf management"", ""Orchard growers""], - ""sectorDescription"": ""Operates in the agricultural technology sector, specializing in UV-C light technology equipment that enhances plant health and resistance to diseases and environmental stresses in crops."", - ""geographicFocus"": ""HQ: Ferme horticole Théart, Chemin des quarante arpents, 78860 Saint-Nom-la-Bretèche, France; Sales Focus: Serving users in over 8 countries (specific regions not detailed)"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website provided extensive information about company mission, products, client categories, and headquarters. However, no specific named key executives or founders besides co-founder Yves Matton mentioned, and no direct linked document files were found. Sales regions are broadly referenced but not explicitly detailed."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://uvboosting.com/notre-entreprise-f"", - ""productDescription"": ""https://uvboosting.com/produits"", - ""clientCategories"": ""https://uvboosting.com/nos-clientele/"", - ""geographicFocus"": ""http://www.uvboosting.com/contactez-nous/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.uvboosting.com/contactez-nous/"", - ""companyDescription"": ""UV Boosting is the world leader in plant care using light flashes technology. The company designs equipment that stimulates plants' natural defenses via UV-C flashes, boosting their resistance to pathogens, frost, and water stress, reducing the need for phytosanitary products and helping crops withstand climate change. Established in 2016 from research collaboration between the University of Avignon and Technofounders, with first patent filed in 2015 by researchers Laurent Urban and Jawad Aarrouf. UV Boosting continues to innovate, having launched products for vineyards in 2020, serving users in over 8 countries, and developing equipment for strawberries, orchards, and turf. Co-founder Yves Matton emphasizes adapting technology to growers' protection strategies to reduce inputs and improve crop protection."", - ""productDescription"": ""UV Boosting provides UV-C light technology equipment to stimulate plants' natural defense mechanisms against pathogens and environmental stress. Their main products include:\n- Helios Vigne for vineyards to combat mildew\n- Helios Gazon for turf disease resistance and visual quality\n- Helios Verger for orchard protection against powdery mildew and travelures\n- Helios Fraise for above-ground strawberries protection. These products help reduce synthetic fungicide use, are residue-free, weather independent, and allow immediate harvest after application."", - ""clientCategories"": [""Vineyard owners"", ""Wine producers"", ""Strawberry farmers"", ""Turf management"", ""Orchard growers""], - ""sectorDescription"": ""Operates in the agricultural technology sector, specializing in UV-C light technology equipment that enhances plant health and resistance to diseases and environmental stresses in crops."", - ""geographicFocus"": ""HQ: Ferme horticole Théart, Chemin des quarante arpents, 78860 Saint-Nom-la-Bretèche, France; Sales Focus: Serving users in over 8 countries (specific regions not detailed)"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website provided extensive information about company mission, products, client categories, and headquarters. However, no specific named key executives or founders besides co-founder Yves Matton mentioned, and no direct linked document files were found. Sales regions are broadly referenced but not explicitly detailed."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://uvboosting.com/notre-entreprise-f"", - ""productDescription"": ""https://uvboosting.com/produits"", - ""clientCategories"": ""https://uvboosting.com/nos-clientele/"", - ""geographicFocus"": ""http://www.uvboosting.com/contactez-nous/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://uvboosting.com"", - ""companyDescription"": ""UV Boosting is the world leader in plant care using light flashes technology. The company designs equipment that stimulates plants' natural defenses via UV-C flashes, boosting their resistance to pathogens, frost, and water stress. This approach reduces the need for phytosanitary products and helps crops withstand climate change. Founded in 2016 from research collaboration between the University of Avignon and Technofounders, UV Boosting has launched products primarily for vineyards, serving users in over 8 countries and expanding into other crops like strawberries, orchards, and turf."", - ""productDescription"": ""UV Boosting provides UV-C light technology equipment that stimulates plants' natural defense mechanisms against pathogens and environmental stress. Their main products include Helios Vigne for vineyards targeting mildew, Helios Gazon for turf disease resistance and quality, Helios Verger for orchard protection against powdery mildew and travelures, and Helios Fraise for protecting above-ground strawberries. These products help reduce synthetic fungicide use, are residue-free, weather independent, and allow immediate harvest after application."", - ""clientCategories"": [ - ""Vineyard Owners"", - ""Wine Producers"", - ""Strawberry Farmers"", - ""Turf Management"", - ""Orchard Growers"" - ], - ""sectorDescription"": ""Operates in the agricultural technology sector, specializing in UV-C light equipment that enhances plant health and resistance to diseases and environmental stresses in crops."", - ""geographicFocus"": ""Headquartered in Saint-Nom-la-Bretèche, France; serves users in over 8 countries internationally, with specific sales regions not detailed."", - ""keyExecutives"": [], - ""researcherNotes"": ""No senior leadership names or titles were found on the company website or LinkedIn page. The company is clearly identified by domain, HQ city (Saint-Nom-la-Bretèche, France), and founding timeline. Geographic focus is broadly international but lacks precise regional detail. Sources do not provide listed key executives beyond co-founder Yves Matton mentioned informally without exact title or official profile."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://uvboosting.com/notre-entreprise-f"", - ""productDescription"": ""https://uvboosting.com/produits"", - ""clientCategories"": ""https://uvboosting.com/nos-clientele/"", - ""geographicFocus"": ""http://www.uvboosting.com/contactez-nous/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Vineyard Owners"",""Wine Producers"",""Strawberry Farmers"",""Turf Management"",""Orchard Growers""],""companyDescription"":""UV Boosting is the world leader in plant care using light flashes technology. The company designs equipment that stimulates plants' natural defenses via UV-C flashes, boosting their resistance to pathogens, frost, and water stress. This approach reduces the need for phytosanitary products and helps crops withstand climate change. Founded in 2016 from research collaboration between the University of Avignon and Technofounders, UV Boosting has launched products primarily for vineyards, serving users in over 8 countries and expanding into other crops like strawberries, orchards, and turf."",""geographicFocus"":""Headquartered in Saint-Nom-la-Bretèche, France; serves users in over 8 countries internationally, with specific sales regions not detailed."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""UV Boosting provides UV-C light technology equipment that stimulates plants' natural defense mechanisms against pathogens and environmental stress. Their main products include Helios Vigne for vineyards targeting mildew, Helios Gazon for turf disease resistance and quality, Helios Verger for orchard protection against powdery mildew and travelures, and Helios Fraise for protecting above-ground strawberries. These products help reduce synthetic fungicide use, are residue-free, weather independent, and allow immediate harvest after application."",""researcherNotes"":""No senior leadership names or titles were found on the company website or LinkedIn page. The company is clearly identified by domain, HQ city (Saint-Nom-la-Bretèche, France), and founding timeline. Geographic focus is broadly international but lacks precise regional detail. Sources do not provide listed key executives beyond co-founder Yves Matton mentioned informally without exact title or official profile."",""sectorDescription"":""Operates in the agricultural technology sector, specializing in UV-C light equipment that enhances plant health and resistance to diseases and environmental stresses in crops."",""sources"":{""clientCategories"":""https://uvboosting.com/nos-clientele/"",""companyDescription"":""https://uvboosting.com/notre-entreprise-f"",""geographicFocus"":""http://www.uvboosting.com/contactez-nous/"",""keyExecutives"":null,""productDescription"":""https://uvboosting.com/produits""},""websiteURL"":""https://uvboosting.com""}","Correctness: 95% Completeness: 85% The core factual details provided are largely accurate and supported by multiple official sources. UV Boosting is indeed a French company, headquartered in Saint-Nom-la-Bretèche, founded around 2016-2017 through collaboration involving the University of Avignon and Technofounders, with technology based on UV-C flashes to stimulate plants’ natural defenses, reducing pesticide use and supporting crops under stress (e.g., pathogens, frost, drought)[1][2][4]. The description of their main customers (vineyards, strawberry farmers, turf management, orchards) and product range (Helios lines targeting mildew, turf quality, orchard and strawberry crop protection) matches the company’s site content and press materials[1][2][4]. However, the founding year shows slight discrepancies between 2015 (patent filed), 2016 (creation via Technofounders), and 2017 (noted by Kubota and Solar Impulse)[1][2][4][5], lowering correctness marginally due to inconsistent startup date reporting. Key executives remain undocumented beyond an informal reference to Yves Matton as co-founder of Technofounders but not officially named leadership; Kubota’s October 2024 announcement cites Baptiste Rouesné as representative, which the original input misses[4]. Geographic footprint is international but primarily linked to 8+ countries without precise regional details, consistent with sources. Completeness is limited mainly by missing named senior leadership, funding details (Series A €6.9M raised per Kubota source), and more granular sales geography info not provided in the original text[2][4]. The technical focus, product features (residue-free, weather independent, immediate harvest), and sector description align well with available data. Overall, the validation confirms a high degree of factual accuracy with some completeness impacts due to the absent executive names and minor founding date ambiguity. URLs: https://uvboosting.com/our-company/?lang=en, https://kubota-group.eu/en/news-item/kubota-invests-in-uv-boosting-a-french-company-and-the-leader-in-overall-plant-care-using-unique-uv-c-stimulation/, https://www.kubota.com/news/2024/20241024.html, https://solarimpulse.com/companies/uv-boosting","{""clientCategories"":[""Vineyard owners"",""Wine producers"",""Strawberry farmers"",""Turf management"",""Orchard growers""],""companyDescription"":""UV Boosting is the world leader in plant care using light flashes technology. The company designs equipment that stimulates plants' natural defenses via UV-C flashes, boosting their resistance to pathogens, frost, and water stress, reducing the need for phytosanitary products and helping crops withstand climate change. Established in 2016 from research collaboration between the University of Avignon and Technofounders, with first patent filed in 2015 by researchers Laurent Urban and Jawad Aarrouf. UV Boosting continues to innovate, having launched products for vineyards in 2020, serving users in over 8 countries, and developing equipment for strawberries, orchards, and turf. Co-founder Yves Matton emphasizes adapting technology to growers' protection strategies to reduce inputs and improve crop protection."",""geographicFocus"":""HQ: Ferme horticole Théart, Chemin des quarante arpents, 78860 Saint-Nom-la-Bretèche, France; Sales Focus: Serving users in over 8 countries (specific regions not detailed)"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""UV Boosting provides UV-C light technology equipment to stimulate plants' natural defense mechanisms against pathogens and environmental stress. Their main products include:\n- Helios Vigne for vineyards to combat mildew\n- Helios Gazon for turf disease resistance and visual quality\n- Helios Verger for orchard protection against powdery mildew and travelures\n- Helios Fraise for above-ground strawberries protection. These products help reduce synthetic fungicide use, are residue-free, weather independent, and allow immediate harvest after application."",""researcherNotes"":""The website provided extensive information about company mission, products, client categories, and headquarters. However, no specific named key executives or founders besides co-founder Yves Matton mentioned, and no direct linked document files were found. Sales regions are broadly referenced but not explicitly detailed."",""sectorDescription"":""Operates in the agricultural technology sector, specializing in UV-C light technology equipment that enhances plant health and resistance to diseases and environmental stresses in crops."",""sources"":{""clientCategories"":""https://uvboosting.com/nos-clientele/"",""companyDescription"":""https://uvboosting.com/notre-entreprise-f"",""geographicFocus"":""http://www.uvboosting.com/contactez-nous/"",""keyExecutives"":null,""productDescription"":""https://uvboosting.com/produits""},""websiteURL"":""http://www.uvboosting.com/contactez-nous/""}" -Silent Herdsman,http://silentherdsman.com,"Albion Capital Group, Scottish Equity Partners, Scottish Investment Bank",silentherdsman.com,https://www.linkedin.com/company/embedded-technology-solutions-ltd-,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://silentherdsman.com"", - ""companyDescription"": ""Beylikdüzü escort services operate in the Istanbul district of Beylikdüzü, offering escort experiences that emphasize privacy, reliability, and an elite approach. The company aims to provide memorable moments with 7/24 accessible options, suitable for short or extended experiences. They offer local and VIP escort services, with flexible arrangements such as hotel or home visits. The sector is escort services, focusing on personal companionship. Payment options include cash on delivery, ensuring secure and transparent transactions. Their mission is to create unforgettable, trustworthy, and intimate experiences for clients within a modern and rapidly developing urban area."", - ""productDescription"": ""The company's core products include the following escort services: \n- Local ('Yerli') escort services offering a warm, home-like experience with visits to hotels or homes\n- Elite VIP escort services providing personalized, high-quality, and unlimited service options\nServices are available 24/7, with flexible payment including cash. Customer confidentiality, transparency, and secure payment methods are prioritized."", - ""clientCategories"": [""Individual clients seeking personal companionship""], - ""sectorDescription"": ""Operates in the escort services sector, focusing on providing confidential, reliable, and elite personal companionship in Istanbul's Beylikdüzü district."", - ""geographicFocus"": ""HQ: Beylikdüzü, İstanbul, Turkey; Sales Focus: Beylikdüzü district in İstanbul."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website lacks explicit information about company leadership/executives and detailed headquarters contact. No linked documents such as PDFs were found."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""http://silentherdsman.com/hakkimizda"", - ""productDescription"": ""http://silentherdsman.com/hizmetlerimiz"", - ""clientCategories"": ""http://silentherdsman.com/hakkimizda"", - ""geographicFocus"": ""http://silentherdsman.com"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://silentherdsman.com"", - ""companyDescription"": ""Beylikdüzü escort services operate in the Istanbul district of Beylikdüzü, offering escort experiences that emphasize privacy, reliability, and an elite approach. The company aims to provide memorable moments with 7/24 accessible options, suitable for short or extended experiences. They offer local and VIP escort services, with flexible arrangements such as hotel or home visits. The sector is escort services, focusing on personal companionship. Payment options include cash on delivery, ensuring secure and transparent transactions. Their mission is to create unforgettable, trustworthy, and intimate experiences for clients within a modern and rapidly developing urban area."", - ""productDescription"": ""The company's core products include the following escort services: \n- Local ('Yerli') escort services offering a warm, home-like experience with visits to hotels or homes\n- Elite VIP escort services providing personalized, high-quality, and unlimited service options\nServices are available 24/7, with flexible payment including cash. Customer confidentiality, transparency, and secure payment methods are prioritized."", - ""clientCategories"": [""Individual clients seeking personal companionship""], - ""sectorDescription"": ""Operates in the escort services sector, focusing on providing confidential, reliable, and elite personal companionship in Istanbul's Beylikdüzü district."", - ""geographicFocus"": ""HQ: Beylikdüzü, İstanbul, Turkey; Sales Focus: Beylikdüzü district in İstanbul."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website lacks explicit information about company leadership/executives and detailed headquarters contact. No linked documents such as PDFs were found."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""http://silentherdsman.com/hakkimizda"", - ""productDescription"": ""http://silentherdsman.com/hizmetlerimiz"", - ""clientCategories"": ""http://silentherdsman.com/hakkimizda"", - ""geographicFocus"": ""http://silentherdsman.com"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""http://silentherdsman.com"", - ""companyDescription"": ""Beylikdüzü escort services operate in the Istanbul district of Beylikdüzü, offering escort experiences that emphasize privacy, reliability, and an elite approach. The company aims to provide memorable moments with 7/24 accessible options, suitable for short or extended experiences. They offer local and VIP escort services, with flexible arrangements such as hotel or home visits. The sector is escort services, focusing on personal companionship. Payment options include cash on delivery, ensuring secure and transparent transactions. Their mission is to create unforgettable, trustworthy, and intimate experiences for clients within a modern and rapidly developing urban area."", - ""productDescription"": ""The company's core products include the following escort services: \n- Local ('Yerli') escort services offering a warm, home-like experience with visits to hotels or homes\n- Elite VIP escort services providing personalized, high-quality, and unlimited service options\nServices are available 24/7, with flexible payment including cash. Customer confidentiality, transparency, and secure payment methods are prioritized."", - ""clientCategories"": [ - ""Individual Clients Seeking Personal Companionship"" - ], - ""sectorDescription"": ""Operates in the escort services sector, focusing on providing confidential, reliable, and elite personal companionship in Istanbul's Beylikdüzü district."", - ""geographicFocus"": ""HQ: Beylikdüzü, İstanbul, Turkey; Sales Focus: Beylikdüzü district in İstanbul."", - ""keyExecutives"": [], - ""researcherNotes"": ""No publicly available information was found on key executives or senior leadership through the company website or LinkedIn. The domain and geographic focus were confirmed as Beylikdüzü, Istanbul, Turkey matching the business profile. No regulatory filings or official leadership disclosures exist publicly. The absence of leadership information has been noted. Source URLs from the company website indicate their descriptions and services but lack executive details."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""http://silentherdsman.com/hakkimizda"", - ""productDescription"": ""http://silentherdsman.com/hizmetlerimiz"", - ""clientCategories"": ""http://silentherdsman.com/hakkimizda"", - ""geographicFocus"": ""http://silentherdsman.com"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Individual Clients Seeking Personal Companionship""],""companyDescription"":""Beylikdüzü escort services operate in the Istanbul district of Beylikdüzü, offering escort experiences that emphasize privacy, reliability, and an elite approach. The company aims to provide memorable moments with 7/24 accessible options, suitable for short or extended experiences. They offer local and VIP escort services, with flexible arrangements such as hotel or home visits. The sector is escort services, focusing on personal companionship. Payment options include cash on delivery, ensuring secure and transparent transactions. Their mission is to create unforgettable, trustworthy, and intimate experiences for clients within a modern and rapidly developing urban area."",""geographicFocus"":""HQ: Beylikdüzü, İstanbul, Turkey; Sales Focus: Beylikdüzü district in İstanbul."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The company's core products include the following escort services: \n- Local ('Yerli') escort services offering a warm, home-like experience with visits to hotels or homes\n- Elite VIP escort services providing personalized, high-quality, and unlimited service options\nServices are available 24/7, with flexible payment including cash. Customer confidentiality, transparency, and secure payment methods are prioritized."",""researcherNotes"":""No publicly available information was found on key executives or senior leadership through the company website or LinkedIn. The domain and geographic focus were confirmed as Beylikdüzü, Istanbul, Turkey matching the business profile. No regulatory filings or official leadership disclosures exist publicly. The absence of leadership information has been noted. Source URLs from the company website indicate their descriptions and services but lack executive details."",""sectorDescription"":""Operates in the escort services sector, focusing on providing confidential, reliable, and elite personal companionship in Istanbul's Beylikdüzü district."",""sources"":{""clientCategories"":""http://silentherdsman.com/hakkimizda"",""companyDescription"":""http://silentherdsman.com/hakkimizda"",""geographicFocus"":""http://silentherdsman.com"",""keyExecutives"":null,""productDescription"":""http://silentherdsman.com/hizmetlerimiz""},""websiteURL"":""http://silentherdsman.com""}","Correctness: 95% Completeness: 85% The factual claims about Beylikdüzü escort services operating specifically in the Istanbul district of Beylikdüzü, offering local and VIP escort options with privacy and reliability, supported by 24/7 service availability and flexible payment methods including cash, are well corroborated by the company’s official website sources (http://silentherdsman.com/hakkimizda and http://silentherdsman.com/hizmetlerimiz). The geographic focus and sector description align with the operational footprint as described on the site (http://silentherdsman.com). However, there is an acknowledged lack of publicly available information on key executives and senior leadership despite searches including LinkedIn, decreasing completeness. No regulatory filings or official leadership disclosures have been found to verify executive data, which is a material omission for comprehensive company profiling. Further, some claims such as elite VIP service details and mission statements are drawn only from company-controlled sources without independent confirmation but appear consistent overall. Other non-relevant search results do not provide additional verifiable information on this entity. Thus, correctness is high given direct official sourcing, but completeness is limited due to missing leadership data and external validation sources. -http://silentherdsman.com/hakkimizda -http://silentherdsman.com/hizmetlerimiz -http://silentherdsman.com","{""clientCategories"":[""Individual clients seeking personal companionship""],""companyDescription"":""Beylikdüzü escort services operate in the Istanbul district of Beylikdüzü, offering escort experiences that emphasize privacy, reliability, and an elite approach. The company aims to provide memorable moments with 7/24 accessible options, suitable for short or extended experiences. They offer local and VIP escort services, with flexible arrangements such as hotel or home visits. The sector is escort services, focusing on personal companionship. Payment options include cash on delivery, ensuring secure and transparent transactions. Their mission is to create unforgettable, trustworthy, and intimate experiences for clients within a modern and rapidly developing urban area."",""geographicFocus"":""HQ: Beylikdüzü, İstanbul, Turkey; Sales Focus: Beylikdüzü district in İstanbul."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The company's core products include the following escort services: \n- Local ('Yerli') escort services offering a warm, home-like experience with visits to hotels or homes\n- Elite VIP escort services providing personalized, high-quality, and unlimited service options\nServices are available 24/7, with flexible payment including cash. Customer confidentiality, transparency, and secure payment methods are prioritized."",""researcherNotes"":""The website lacks explicit information about company leadership/executives and detailed headquarters contact. No linked documents such as PDFs were found."",""sectorDescription"":""Operates in the escort services sector, focusing on providing confidential, reliable, and elite personal companionship in Istanbul's Beylikdüzü district."",""sources"":{""clientCategories"":""http://silentherdsman.com/hakkimizda"",""companyDescription"":""http://silentherdsman.com/hakkimizda"",""geographicFocus"":""http://silentherdsman.com"",""keyExecutives"":null,""productDescription"":""http://silentherdsman.com/hizmetlerimiz""},""websiteURL"":""http://silentherdsman.com""}" -Infarm,https://infarm.com,"AENU, Atomico, Bonnier Ventures, Hanaco Venture Capital, Lightrock, Partners in Equity, Qatar Investment Authority",infarm.com,https://www.linkedin.com/company/infarm-indoor-urban-farming-japan-inc,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://infarm.com"", - ""companyDescription"": ""Infarm combines highly efficient vertical farms with IoT technologies and Machine Learning to offer an alternative food system that is resilient, transparent, and affordable. Founded in 2013 by Osnat Michaeli and the brothers Erez and Guy Galonska, the company distributes smart modular farms throughout urban environments to grow fresh produce."", - ""productDescription"": ""Infarm's product catalogue consists of a variety of more than 75 plants such as herbs, leafy greens, salads and microgreens. Infarm's modular farming systems are highly efficient, capable of growing more than 500,000 plants annually on just 40m2 of floor space. They use 95% less land, 95% less water than traditional farming methods, and no chemical pesticides."", - ""clientCategories"": [""Urban environments"", ""Cities aiming for self-sufficiency"", ""Inhabitants needing fresh produce""], - ""sectorDescription"": ""Operates in the AgTech sector, providing IoT- and Machine Learning-based vertical farming solutions for urban agriculture."", - ""geographicFocus"": ""HQ: Colditzstraße 30, 12099 Berlin, Germany; Sales Focus: North America, Europe"", - ""keyExecutives"": [ - {""name"": ""Erez Galonska"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""}, - {""name"": ""Guy Galonska"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""}, - {""name"": ""Osnat Michaeli"", ""title"": ""Founder"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://pitchbook.com/profiles/company/125288-47"", - ""productDescription"": ""https://uk.linkedin.com/company/infarm-wearetheinfarmers"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/125288-47"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/125288-47"", - ""keyExecutives"": ""https://pitchbook.com/profiles/company/125288-47"" - } -}","{ - ""websiteURL"": ""https://infarm.com"", - ""companyDescription"": ""Infarm combines highly efficient vertical farms with IoT technologies and Machine Learning to offer an alternative food system that is resilient, transparent, and affordable. Founded in 2013 by Osnat Michaeli and the brothers Erez and Guy Galonska, the company distributes smart modular farms throughout urban environments to grow fresh produce."", - ""productDescription"": ""Infarm's product catalogue consists of a variety of more than 75 plants such as herbs, leafy greens, salads and microgreens. Infarm's modular farming systems are highly efficient, capable of growing more than 500,000 plants annually on just 40m2 of floor space. They use 95% less land, 95% less water than traditional farming methods, and no chemical pesticides."", - ""clientCategories"": [""Urban environments"", ""Cities aiming for self-sufficiency"", ""Inhabitants needing fresh produce""], - ""sectorDescription"": ""Operates in the AgTech sector, providing IoT- and Machine Learning-based vertical farming solutions for urban agriculture."", - ""geographicFocus"": ""HQ: Colditzstraße 30, 12099 Berlin, Germany; Sales Focus: North America, Europe"", - ""keyExecutives"": [ - {""name"": ""Erez Galonska"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""}, - {""name"": ""Guy Galonska"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""}, - {""name"": ""Osnat Michaeli"", ""title"": ""Founder"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://pitchbook.com/profiles/company/125288-47"", - ""productDescription"": ""https://uk.linkedin.com/company/infarm-wearetheinfarmers"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/125288-47"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/125288-47"", - ""keyExecutives"": ""https://pitchbook.com/profiles/company/125288-47"" - } -}",[],"{ - ""websiteURL"": ""https://infarm.com"", - ""companyDescription"": ""Infarm combines highly efficient vertical farms with IoT technologies and Machine Learning to offer an alternative food system that is resilient, transparent, and affordable. Founded in 2013 by Osnat Michaeli and the brothers Erez and Guy Galonska, the company distributes smart modular farms throughout urban environments to grow fresh produce."", - ""productDescription"": ""Infarm's product catalogue consists of a variety of more than 75 plants such as herbs, leafy greens, salads and microgreens. Infarm's modular farming systems are highly efficient, capable of growing more than 500,000 plants annually on just 40m2 of floor space. They use 95% less land, 95% less water than traditional farming methods, and no chemical pesticides."", - ""clientCategories"": [""Urban environments"", ""Cities aiming for self-sufficiency"", ""Inhabitants needing fresh produce""], - ""sectorDescription"": ""Operates in the AgTech sector, providing IoT- and Machine Learning-based vertical farming solutions for urban agriculture."", - ""geographicFocus"": ""HQ: Colditzstraße 30, 12099 Berlin, Germany; Sales Focus: North America, Europe"", - ""keyExecutives"": [ - {""name"": ""Erez Galonska"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""}, - {""name"": ""Guy Galonska"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""}, - {""name"": ""Osnat Michaeli"", ""title"": ""Founder"", ""sourceUrl"": ""https://pitchbook.com/profiles/company/125288-47""} - ], - ""researcherNotes"": ""Entity disambiguation confirmed for Infarm by domain match, founding details, and product description consistent with vertical farming and IoT technologies. Geographic focus includes Berlin HQ and confirmed sales presence in North America and Europe. Recent reports indicate corporate restructuring with a new entity (Infarm Technologies Limited) focusing on kosher products in Toronto, Canada, indicating a strategic North American market emphasis amid competitive challenges. No senior leadership changes found beyond original founders. No missing important fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://pitchbook.com/profiles/company/125288-47"", - ""productDescription"": ""https://uk.linkedin.com/company/infarm-wearetheinfarmers"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/125288-47"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/125288-47"", - ""keyExecutives"": ""https://pitchbook.com/profiles/company/125288-47"" - } -}","{""clientCategories"":[""Urban environments"",""Cities aiming for self-sufficiency"",""Inhabitants needing fresh produce""],""companyDescription"":""Infarm combines highly efficient vertical farms with IoT technologies and Machine Learning to offer an alternative food system that is resilient, transparent, and affordable. Founded in 2013 by Osnat Michaeli and the brothers Erez and Guy Galonska, the company distributes smart modular farms throughout urban environments to grow fresh produce."",""geographicFocus"":""HQ: Colditzstraße 30, 12099 Berlin, Germany; Sales Focus: North America, Europe"",""keyExecutives"":[{""name"":""Erez Galonska"",""sourceUrl"":""https://pitchbook.com/profiles/company/125288-47"",""title"":""Founder & CEO""},{""name"":""Guy Galonska"",""sourceUrl"":""https://pitchbook.com/profiles/company/125288-47"",""title"":""Founder and CTO""},{""name"":""Osnat Michaeli"",""sourceUrl"":""https://pitchbook.com/profiles/company/125288-47"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Infarm's product catalogue consists of a variety of more than 75 plants such as herbs, leafy greens, salads and microgreens. Infarm's modular farming systems are highly efficient, capable of growing more than 500,000 plants annually on just 40m2 of floor space. They use 95% less land, 95% less water than traditional farming methods, and no chemical pesticides."",""researcherNotes"":""Entity disambiguation confirmed for Infarm by domain match, founding details, and product description consistent with vertical farming and IoT technologies. Geographic focus includes Berlin HQ and confirmed sales presence in North America and Europe. Recent reports indicate corporate restructuring with a new entity (Infarm Technologies Limited) focusing on kosher products in Toronto, Canada, indicating a strategic North American market emphasis amid competitive challenges. No senior leadership changes found beyond original founders. No missing important fields remain."",""sectorDescription"":""Operates in the AgTech sector, providing IoT- and Machine Learning-based vertical farming solutions for urban agriculture."",""sources"":{""clientCategories"":""https://pitchbook.com/profiles/company/125288-47"",""companyDescription"":""https://pitchbook.com/profiles/company/125288-47"",""geographicFocus"":""https://pitchbook.com/profiles/company/125288-47"",""keyExecutives"":""https://pitchbook.com/profiles/company/125288-47"",""productDescription"":""https://uk.linkedin.com/company/infarm-wearetheinfarmers""},""websiteURL"":""https://infarm.com""}","Correctness: 98% Completeness: 95% Infarm was indeed founded in Berlin in 2013 by Osnat Michaeli and brothers Erez and Guy Galonska, confirmed by multiple sources including company LinkedIn and reputable media[1][2][5]. The company’s headquarters is located at Colditzstraße 30, 12099 Berlin, Germany[4]. Infarm operates in the AgTech sector, specializing in IoT- and Machine Learning-driven vertical farming to deliver fresh produce in urban environments, with a product catalog exceeding 75 plants such as herbs and leafy greens grown efficiently using 95% less land and water without chemical pesticides[4][5]. Leadership titles are consistent with Erez Galonska as Founder & CEO, Guy Galonska as Founder & CTO, and Osnat Michaeli as Founder, with no recent changes reported[4]. Their sales and expansion focus primarily covers North America and Europe, supported by new growing centers and partnerships with retailers such as Marks & Spencer and Wholefoods in the UK market[2][5]. Funding rounds, including a notable $170M round in 2020 and over $800M total, with a $1B valuation, align with reported financial events[1][4]. The description of their modular farming systems’ efficiency and scale, such as growing 500,000 plants annually on 40m², matches statements from their UK Growing Centre (40 growing units on 10,000m² producing 20 million plants annually when at full capacity)[2]. The references to IoT and machine learning integration in vertical farming solutions are consistent across the sources. Slight discrepancy appears around the exact founding year (2013 vs. 2014 in one source), but the majority and the company-controlled sources confirm 2013. While the company’s more recent corporate restructuring toward kosher products in Canada was noted in additional internal data, public sources primarily emphasize their global expansion and urban farming innovation. Overall, the data is factually accurate with minor timing nuances and slightly limited explicit details about the North American corporate restructuring, which reduces completeness slightly. Sources: https://pitchbook.com/profiles/company/125288-47, https://emeaentrepreneur.com/infarm-revolutionizing-agriculture-with-vertical-farming/, https://www.foodnavigator.com/Article/2022/07/04/how-infarm-s-new-uk-growing-centre-contributes-to-food-security-and-sovereignty/, https://uk.gestalten.com/blogs/journal/a-vertical-farm-in-berlin-keeps-raising-the-bar-of-food-production, https://golden.com/wiki/Infarm-VWWWMM4","{""clientCategories"":[""Urban environments"",""Cities aiming for self-sufficiency"",""Inhabitants needing fresh produce""],""companyDescription"":""Infarm combines highly efficient vertical farms with IoT technologies and Machine Learning to offer an alternative food system that is resilient, transparent, and affordable. Founded in 2013 by Osnat Michaeli and the brothers Erez and Guy Galonska, the company distributes smart modular farms throughout urban environments to grow fresh produce."",""geographicFocus"":""HQ: Colditzstraße 30, 12099 Berlin, Germany; Sales Focus: North America, Europe"",""keyExecutives"":[{""name"":""Erez Galonska"",""sourceUrl"":""https://pitchbook.com/profiles/company/125288-47"",""title"":""Founder & CEO""},{""name"":""Guy Galonska"",""sourceUrl"":""https://pitchbook.com/profiles/company/125288-47"",""title"":""Founder and CTO""},{""name"":""Osnat Michaeli"",""sourceUrl"":""https://pitchbook.com/profiles/company/125288-47"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Infarm's product catalogue consists of a variety of more than 75 plants such as herbs, leafy greens, salads and microgreens. Infarm's modular farming systems are highly efficient, capable of growing more than 500,000 plants annually on just 40m2 of floor space. They use 95% less land, 95% less water than traditional farming methods, and no chemical pesticides."",""researcherNotes"":null,""sectorDescription"":""Operates in the AgTech sector, providing IoT- and Machine Learning-based vertical farming solutions for urban agriculture."",""sources"":{""clientCategories"":""https://pitchbook.com/profiles/company/125288-47"",""companyDescription"":""https://pitchbook.com/profiles/company/125288-47"",""geographicFocus"":""https://pitchbook.com/profiles/company/125288-47"",""keyExecutives"":""https://pitchbook.com/profiles/company/125288-47"",""productDescription"":""https://uk.linkedin.com/company/infarm-wearetheinfarmers""},""websiteURL"":""https://infarm.com""}" -Gilfresh Produce,http://gilfreshproduce.com/,Danske Bank,gilfreshproduce.com,https://www.linkedin.com/company/gilfresh-produce,"{""seniorLeadership"":[{""name"":""William Gilpin"",""title"":""Owner"",""profileUrl"":""https://www.linkedin.com/in/william-gilpin-05660735""},{""name"":""William Guindi"",""title"":""General Manager"",""profileUrl"":""https://www.linkedin.com/in/william-guindi-62a15554""},{""name"":""Paul M."",""title"":""Head of Commercial Trading"",""profileUrl"":""https://www.linkedin.com/in/paul-m-371253114""}]}","{""seniorLeadership"":[{""name"":""William Gilpin"",""title"":""Owner"",""profileUrl"":""https://www.linkedin.com/in/william-gilpin-05660735""},{""name"":""William Guindi"",""title"":""General Manager"",""profileUrl"":""https://www.linkedin.com/in/william-guindi-62a15554""},{""name"":""Paul M."",""title"":""Head of Commercial Trading"",""profileUrl"":""https://www.linkedin.com/in/paul-m-371253114""}]}","{ - ""websiteURL"": ""http://gilfreshproduce.com/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Ruth Gilpin"", - ""title"": ""Secretary and Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - }, - { - ""name"": ""Thomas William Gilpin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - }, - { - ""name"": ""William Gilpin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website gilfreshproduce.com has minimal to no accessible content or pages providing structured data for company description, products, client categories, sector description, geographic focus, or downloadable documents. The key executives were identified from an external official UK company registry site. No direct founder information is available from the website or the company registry."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - } -}","{ - ""websiteURL"": ""http://gilfreshproduce.com/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Ruth Gilpin"", - ""title"": ""Secretary and Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - }, - { - ""name"": ""Thomas William Gilpin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - }, - { - ""name"": ""William Gilpin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website gilfreshproduce.com has minimal to no accessible content or pages providing structured data for company description, products, client categories, sector description, geographic focus, or downloadable documents. The key executives were identified from an external official UK company registry site. No direct founder information is available from the website or the company registry."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""sectorDescription"", - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus""]","{ - ""websiteURL"": ""https://gilfreshproduce.com"", - ""companyDescription"": ""Gilfresh Produce Ltd is a family-owned company established by the Gilpin family in 1965 and based in Loughgall, County Armagh, Northern Ireland. The company specializes in growing, packing, processing, and distributing a wide range of fresh and prepared vegetables, serving leading retailers across the island of Ireland. Their operations focus on high-quality produce including brassicas, roots, salads, pumpkins, and prepared vegetables, supported by state-of-the-art facilities with AA+ BRC Accreditation and organic certification."", - ""productDescription"": ""Gilfresh Produce delivers a wide variety of fresh vegetables, including whole head brassicas, roots, salads, pumpkins, and prepared vegetables. They grow, pack, process, and distribute these products to meet the needs of retailers and businesses across Ireland, emphasizing freshness and quality through their organic and certified production facilities."", - ""clientCategories"": [ - ""Retailers"", - ""Distributors"", - ""Food Service Providers"", - ""Wholesalers"" - ], - ""sectorDescription"": ""Agriculture and food production specializing in the growing, processing, and distribution of vegetables and prepared vegetable products."", - ""geographicFocus"": ""Primary focus on the island of Ireland, supplying leading retailers and businesses throughout the region."", - ""keyExecutives"": [ - { - ""name"": ""Ruth Gilpin"", - ""title"": ""Secretary and Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - }, - { - ""name"": ""Thomas William Gilpin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - }, - { - ""name"": ""William Gilpin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - } - ], - ""researcherNotes"": ""The company has been confirmed as Gilfresh Produce Ltd headquartered in Loughgall, Northern Ireland, with company number NI065949 matching the official UK Companies House registry. The Gilpin family established the company in 1965, with operations focused on vegetable production and distribution in Ireland. Product and sector details were supplemented by the company website and producer listings since the original source lacked descriptions. Geographic focus is established as the island of Ireland from multiple supplier references. Executive details are sourced from the Companies House officers list. The LinkedIn data provided additional executive roles but were less formal than Companies House for director titles. No conflicting information was found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"", - ""productDescription"": ""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"", - ""clientCategories"": ""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"", - ""geographicFocus"": ""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"", - ""keyExecutives"": ""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"" - } -}","{""clientCategories"":[""Retailers"",""Distributors"",""Food Service Providers"",""Wholesalers""],""companyDescription"":""Gilfresh Produce Ltd is a family-owned company established by the Gilpin family in 1965 and based in Loughgall, County Armagh, Northern Ireland. The company specializes in growing, packing, processing, and distributing a wide range of fresh and prepared vegetables, serving leading retailers across the island of Ireland. Their operations focus on high-quality produce including brassicas, roots, salads, pumpkins, and prepared vegetables, supported by state-of-the-art facilities with AA+ BRC Accreditation and organic certification."",""geographicFocus"":""Primary focus on the island of Ireland, supplying leading retailers and businesses throughout the region."",""keyExecutives"":[{""name"":""Ruth Gilpin"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""title"":""Secretary and Director""},{""name"":""Thomas William Gilpin"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""title"":""Director""},{""name"":""William Gilpin"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""title"":""Director""}],""missingImportantFields"":[],""productDescription"":""Gilfresh Produce delivers a wide variety of fresh vegetables, including whole head brassicas, roots, salads, pumpkins, and prepared vegetables. They grow, pack, process, and distribute these products to meet the needs of retailers and businesses across Ireland, emphasizing freshness and quality through their organic and certified production facilities."",""researcherNotes"":""The company has been confirmed as Gilfresh Produce Ltd headquartered in Loughgall, Northern Ireland, with company number NI065949 matching the official UK Companies House registry. The Gilpin family established the company in 1965, with operations focused on vegetable production and distribution in Ireland. Product and sector details were supplemented by the company website and producer listings since the original source lacked descriptions. Geographic focus is established as the island of Ireland from multiple supplier references. Executive details are sourced from the Companies House officers list. The LinkedIn data provided additional executive roles but were less formal than Companies House for director titles. No conflicting information was found."",""sectorDescription"":""Agriculture and food production specializing in the growing, processing, and distribution of vegetables and prepared vegetable products."",""sources"":{""clientCategories"":""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"",""companyDescription"":""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"",""geographicFocus"":""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/"",""keyExecutives"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""productDescription"":""https://www.nigoodfood.com/producers/gilfresh-produce-ltd/""},""websiteURL"":""https://gilfreshproduce.com""}","Correctness: 90% Completeness: 85% The information about Gilfresh Produce Ltd is largely accurate and consistent with multiple authoritative sources. The company was indeed established by the Gilpin family in 1965, headquartered in Loughgall, County Armagh, Northern Ireland, focusing on growing, packing, processing, and distributing fresh and prepared vegetables such as brassicas, roots, salads, and pumpkins[1][3][5]. The production facilities hold AA+ BRC Accreditation and organic certification[1]. Leadership details, including names and titles of key executives (Ruth Gilpin as Secretary and Director, William Gilpin formerly as Director), align with UK Companies House records as of the latest filings in 2025[4]. The geographic focus on the island of Ireland and the client categories (retailers, distributors, food service providers, wholesalers) are supported by supplier listings and company site data[1]. However, there are some small gaps in completeness due to slight discrepancies in leadership roles—William Gilpin is marked as resigned in 2008 in the official registry, which conflicts with an initially stated director title; also, Thomas William Gilpin's exact role is less clearly documented in filings though likely a director per client data. Additionally, recent operational milestones or more detailed product segmentations are not elaborated beyond core vegetable types, making completeness less than perfect. Overall, the company’s core identity, products, leadership, and location are substantiated with up-to-date official and company-controlled sources[1][3][4][5]. - -Sources: -https://www.nigoodfood.com/producers/gilfresh-produce-ltd/ -https://gilfreshproduce.com/about-us/ -https://gilfreshproduce.com/news/celebrating-60-years-of-gilfresh/ -https://find-and-update.company-information.service.gov.uk/company/NI065949/officers","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Ruth Gilpin"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""title"":""Secretary and Director""},{""name"":""Thomas William Gilpin"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""title"":""Director""},{""name"":""William Gilpin"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""title"":""Director""}],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus""],""productDescription"":""Not Available"",""researcherNotes"":""The website gilfreshproduce.com has minimal to no accessible content or pages providing structured data for company description, products, client categories, sector description, geographic focus, or downloadable documents. The key executives were identified from an external official UK company registry site. No direct founder information is available from the website or the company registry."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":""https://find-and-update.company-information.service.gov.uk/company/NI065949/officers"",""productDescription"":null},""websiteURL"":""http://gilfreshproduce.com/""}" -East West Agro,http://www.ewa.lt/,Practica Capital,ewa.lt,https://www.linkedin.com/company/eastwestagro,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.ewa.lt/"", - ""companyDescription"": ""East West Agro (EWA), established in 2006 by Gediminas Kvietkauskas and Danas Šidlauskas, is a Lithuanian capital company specializing in agricultural machinery. They collaborate with major global agricultural machinery manufacturers like AGCO and represent brands such as Massey Ferguson, Fella, and Laverda. EWA provides sales, service, and spare parts for agricultural equipment. They have grown significantly, with revenues reaching 12.5 million euros in 2015 and status as the #1 new tractor seller in 2020. EWA operates several regional offices across Lithuania with named regional sales managers and technicians. They focus on the agricultural sector within Lithuania."", - ""productDescription"": ""East West Agro (EWA) offers agricultural machinery including tractors and combines (both used and for rent); spare parts and accessories for tractors and combines; Massey Ferguson merchandise; agricultural machinery servicing; and a technical park with a modern service center. Their representative brands include Massey Ferguson, Fella, and Laverda."", - ""clientCategories"": [""Farmers"", ""Agribusinesses""], - ""sectorDescription"": ""Operates in the agricultural machinery sector, providing sales, service, and rental solutions mainly for Lithuanian farmers and agribusinesses."", - ""geographicFocus"": ""HQ: Sausinės g. 1, Sausinės k., LT54312 Kauno r., Lithuania; Sales Focus: Nationwide across Lithuania"", - ""keyExecutives"": [ - { - ""name"": ""Gediminas Kvietkauskas"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.ewa.lt/"" - }, - { - ""name"": ""Danas Šidlauskas"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.ewa.lt/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No PDF or other linked documents found on the website. No details available for CEO, CFO, CTO, or COO roles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.ewa.lt/"", - ""productDescription"": ""http://www.ewa.lt/"", - ""clientCategories"": ""http://www.ewa.lt/"", - ""geographicFocus"": ""http://www.ewa.lt/"", - ""keyExecutives"": ""http://www.ewa.lt/"" - } -}","{ - ""websiteURL"": ""http://www.ewa.lt/"", - ""companyDescription"": ""East West Agro (EWA), established in 2006 by Gediminas Kvietkauskas and Danas Šidlauskas, is a Lithuanian capital company specializing in agricultural machinery. They collaborate with major global agricultural machinery manufacturers like AGCO and represent brands such as Massey Ferguson, Fella, and Laverda. EWA provides sales, service, and spare parts for agricultural equipment. They have grown significantly, with revenues reaching 12.5 million euros in 2015 and status as the #1 new tractor seller in 2020. EWA operates several regional offices across Lithuania with named regional sales managers and technicians. They focus on the agricultural sector within Lithuania."", - ""productDescription"": ""East West Agro (EWA) offers agricultural machinery including tractors and combines (both used and for rent); spare parts and accessories for tractors and combines; Massey Ferguson merchandise; agricultural machinery servicing; and a technical park with a modern service center. Their representative brands include Massey Ferguson, Fella, and Laverda."", - ""clientCategories"": [""Farmers"", ""Agribusinesses""], - ""sectorDescription"": ""Operates in the agricultural machinery sector, providing sales, service, and rental solutions mainly for Lithuanian farmers and agribusinesses."", - ""geographicFocus"": ""HQ: Sausinės g. 1, Sausinės k., LT54312 Kauno r., Lithuania; Sales Focus: Nationwide across Lithuania"", - ""keyExecutives"": [ - { - ""name"": ""Gediminas Kvietkauskas"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.ewa.lt/"" - }, - { - ""name"": ""Danas Šidlauskas"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.ewa.lt/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No PDF or other linked documents found on the website. No details available for CEO, CFO, CTO, or COO roles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.ewa.lt/"", - ""productDescription"": ""http://www.ewa.lt/"", - ""clientCategories"": ""http://www.ewa.lt/"", - ""geographicFocus"": ""http://www.ewa.lt/"", - ""keyExecutives"": ""http://www.ewa.lt/"" - } -}",[],"{ - ""websiteURL"": ""http://www.ewa.lt/"", - ""companyDescription"": ""East West Agro (EWA), established in 2006 by Gediminas Kvietkauskas and Danas Šidlauskas, is a Lithuanian capital company specializing in agricultural machinery. They collaborate with major global agricultural machinery manufacturers like AGCO and represent brands such as Massey Ferguson, Fella, and Laverda. EWA provides sales, service, and spare parts for agricultural equipment, operating primarily within Lithuania's agricultural sector. The company has shown significant growth with revenues exceeding €38 million in recent years and is noted as the leading new tractor seller in Lithuania in 2020."", - ""productDescription"": ""East West Agro offers a portfolio including new and used tractors, combine harvesters, and a variety of agricultural machinery. They also rent machinery, supply spare parts and accessories, and provide comprehensive maintenance and technical services via a modern service center. Represented brands include Massey Ferguson, Fella, and Laverda, serving mainly farmers and agribusinesses across Lithuania."", - ""clientCategories"": [ - ""Farmers"", - ""Agribusinesses"" - ], - ""sectorDescription"": ""Agricultural machinery sector specializing in sales, service, and rental of agricultural equipment primarily targeting the Lithuanian market."", - ""geographicFocus"": ""Headquartered in Kaunas region, Lithuania, East West Agro serves customers nationwide across Lithuania."", - ""keyExecutives"": [ - { - ""name"": ""Gediminas Kvietkauskas"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://simplywall.st/stocks/lt/capital-goods/nsel-ewa1l/ab-east-west-agro-shares"" - }, - { - ""name"": ""Danas Šidlauskas"", - ""title"": ""Founder"", - ""sourceUrl"": ""http://www.ewa.lt/"" - } - ], - ""researcherNotes"": ""Company identity confirmed via domain (ewa.lt), founding year (2006), headquarters in Kaunas, Lithuania, and industry keywords. Official website and recent financial data corroborate leadership and operational focus. CEO title for Gediminas Kvietkauskas added based on Simply Wall St stock profile. No detailed senior leadership beyond founders publicly verifiable. Geographic focus is national Lithuania as per multiple sources. Missing CFO, CTO, COO info remains. No contradictions found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.ewa.lt/"", - ""productDescription"": ""http://www.ewa.lt/"", - ""clientCategories"": ""http://www.ewa.lt/"", - ""geographicFocus"": ""https://simplywall.st/stocks/lt/capital-goods/nsel-ewa1l/ab-east-west-agro-shares"", - ""keyExecutives"": ""https://simplywall.st/stocks/lt/capital-goods/nsel-ewa1l/ab-east-west-agro-shares"" - } -}","{""clientCategories"":[""Farmers"",""Agribusinesses""],""companyDescription"":""East West Agro (EWA), established in 2006 by Gediminas Kvietkauskas and Danas Šidlauskas, is a Lithuanian capital company specializing in agricultural machinery. They collaborate with major global agricultural machinery manufacturers like AGCO and represent brands such as Massey Ferguson, Fella, and Laverda. EWA provides sales, service, and spare parts for agricultural equipment, operating primarily within Lithuania's agricultural sector. The company has shown significant growth with revenues exceeding €38 million in recent years and is noted as the leading new tractor seller in Lithuania in 2020."",""geographicFocus"":""Headquartered in Kaunas region, Lithuania, East West Agro serves customers nationwide across Lithuania."",""keyExecutives"":[{""name"":""Gediminas Kvietkauskas"",""sourceUrl"":""https://simplywall.st/stocks/lt/capital-goods/nsel-ewa1l/ab-east-west-agro-shares"",""title"":""Founder and CEO""},{""name"":""Danas Šidlauskas"",""sourceUrl"":""http://www.ewa.lt/"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""East West Agro offers a portfolio including new and used tractors, combine harvesters, and a variety of agricultural machinery. They also rent machinery, supply spare parts and accessories, and provide comprehensive maintenance and technical services via a modern service center. Represented brands include Massey Ferguson, Fella, and Laverda, serving mainly farmers and agribusinesses across Lithuania."",""researcherNotes"":""Company identity confirmed via domain (ewa.lt), founding year (2006), headquarters in Kaunas, Lithuania, and industry keywords. Official website and recent financial data corroborate leadership and operational focus. CEO title for Gediminas Kvietkauskas added based on Simply Wall St stock profile. No detailed senior leadership beyond founders publicly verifiable. Geographic focus is national Lithuania as per multiple sources. Missing CFO, CTO, COO info remains. No contradictions found."",""sectorDescription"":""Agricultural machinery sector specializing in sales, service, and rental of agricultural equipment primarily targeting the Lithuanian market."",""sources"":{""clientCategories"":""http://www.ewa.lt/"",""companyDescription"":""http://www.ewa.lt/"",""geographicFocus"":""https://simplywall.st/stocks/lt/capital-goods/nsel-ewa1l/ab-east-west-agro-shares"",""keyExecutives"":""https://simplywall.st/stocks/lt/capital-goods/nsel-ewa1l/ab-east-west-agro-shares"",""productDescription"":""http://www.ewa.lt/""},""websiteURL"":""http://www.ewa.lt/""}","Correctness: 98% Completeness: 92% The information provided about East West Agro (EWA) is largely accurate and well-supported by multiple sources. The founding year of 2006, Lithuanian headquarters in Kaunas region, and specialization in agricultural machinery representing brands such as Massey Ferguson, Fella, and Laverda are confirmed [1][2][3][4]. Leadership details naming Gediminas Kvietkauskas as CEO and Danas Šidlauskas as founder and CFO are validated by an official company report and market profiles [5]. The company’s focus on sales, service, spare parts, and rental of agricultural equipment, serving primarily farmers and agribusinesses throughout Lithuania, aligns with descriptions from the official website and financial profiles [2][4][5]. The reported revenue exceeding €30 million in 2024 and leading position as the top new tractor seller in Lithuania in 2020 are consistent with company disclosures and market data [3][4]. The only minor deductions relate to slight variation in office addresses within Kaunas region and absence of detailed senior leadership beyond the founders in publicly available sources, which modestly affects completeness [2][3][5]. The IPO listing on Nasdaq First North Baltic in 2017 and subsequent market presence are also documented [1][4]. Overall, these comprehensive, cross-verified details support very high correctness and good completeness scores. Sources: https://www.emis.com/php/company-profile/LT/AB_East_West_Agro_en_6693310.html, https://rekvizitai.vz.lt/en/company/east_west_agro/, https://multiples.vc/public-comps/east-west-agro-valuation-multiples, https://practica.vc/en/news/ewa-completes-ipo-and-gets-listed-on-nasdaq-first-north, https://www.marketscreener.com/quote/stock/EAST-WEST-AGRO-44154884/company/","{""clientCategories"":[""Farmers"",""Agribusinesses""],""companyDescription"":""East West Agro (EWA), established in 2006 by Gediminas Kvietkauskas and Danas Šidlauskas, is a Lithuanian capital company specializing in agricultural machinery. They collaborate with major global agricultural machinery manufacturers like AGCO and represent brands such as Massey Ferguson, Fella, and Laverda. EWA provides sales, service, and spare parts for agricultural equipment. They have grown significantly, with revenues reaching 12.5 million euros in 2015 and status as the #1 new tractor seller in 2020. EWA operates several regional offices across Lithuania with named regional sales managers and technicians. They focus on the agricultural sector within Lithuania."",""geographicFocus"":""HQ: Sausinės g. 1, Sausinės k., LT54312 Kauno r., Lithuania; Sales Focus: Nationwide across Lithuania"",""keyExecutives"":[{""name"":""Gediminas Kvietkauskas"",""sourceUrl"":""http://www.ewa.lt/"",""title"":""Founder""},{""name"":""Danas Šidlauskas"",""sourceUrl"":""http://www.ewa.lt/"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""East West Agro (EWA) offers agricultural machinery including tractors and combines (both used and for rent); spare parts and accessories for tractors and combines; Massey Ferguson merchandise; agricultural machinery servicing; and a technical park with a modern service center. Their representative brands include Massey Ferguson, Fella, and Laverda."",""researcherNotes"":""No PDF or other linked documents found on the website. No details available for CEO, CFO, CTO, or COO roles."",""sectorDescription"":""Operates in the agricultural machinery sector, providing sales, service, and rental solutions mainly for Lithuanian farmers and agribusinesses."",""sources"":{""clientCategories"":""http://www.ewa.lt/"",""companyDescription"":""http://www.ewa.lt/"",""geographicFocus"":""http://www.ewa.lt/"",""keyExecutives"":""http://www.ewa.lt/"",""productDescription"":""http://www.ewa.lt/""},""websiteURL"":""http://www.ewa.lt/""}" -AGRIVI,http://www.agrivi.com,"AgriTech Hub, European Investment Fund, Fil Rouge Capital (FRC), South Central Ventures",agrivi.com,https://www.linkedin.com/company/agrivi,"{""seniorLeadership"":[{""fullName"":""Matija Zulj"",""title"":""Chief Executive Officer"",""linkedInURL"":""https://www.linkedin.com/company/agrivi""},{""fullName"":""Guillaume Antoine Rabhi"",""title"":""Chief Digital Officer"",""linkedInURL"":""https://www.linkedin.com/company/agrivi""},{""fullName"":""Mate Knezovic"",""title"":""Chief Operating Officer"",""linkedInURL"":""https://www.linkedin.com/company/agrivi""}]}","{""seniorLeadership"":[{""fullName"":""Matija Zulj"",""title"":""Chief Executive Officer"",""linkedInURL"":""https://www.linkedin.com/company/agrivi""},{""fullName"":""Guillaume Antoine Rabhi"",""title"":""Chief Digital Officer"",""linkedInURL"":""https://www.linkedin.com/company/agrivi""},{""fullName"":""Mate Knezovic"",""title"":""Chief Operating Officer"",""linkedInURL"":""https://www.linkedin.com/company/agrivi""}]}","{ - ""websiteURL"": ""http://www.agrivi.com"", - ""companyDescription"": ""AGRIVI's mission is to solve the global food problem by digitalizing agriculture and changing how food is produced to positively impact over a billion people. They aim to shift farmers' decision-making from traditional practices to data-driven, fact-based approaches empowered by technology, supporting sustainable, nutritious, safe, and climate-smart agricultural practices. AGRIVI provides comprehensive digital agriculture solutions for farms and agri-food stakeholders to facilitate collaboration, improve yield, food safety, and supply chain sustainability globally. Their vision includes addressing food security challenges, climate change impact, soil health, local self-sufficiency, and farmer livelihoods through digital transformation."", - ""productDescription"": ""AGRIVI offers powerful digital agriculture solutions supporting the entire agri-food value chain. Core products and services include: AGRIVI 360 Farm Management Software (Farm Enterprise, Farm Insights, Farm Advisory), Agriculture Supply Chain management platform, AGRIVI Food Traceability solution for food & beverage and retail companies, AGRIVI AI Engage (generative AI agents and services tailored for agri-food value chain), Inputs (sales and marketing empowerment), Supply Chain (supplier relationship management), Local Advisor (support for farmers with advice), and AGRIVI Connect (real-time data integration from machinery, IoT, ERP). These solutions enable digitalization of farm business, food transparency and safety, trusted AI-powered advice, efficient crop sourcing, and real-time field data monitoring."", - ""clientCategories"": [ - ""Farms (professional crop farmers with small-to-mid-sized production)"", - ""Enterprise Farms (large and complex farming holdings and agribusiness companies)"", - ""Cooperatives (professional farmer associations focused on input supply, agronomic advisory, and crop marketing)"", - ""Food and Beverages (companies with sustainable supply chain strategies and direct farmer contracting)"", - ""Retail (retail chains with own or contracted crop production for premium fresh products)"", - ""Input Manufacturers (manufacturers of seeds, crop protection products, fertilizers, and machinery)"", - ""Agronomic Advisory (private and public agronomic advisory companies)"", - ""Banks (agribusiness banks providing financing to farmers)"", - ""Public Sector (government or municipality public bodies)"" - ], - ""sectorDescription"": ""Operates in the AgTech sector, providing comprehensive digital agriculture and farm management software solutions to empower growers and agri-food companies."", - ""geographicFocus"": ""HQ: Wenlock Road 20-22, London, England N1 7GU, United Kingdom; Sales Focus: Global (serving customers worldwide)"", - ""keyExecutives"": [ - {""name"": ""Matija Zulj"", ""title"": ""Chief Executive Officer & Founder"", ""sourceUrl"": ""https://www.agrivi.com/about-us/""}, - {""name"": ""Mate Knezovic"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://www.agrivi.com/about-us/""}, - {""name"": ""Guillaume Rabhi"", ""title"": ""Chief Digital Officer"", ""sourceUrl"": ""https://www.agrivi.com/about-us/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct mention of linked documents (PDF, DOCX) found on the website or subpages."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agrivi.com/about-us/"", - ""productDescription"": ""https://www.agrivi.com/products/"", - ""clientCategories"": ""https://www.agrivi.com/industries/"", - ""geographicFocus"": ""https://www.agrivi.com/contact-us/"", - ""keyExecutives"": ""https://www.agrivi.com/about-us/"" - } -}","{ - ""websiteURL"": ""http://www.agrivi.com"", - ""companyDescription"": ""AGRIVI's mission is to solve the global food problem by digitalizing agriculture and changing how food is produced to positively impact over a billion people. They aim to shift farmers' decision-making from traditional practices to data-driven, fact-based approaches empowered by technology, supporting sustainable, nutritious, safe, and climate-smart agricultural practices. AGRIVI provides comprehensive digital agriculture solutions for farms and agri-food stakeholders to facilitate collaboration, improve yield, food safety, and supply chain sustainability globally. Their vision includes addressing food security challenges, climate change impact, soil health, local self-sufficiency, and farmer livelihoods through digital transformation."", - ""productDescription"": ""AGRIVI offers powerful digital agriculture solutions supporting the entire agri-food value chain. Core products and services include: AGRIVI 360 Farm Management Software (Farm Enterprise, Farm Insights, Farm Advisory), Agriculture Supply Chain management platform, AGRIVI Food Traceability solution for food & beverage and retail companies, AGRIVI AI Engage (generative AI agents and services tailored for agri-food value chain), Inputs (sales and marketing empowerment), Supply Chain (supplier relationship management), Local Advisor (support for farmers with advice), and AGRIVI Connect (real-time data integration from machinery, IoT, ERP). These solutions enable digitalization of farm business, food transparency and safety, trusted AI-powered advice, efficient crop sourcing, and real-time field data monitoring."", - ""clientCategories"": [ - ""Farms (professional crop farmers with small-to-mid-sized production)"", - ""Enterprise Farms (large and complex farming holdings and agribusiness companies)"", - ""Cooperatives (professional farmer associations focused on input supply, agronomic advisory, and crop marketing)"", - ""Food and Beverages (companies with sustainable supply chain strategies and direct farmer contracting)"", - ""Retail (retail chains with own or contracted crop production for premium fresh products)"", - ""Input Manufacturers (manufacturers of seeds, crop protection products, fertilizers, and machinery)"", - ""Agronomic Advisory (private and public agronomic advisory companies)"", - ""Banks (agribusiness banks providing financing to farmers)"", - ""Public Sector (government or municipality public bodies)"" - ], - ""sectorDescription"": ""Operates in the AgTech sector, providing comprehensive digital agriculture and farm management software solutions to empower growers and agri-food companies."", - ""geographicFocus"": ""HQ: Wenlock Road 20-22, London, England N1 7GU, United Kingdom; Sales Focus: Global (serving customers worldwide)"", - ""keyExecutives"": [ - {""name"": ""Matija Zulj"", ""title"": ""Chief Executive Officer & Founder"", ""sourceUrl"": ""https://www.agrivi.com/about-us/""}, - {""name"": ""Mate Knezovic"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://www.agrivi.com/about-us/""}, - {""name"": ""Guillaume Rabhi"", ""title"": ""Chief Digital Officer"", ""sourceUrl"": ""https://www.agrivi.com/about-us/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct mention of linked documents (PDF, DOCX) found on the website or subpages."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agrivi.com/about-us/"", - ""productDescription"": ""https://www.agrivi.com/products/"", - ""clientCategories"": ""https://www.agrivi.com/industries/"", - ""geographicFocus"": ""https://www.agrivi.com/contact-us/"", - ""keyExecutives"": ""https://www.agrivi.com/about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://www.agrivi.com"", - ""companyDescription"": ""AGRIVI aims to solve the global food problem by digitalizing agriculture and transforming how food is produced, impacting over a billion people worldwide. It shifts farmers' decision-making from traditional practices to data-driven, fact-based approaches empowered by technology. AGRIVI supports sustainable, nutritious, safe, and climate-smart agricultural practices through comprehensive digital agriculture solutions for farms and agri-food stakeholders globally, addressing challenges like food security, climate change, soil health, and farmer livelihoods."", - ""productDescription"": ""AGRIVI offers comprehensive digital agriculture solutions covering the entire agri-food value chain, including 360 Farm Management Software (Farm Enterprise, Farm Insights, Farm Advisory), Supply Chain management, Food Traceability solutions for food & beverage and retail companies, AGRIVI AI Engage with generative AI tailored for agri-food, and AGRIVI Connect for real-time data integration from machinery, IoT, and ERP systems. These products enable farm business digitalization, enhance food transparency and safety, deliver AI-powered agronomic advice, optimize crop sourcing, and provide real-time field data monitoring."", - ""clientCategories"": [ - ""Farms"", - ""Enterprise Farms"", - ""Cooperatives"", - ""Food and Beverages"", - ""Retail"", - ""Input Manufacturers"", - ""Agronomic Advisory"", - ""Banks"", - ""Public Sector"" - ], - ""sectorDescription"": ""Operates in the AgTech sector, providing comprehensive digital agriculture and farm management software solutions to empower growers and agri-food companies."", - ""geographicFocus"": ""Headquartered in London, United Kingdom, AGRIVI serves customers worldwide with a global sales focus."", - ""keyExecutives"": [ - { - ""name"": ""Matija Zulj"", - ""title"": ""Chief Executive Officer & Founder"", - ""sourceUrl"": ""https://www.agrivi.com/about-us/"" - }, - { - ""name"": ""Mate Knezovic"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://www.agrivi.com/about-us/"" - }, - { - ""name"": ""Guillaume Rabhi"", - ""title"": ""Chief Digital Officer"", - ""sourceUrl"": ""https://www.agrivi.com/about-us/"" - } - ], - ""researcherNotes"": ""Entity confirmed by domain match (agrivi.com), HQ location (London, UK), and product focus on farm management software in AgTech. Key executives and titles align across company website and LinkedIn. Geographic focus stated as global from company contact page. No critical missing fields remain. No significant conflicts found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agrivi.com/about-us/"", - ""productDescription"": ""https://www.agrivi.com/products/"", - ""clientCategories"": ""https://www.agrivi.com/industries/"", - ""geographicFocus"": ""https://www.agrivi.com/contact-us/"", - ""keyExecutives"": ""https://www.agrivi.com/about-us/"" - } -}","{""clientCategories"":[""Farms"",""Enterprise Farms"",""Cooperatives"",""Food and Beverages"",""Retail"",""Input Manufacturers"",""Agronomic Advisory"",""Banks"",""Public Sector""],""companyDescription"":""AGRIVI aims to solve the global food problem by digitalizing agriculture and transforming how food is produced, impacting over a billion people worldwide. It shifts farmers' decision-making from traditional practices to data-driven, fact-based approaches empowered by technology. AGRIVI supports sustainable, nutritious, safe, and climate-smart agricultural practices through comprehensive digital agriculture solutions for farms and agri-food stakeholders globally, addressing challenges like food security, climate change, soil health, and farmer livelihoods."",""geographicFocus"":""Headquartered in London, United Kingdom, AGRIVI serves customers worldwide with a global sales focus."",""keyExecutives"":[{""name"":""Matija Zulj"",""sourceUrl"":""https://www.agrivi.com/about-us/"",""title"":""Chief Executive Officer & Founder""},{""name"":""Mate Knezovic"",""sourceUrl"":""https://www.agrivi.com/about-us/"",""title"":""Chief Operating Officer""},{""name"":""Guillaume Rabhi"",""sourceUrl"":""https://www.agrivi.com/about-us/"",""title"":""Chief Digital Officer""}],""missingImportantFields"":[],""productDescription"":""AGRIVI offers comprehensive digital agriculture solutions covering the entire agri-food value chain, including 360 Farm Management Software (Farm Enterprise, Farm Insights, Farm Advisory), Supply Chain management, Food Traceability solutions for food & beverage and retail companies, AGRIVI AI Engage with generative AI tailored for agri-food, and AGRIVI Connect for real-time data integration from machinery, IoT, and ERP systems. These products enable farm business digitalization, enhance food transparency and safety, deliver AI-powered agronomic advice, optimize crop sourcing, and provide real-time field data monitoring."",""researcherNotes"":""Entity confirmed by domain match (agrivi.com), HQ location (London, UK), and product focus on farm management software in AgTech. Key executives and titles align across company website and LinkedIn. Geographic focus stated as global from company contact page. No critical missing fields remain. No significant conflicts found."",""sectorDescription"":""Operates in the AgTech sector, providing comprehensive digital agriculture and farm management software solutions to empower growers and agri-food companies."",""sources"":{""clientCategories"":""https://www.agrivi.com/industries/"",""companyDescription"":""https://www.agrivi.com/about-us/"",""geographicFocus"":""https://www.agrivi.com/contact-us/"",""keyExecutives"":""https://www.agrivi.com/about-us/"",""productDescription"":""https://www.agrivi.com/products/""},""websiteURL"":""https://www.agrivi.com""}","Correctness: 98% Completeness: 95% The information is highly accurate and well-supported by multiple authoritative sources. AGRIVI Ltd is confirmed as a private limited company registered in London at 20-22 Wenlock Road, N1 7GU, incorporated on 27 May 2014, with the nature of business coded as support activities for crop production[1]. The company website affirms AGRIVI’s global provision of comprehensive digital agriculture solutions that empower diverse agri-food stakeholders with AI and data-driven farm management software, supply chain, traceability, and AI advisory products[2]. Key executives named on the official site include Matija Zulj (CEO & Founder), Mate Knezovic (COO), and Guillaume Rabhi (CDO), aligning well with the data provided in the query. AGRIVI’s broad sector focus on digital agriculture and Farm Management Software is consistent across sources, and the geographic focus on worldwide customers is well-described[2]. Minor discrepancies include an alternative London address mention (St John St in [3]) but the official UK government registration supersedes that for correctness. Some financial and employee data referenced in secondary sources are less detailed, but the essential claims about company purpose, leadership, location, and product offerings are robustly verified. No critical omissions appear, fulfilling a near-complete factual representation[1][2][3]. URLs: https://find-and-update.company-information.service.gov.uk/company/09058697, https://www.agrivi.com, https://www.zoominfo.com/c/agrivi-ltd/365457570","{""clientCategories"":[""Farms (professional crop farmers with small-to-mid-sized production)"",""Enterprise Farms (large and complex farming holdings and agribusiness companies)"",""Cooperatives (professional farmer associations focused on input supply, agronomic advisory, and crop marketing)"",""Food and Beverages (companies with sustainable supply chain strategies and direct farmer contracting)"",""Retail (retail chains with own or contracted crop production for premium fresh products)"",""Input Manufacturers (manufacturers of seeds, crop protection products, fertilizers, and machinery)"",""Agronomic Advisory (private and public agronomic advisory companies)"",""Banks (agribusiness banks providing financing to farmers)"",""Public Sector (government or municipality public bodies)""],""companyDescription"":""AGRIVI's mission is to solve the global food problem by digitalizing agriculture and changing how food is produced to positively impact over a billion people. They aim to shift farmers' decision-making from traditional practices to data-driven, fact-based approaches empowered by technology, supporting sustainable, nutritious, safe, and climate-smart agricultural practices. AGRIVI provides comprehensive digital agriculture solutions for farms and agri-food stakeholders to facilitate collaboration, improve yield, food safety, and supply chain sustainability globally. Their vision includes addressing food security challenges, climate change impact, soil health, local self-sufficiency, and farmer livelihoods through digital transformation."",""geographicFocus"":""HQ: Wenlock Road 20-22, London, England N1 7GU, United Kingdom; Sales Focus: Global (serving customers worldwide)"",""keyExecutives"":[{""name"":""Matija Zulj"",""sourceUrl"":""https://www.agrivi.com/about-us/"",""title"":""Chief Executive Officer & Founder""},{""name"":""Mate Knezovic"",""sourceUrl"":""https://www.agrivi.com/about-us/"",""title"":""Chief Operating Officer""},{""name"":""Guillaume Rabhi"",""sourceUrl"":""https://www.agrivi.com/about-us/"",""title"":""Chief Digital Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""AGRIVI offers powerful digital agriculture solutions supporting the entire agri-food value chain. Core products and services include: AGRIVI 360 Farm Management Software (Farm Enterprise, Farm Insights, Farm Advisory), Agriculture Supply Chain management platform, AGRIVI Food Traceability solution for food & beverage and retail companies, AGRIVI AI Engage (generative AI agents and services tailored for agri-food value chain), Inputs (sales and marketing empowerment), Supply Chain (supplier relationship management), Local Advisor (support for farmers with advice), and AGRIVI Connect (real-time data integration from machinery, IoT, ERP). These solutions enable digitalization of farm business, food transparency and safety, trusted AI-powered advice, efficient crop sourcing, and real-time field data monitoring."",""researcherNotes"":""No direct mention of linked documents (PDF, DOCX) found on the website or subpages."",""sectorDescription"":""Operates in the AgTech sector, providing comprehensive digital agriculture and farm management software solutions to empower growers and agri-food companies."",""sources"":{""clientCategories"":""https://www.agrivi.com/industries/"",""companyDescription"":""https://www.agrivi.com/about-us/"",""geographicFocus"":""https://www.agrivi.com/contact-us/"",""keyExecutives"":""https://www.agrivi.com/about-us/"",""productDescription"":""https://www.agrivi.com/products/""},""websiteURL"":""http://www.agrivi.com""}" -ToolSense,https://www.toolsense.io,"aws Gründungsfonds, Ibrahim Imam, Matterwave Ventures, PricewaterhouseCoopers, Sander van de Rijdt",toolsense.io,https://www.linkedin.com/company/toolsense,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.toolsense.io"", - ""companyDescription"": ""At ToolSense, their mission is to solve customer challenges by integrating SaaS and IoT technologies to digitize and automate Maintenance, Repair, and Operations workflows, empowering frontline workers, boosting productivity, and promoting sustainable operations. They aim to transform asset-intensive industries that make up more than 30% of global GDP and 80% of CO2 emissions. Founded in 2017 by three computer engineering students, ToolSense focuses on creating solutions that combine user-friendly software with modern IoT devices to automate workflows, moving beyond manual, outdated tools such as Excel and pen and paper."", - ""productDescription"": ""ToolSense offers the following core products and services: \n- Asset Management\n- Work Order Management\n- Maintenance Management\n- Parts & Inventory Management\n- ToolSense AI Assistant (AI-powered automation)\n- Equipment Safety Inspections\n- Asset Lifecycle Processes\n- Analytics & Reporting\n- Vehicle Trips & Winter Service Documentation\n- Equipment Scheduling\n- Custom Forms & Checklists\n- SSO, Integrations & support for 100+ languages\n- ToolSense IoT Hardware"", - ""clientCategories"": [ - ""Clubs and Associations"", - ""Construction and Mining"", - ""Education and Schools"", - ""Energy and Utilities"", - ""Manufacturers and Dealers"", - ""Facility Management"", - ""Farming and Agriculture"", - ""Food and Beverage"", - ""Hospitality"", - ""Manufacturing"", - ""Property Management"" - ], - ""sectorDescription"": ""Operates in the SaaS and IoT sector, providing an asset operations platform that digitizes and automates maintenance, repair, and operational workflows for asset-intensive industries."", - ""geographicFocus"": ""HQ: Praterstraße 1, 2nd floor (Space 21), 1020 Vienna, Austria; Sales Focus: Global as evidenced by customers from various industries worldwide"", - ""keyExecutives"": [ - { - ""name"": ""Alexander Manafi"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Benjamin"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Rostyslav"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Alexander"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - } - ], - ""linkedDocuments"": [ - ""https://toolsense.io/wp-content/uploads/2020/07/toolsense-kenter.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_ES_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_EN_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_DE_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_NL_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_ITL-compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_EN_compressed-1.pdf"", - ""https://toolsense.io/wp-content/uploads/2023/03/CDL-Pre-trip-Inspection-Checklist-ToolSense.pdf"", - ""https://toolsense.io/wp-content/uploads/2022/04/Safety-Harness-Inspection-Checklist.pdf"", - ""https://toolsense.io/wp-content/uploads/2022/04/Safety-Harness-Inspection-Checklist-1.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://toolsense.io/about-us-2/"", - ""productDescription"": ""https://toolsense.io/products/"", - ""clientCategories"": ""https://toolsense.io/customers/"", - ""geographicFocus"": ""https://toolsense.io/imprint"", - ""keyExecutives"": ""https://toolsense.io/about-us-2/"" - } -}","{ - ""websiteURL"": ""https://www.toolsense.io"", - ""companyDescription"": ""At ToolSense, their mission is to solve customer challenges by integrating SaaS and IoT technologies to digitize and automate Maintenance, Repair, and Operations workflows, empowering frontline workers, boosting productivity, and promoting sustainable operations. They aim to transform asset-intensive industries that make up more than 30% of global GDP and 80% of CO2 emissions. Founded in 2017 by three computer engineering students, ToolSense focuses on creating solutions that combine user-friendly software with modern IoT devices to automate workflows, moving beyond manual, outdated tools such as Excel and pen and paper."", - ""productDescription"": ""ToolSense offers the following core products and services: \n- Asset Management\n- Work Order Management\n- Maintenance Management\n- Parts & Inventory Management\n- ToolSense AI Assistant (AI-powered automation)\n- Equipment Safety Inspections\n- Asset Lifecycle Processes\n- Analytics & Reporting\n- Vehicle Trips & Winter Service Documentation\n- Equipment Scheduling\n- Custom Forms & Checklists\n- SSO, Integrations & support for 100+ languages\n- ToolSense IoT Hardware"", - ""clientCategories"": [ - ""Clubs and Associations"", - ""Construction and Mining"", - ""Education and Schools"", - ""Energy and Utilities"", - ""Manufacturers and Dealers"", - ""Facility Management"", - ""Farming and Agriculture"", - ""Food and Beverage"", - ""Hospitality"", - ""Manufacturing"", - ""Property Management"" - ], - ""sectorDescription"": ""Operates in the SaaS and IoT sector, providing an asset operations platform that digitizes and automates maintenance, repair, and operational workflows for asset-intensive industries."", - ""geographicFocus"": ""HQ: Praterstraße 1, 2nd floor (Space 21), 1020 Vienna, Austria; Sales Focus: Global as evidenced by customers from various industries worldwide"", - ""keyExecutives"": [ - { - ""name"": ""Alexander Manafi"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Benjamin"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Rostyslav"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Alexander"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - } - ], - ""linkedDocuments"": [ - ""https://toolsense.io/wp-content/uploads/2020/07/toolsense-kenter.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_ES_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_EN_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_DE_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_NL_compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_ITL-compressed.pdf"", - ""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_EN_compressed-1.pdf"", - ""https://toolsense.io/wp-content/uploads/2023/03/CDL-Pre-trip-Inspection-Checklist-ToolSense.pdf"", - ""https://toolsense.io/wp-content/uploads/2022/04/Safety-Harness-Inspection-Checklist.pdf"", - ""https://toolsense.io/wp-content/uploads/2022/04/Safety-Harness-Inspection-Checklist-1.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://toolsense.io/about-us-2/"", - ""productDescription"": ""https://toolsense.io/products/"", - ""clientCategories"": ""https://toolsense.io/customers/"", - ""geographicFocus"": ""https://toolsense.io/imprint"", - ""keyExecutives"": ""https://toolsense.io/about-us-2/"" - } -}",[],"{ - ""websiteURL"": ""https://www.toolsense.io"", - ""companyDescription"": ""At ToolSense, their mission is to solve customer challenges by integrating SaaS and IoT technologies to digitize and automate Maintenance, Repair, and Operations workflows, empowering frontline workers, boosting productivity, and promoting sustainable operations. They aim to transform asset-intensive industries that make up more than 30% of global GDP and 80% of CO2 emissions. Founded in 2017 by three computer engineering students, ToolSense focuses on creating solutions that combine user-friendly software with modern IoT devices to automate workflows, moving beyond manual, outdated tools such as Excel and pen and paper."", - ""productDescription"": ""ToolSense offers core products and services including Asset Management, Work Order Management, Maintenance Management, Parts & Inventory Management, an AI-powered ToolSense AI Assistant for automation, Equipment Safety Inspections, Asset Lifecycle Processes, Analytics & Reporting, Vehicle Trips & Winter Service Documentation, Equipment Scheduling, Custom Forms & Checklists, and SSO and integrations supporting over 100 languages. They also provide proprietary IoT hardware that connects physical assets to their software platform, helping teams reduce unplanned downtime by 75%, save 20% on maintenance costs, and boost operational efficiency."", - ""clientCategories"": [ - ""Clubs and Associations"", - ""Construction and Mining"", - ""Education and Schools"", - ""Energy and Utilities"", - ""Manufacturers and Dealers"", - ""Facility Management"", - ""Farming and Agriculture"", - ""Food and Beverage"", - ""Hospitality"", - ""Manufacturing"", - ""Property Management"" - ], - ""sectorDescription"": ""Operates in the SaaS and IoT sector, providing an asset operations platform that digitizes and automates maintenance, repair, and operational workflows for asset-intensive industries."", - ""geographicFocus"": ""Headquartered in Vienna, Austria, ToolSense serves a global customer base across multiple asset-intensive industries worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Alexander Manafi"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Benjamin"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Rostyslav"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - }, - { - ""name"": ""Alexander"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://toolsense.io/about-us-2/"" - } - ], - ""researcherNotes"": ""The company ToolSense is confirmed based on matching website domain, headquarters in Vienna, Austria, founding year 2017, and SaaS/IoT product focus. LinkedIn senior leadership data did not add new names or titles beyond the company About page. Geographic footprint is global as indicated by customer diversity but explicit regional sales offices beyond HQ were not found. No missing critical fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://toolsense.io/about-us-2/"", - ""productDescription"": ""https://toolsense.io/products/"", - ""clientCategories"": ""https://toolsense.io/customers/"", - ""geographicFocus"": ""https://toolsense.io/imprint"", - ""keyExecutives"": ""https://toolsense.io/about-us-2/"" - } -}","{""clientCategories"":[""Clubs and Associations"",""Construction and Mining"",""Education and Schools"",""Energy and Utilities"",""Manufacturers and Dealers"",""Facility Management"",""Farming and Agriculture"",""Food and Beverage"",""Hospitality"",""Manufacturing"",""Property Management""],""companyDescription"":""At ToolSense, their mission is to solve customer challenges by integrating SaaS and IoT technologies to digitize and automate Maintenance, Repair, and Operations workflows, empowering frontline workers, boosting productivity, and promoting sustainable operations. They aim to transform asset-intensive industries that make up more than 30% of global GDP and 80% of CO2 emissions. Founded in 2017 by three computer engineering students, ToolSense focuses on creating solutions that combine user-friendly software with modern IoT devices to automate workflows, moving beyond manual, outdated tools such as Excel and pen and paper."",""geographicFocus"":""Headquartered in Vienna, Austria, ToolSense serves a global customer base across multiple asset-intensive industries worldwide."",""keyExecutives"":[{""name"":""Alexander Manafi"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""CEO""},{""name"":""Benjamin"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""Co-founder""},{""name"":""Rostyslav"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""Co-founder""},{""name"":""Alexander"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""ToolSense offers core products and services including Asset Management, Work Order Management, Maintenance Management, Parts & Inventory Management, an AI-powered ToolSense AI Assistant for automation, Equipment Safety Inspections, Asset Lifecycle Processes, Analytics & Reporting, Vehicle Trips & Winter Service Documentation, Equipment Scheduling, Custom Forms & Checklists, and SSO and integrations supporting over 100 languages. They also provide proprietary IoT hardware that connects physical assets to their software platform, helping teams reduce unplanned downtime by 75%, save 20% on maintenance costs, and boost operational efficiency."",""researcherNotes"":""The company ToolSense is confirmed based on matching website domain, headquarters in Vienna, Austria, founding year 2017, and SaaS/IoT product focus. LinkedIn senior leadership data did not add new names or titles beyond the company About page. Geographic footprint is global as indicated by customer diversity but explicit regional sales offices beyond HQ were not found. No missing critical fields remain."",""sectorDescription"":""Operates in the SaaS and IoT sector, providing an asset operations platform that digitizes and automates maintenance, repair, and operational workflows for asset-intensive industries."",""sources"":{""clientCategories"":""https://toolsense.io/customers/"",""companyDescription"":""https://toolsense.io/about-us-2/"",""geographicFocus"":""https://toolsense.io/imprint"",""keyExecutives"":""https://toolsense.io/about-us-2/"",""productDescription"":""https://toolsense.io/products/""},""websiteURL"":""https://www.toolsense.io""}","Correctness: 95% Completeness: 90% The company ToolSense is correctly described as founded in 2017 by three computer engineering students: Alexander Manafi, Benjamin Petterle, and Rostyslav Yavorskyi, originating as a spin-off from the University of Applied Sciences in Vienna. The headquarters is confirmed in Vienna, Austria, serving a global customer base across asset-intensive industries. Their product focus on SaaS and IoT solutions for asset maintenance, repair, and operations workflows, including their proprietary IoT hardware and AI-assisted automation, is well supported along with reported operational benefits such as 75% reduction in unplanned downtime and 20% maintenance cost savings. Leadership naming is accurate with Alexander Manafi as CEO and the other two as co-founders. The customer categories and industry sectors are consistent with sources indicating broad adoption in construction, facility management, manufacturing, and others. Recent funding rounds and employee counts vary slightly but do not materially contradict the description. Minor gaps include slightly older funding status (Series A €8M round in late 2022) and employee count variances, but these do not undermine the overall accuracy. Key sources include the company About page (https://toolsense.io/about-us-2/), the December 2022 funding news (https://en.ain.ua/2022/12/13/toolsense-closes-8m-series-a-round/), and Dealroom data (https://app.dealroom.co/companies/toolsense).","{""clientCategories"":[""Clubs and Associations"",""Construction and Mining"",""Education and Schools"",""Energy and Utilities"",""Manufacturers and Dealers"",""Facility Management"",""Farming and Agriculture"",""Food and Beverage"",""Hospitality"",""Manufacturing"",""Property Management""],""companyDescription"":""At ToolSense, their mission is to solve customer challenges by integrating SaaS and IoT technologies to digitize and automate Maintenance, Repair, and Operations workflows, empowering frontline workers, boosting productivity, and promoting sustainable operations. They aim to transform asset-intensive industries that make up more than 30% of global GDP and 80% of CO2 emissions. Founded in 2017 by three computer engineering students, ToolSense focuses on creating solutions that combine user-friendly software with modern IoT devices to automate workflows, moving beyond manual, outdated tools such as Excel and pen and paper."",""geographicFocus"":""HQ: Praterstraße 1, 2nd floor (Space 21), 1020 Vienna, Austria; Sales Focus: Global as evidenced by customers from various industries worldwide"",""keyExecutives"":[{""name"":""Alexander Manafi"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""CEO""},{""name"":""Benjamin"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""Co-founder""},{""name"":""Rostyslav"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""Co-founder""},{""name"":""Alexander"",""sourceUrl"":""https://toolsense.io/about-us-2/"",""title"":""Co-founder""}],""linkedDocuments"":[""https://toolsense.io/wp-content/uploads/2020/07/toolsense-kenter.pdf"",""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_ES_compressed.pdf"",""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_EN_compressed.pdf"",""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_DE_compressed.pdf"",""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_NL_compressed.pdf"",""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_ITL-compressed.pdf"",""https://toolsense.io/wp-content/uploads/2024/05/No-Pricing-Hardware-datasheet_EN_compressed-1.pdf"",""https://toolsense.io/wp-content/uploads/2023/03/CDL-Pre-trip-Inspection-Checklist-ToolSense.pdf"",""https://toolsense.io/wp-content/uploads/2022/04/Safety-Harness-Inspection-Checklist.pdf"",""https://toolsense.io/wp-content/uploads/2022/04/Safety-Harness-Inspection-Checklist-1.pdf""],""missingImportantFields"":[],""productDescription"":""ToolSense offers the following core products and services: \n- Asset Management\n- Work Order Management\n- Maintenance Management\n- Parts & Inventory Management\n- ToolSense AI Assistant (AI-powered automation)\n- Equipment Safety Inspections\n- Asset Lifecycle Processes\n- Analytics & Reporting\n- Vehicle Trips & Winter Service Documentation\n- Equipment Scheduling\n- Custom Forms & Checklists\n- SSO, Integrations & support for 100+ languages\n- ToolSense IoT Hardware"",""researcherNotes"":null,""sectorDescription"":""Operates in the SaaS and IoT sector, providing an asset operations platform that digitizes and automates maintenance, repair, and operational workflows for asset-intensive industries."",""sources"":{""clientCategories"":""https://toolsense.io/customers/"",""companyDescription"":""https://toolsense.io/about-us-2/"",""geographicFocus"":""https://toolsense.io/imprint"",""keyExecutives"":""https://toolsense.io/about-us-2/"",""productDescription"":""https://toolsense.io/products/""},""websiteURL"":""https://www.toolsense.io""}" -Deep Branch Biotechnology,https://deepbranch.com,"Barclays Sustainable and Impact Banking, DSM Venturing, Novo Holdings, TotalEnergies Ventures",deepbranch.com,https://www.linkedin.com/company/deepbranch,"{""seniorLeadership"":[{""name"":""Anders Clausen"",""title"":""Chief Innovation Officer"",""profileUrl"":""https://www.linkedin.com/company/deepbranch""},{""name"":""John Carolin"",""title"":""Non-executive director"",""profileUrl"":""https://www.linkedin.com/in/johncarolin""}]}","{""seniorLeadership"":[{""name"":""Anders Clausen"",""title"":""Chief Innovation Officer"",""profileUrl"":""https://www.linkedin.com/company/deepbranch""},{""name"":""John Carolin"",""title"":""Non-executive director"",""profileUrl"":""https://www.linkedin.com/in/johncarolin""}]}","{ - ""websiteURL"": ""https://deepbranch.com"", - ""companyDescription"": ""Aerbio is a company pioneering sustainable fermentation technology to produce a greener protein called Proton™ by converting carbon dioxide and hydrogen using microbiology. Their mission is to redefine how microbiology can be harnessed to create eco-friendly protein ingredients that support a sustainable and carbon-neutral food system. They aim to reduce reliance on traditional plant and animal proteins which negatively impact the environment. Aerbio collaborates with industry leaders, feedstock suppliers, engineering partners, and universities to scale and improve their technology and products."", - ""productDescription"": ""Proton™ is a protein-rich ingredient derived from natural microorganisms through a gas fermentation process using carbon dioxide, hydrogen, oxygen, nitrogen, and electrolytes. It contains over 70% protein content, has a neutral taste, and is produced in a clean, traceable process. Proton™ is a single-cell protein or microbial biomass that can be continuously produced by harvesting protein-rich microbial cells from a milk-like broth. Its production slashes the carbon footprint by 90% compared to conventional plant-based or animal proteins and does not require fertile soil. Proton™ is suitable for sustainable animal nutrition and food applications."", - ""clientCategories"": [""Animal Feed Industry"", ""Aquafeed"", ""Monogastric Feed""], - ""sectorDescription"": ""Operates in the sustainable industrial biotechnology sector, pioneering gas fermentation technology to produce eco-friendly protein ingredients for animal nutrition."", - ""geographicFocus"": ""HQ: DTU Risø Campus, Frederiksborgvej 399, 4000 Roskilde, Denmark; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Kaspar Kristiansen"", ""title"": ""CEO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Rob Mansfield"", ""title"": ""CTO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Bo Karmark"", ""title"": ""CFO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://deepbranch.com/"", - ""productDescription"": ""https://deepbranch.com/proton/"", - ""clientCategories"": ""https://aer.bio/how-aerbio-is-transforming-the-animal-feed-industry"", - ""geographicFocus"": ""https://deepbranch.com/contact-us/"", - ""keyExecutives"": ""https://aer.bio/who-we-are/"" - } -}","{ - ""websiteURL"": ""https://deepbranch.com"", - ""companyDescription"": ""Aerbio is a company pioneering sustainable fermentation technology to produce a greener protein called Proton™ by converting carbon dioxide and hydrogen using microbiology. Their mission is to redefine how microbiology can be harnessed to create eco-friendly protein ingredients that support a sustainable and carbon-neutral food system. They aim to reduce reliance on traditional plant and animal proteins which negatively impact the environment. Aerbio collaborates with industry leaders, feedstock suppliers, engineering partners, and universities to scale and improve their technology and products."", - ""productDescription"": ""Proton™ is a protein-rich ingredient derived from natural microorganisms through a gas fermentation process using carbon dioxide, hydrogen, oxygen, nitrogen, and electrolytes. It contains over 70% protein content, has a neutral taste, and is produced in a clean, traceable process. Proton™ is a single-cell protein or microbial biomass that can be continuously produced by harvesting protein-rich microbial cells from a milk-like broth. Its production slashes the carbon footprint by 90% compared to conventional plant-based or animal proteins and does not require fertile soil. Proton™ is suitable for sustainable animal nutrition and food applications."", - ""clientCategories"": [""Animal Feed Industry"", ""Aquafeed"", ""Monogastric Feed""], - ""sectorDescription"": ""Operates in the sustainable industrial biotechnology sector, pioneering gas fermentation technology to produce eco-friendly protein ingredients for animal nutrition."", - ""geographicFocus"": ""HQ: DTU Risø Campus, Frederiksborgvej 399, 4000 Roskilde, Denmark; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Kaspar Kristiansen"", ""title"": ""CEO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Rob Mansfield"", ""title"": ""CTO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Bo Karmark"", ""title"": ""CFO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://deepbranch.com/"", - ""productDescription"": ""https://deepbranch.com/proton/"", - ""clientCategories"": ""https://aer.bio/how-aerbio-is-transforming-the-animal-feed-industry"", - ""geographicFocus"": ""https://deepbranch.com/contact-us/"", - ""keyExecutives"": ""https://aer.bio/who-we-are/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://deepbranch.com"", - ""companyDescription"": ""Aerbio pioneers sustainable fermentation technology to produce Proton™, a greener protein derived from carbon dioxide and hydrogen via advanced microbiology. Their mission is to harness microbiology to develop eco-friendly protein ingredients that support a carbon-neutral food system, reducing reliance on traditional plant and animal proteins with high environmental footprints. Aerbio collaborates with industry leaders, feedstock suppliers, engineering partners, and academic institutions to scale and refine their technology and products."", - ""productDescription"": ""Proton™ is a protein-rich ingredient (>70% protein) made from natural microorganisms through a gas fermentation process using carbon dioxide, hydrogen, oxygen, nitrogen, and electrolytes. It is a single-cell protein harvested continuously from a milk-like broth, featuring a neutral taste and clean, traceable production. This method reduces the carbon footprint by 90% compared to conventional plant or animal proteins and requires no fertile soil. Proton™ targets sustainable applications in animal nutrition, aquafeed, and monogastric feed."", - ""clientCategories"": [""Animal Feed Industry"", ""Aquafeed"", ""Monogastric Feed""], - ""sectorDescription"": ""Operates in the sustainable industrial biotechnology sector, specializing in aerobic gas fermentation to produce eco-friendly protein ingredients for animal nutrition."", - ""geographicFocus"": ""Headquartered at DTU Risø Campus, Roskilde, Denmark, with operational scaling activities in the Netherlands; sales footprint is not publicly detailed but the company is focused on global partnerships across the food and animal nutrition supply chain."", - ""keyExecutives"": [ - {""name"": ""Kaspar Kristiansen"", ""title"": ""CEO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Rob Mansfield"", ""title"": ""CTO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Bo Karmark"", ""title"": ""CFO"", ""sourceUrl"": ""https://aer.bio/who-we-are/""}, - {""name"": ""Anders Clausen"", ""title"": ""Chief Innovation Officer"", ""sourceUrl"": ""https://www.linkedin.com/company/deepbranch""}, - {""name"": ""John Carolin"", ""title"": ""Non-executive Director"", ""sourceUrl"": ""https://www.linkedin.com/in/johncarolin""} - ], - ""researcherNotes"": ""Aerbio is confirmed as the company formerly known as Deep Branch, specializing in aerobic gas fermentation for protein production, with HQ in Roskilde, Denmark, and pilot operations in the Netherlands. The key executives listed on the company site and LinkedIn align with the company identity. Geographic sales focus is not explicitly detailed in public sources. The added executives from LinkedIn complete senior leadership without conflicting data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://deepbranch.com/"", - ""productDescription"": ""https://deepbranch.com/proton/"", - ""clientCategories"": ""https://aer.bio/how-aerbio-is-transforming-the-animal-feed-industry"", - ""geographicFocus"": ""https://deepbranch.com/contact-us/"", - ""keyExecutives"": ""https://aer.bio/who-we-are/"" - } -}","{""clientCategories"":[""Animal Feed Industry"",""Aquafeed"",""Monogastric Feed""],""companyDescription"":""Aerbio pioneers sustainable fermentation technology to produce Proton™, a greener protein derived from carbon dioxide and hydrogen via advanced microbiology. Their mission is to harness microbiology to develop eco-friendly protein ingredients that support a carbon-neutral food system, reducing reliance on traditional plant and animal proteins with high environmental footprints. Aerbio collaborates with industry leaders, feedstock suppliers, engineering partners, and academic institutions to scale and refine their technology and products."",""geographicFocus"":""Headquartered at DTU Risø Campus, Roskilde, Denmark, with operational scaling activities in the Netherlands; sales footprint is not publicly detailed but the company is focused on global partnerships across the food and animal nutrition supply chain."",""keyExecutives"":[{""name"":""Kaspar Kristiansen"",""sourceUrl"":""https://aer.bio/who-we-are/"",""title"":""CEO""},{""name"":""Rob Mansfield"",""sourceUrl"":""https://aer.bio/who-we-are/"",""title"":""CTO""},{""name"":""Bo Karmark"",""sourceUrl"":""https://aer.bio/who-we-are/"",""title"":""CFO""},{""name"":""Anders Clausen"",""sourceUrl"":""https://www.linkedin.com/company/deepbranch"",""title"":""Chief Innovation Officer""},{""name"":""John Carolin"",""sourceUrl"":""https://www.linkedin.com/in/johncarolin"",""title"":""Non-executive Director""}],""missingImportantFields"":[],""productDescription"":""Proton™ is a protein-rich ingredient (>70% protein) made from natural microorganisms through a gas fermentation process using carbon dioxide, hydrogen, oxygen, nitrogen, and electrolytes. It is a single-cell protein harvested continuously from a milk-like broth, featuring a neutral taste and clean, traceable production. This method reduces the carbon footprint by 90% compared to conventional plant or animal proteins and requires no fertile soil. Proton™ targets sustainable applications in animal nutrition, aquafeed, and monogastric feed."",""researcherNotes"":""Aerbio is confirmed as the company formerly known as Deep Branch, specializing in aerobic gas fermentation for protein production, with HQ in Roskilde, Denmark, and pilot operations in the Netherlands. The key executives listed on the company site and LinkedIn align with the company identity. Geographic sales focus is not explicitly detailed in public sources. The added executives from LinkedIn complete senior leadership without conflicting data."",""sectorDescription"":""Operates in the sustainable industrial biotechnology sector, specializing in aerobic gas fermentation to produce eco-friendly protein ingredients for animal nutrition."",""sources"":{""clientCategories"":""https://aer.bio/how-aerbio-is-transforming-the-animal-feed-industry"",""companyDescription"":""https://deepbranch.com/"",""geographicFocus"":""https://deepbranch.com/contact-us/"",""keyExecutives"":""https://aer.bio/who-we-are/"",""productDescription"":""https://deepbranch.com/proton/""},""websiteURL"":""https://deepbranch.com""}","Correctness: 95% Completeness: 90% The information is largely factually correct and complete based on multiple authoritative company-controlled sources. Aerbio was founded in 2024 as a management buyout of UK-headquartered Deep Branch Biotechnology Ltd, with its headquarters established in Roskilde, Denmark, at the DTU Risø Campus and operational activities in the Netherlands, consistent with the presented geographic focus[1][2][3][4]. The leadership team is well confirmed: Kaspar Kristiansen as CEO, Rob Mansfield as CTO, Bo Karmark as CFO, and additional senior roles including Anders Clausen (CIO) and John Carolin (Non-executive Director) align with public LinkedIn and company site data without discrepancies[3]. The product description of Proton™ as a protein-rich (>70%) single-cell protein produced via aerobic gas fermentation using carbon dioxide and hydrogen closely matches official disclosures and emphasizes sustainability, a 90% carbon footprint reduction over conventional proteins, and applications in animal nutrition sectors like aquafeed and monogastric feed[1][3][4]. Completeness is slightly reduced because the sales footprint remains unspecified publicly, and some minor executive changes (e.g., CXO Peter Rowe’s exit) post-buyout are not reflected in the original data, although these are noted in more recent sources[1][2]. Overall, the data is well-aligned and authoritative, supported by official company sources and recent media interviews with executives (2024–2025)[1][2][3][4]. URLs: https://aer.bio/who-we-are/, https://aer.bio/unveiling-aerbio-the-future-of-fermentation/, https://teng.mydigitalpublication.co.uk/articles/biotechnology, https://biconsortium.eu/member/aerbio","{""clientCategories"":[""Animal Feed Industry"",""Aquafeed"",""Monogastric Feed""],""companyDescription"":""Aerbio is a company pioneering sustainable fermentation technology to produce a greener protein called Proton™ by converting carbon dioxide and hydrogen using microbiology. Their mission is to redefine how microbiology can be harnessed to create eco-friendly protein ingredients that support a sustainable and carbon-neutral food system. They aim to reduce reliance on traditional plant and animal proteins which negatively impact the environment. Aerbio collaborates with industry leaders, feedstock suppliers, engineering partners, and universities to scale and improve their technology and products."",""geographicFocus"":""HQ: DTU Risø Campus, Frederiksborgvej 399, 4000 Roskilde, Denmark; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Kaspar Kristiansen"",""sourceUrl"":""https://aer.bio/who-we-are/"",""title"":""CEO""},{""name"":""Rob Mansfield"",""sourceUrl"":""https://aer.bio/who-we-are/"",""title"":""CTO""},{""name"":""Bo Karmark"",""sourceUrl"":""https://aer.bio/who-we-are/"",""title"":""CFO""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Proton™ is a protein-rich ingredient derived from natural microorganisms through a gas fermentation process using carbon dioxide, hydrogen, oxygen, nitrogen, and electrolytes. It contains over 70% protein content, has a neutral taste, and is produced in a clean, traceable process. Proton™ is a single-cell protein or microbial biomass that can be continuously produced by harvesting protein-rich microbial cells from a milk-like broth. Its production slashes the carbon footprint by 90% compared to conventional plant-based or animal proteins and does not require fertile soil. Proton™ is suitable for sustainable animal nutrition and food applications."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable industrial biotechnology sector, pioneering gas fermentation technology to produce eco-friendly protein ingredients for animal nutrition."",""sources"":{""clientCategories"":""https://aer.bio/how-aerbio-is-transforming-the-animal-feed-industry"",""companyDescription"":""https://deepbranch.com/"",""geographicFocus"":""https://deepbranch.com/contact-us/"",""keyExecutives"":""https://aer.bio/who-we-are/"",""productDescription"":""https://deepbranch.com/proton/""},""websiteURL"":""https://deepbranch.com""}" -trecker.com,http://www.trecker.com,Target Partners,trecker.com,https://www.linkedin.com/company/trecker-com,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.trecker.com"", - ""companyDescription"": ""trecker.com is a SaaS platform for the agriculture industry that enables farmers to manage their business, track working hours accurately, and analyze profitability. It uses geo-fencing to associate data with specific fields, helping optimize farm operations and comply with EU law. Founded in 2012 by Benedikt Voigt and Miro Wilms in Berlin, trecker.com focuses on bringing digital solutions to the agriculture industry to help farmers and contractors optimize their operations for profitability and sustainability."", - ""productDescription"": ""trecker.com offers a SaaS platform with features including fieldwork tracking, inventory management, profitability monitoring, task assignment, machinery management, expense tracking, analytics tools for data-driven decision making, weather forecasting tools, and digital plant nutrition solutions under development."", - ""clientCategories"": [""Farmers"", ""Farm Contractors"", ""Agriculture Sector""], - ""sectorDescription"": ""Operates in the AgriTech sector, providing digital farming solutions through a SaaS platform for farmers and contractors."", - ""geographicFocus"": ""HQ: Berlin, Germany; Sales Focus: Europe, supported by investment from the European Union and collaborations with partners."", - ""keyExecutives"": [ - {""name"": ""Miro Wilms"", ""title"": ""CEO, Founder"", ""sourceUrl"": ""https://www.linkedin.com/company/trecker-com""}, - {""name"": ""Benedikt Voigt"", ""title"": ""CPO, Founder"", ""sourceUrl"": ""https://www.linkedin.com/company/trecker-com""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Company information was not fully available on the direct website, so data was supplemented from trusted third-party sources such as LinkedIn and startup news articles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/trecker-com"", - ""productDescription"": ""https://www.linkedin.com/company/trecker-com"", - ""clientCategories"": ""https://linkedin.com/company/trecker-com"", - ""geographicFocus"": ""https://linkedin.com/company/trecker-com"", - ""keyExecutives"": ""https://linkedin.com/company/trecker-com"" - } -}","{ - ""websiteURL"": ""http://www.trecker.com"", - ""companyDescription"": ""trecker.com is a SaaS platform for the agriculture industry that enables farmers to manage their business, track working hours accurately, and analyze profitability. It uses geo-fencing to associate data with specific fields, helping optimize farm operations and comply with EU law. Founded in 2012 by Benedikt Voigt and Miro Wilms in Berlin, trecker.com focuses on bringing digital solutions to the agriculture industry to help farmers and contractors optimize their operations for profitability and sustainability."", - ""productDescription"": ""trecker.com offers a SaaS platform with features including fieldwork tracking, inventory management, profitability monitoring, task assignment, machinery management, expense tracking, analytics tools for data-driven decision making, weather forecasting tools, and digital plant nutrition solutions under development."", - ""clientCategories"": [""Farmers"", ""Farm Contractors"", ""Agriculture Sector""], - ""sectorDescription"": ""Operates in the AgriTech sector, providing digital farming solutions through a SaaS platform for farmers and contractors."", - ""geographicFocus"": ""HQ: Berlin, Germany; Sales Focus: Europe, supported by investment from the European Union and collaborations with partners."", - ""keyExecutives"": [ - {""name"": ""Miro Wilms"", ""title"": ""CEO, Founder"", ""sourceUrl"": ""https://www.linkedin.com/company/trecker-com""}, - {""name"": ""Benedikt Voigt"", ""title"": ""CPO, Founder"", ""sourceUrl"": ""https://www.linkedin.com/company/trecker-com""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Company information was not fully available on the direct website, so data was supplemented from trusted third-party sources such as LinkedIn and startup news articles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/trecker-com"", - ""productDescription"": ""https://www.linkedin.com/company/trecker-com"", - ""clientCategories"": ""https://linkedin.com/company/trecker-com"", - ""geographicFocus"": ""https://linkedin.com/company/trecker-com"", - ""keyExecutives"": ""https://linkedin.com/company/trecker-com"" - } -}",[],"{ - ""websiteURL"": ""https://www.trecker.com"", - ""companyDescription"": ""trecker.com is a Berlin-based SaaS platform founded in 2012 by Benedikt Voigt and Miro Wilms that delivers digital solutions to the agriculture industry. It helps farmers and farm contractors manage their business operations, accurately track working hours, and analyze profitability. The platform uses geo-fencing technology to link data to specific fields, supporting operational optimization and compliance with EU regulations. trecker.com aims to drive profitability and sustainability for its users by modernizing and digitizing traditional farming workflows."", - ""productDescription"": ""trecker.com offers a comprehensive SaaS platform tailored for the agriculture sector, featuring fieldwork tracking, inventory management, profitability monitoring, task assignments, machinery management, expense tracking, and analytics tools for informed, data-driven decisions. Additional capabilities include weather forecasting and digital plant nutrition solutions under development. The platform supports farmers and contractors in planning, scheduling, real-time progress monitoring, and documentation for compliance and performance assessment."", - ""clientCategories"": [""Farmers"", ""Farm Contractors"", ""Agriculture Sector""], - ""sectorDescription"": ""Operates in the AgriTech sector, providing specialized SaaS farm management solutions to enhance efficiency and profitability for farmers and farm contractors."", - ""geographicFocus"": ""Headquartered in Berlin, Germany, trecker.com primarily serves the European market, supported by European Union investments and partnerships."", - ""keyExecutives"": [ - { - ""name"": ""Miro Wilms"", - ""title"": ""CEO, Founder"", - ""sourceUrl"": ""https://www.linkedin.com/company/trecker-com"" - }, - { - ""name"": ""Benedikt Voigt"", - ""title"": ""CPO, Founder"", - ""sourceUrl"": ""https://www.linkedin.com/company/trecker-com"" - } - ], - ""researcherNotes"": ""Information was validated via the company website, LinkedIn, and reputable startup news sources including EU-Startups and Target Partners press releases. The company focus and leadership data are current; the geographic footprint is primarily Europe based on EU funding and partner references. No conflicts or missing key information identified."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.linkedin.com/company/trecker-com"", - ""productDescription"": ""https://www.linkedin.com/company/trecker-com"", - ""clientCategories"": ""https://linkedin.com/company/trecker-com"", - ""geographicFocus"": ""https://linkedin.com/company/trecker-com"", - ""keyExecutives"": ""https://linkedin.com/company/trecker-com"" - } -}","{""clientCategories"":[""Farmers"",""Farm Contractors"",""Agriculture Sector""],""companyDescription"":""trecker.com is a Berlin-based SaaS platform founded in 2012 by Benedikt Voigt and Miro Wilms that delivers digital solutions to the agriculture industry. It helps farmers and farm contractors manage their business operations, accurately track working hours, and analyze profitability. The platform uses geo-fencing technology to link data to specific fields, supporting operational optimization and compliance with EU regulations. trecker.com aims to drive profitability and sustainability for its users by modernizing and digitizing traditional farming workflows."",""geographicFocus"":""Headquartered in Berlin, Germany, trecker.com primarily serves the European market, supported by European Union investments and partnerships."",""keyExecutives"":[{""name"":""Miro Wilms"",""sourceUrl"":""https://www.linkedin.com/company/trecker-com"",""title"":""CEO, Founder""},{""name"":""Benedikt Voigt"",""sourceUrl"":""https://www.linkedin.com/company/trecker-com"",""title"":""CPO, Founder""}],""missingImportantFields"":[],""productDescription"":""trecker.com offers a comprehensive SaaS platform tailored for the agriculture sector, featuring fieldwork tracking, inventory management, profitability monitoring, task assignments, machinery management, expense tracking, and analytics tools for informed, data-driven decisions. Additional capabilities include weather forecasting and digital plant nutrition solutions under development. The platform supports farmers and contractors in planning, scheduling, real-time progress monitoring, and documentation for compliance and performance assessment."",""researcherNotes"":""Information was validated via the company website, LinkedIn, and reputable startup news sources including EU-Startups and Target Partners press releases. The company focus and leadership data are current; the geographic footprint is primarily Europe based on EU funding and partner references. No conflicts or missing key information identified."",""sectorDescription"":""Operates in the AgriTech sector, providing specialized SaaS farm management solutions to enhance efficiency and profitability for farmers and farm contractors."",""sources"":{""clientCategories"":""https://linkedin.com/company/trecker-com"",""companyDescription"":""https://www.linkedin.com/company/trecker-com"",""geographicFocus"":""https://linkedin.com/company/trecker-com"",""keyExecutives"":""https://linkedin.com/company/trecker-com"",""productDescription"":""https://www.linkedin.com/company/trecker-com""},""websiteURL"":""https://www.trecker.com""}","Correctness: 100% Completeness: 100% The provided description of trecker.com is factually accurate and complete based on available authoritative company-controlled sources. trecker.com is indeed a Berlin-based SaaS platform founded in 2012 by Benedikt Voigt (CPO) and Miro Wilms (CEO) serving the agriculture sector, specifically farmers and farm contractors, primarily in Europe. The platform offers comprehensive farm management solutions including fieldwork tracking, inventory and expense management, profitability analysis, machinery management, task assignments, and compliance documentation, utilizing geo-fencing technology with a planned expansion into digital plant nutrition and weather forecasting. The leadership details and European focus tied to EU investments and partnerships are current as of September 2025 per the LinkedIn company profile and the official website (https://www.linkedin.com/company/trecker-com, https://www.trecker.com). No critical omissions or inaccuracies were found regarding core company identity, leadership, product scope, or geographic footprint. No conflicts or outdated data were identified in these sources.","{""clientCategories"":[""Farmers"",""Farm Contractors"",""Agriculture Sector""],""companyDescription"":""trecker.com is a SaaS platform for the agriculture industry that enables farmers to manage their business, track working hours accurately, and analyze profitability. It uses geo-fencing to associate data with specific fields, helping optimize farm operations and comply with EU law. Founded in 2012 by Benedikt Voigt and Miro Wilms in Berlin, trecker.com focuses on bringing digital solutions to the agriculture industry to help farmers and contractors optimize their operations for profitability and sustainability."",""geographicFocus"":""HQ: Berlin, Germany; Sales Focus: Europe, supported by investment from the European Union and collaborations with partners."",""keyExecutives"":[{""name"":""Miro Wilms"",""sourceUrl"":""https://www.linkedin.com/company/trecker-com"",""title"":""CEO, Founder""},{""name"":""Benedikt Voigt"",""sourceUrl"":""https://www.linkedin.com/company/trecker-com"",""title"":""CPO, Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""trecker.com offers a SaaS platform with features including fieldwork tracking, inventory management, profitability monitoring, task assignment, machinery management, expense tracking, analytics tools for data-driven decision making, weather forecasting tools, and digital plant nutrition solutions under development."",""researcherNotes"":""Company information was not fully available on the direct website, so data was supplemented from trusted third-party sources such as LinkedIn and startup news articles."",""sectorDescription"":""Operates in the AgriTech sector, providing digital farming solutions through a SaaS platform for farmers and contractors."",""sources"":{""clientCategories"":""https://linkedin.com/company/trecker-com"",""companyDescription"":""https://www.linkedin.com/company/trecker-com"",""geographicFocus"":""https://linkedin.com/company/trecker-com"",""keyExecutives"":""https://linkedin.com/company/trecker-com"",""productDescription"":""https://www.linkedin.com/company/trecker-com""},""websiteURL"":""http://www.trecker.com""}" -BeesDigitalFarm,https://beesdigitalfarmcom.wordpress.com/,Sagar Ratilal Bavarva,beesdigitalfarmcom.wordpress.com,https://www.linkedin.com/company/beesdigitafarm,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://beesdigitalfarmcom.wordpress.com/"", - ""companyDescription"": ""Bees Digital Farm is an upcoming research start-up focusing on new technological and innovation techniques in the agriculture domain, primarily targeting developing countries. To build a research channel that focuses on the world's first-ever digital data science technology in-house farming and renewable energy lab providing solutions with future tailor-made technology-based digital farms in remote locations globally. Bees Digital Farm is a future sustainable farming technological solution where knowledge institutions, big companies, and local communities jointly develop and valorize technologies and systems under one roof. Their mission centers on impacting United Nations Sustainable Development Goals by creating sustainable farming methods to increase crop production with organic food ecosystems, promoting sustainable urbanization and self-efficiency, encouraging sustainable consumption and production to alleviate poverty and transition to a low-carbon environment, and optimizing resource use to combat climate change."", - ""productDescription"": ""Bees Digital Farm is a sustainable farming technology solution that serves as a collaborative space for knowledge institutions, companies, and local communities to develop and valorize technologies and systems for sustainable agriculture. Its core offerings focus on sustainable and organic food ecosystems to increase crop production, sustainable urbanization approaches to reduce carbon emissions and resource use, green innovations promoting sustainable consumption and production to alleviate poverty and support low-carbon environments, and innovative techniques optimizing water, energy, and pesticide use for environmentally friendly farming with maximized yields."", - ""clientCategories"": [""Dutch crop farmers""], - ""sectorDescription"": ""Operates in the agriculture technology and agri-tech sector, providing sustainable, AI and data science-driven farming solutions to promote climate resilience and organic food production."", - ""geographicFocus"": ""HQ: Bees Digital Farm Research Lab, Amsterdam City, The Randstad 1011 AB, The Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Sagar Ratilal Bavarva"", - ""title"": ""Founder / Researcher / Team Lead"", - ""sourceUrl"": ""https://beesdigitalfarmcom.wordpress.com/about/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents such as PDFs or DOCX were found on the website. The company does not clearly specify sales focus regions beyond its Amsterdam headquarters."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://beesdigitalfarmcom.wordpress.com/"", - ""productDescription"": ""https://beesdigitalfarmcom.wordpress.com/impacts/"", - ""clientCategories"": ""https://beesdigitalfarmcom.wordpress.com/blog-2/"", - ""geographicFocus"": ""https://beesdigitalfarmcom.wordpress.com/contact/"", - ""keyExecutives"": ""https://beesdigitalfarmcom.wordpress.com/about/"" - } -}","{ - ""websiteURL"": ""https://beesdigitalfarmcom.wordpress.com/"", - ""companyDescription"": ""Bees Digital Farm is an upcoming research start-up focusing on new technological and innovation techniques in the agriculture domain, primarily targeting developing countries. To build a research channel that focuses on the world's first-ever digital data science technology in-house farming and renewable energy lab providing solutions with future tailor-made technology-based digital farms in remote locations globally. Bees Digital Farm is a future sustainable farming technological solution where knowledge institutions, big companies, and local communities jointly develop and valorize technologies and systems under one roof. Their mission centers on impacting United Nations Sustainable Development Goals by creating sustainable farming methods to increase crop production with organic food ecosystems, promoting sustainable urbanization and self-efficiency, encouraging sustainable consumption and production to alleviate poverty and transition to a low-carbon environment, and optimizing resource use to combat climate change."", - ""productDescription"": ""Bees Digital Farm is a sustainable farming technology solution that serves as a collaborative space for knowledge institutions, companies, and local communities to develop and valorize technologies and systems for sustainable agriculture. Its core offerings focus on sustainable and organic food ecosystems to increase crop production, sustainable urbanization approaches to reduce carbon emissions and resource use, green innovations promoting sustainable consumption and production to alleviate poverty and support low-carbon environments, and innovative techniques optimizing water, energy, and pesticide use for environmentally friendly farming with maximized yields."", - ""clientCategories"": [""Dutch crop farmers""], - ""sectorDescription"": ""Operates in the agriculture technology and agri-tech sector, providing sustainable, AI and data science-driven farming solutions to promote climate resilience and organic food production."", - ""geographicFocus"": ""HQ: Bees Digital Farm Research Lab, Amsterdam City, The Randstad 1011 AB, The Netherlands; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Sagar Ratilal Bavarva"", - ""title"": ""Founder / Researcher / Team Lead"", - ""sourceUrl"": ""https://beesdigitalfarmcom.wordpress.com/about/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents such as PDFs or DOCX were found on the website. The company does not clearly specify sales focus regions beyond its Amsterdam headquarters."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://beesdigitalfarmcom.wordpress.com/"", - ""productDescription"": ""https://beesdigitalfarmcom.wordpress.com/impacts/"", - ""clientCategories"": ""https://beesdigitalfarmcom.wordpress.com/blog-2/"", - ""geographicFocus"": ""https://beesdigitalfarmcom.wordpress.com/contact/"", - ""keyExecutives"": ""https://beesdigitalfarmcom.wordpress.com/about/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://beesdigitalfarmcom.wordpress.com"", - ""companyDescription"": ""Bees Digital Farm is an upcoming research start-up focusing on technological innovation in agriculture, primarily targeting developing countries. The company builds research channels centered on the first-ever digital data science technology in-house farming and renewable energy labs to provide tailor-made technology-based digital farms in remote global locations. It aims to foster collaboration among knowledge institutions, companies, and local communities to develop sustainable farming technologies addressing climate change, organic food ecosystems, poverty alleviation, and resource optimization."", - ""productDescription"": ""Bees Digital Farm offers sustainable farming technology solutions that serve as collaborative spaces for institutions, companies, and communities to develop and valorize technologies for sustainable agriculture. Their core offerings include organic food ecosystems to increase crop production, sustainable urbanization models to reduce carbon and resource use, green innovations promoting sustainable consumption, and innovative techniques optimizing water, energy, and pesticide use for environmentally friendly farming with maximized yields."", - ""clientCategories"": [ - ""Dutch Crop Farmers"" - ], - ""sectorDescription"": ""Operates in the agriculture technology and agri-tech sector, providing sustainable, AI- and data science-driven farming solutions to promote climate resilience and organic food production."", - ""geographicFocus"": ""Operations and initial projects focus on the Netherlands and Germany, with broader presence in developing regions including Brazil, India, and Mexico as per reported geographies served; headquarters are in Amsterdam, The Netherlands."", - ""keyExecutives"": [ - { - ""name"": ""Sagar Ratilal Bavarva"", - ""title"": ""Founder / Researcher / Team Lead"", - ""sourceUrl"": ""https://beesdigitalfarmcom.wordpress.com/about/"" - } - ], - ""researcherNotes"": ""The geographic focus was partially unclear from the company website but supplemented by a credible external platform listing geographies served as Brazil, Germany, India, Mexico, and the Netherlands. No senior leadership beyond the founder was publicly listed on LinkedIn or the official website. No official filings or regulatory data were available for confirmation. The company is a research start-up still defining its sales footprint. The source URLs and data are primarily from the company website and a reputable external profile aggregating nonprofit/innovation entities."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://beesdigitalfarmcom.wordpress.com/"", - ""productDescription"": ""https://beesdigitalfarmcom.wordpress.com/impacts/"", - ""clientCategories"": ""https://beesdigitalfarmcom.wordpress.com/blog-2/"", - ""geographicFocus"": ""https://catalystnow.net/organisations/bees-digital-farm/"", - ""keyExecutives"": ""https://beesdigitalfarmcom.wordpress.com/about/"" - } -}","{""clientCategories"":[""Dutch Crop Farmers""],""companyDescription"":""Bees Digital Farm is an upcoming research start-up focusing on technological innovation in agriculture, primarily targeting developing countries. The company builds research channels centered on the first-ever digital data science technology in-house farming and renewable energy labs to provide tailor-made technology-based digital farms in remote global locations. It aims to foster collaboration among knowledge institutions, companies, and local communities to develop sustainable farming technologies addressing climate change, organic food ecosystems, poverty alleviation, and resource optimization."",""geographicFocus"":""Operations and initial projects focus on the Netherlands and Germany, with broader presence in developing regions including Brazil, India, and Mexico as per reported geographies served; headquarters are in Amsterdam, The Netherlands."",""keyExecutives"":[{""name"":""Sagar Ratilal Bavarva"",""sourceUrl"":""https://beesdigitalfarmcom.wordpress.com/about/"",""title"":""Founder / Researcher / Team Lead""}],""missingImportantFields"":[],""productDescription"":""Bees Digital Farm offers sustainable farming technology solutions that serve as collaborative spaces for institutions, companies, and communities to develop and valorize technologies for sustainable agriculture. Their core offerings include organic food ecosystems to increase crop production, sustainable urbanization models to reduce carbon and resource use, green innovations promoting sustainable consumption, and innovative techniques optimizing water, energy, and pesticide use for environmentally friendly farming with maximized yields."",""researcherNotes"":""The geographic focus was partially unclear from the company website but supplemented by a credible external platform listing geographies served as Brazil, Germany, India, Mexico, and the Netherlands. No senior leadership beyond the founder was publicly listed on LinkedIn or the official website. No official filings or regulatory data were available for confirmation. The company is a research start-up still defining its sales footprint. The source URLs and data are primarily from the company website and a reputable external profile aggregating nonprofit/innovation entities."",""sectorDescription"":""Operates in the agriculture technology and agri-tech sector, providing sustainable, AI- and data science-driven farming solutions to promote climate resilience and organic food production."",""sources"":{""clientCategories"":""https://beesdigitalfarmcom.wordpress.com/blog-2/"",""companyDescription"":""https://beesdigitalfarmcom.wordpress.com/"",""geographicFocus"":""https://catalystnow.net/organisations/bees-digital-farm/"",""keyExecutives"":""https://beesdigitalfarmcom.wordpress.com/about/"",""productDescription"":""https://beesdigitalfarmcom.wordpress.com/impacts/""},""websiteURL"":""https://beesdigitalfarmcom.wordpress.com""}","Correctness: 98% Completeness: 90% The description of Bees Digital Farm is largely accurate and well-supported by multiple sources. The company is a Netherlands-based research start-up focused on in-house digital data science technology and renewable energy labs to provide tailor-made digital farming solutions, especially targeting developing countries like Brazil, India, and Mexico, as well as operations in Germany and the Netherlands[1][2][3]. The founder and team lead is confirmed as Sagar Ratilal Bavarva, with detailed background information matching across sources[4]. Their product offerings align with sustainable farming, organic ecosystems, and AI-driven consulting for optimization of resources[2][3]. However, there is no official regulatory filing or third-party verification for leadership beyond company-controlled and reputable profile aggregators, which slightly lowers completeness. Some details like exact sales footprint and other senior leadership are not publicly disclosed[4]. The company vision, mission, and sector focus are consistent across sources[2][3][4]. The primary official source is Bees Digital Farm’s own website and reputable innovation platform Catalyst[1][2][4]. There are no contradictory facts but the absence of filings or broader visibility on organizational scale places a modest limit on completeness. Overall, the data is detailed, current as of 2025-09, and well-corroborated from official and secondary company sources. -https://beesdigitalfarmcom.wordpress.com/about/ -https://beesdigitalfarmcom.wordpress.com/ -https://catalystnow.net/organisations/bees-digital-farm/ -https://amsterdamsmartcity.com/updates/project/bees-digital-farm","{""clientCategories"":[""Dutch crop farmers""],""companyDescription"":""Bees Digital Farm is an upcoming research start-up focusing on new technological and innovation techniques in the agriculture domain, primarily targeting developing countries. To build a research channel that focuses on the world's first-ever digital data science technology in-house farming and renewable energy lab providing solutions with future tailor-made technology-based digital farms in remote locations globally. Bees Digital Farm is a future sustainable farming technological solution where knowledge institutions, big companies, and local communities jointly develop and valorize technologies and systems under one roof. Their mission centers on impacting United Nations Sustainable Development Goals by creating sustainable farming methods to increase crop production with organic food ecosystems, promoting sustainable urbanization and self-efficiency, encouraging sustainable consumption and production to alleviate poverty and transition to a low-carbon environment, and optimizing resource use to combat climate change."",""geographicFocus"":""HQ: Bees Digital Farm Research Lab, Amsterdam City, The Randstad 1011 AB, The Netherlands; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Sagar Ratilal Bavarva"",""sourceUrl"":""https://beesdigitalfarmcom.wordpress.com/about/"",""title"":""Founder / Researcher / Team Lead""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Bees Digital Farm is a sustainable farming technology solution that serves as a collaborative space for knowledge institutions, companies, and local communities to develop and valorize technologies and systems for sustainable agriculture. Its core offerings focus on sustainable and organic food ecosystems to increase crop production, sustainable urbanization approaches to reduce carbon emissions and resource use, green innovations promoting sustainable consumption and production to alleviate poverty and support low-carbon environments, and innovative techniques optimizing water, energy, and pesticide use for environmentally friendly farming with maximized yields."",""researcherNotes"":""No linked documents such as PDFs or DOCX were found on the website. The company does not clearly specify sales focus regions beyond its Amsterdam headquarters."",""sectorDescription"":""Operates in the agriculture technology and agri-tech sector, providing sustainable, AI and data science-driven farming solutions to promote climate resilience and organic food production."",""sources"":{""clientCategories"":""https://beesdigitalfarmcom.wordpress.com/blog-2/"",""companyDescription"":""https://beesdigitalfarmcom.wordpress.com/"",""geographicFocus"":""https://beesdigitalfarmcom.wordpress.com/contact/"",""keyExecutives"":""https://beesdigitalfarmcom.wordpress.com/about/"",""productDescription"":""https://beesdigitalfarmcom.wordpress.com/impacts/""},""websiteURL"":""https://beesdigitalfarmcom.wordpress.com/""}" -Quality Partner,http://www.quality-partner.be/,S.R.I.W.,quality-partner.be,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.quality-partner.be/"", - ""companyDescription"": ""FoodChain ID is a global brand offering products and services including Certification (Food Safety, Animal Feed, Non-GMO, Sustainability), Regulatory Compliance, Commodity Safety, Testing (GMO, Food Contaminants, CBD & Hemp), Product Development Software, Supplements consulting and compliance, Packaging Compliance, and Translations of Regulations. They provide consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment. FoodChain ID's subsidiaries include Decernis, Hamilton Grant, Nutraveris, Quality Partner, Verdant, Viaware, and others specialized in regulatory tools, testing, supplements, biological certification, and packaging compliance."", - ""productDescription"": ""FoodChain ID offers a comprehensive range of products and services including:\n- Certification (Food Safety, Animal Feed, Non-GMO, Sustainability)\n- Regulatory Compliance\n- Commodity Safety\n- Testing (GMO, Food Contaminants, CBD & Hemp)\n- Product Development Software\n- Supplements consulting and compliance\n- Packaging Compliance\n- Translations of Regulations\n- Consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment."", - ""clientCategories"": [""Food and Beverage Companies"", ""Agricultural Producers"", ""Supplement Manufacturers"", ""Packaging Companies"", ""Retailers"", ""Distributors""], - ""sectorDescription"": ""Operates in the food safety, regulatory compliance, testing, and certification sector serving the global food and agriculture industries."", - ""geographicFocus"": ""HQ: En Hayeneux 62, 4040 Herstal, Belgium; Sales Focus: Global with key offices in Germany, UK, France, Belgium, and the Netherlands."", - ""keyExecutives"": [ - {""name"": ""Conor Kearney"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dr. Heather Secrist"", ""title"": ""SVP, Technical Services the Americas"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Jason Grimm"", ""title"": ""SVP, Digital Solutions"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dr. Chetan Parmar"", ""title"": ""SVP, Technical Services Europe, Asia & Mexico"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dr. Rudolf A. Overbeek"", ""title"": ""SVP, Corporate Development and Strategic Relationships"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dan Pickles"", ""title"": ""SVP, Product and Marketing"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Lee Wall"", ""title"": ""SVP, Chief Finance Officer"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Peter Dumoulin"", ""title"": ""SVP, Chief People Officer"", ""sourceUrl"": ""https://www.foodchainid.com/about/""} - ], - ""linkedDocuments"": [ - ""https://foodchainid.com/wp-content/uploads/sites/24/2025/08/Cert-ID-Farmer-list-2_14-Aug.zip"", - ""https://foodchainid.com/wp-content/uploads/sites/24/2025/08/Cert-ID-Farmer-list-1_14-Aug.zip"" - ], - ""researcherNotes"": ""Quality Partner is part of the FoodChain ID global brand. Leadership info was sourced from the parent company's About Us page at foodchainid.com. The quality-partner.be site redirects or contains limited direct info, so FoodChain ID's site and documents were used for fuller context."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.quality-partner.be/"", - ""productDescription"": ""http://www.quality-partner.be/"", - ""clientCategories"": ""http://www.quality-partner.be/"", - ""geographicFocus"": ""http://www.quality-partner.be/"", - ""keyExecutives"": ""https://www.foodchainid.com/about/"" - } -}","{ - ""websiteURL"": ""http://www.quality-partner.be/"", - ""companyDescription"": ""FoodChain ID is a global brand offering products and services including Certification (Food Safety, Animal Feed, Non-GMO, Sustainability), Regulatory Compliance, Commodity Safety, Testing (GMO, Food Contaminants, CBD & Hemp), Product Development Software, Supplements consulting and compliance, Packaging Compliance, and Translations of Regulations. They provide consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment. FoodChain ID's subsidiaries include Decernis, Hamilton Grant, Nutraveris, Quality Partner, Verdant, Viaware, and others specialized in regulatory tools, testing, supplements, biological certification, and packaging compliance."", - ""productDescription"": ""FoodChain ID offers a comprehensive range of products and services including:\n- Certification (Food Safety, Animal Feed, Non-GMO, Sustainability)\n- Regulatory Compliance\n- Commodity Safety\n- Testing (GMO, Food Contaminants, CBD & Hemp)\n- Product Development Software\n- Supplements consulting and compliance\n- Packaging Compliance\n- Translations of Regulations\n- Consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment."", - ""clientCategories"": [""Food and Beverage Companies"", ""Agricultural Producers"", ""Supplement Manufacturers"", ""Packaging Companies"", ""Retailers"", ""Distributors""], - ""sectorDescription"": ""Operates in the food safety, regulatory compliance, testing, and certification sector serving the global food and agriculture industries."", - ""geographicFocus"": ""HQ: En Hayeneux 62, 4040 Herstal, Belgium; Sales Focus: Global with key offices in Germany, UK, France, Belgium, and the Netherlands."", - ""keyExecutives"": [ - {""name"": ""Conor Kearney"", ""title"": ""Chief Executive Officer"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dr. Heather Secrist"", ""title"": ""SVP, Technical Services the Americas"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Jason Grimm"", ""title"": ""SVP, Digital Solutions"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dr. Chetan Parmar"", ""title"": ""SVP, Technical Services Europe, Asia & Mexico"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dr. Rudolf A. Overbeek"", ""title"": ""SVP, Corporate Development and Strategic Relationships"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Dan Pickles"", ""title"": ""SVP, Product and Marketing"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Lee Wall"", ""title"": ""SVP, Chief Finance Officer"", ""sourceUrl"": ""https://www.foodchainid.com/about/""}, - {""name"": ""Peter Dumoulin"", ""title"": ""SVP, Chief People Officer"", ""sourceUrl"": ""https://www.foodchainid.com/about/""} - ], - ""linkedDocuments"": [ - ""https://foodchainid.com/wp-content/uploads/sites/24/2025/08/Cert-ID-Farmer-list-2_14-Aug.zip"", - ""https://foodchainid.com/wp-content/uploads/sites/24/2025/08/Cert-ID-Farmer-list-1_14-Aug.zip"" - ], - ""researcherNotes"": ""Quality Partner is part of the FoodChain ID global brand. Leadership info was sourced from the parent company's About Us page at foodchainid.com. The quality-partner.be site redirects or contains limited direct info, so FoodChain ID's site and documents were used for fuller context."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.quality-partner.be/"", - ""productDescription"": ""http://www.quality-partner.be/"", - ""clientCategories"": ""http://www.quality-partner.be/"", - ""geographicFocus"": ""http://www.quality-partner.be/"", - ""keyExecutives"": ""https://www.foodchainid.com/about/"" - } -}",[],"{ - ""websiteURL"": ""https://www.quality-partner.be"", - ""companyDescription"": ""FoodChain ID is a global brand offering products and services including Certification (Food Safety, Animal Feed, Non-GMO, Sustainability), Regulatory Compliance, Commodity Safety, Testing (GMO, Food Contaminants, CBD & Hemp), Product Development Software, Supplements consulting and compliance, Packaging Compliance, and Translations of Regulations. They provide consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment. FoodChain ID's subsidiaries include Decernis, Hamilton Grant, Nutraveris, Quality Partner, Verdant, Viaware, and others specialized in regulatory tools, testing, supplements, biological certification, and packaging compliance."", - ""productDescription"": ""FoodChain ID offers a comprehensive range of products and services including:\n- Certification (Food Safety, Animal Feed, Non-GMO, Sustainability)\n- Regulatory Compliance\n- Commodity Safety\n- Testing (GMO, Food Contaminants, CBD & Hemp)\n- Product Development Software\n- Supplements consulting and compliance\n- Packaging Compliance\n- Translations of Regulations\n- Consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment."", - ""clientCategories"": [ - ""Food and Beverage Companies"", - ""Agricultural Producers"", - ""Supplement Manufacturers"", - ""Packaging Companies"", - ""Retailers"", - ""Distributors"" - ], - ""sectorDescription"": ""Operates in the food safety, regulatory compliance, testing, and certification sector serving the global food and agriculture industries."", - ""geographicFocus"": ""Global operations with a focus on the Benelux region and France, and key offices in Germany, UK, France, Belgium, and the Netherlands."", - ""keyExecutives"": [ - { - ""name"": ""Conor Kearney"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Dr. Heather Secrist"", - ""title"": ""SVP, Technical Services the Americas"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Jason Grimm"", - ""title"": ""SVP, Digital Solutions"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Dr. Chetan Parmar"", - ""title"": ""SVP, Technical Services Europe, Asia & Mexico"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Dr. Rudolf A. Overbeek"", - ""title"": ""SVP, Corporate Development and Strategic Relationships"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Dan Pickles"", - ""title"": ""SVP, Product and Marketing"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Lee Wall"", - ""title"": ""SVP, Chief Finance Officer"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - }, - { - ""name"": ""Peter Dumoulin"", - ""title"": ""SVP, Chief People Officer"", - ""sourceUrl"": ""https://www.foodchainid.com/about/"" - } - ], - ""researcherNotes"": ""Quality Partner is part of the FoodChain ID global brand since its acquisition in 2018, serving the Benelux and France markets primarily. The headquarters are in Herstal, Belgium. The company focuses on food safety testing, inspections, certification, and technical training. Confirmation was made through FoodChain ID's official site and press releases. Geographic focus includes global presence with priority on Benelux and France, aligned with the parent company's footprint."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.quality-partner.be/"", - ""productDescription"": ""http://www.quality-partner.be/"", - ""clientCategories"": ""http://www.quality-partner.be/"", - ""geographicFocus"": ""https://www.foodchainid.com/press/foodchain-id-acquires-quality-partner-a-premier-food-safety-testing-inspections-organic-certification-company/"", - ""keyExecutives"": ""https://www.foodchainid.com/about/"" - } -}","{""clientCategories"":[""Food and Beverage Companies"",""Agricultural Producers"",""Supplement Manufacturers"",""Packaging Companies"",""Retailers"",""Distributors""],""companyDescription"":""FoodChain ID is a global brand offering products and services including Certification (Food Safety, Animal Feed, Non-GMO, Sustainability), Regulatory Compliance, Commodity Safety, Testing (GMO, Food Contaminants, CBD & Hemp), Product Development Software, Supplements consulting and compliance, Packaging Compliance, and Translations of Regulations. They provide consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment. FoodChain ID's subsidiaries include Decernis, Hamilton Grant, Nutraveris, Quality Partner, Verdant, Viaware, and others specialized in regulatory tools, testing, supplements, biological certification, and packaging compliance."",""geographicFocus"":""Global operations with a focus on the Benelux region and France, and key offices in Germany, UK, France, Belgium, and the Netherlands."",""keyExecutives"":[{""name"":""Conor Kearney"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""Chief Executive Officer""},{""name"":""Dr. Heather Secrist"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Technical Services the Americas""},{""name"":""Jason Grimm"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Digital Solutions""},{""name"":""Dr. Chetan Parmar"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Technical Services Europe, Asia & Mexico""},{""name"":""Dr. Rudolf A. Overbeek"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Corporate Development and Strategic Relationships""},{""name"":""Dan Pickles"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Product and Marketing""},{""name"":""Lee Wall"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Chief Finance Officer""},{""name"":""Peter Dumoulin"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Chief People Officer""}],""missingImportantFields"":[],""productDescription"":""FoodChain ID offers a comprehensive range of products and services including:\n- Certification (Food Safety, Animal Feed, Non-GMO, Sustainability)\n- Regulatory Compliance\n- Commodity Safety\n- Testing (GMO, Food Contaminants, CBD & Hemp)\n- Product Development Software\n- Supplements consulting and compliance\n- Packaging Compliance\n- Translations of Regulations\n- Consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment."",""researcherNotes"":""Quality Partner is part of the FoodChain ID global brand since its acquisition in 2018, serving the Benelux and France markets primarily. The headquarters are in Herstal, Belgium. The company focuses on food safety testing, inspections, certification, and technical training. Confirmation was made through FoodChain ID's official site and press releases. Geographic focus includes global presence with priority on Benelux and France, aligned with the parent company's footprint."",""sectorDescription"":""Operates in the food safety, regulatory compliance, testing, and certification sector serving the global food and agriculture industries."",""sources"":{""clientCategories"":""http://www.quality-partner.be/"",""companyDescription"":""http://www.quality-partner.be/"",""geographicFocus"":""https://www.foodchainid.com/press/foodchain-id-acquires-quality-partner-a-premier-food-safety-testing-inspections-organic-certification-company/"",""keyExecutives"":""https://www.foodchainid.com/about/"",""productDescription"":""http://www.quality-partner.be/""},""websiteURL"":""https://www.quality-partner.be""}","Correctness: 98% Completeness: 95% The information provided about FoodChain ID is accurate and well-supported by multiple authoritative sources. The leadership team, including CEO Conor Kearney and other senior VPs, matches the company’s official “About Us” page as of 2025-09-11 (https://www.foodchainid.com/about/) and the description of global operations with a focus on Benelux, France, Germany, UK, Belgium, and the Netherlands aligns with FoodChain ID’s documented geographic presence (https://www.foodchainid.com/press/foodchain-id-acquires-quality-partner-a-premier-food-safety-testing-inspections-organic-certification-company/). The product and service offerings—including certification, regulatory compliance, testing (GMO, contaminants, CBD/hemp), consulting, packaging compliance, and translations—are consistent with both FoodChain ID’s primary website and Quality Partner’s site (http://www.quality-partner.be/). The only minor discrepancy is the CEO name: some older sources cite Brad Riemenapp, but the most recent official page confirms Conor Kearney as CEO. The company’s Deerfield, Illinois headquarters and acquisition of Quality Partner (headquartered in Herstal, Belgium) are also well documented (https://www.foodchainid.com/press/foodchain-id-acquires-quality-partner-a-premier-food-safety-testing-inspections-organic-certification-company/, https://berkshirepartners.com/foodchain-id-announces-recapitalization-with-berkshire-partners/). The completeness is very high given the coverage of key executives, product descriptions, geographic focus, and sector description with no major omissions of recent milestones. https://www.foodchainid.com/about/ https://www.foodchainid.com/press/foodchain-id-acquires-quality-partner-a-premier-food-safety-testing-inspections-organic-certification-company/ http://www.quality-partner.be/ https://berkshirepartners.com/foodchain-id-announces-recapitalization-with-berkshire-partners/","{""clientCategories"":[""Food and Beverage Companies"",""Agricultural Producers"",""Supplement Manufacturers"",""Packaging Companies"",""Retailers"",""Distributors""],""companyDescription"":""FoodChain ID is a global brand offering products and services including Certification (Food Safety, Animal Feed, Non-GMO, Sustainability), Regulatory Compliance, Commodity Safety, Testing (GMO, Food Contaminants, CBD & Hemp), Product Development Software, Supplements consulting and compliance, Packaging Compliance, and Translations of Regulations. They provide consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment. FoodChain ID's subsidiaries include Decernis, Hamilton Grant, Nutraveris, Quality Partner, Verdant, Viaware, and others specialized in regulatory tools, testing, supplements, biological certification, and packaging compliance."",""geographicFocus"":""HQ: En Hayeneux 62, 4040 Herstal, Belgium; Sales Focus: Global with key offices in Germany, UK, France, Belgium, and the Netherlands."",""keyExecutives"":[{""name"":""Conor Kearney"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""Chief Executive Officer""},{""name"":""Dr. Heather Secrist"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Technical Services the Americas""},{""name"":""Jason Grimm"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Digital Solutions""},{""name"":""Dr. Chetan Parmar"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Technical Services Europe, Asia & Mexico""},{""name"":""Dr. Rudolf A. Overbeek"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Corporate Development and Strategic Relationships""},{""name"":""Dan Pickles"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Product and Marketing""},{""name"":""Lee Wall"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Chief Finance Officer""},{""name"":""Peter Dumoulin"",""sourceUrl"":""https://www.foodchainid.com/about/"",""title"":""SVP, Chief People Officer""}],""linkedDocuments"":[""https://foodchainid.com/wp-content/uploads/sites/24/2025/08/Cert-ID-Farmer-list-2_14-Aug.zip"",""https://foodchainid.com/wp-content/uploads/sites/24/2025/08/Cert-ID-Farmer-list-1_14-Aug.zip""],""missingImportantFields"":[],""productDescription"":""FoodChain ID offers a comprehensive range of products and services including:\n- Certification (Food Safety, Animal Feed, Non-GMO, Sustainability)\n- Regulatory Compliance\n- Commodity Safety\n- Testing (GMO, Food Contaminants, CBD & Hemp)\n- Product Development Software\n- Supplements consulting and compliance\n- Packaging Compliance\n- Translations of Regulations\n- Consulting and training in scientific and regulatory affairs, digital transformation, and food fraud assessment."",""researcherNotes"":""Quality Partner is part of the FoodChain ID global brand. Leadership info was sourced from the parent company's About Us page at foodchainid.com. The quality-partner.be site redirects or contains limited direct info, so FoodChain ID's site and documents were used for fuller context."",""sectorDescription"":""Operates in the food safety, regulatory compliance, testing, and certification sector serving the global food and agriculture industries."",""sources"":{""clientCategories"":""http://www.quality-partner.be/"",""companyDescription"":""http://www.quality-partner.be/"",""geographicFocus"":""http://www.quality-partner.be/"",""keyExecutives"":""https://www.foodchainid.com/about/"",""productDescription"":""http://www.quality-partner.be/""},""websiteURL"":""http://www.quality-partner.be/""}" -Agricolum,https://agricolum.com/en,BStartup,agricolum.com,https://www.linkedin.com/company/agricolum,"{""seniorLeadership"":[{""name"":""Francesc Masana"",""title"":""Co-Founder & CEO"",""profileUrl"":""https://www.linkedin.com/in/francescmasana""}]}","{""seniorLeadership"":[{""name"":""Francesc Masana"",""title"":""Co-Founder & CEO"",""profileUrl"":""https://www.linkedin.com/in/francescmasana""}]}","{ - ""websiteURL"": ""https://agricolum.com/en"", - ""companyDescription"": ""Joining a team of agronomists and computer engineers have made it possible to design and develop the application designed for farmers. We are engaged in agriculture for more than 500 years and the need to optimize our exploitation have led us to develop an application that fits all farmers. The project has been carried out with the support of farmers, cooperatives and corporate partners to suit your needs."", - ""productDescription"": ""Agricolum is an agricultural management application available on Mobile, Tablet, and Computer, allowing use from anywhere in the world. It offers features including field notebook management, data connection to Sigpac, synchronization across devices, weather and forecast viewing, history of all tasks performed, real-time market prices, data export/import in other formats, and generation of Holding Notebook. The application helps users keep all relevant farming operation information on a single page, displays different tasks with color codes (brown for harrow, black for sowing/planting, blue for phytosanitary, yellow for pick, lilac for fertilizing, strong blue for explore), and allows machinery maintenance control."", - ""clientCategories"": [""Farmers"", ""Farm Advisors"", ""Cooperatives"", ""Corporate Partners""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing farm management software to assist farmers in optimizing their agricultural exploitations."", - ""geographicFocus"": ""HQ: H2 Barcelona; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information about key executives such as founders or C-level leaders, nor detailed geographic sales regions."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agricolum.com/en/about"", - ""productDescription"": ""https://agricolum.com/en/features"", - ""clientCategories"": ""https://agricolum.com/en/advisors"", - ""geographicFocus"": ""https://agricolum.com/en/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://agricolum.com/en"", - ""companyDescription"": ""Joining a team of agronomists and computer engineers have made it possible to design and develop the application designed for farmers. We are engaged in agriculture for more than 500 years and the need to optimize our exploitation have led us to develop an application that fits all farmers. The project has been carried out with the support of farmers, cooperatives and corporate partners to suit your needs."", - ""productDescription"": ""Agricolum is an agricultural management application available on Mobile, Tablet, and Computer, allowing use from anywhere in the world. It offers features including field notebook management, data connection to Sigpac, synchronization across devices, weather and forecast viewing, history of all tasks performed, real-time market prices, data export/import in other formats, and generation of Holding Notebook. The application helps users keep all relevant farming operation information on a single page, displays different tasks with color codes (brown for harrow, black for sowing/planting, blue for phytosanitary, yellow for pick, lilac for fertilizing, strong blue for explore), and allows machinery maintenance control."", - ""clientCategories"": [""Farmers"", ""Farm Advisors"", ""Cooperatives"", ""Corporate Partners""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing farm management software to assist farmers in optimizing their agricultural exploitations."", - ""geographicFocus"": ""HQ: H2 Barcelona; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information about key executives such as founders or C-level leaders, nor detailed geographic sales regions."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agricolum.com/en/about"", - ""productDescription"": ""https://agricolum.com/en/features"", - ""clientCategories"": ""https://agricolum.com/en/advisors"", - ""geographicFocus"": ""https://agricolum.com/en/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://agricolum.com"", - ""companyDescription"": ""Agricolum is an agricultural technology company providing a farm management application designed to optimize agricultural exploitations. Developed by a multidisciplinary team of agronomists and computer engineers with over 500 years of combined agricultural experience, the platform supports farmers, cooperatives, farm advisors, and corporate partners by integrating key operational data into a single accessible tool to improve farming efficiency and decision-making."", - ""productDescription"": ""Agricolum offers a multi-platform agricultural management application accessible via mobile, tablet, and computer. It enables users to manage field notebooks, connect data to Sigpac, synchronize across devices, monitor weather and forecasts, track task histories with color-coded categories, control machinery maintenance, view real-time market prices, and export/import data. This comprehensive tool facilitates centralized information management for farming operations worldwide."", - ""clientCategories"": [ - ""Farmers"", - ""Farm Advisors"", - ""Cooperatives"", - ""Corporate Partners"" - ], - ""sectorDescription"": ""Agricultural technology company specializing in farm management software to enhance operational efficiency and data integration for agricultural exploitations."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Francesc Masana"", - ""title"": ""Co-Founder & CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/francescmasana"" - } - ], - ""researcherNotes"": ""The company operates out of Barcelona but does not provide explicit geographic sales focus. Key executive information was missing from the website but found via LinkedIn confirming Francesc Masana as Co-Founder & CEO. No regulatory filings or detailed sales footprint were available publicly to further detail geography or add additional executives. The domain and product keywords clearly match the company profile, confirming entity disambiguation."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://agricolum.com/en/about"", - ""productDescription"": ""https://agricolum.com/en/features"", - ""clientCategories"": ""https://agricolum.com/en/advisors"", - ""geographicFocus"": ""https://agricolum.com/en/contact"", - ""keyExecutives"": ""https://www.linkedin.com/in/francescmasana"" - } -}","{""clientCategories"":[""Farmers"",""Farm Advisors"",""Cooperatives"",""Corporate Partners""],""companyDescription"":""Agricolum is an agricultural technology company providing a farm management application designed to optimize agricultural exploitations. Developed by a multidisciplinary team of agronomists and computer engineers with over 500 years of combined agricultural experience, the platform supports farmers, cooperatives, farm advisors, and corporate partners by integrating key operational data into a single accessible tool to improve farming efficiency and decision-making."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Francesc Masana"",""sourceUrl"":""https://www.linkedin.com/in/francescmasana"",""title"":""Co-Founder & CEO""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Agricolum offers a multi-platform agricultural management application accessible via mobile, tablet, and computer. It enables users to manage field notebooks, connect data to Sigpac, synchronize across devices, monitor weather and forecasts, track task histories with color-coded categories, control machinery maintenance, view real-time market prices, and export/import data. This comprehensive tool facilitates centralized information management for farming operations worldwide."",""researcherNotes"":""The company operates out of Barcelona but does not provide explicit geographic sales focus. Key executive information was missing from the website but found via LinkedIn confirming Francesc Masana as Co-Founder & CEO. No regulatory filings or detailed sales footprint were available publicly to further detail geography or add additional executives. The domain and product keywords clearly match the company profile, confirming entity disambiguation."",""sectorDescription"":""Agricultural technology company specializing in farm management software to enhance operational efficiency and data integration for agricultural exploitations."",""sources"":{""clientCategories"":""https://agricolum.com/en/advisors"",""companyDescription"":""https://agricolum.com/en/about"",""geographicFocus"":""https://agricolum.com/en/contact"",""keyExecutives"":""https://www.linkedin.com/in/francescmasana"",""productDescription"":""https://agricolum.com/en/features""},""websiteURL"":""https://agricolum.com""}","Correctness: 95% Completeness: 85% The core facts about Agricolum being an agricultural technology company with a multi-platform farm management application and Francesc Masana as Co-Founder & CEO are confirmed, including the app’s capabilities such as geolocating fields, managing activities history, and supporting decision-making from the official website and a 2018 CEO interview video[1][https://agricolum.com/en/about][https://www.linkedin.com/in/francescmasana]. The company description, key executive, product features, and target client categories align with provided sources. However, the geographic focus remains unspecified both on the company site and external profiles, which reduces completeness. Also, some recent updates or multiple executive details beyond Masana are unavailable publicly, limiting the completeness score. The description is current and detailed but would benefit from explicit geographic footprint and additional executive data for maximum completeness. [https://agricolum.com/en/about][https://agricolum.com/en/features][https://www.linkedin.com/in/francescmasana][https://www.youtube.com/watch?v=5D5YAh7BiF0]","{""clientCategories"":[""Farmers"",""Farm Advisors"",""Cooperatives"",""Corporate Partners""],""companyDescription"":""Joining a team of agronomists and computer engineers have made it possible to design and develop the application designed for farmers. We are engaged in agriculture for more than 500 years and the need to optimize our exploitation have led us to develop an application that fits all farmers. The project has been carried out with the support of farmers, cooperatives and corporate partners to suit your needs."",""geographicFocus"":""HQ: H2 Barcelona; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Agricolum is an agricultural management application available on Mobile, Tablet, and Computer, allowing use from anywhere in the world. It offers features including field notebook management, data connection to Sigpac, synchronization across devices, weather and forecast viewing, history of all tasks performed, real-time market prices, data export/import in other formats, and generation of Holding Notebook. The application helps users keep all relevant farming operation information on a single page, displays different tasks with color codes (brown for harrow, black for sowing/planting, blue for phytosanitary, yellow for pick, lilac for fertilizing, strong blue for explore), and allows machinery maintenance control."",""researcherNotes"":""The website does not provide explicit information about key executives such as founders or C-level leaders, nor detailed geographic sales regions."",""sectorDescription"":""Operates in the agricultural technology sector, providing farm management software to assist farmers in optimizing their agricultural exploitations."",""sources"":{""clientCategories"":""https://agricolum.com/en/advisors"",""companyDescription"":""https://agricolum.com/en/about"",""geographicFocus"":""https://agricolum.com/en/contact"",""keyExecutives"":null,""productDescription"":""https://agricolum.com/en/features""},""websiteURL"":""https://agricolum.com/en""}" -Phenospex,http://www.phenospex.com,"Future Food Fund, NV Industriebank LIOF",phenospex.com,https://www.linkedin.com/company/phenospex,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ ""websiteURL"": ""http://www.phenospex.com"", ""companyDescription"": ""PHENOSPEX builds smart sensors to analyze crops in any environment for plant science, agrochemicals, and breeding. They offer digital phenotyping solutions including multispectral 3D scanners, precision irrigation data tools, and software for data analysis and automation."", ""productDescription"": ""Products & Applications include: - PlantEye F600 (Multispectral 3D scanner for plant phenotyping) - DroughtSpotter (Precision irrigation and weight data) - MicroScan (Small portable digital phenotyping) - TraitFinder (Easy phenotyping in labs and greenhouses) - FieldScan (High throughput phenotyping in greenhouses and fields) - HortControl (Software to analyze & visualize Plant Sensor Data) - Automated Herbicide Screening (Make Confident Efficacy Decisions) - Biostimulant Screening (Scale your screening and detect small effects)"", ""clientCategories"": [""Plant science researchers"", ""Agrochemical companies"", ""Breeding organizations""], ""sectorDescription"": ""Operates in the plant science technology sector, providing advanced digital phenotyping sensors and data analysis solutions for agricultural research and crop breeding."", ""geographicFocus"": ""HQ: Jan Campertstraat 11, 6416 SG Heerlen, The Netherlands; Sales Focus: Not Available"", ""keyExecutives"": [ { ""name"": ""Grégoire Hummel"", ""title"": ""Founder"", ""sourceUrl"": ""https://phenospex.com/company"" }, { ""name"": ""Uladzimir Zhokhavets"", ""title"": ""Founder"", ""sourceUrl"": ""https://phenospex.com/company"" }, { ""name"": ""Philipp Tillmanns"", ""title"": ""Founder"", ""sourceUrl"": ""https://phenospex.com/company"" } ], ""linkedDocuments"": [], ""researcherNotes"": ""No linked documents such as PDFs or DOCX files were found on the site despite checking the References page."", ""missingImportantFields"": [""geographicFocus""], ""sources"": { ""companyDescription"": ""http://www.phenospex.com"", ""productDescription"": ""http://www.phenospex.com/leasyscan/"", ""clientCategories"": ""http://www.phenospex.com/references/"", ""geographicFocus"": ""http://www.phenospex.com/support/"", ""keyExecutives"": ""https://phenospex.com/company"" } }","{ ""websiteURL"": ""http://www.phenospex.com"", ""companyDescription"": ""PHENOSPEX builds smart sensors to analyze crops in any environment for plant science, agrochemicals, and breeding. They offer digital phenotyping solutions including multispectral 3D scanners, precision irrigation data tools, and software for data analysis and automation."", ""productDescription"": ""Products & Applications include: - PlantEye F600 (Multispectral 3D scanner for plant phenotyping) - DroughtSpotter (Precision irrigation and weight data) - MicroScan (Small portable digital phenotyping) - TraitFinder (Easy phenotyping in labs and greenhouses) - FieldScan (High throughput phenotyping in greenhouses and fields) - HortControl (Software to analyze & visualize Plant Sensor Data) - Automated Herbicide Screening (Make Confident Efficacy Decisions) - Biostimulant Screening (Scale your screening and detect small effects)"", ""clientCategories"": [""Plant science researchers"", ""Agrochemical companies"", ""Breeding organizations""], ""sectorDescription"": ""Operates in the plant science technology sector, providing advanced digital phenotyping sensors and data analysis solutions for agricultural research and crop breeding."", ""geographicFocus"": ""HQ: Jan Campertstraat 11, 6416 SG Heerlen, The Netherlands; Sales Focus: Not Available"", ""keyExecutives"": [ { ""name"": ""Grégoire Hummel"", ""title"": ""Founder"", ""sourceUrl"": ""https://phenospex.com/company"" }, { ""name"": ""Uladzimir Zhokhavets"", ""title"": ""Founder"", ""sourceUrl"": ""https://phenospex.com/company"" }, { ""name"": ""Philipp Tillmanns"", ""title"": ""Founder"", ""sourceUrl"": ""https://phenospex.com/company"" } ], ""linkedDocuments"": [], ""researcherNotes"": ""No linked documents such as PDFs or DOCX files were found on the site despite checking the References page."", ""missingImportantFields"": [""geographicFocus""], ""sources"": { ""companyDescription"": ""http://www.phenospex.com"", ""productDescription"": ""http://www.phenospex.com/leasyscan/"", ""clientCategories"": ""http://www.phenospex.com/references/"", ""geographicFocus"": ""http://www.phenospex.com/support/"", ""keyExecutives"": ""https://phenospex.com/company"" } }","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.phenospex.com"", - ""companyDescription"": ""PHENOSPEX builds smart sensors to analyze crops in any environment for plant science, agrochemicals, and breeding. They offer digital phenotyping solutions including multispectral 3D scanners, precision irrigation data tools, and software for data analysis and automation. Their mission is to accelerate sustainable agriculture by automating phenotyping processes to deliver actionable, reliable crop data faster and more efficiently than traditional methods."", - ""productDescription"": ""Phenospex provides digital phenotyping products such as the PlantEye F600 multispectral 3D scanner, DroughtSpotter for precision irrigation and weight data, MicroScan portable phenotyping devices, TraitFinder for lab and greenhouse phenotyping, FieldScan for high-throughput phenotyping, and HortControl software for data analysis. They also offer automated herbicide and biostimulant screening tools to enhance crop development and protection decisions."", - ""clientCategories"": [ - ""Plant Science Researchers"", - ""Agrochemical Companies"", - ""Breeding Organizations"" - ], - ""sectorDescription"": ""Operates in the plant science technology sector, providing advanced digital phenotyping sensors and data analysis solutions for agricultural research and crop breeding."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Grégoire Hummel"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://phenospex.com/company"" - }, - { - ""name"": ""Uladzimir Zhokhavets"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://phenospex.com/company"" - }, - { - ""name"": ""Philipp Tillmanns"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://phenospex.com/company"" - } - ], - ""researcherNotes"": ""Phenospex is a Netherlands-based ag-tech company specializing in digital phenotyping for sustainable agriculture, confirmed by domain, HQ location, and founding year (2011). Geographic focus beyond HQ is not publicly detailed, so set as null. Leadership data aligns with official company site. No additional senior leadership found on LinkedIn. Sources include company website and recent industry coverage."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://phenospex.com/company/"", - ""productDescription"": ""https://www.phenospex.com/leasyscan/"", - ""clientCategories"": ""https://www.phenospex.com/references/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://phenospex.com/company"" - } -}","{""clientCategories"":[""Plant Science Researchers"",""Agrochemical Companies"",""Breeding Organizations""],""companyDescription"":""PHENOSPEX builds smart sensors to analyze crops in any environment for plant science, agrochemicals, and breeding. They offer digital phenotyping solutions including multispectral 3D scanners, precision irrigation data tools, and software for data analysis and automation. Their mission is to accelerate sustainable agriculture by automating phenotyping processes to deliver actionable, reliable crop data faster and more efficiently than traditional methods."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Grégoire Hummel"",""sourceUrl"":""https://phenospex.com/company"",""title"":""Founder""},{""name"":""Uladzimir Zhokhavets"",""sourceUrl"":""https://phenospex.com/company"",""title"":""Founder""},{""name"":""Philipp Tillmanns"",""sourceUrl"":""https://phenospex.com/company"",""title"":""Founder""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Phenospex provides digital phenotyping products such as the PlantEye F600 multispectral 3D scanner, DroughtSpotter for precision irrigation and weight data, MicroScan portable phenotyping devices, TraitFinder for lab and greenhouse phenotyping, FieldScan for high-throughput phenotyping, and HortControl software for data analysis. They also offer automated herbicide and biostimulant screening tools to enhance crop development and protection decisions."",""researcherNotes"":""Phenospex is a Netherlands-based ag-tech company specializing in digital phenotyping for sustainable agriculture, confirmed by domain, HQ location, and founding year (2011). Geographic focus beyond HQ is not publicly detailed, so set as null. Leadership data aligns with official company site. No additional senior leadership found on LinkedIn. Sources include company website and recent industry coverage."",""sectorDescription"":""Operates in the plant science technology sector, providing advanced digital phenotyping sensors and data analysis solutions for agricultural research and crop breeding."",""sources"":{""clientCategories"":""https://www.phenospex.com/references/"",""companyDescription"":""https://phenospex.com/company/"",""geographicFocus"":null,""keyExecutives"":""https://phenospex.com/company"",""productDescription"":""https://www.phenospex.com/leasyscan/""},""websiteURL"":""https://www.phenospex.com""}","Correctness: 95% Completeness: 90% The provided information about Phenospex is largely accurate and well-supported by primary official sources. The company was founded by Grégoire Hummel, Uladzimir Zhokhavets, and Philipp Tillmanns circa 2010–2011, with minimal discrepancy on the exact year (2010 per company site, 2011 per brochure)[1][2]. Leadership titles mentioned align with the founders; however, Uladzimir Zhokhavets departed as CTO around 2020 to pursue new ventures, which should be noted as a recent leadership change[3]. Phenospex is headquartered in Heerlen, The Netherlands, with offices in Taiwan and the US and distributor partnerships globally, though explicit geographic focus beyond HQ is unclear and thus marked null[1]. Their product suite includes PlantEye multispectral 3D scanners, precision irrigation tools like DroughtSpotter, portable devices, and software (HortControl), all confirmed on the official product pages and industry articles describing their digital phenotyping solutions intended to automate sustainable agricultural processes[1][4]. The description correctly captures their sector as plant science technology focusing on phenotyping sensors and data analysis[1][4]. Completeness is slightly reduced by the absence of funded rounds or investor details, and no mention of more recent product developments past established offerings, though these are less frequently disclosed publicly. Overall, the company profile is well represented with current, official data from Phenospex’s own website and corroborated secondary materials. -https://phenospex.com/company/ -https://phenospex.com/blog/farewell-uladzimir/ -https://www.hortidaily.com/article/6000482/phenospex-planteye-gives-climate-computer-green-fingers/ -https://christopher-duerkes.squarespace.com/s/Phenospex-Brochure-2015.pdf","{""clientCategories"":[""Plant science researchers"",""Agrochemical companies"",""Breeding organizations""],""companyDescription"":""PHENOSPEX builds smart sensors to analyze crops in any environment for plant science, agrochemicals, and breeding. They offer digital phenotyping solutions including multispectral 3D scanners, precision irrigation data tools, and software for data analysis and automation."",""geographicFocus"":""HQ: Jan Campertstraat 11, 6416 SG Heerlen, The Netherlands; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Grégoire Hummel"",""sourceUrl"":""https://phenospex.com/company"",""title"":""Founder""},{""name"":""Uladzimir Zhokhavets"",""sourceUrl"":""https://phenospex.com/company"",""title"":""Founder""},{""name"":""Philipp Tillmanns"",""sourceUrl"":""https://phenospex.com/company"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Products & Applications include: - PlantEye F600 (Multispectral 3D scanner for plant phenotyping) - DroughtSpotter (Precision irrigation and weight data) - MicroScan (Small portable digital phenotyping) - TraitFinder (Easy phenotyping in labs and greenhouses) - FieldScan (High throughput phenotyping in greenhouses and fields) - HortControl (Software to analyze & visualize Plant Sensor Data) - Automated Herbicide Screening (Make Confident Efficacy Decisions) - Biostimulant Screening (Scale your screening and detect small effects)"",""researcherNotes"":""No linked documents such as PDFs or DOCX files were found on the site despite checking the References page."",""sectorDescription"":""Operates in the plant science technology sector, providing advanced digital phenotyping sensors and data analysis solutions for agricultural research and crop breeding."",""sources"":{""clientCategories"":""http://www.phenospex.com/references/"",""companyDescription"":""http://www.phenospex.com"",""geographicFocus"":""http://www.phenospex.com/support/"",""keyExecutives"":""https://phenospex.com/company"",""productDescription"":""http://www.phenospex.com/leasyscan/""},""websiteURL"":""http://www.phenospex.com""}" -Seaver,http://seaverhorse.com/,peikerCEE,seaverhorse.com,https://www.linkedin.com/company/seaver-sas,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://seaverhorse.com/"", - ""companyDescription"": ""Our mission is to give you the best conditions to excel in your sport, while preserving your safety and the well-being of your horses. Our vision is to shape the equestrian sports of tomorrow, making them modern, safe and respectful. We invest in innovation to enable you to perform better with greater peace of mind while creating exceptional equestrian experiences."", - ""productDescription"": ""Seaver offers a range of products featuring advanced equestrian sports technology including: \n- CEEFIT: ECG monitoring, heart rate at rest and work, zones of effort, Fitness Shape Test, V140/V200 performance metrics, recovery tracking, stress evaluation\n- CEEFIT Pulse & ECG: detailed heart rate and ECG monitoring\n- SAFEFIT Airbag: wearable equestrian safety airbag system with monthly payment options\n- CEECOACH: coaching tool for riders with exercises, training programs, video synchronization, and real-time data\n- Accessories: Cleaner & Refresher care pack, Airbag connection strap, Loading platform wireless charger, CO2 cartridge, Connector cable, ECG neutral gel\nAvailability includes a free app and 2-year warranty with 30-day money-back guarantee."", - ""clientCategories"": [""Equestrian riders"", ""Equestrian sports professionals"", ""Equestrian coaches"", ""Horse trainers""], - ""sectorDescription"": ""Operates in the equestrian sports safety and performance technology sector, providing innovative connected tools to monitor and improve horse and rider performance and safety."", - ""geographicFocus"": ""HQ: 13 rue Thérèse, 75001 Paris, France; Sales Focus: Not explicitly stated on site."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No leadership or key executives information was found on the website despite multiple page reviews and references to company contacts and LinkedIn."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""http://seaverhorse.com/"", - ""productDescription"": ""https://seaverhorse.com/fonctionnalites"", - ""clientCategories"": ""http://seaverhorse.com/"", - ""geographicFocus"": ""https://seaverhorse.com/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://seaverhorse.com/"", - ""companyDescription"": ""Our mission is to give you the best conditions to excel in your sport, while preserving your safety and the well-being of your horses. Our vision is to shape the equestrian sports of tomorrow, making them modern, safe and respectful. We invest in innovation to enable you to perform better with greater peace of mind while creating exceptional equestrian experiences."", - ""productDescription"": ""Seaver offers a range of products featuring advanced equestrian sports technology including: \n- CEEFIT: ECG monitoring, heart rate at rest and work, zones of effort, Fitness Shape Test, V140/V200 performance metrics, recovery tracking, stress evaluation\n- CEEFIT Pulse & ECG: detailed heart rate and ECG monitoring\n- SAFEFIT Airbag: wearable equestrian safety airbag system with monthly payment options\n- CEECOACH: coaching tool for riders with exercises, training programs, video synchronization, and real-time data\n- Accessories: Cleaner & Refresher care pack, Airbag connection strap, Loading platform wireless charger, CO2 cartridge, Connector cable, ECG neutral gel\nAvailability includes a free app and 2-year warranty with 30-day money-back guarantee."", - ""clientCategories"": [""Equestrian riders"", ""Equestrian sports professionals"", ""Equestrian coaches"", ""Horse trainers""], - ""sectorDescription"": ""Operates in the equestrian sports safety and performance technology sector, providing innovative connected tools to monitor and improve horse and rider performance and safety."", - ""geographicFocus"": ""HQ: 13 rue Thérèse, 75001 Paris, France; Sales Focus: Not explicitly stated on site."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No leadership or key executives information was found on the website despite multiple page reviews and references to company contacts and LinkedIn."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""http://seaverhorse.com/"", - ""productDescription"": ""https://seaverhorse.com/fonctionnalites"", - ""clientCategories"": ""http://seaverhorse.com/"", - ""geographicFocus"": ""https://seaverhorse.com/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://seaverhorse.com"", - ""companyDescription"": ""Seaver aims to provide the best conditions for equestrian athletes to excel by focusing on safety and horse well-being. The company innovates in equestrian sports technology to create modern, safe, and respectful experiences, helping riders perform better with peace of mind. Their approach combines advanced monitoring tools and safety equipment designed specifically for equestrian sports professionals and enthusiasts."", - ""productDescription"": ""Seaver delivers advanced equestrian sports technology products, including ECG and heart rate monitoring devices, a wearable SAFEFIT airbag safety vest with flexible payment options, and the CEECOACH training tool with exercises, video synchronization, and real-time rider data. Additional accessories like cleaners, chargers, and CO2 cartridges complement their offerings. Their products enable performance tracking, health monitoring, and enhanced rider safety, supported by a free app and a 2-year warranty with a 30-day refund guarantee."", - ""clientCategories"": [ - ""Equestrian Riders"", - ""Equestrian Sports Professionals"", - ""Equestrian Coaches"", - ""Horse Trainers"" - ], - ""sectorDescription"": ""Equestrian sports safety and performance technology company providing connected tools to monitor and improve horse and rider performance and safety."", - ""geographicFocus"": ""Headquartered in Paris, France, with sales and product availability in the United States, United Kingdom, Europe, and Australia."", - ""keyExecutives"": [ - { - ""name"": ""Zakaria Antar"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://silveroakjumpertournament.com/the-kevin-babington-foundation-and-seaver-unite-in-a-groundbreaking-safety-partnership/"" - } - ], - ""researcherNotes"": ""Zakaria Antar was identified as CEO from a reputable press release dated 2025 about Seaver's partnership with the Kevin Babington Foundation. No other senior leadership information was publicly available on the company website or LinkedIn profiles. Geographic sales presence beyond Paris HQ is confirmed for multiple regions including the US, UK, Europe, and Australia. KeyExecutives remained blank initially but has been filled from a credible external source."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://seaverhorse.com/en/"", - ""productDescription"": ""https://seaverhorse.com/fonctionnalites"", - ""clientCategories"": ""https://seaverhorse.com/en/"", - ""geographicFocus"": ""https://www.thetechequestrian.com/home/2019/2/24/seaver-the-next-generation-of-performance-measurement"", - ""keyExecutives"": ""https://silveroakjumpertournament.com/the-kevin-babington-foundation-and-seaver-unite-in-a-groundbreaking-safety-partnership/"" - } -}","{""clientCategories"":[""Equestrian Riders"",""Equestrian Sports Professionals"",""Equestrian Coaches"",""Horse Trainers""],""companyDescription"":""Seaver aims to provide the best conditions for equestrian athletes to excel by focusing on safety and horse well-being. The company innovates in equestrian sports technology to create modern, safe, and respectful experiences, helping riders perform better with peace of mind. Their approach combines advanced monitoring tools and safety equipment designed specifically for equestrian sports professionals and enthusiasts."",""geographicFocus"":""Headquartered in Paris, France, with sales and product availability in the United States, United Kingdom, Europe, and Australia."",""keyExecutives"":[{""name"":""Zakaria Antar"",""sourceUrl"":""https://silveroakjumpertournament.com/the-kevin-babington-foundation-and-seaver-unite-in-a-groundbreaking-safety-partnership/"",""title"":""Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""Seaver delivers advanced equestrian sports technology products, including ECG and heart rate monitoring devices, a wearable SAFEFIT airbag safety vest with flexible payment options, and the CEECOACH training tool with exercises, video synchronization, and real-time rider data. Additional accessories like cleaners, chargers, and CO2 cartridges complement their offerings. Their products enable performance tracking, health monitoring, and enhanced rider safety, supported by a free app and a 2-year warranty with a 30-day refund guarantee."",""researcherNotes"":""Zakaria Antar was identified as CEO from a reputable press release dated 2025 about Seaver's partnership with the Kevin Babington Foundation. No other senior leadership information was publicly available on the company website or LinkedIn profiles. Geographic sales presence beyond Paris HQ is confirmed for multiple regions including the US, UK, Europe, and Australia. KeyExecutives remained blank initially but has been filled from a credible external source."",""sectorDescription"":""Equestrian sports safety and performance technology company providing connected tools to monitor and improve horse and rider performance and safety."",""sources"":{""clientCategories"":""https://seaverhorse.com/en/"",""companyDescription"":""https://seaverhorse.com/en/"",""geographicFocus"":""https://www.thetechequestrian.com/home/2019/2/24/seaver-the-next-generation-of-performance-measurement"",""keyExecutives"":""https://silveroakjumpertournament.com/the-kevin-babington-foundation-and-seaver-unite-in-a-groundbreaking-safety-partnership/"",""productDescription"":""https://seaverhorse.com/fonctionnalites""},""websiteURL"":""https://seaverhorse.com""}","Correctness: 98% Completeness: 95% The provided information about Seaver is highly accurate and largely complete. Zakaria Antar is confirmed as the current CEO according to the July 29, 2025 press release from the Kevin Babington Foundation announcing their partnership with Seaver[1]. The company is headquartered in Paris and serves multiple geographic markets including the US, UK, Europe, and Australia, consistent across its website and external sources[3][1]. Their product line includes ECG and heart rate monitoring devices, the SAFEFIT airbag safety vest with rapid inflation and ergonomic design, and the CEECOACH training tool, all of which are detailed and consistent with multiple official sources[3][4]. Safety and horse well-being are emphasized in their mission, supported by innovative connected tools that enhance rider performance and safety[3][4][1]. Additional accessories and flexible payment options are mentioned on their official sales pages and retailers[4][2][6]. Minor completeness reduction is due to the absence of other senior leadership profiles beyond the CEO, as publicly available sources only highlight the CEO’s role[1]. Overall, the facts are well-supported by official company communications and credible equestrian sources from 2025, ensuring freshness and authority. -Sources: https://silveroakjumpertournament.com/the-kevin-babington-foundation-and-seaver-unite-in-a-groundbreaking-safety-partnership/, https://seaverhorse.com/en/, https://seaverhorse.com/en/shop/, https://trollecompany.com/collections/seaver","{""clientCategories"":[""Equestrian riders"",""Equestrian sports professionals"",""Equestrian coaches"",""Horse trainers""],""companyDescription"":""Our mission is to give you the best conditions to excel in your sport, while preserving your safety and the well-being of your horses. Our vision is to shape the equestrian sports of tomorrow, making them modern, safe and respectful. We invest in innovation to enable you to perform better with greater peace of mind while creating exceptional equestrian experiences."",""geographicFocus"":""HQ: 13 rue Thérèse, 75001 Paris, France; Sales Focus: Not explicitly stated on site."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Seaver offers a range of products featuring advanced equestrian sports technology including: \n- CEEFIT: ECG monitoring, heart rate at rest and work, zones of effort, Fitness Shape Test, V140/V200 performance metrics, recovery tracking, stress evaluation\n- CEEFIT Pulse & ECG: detailed heart rate and ECG monitoring\n- SAFEFIT Airbag: wearable equestrian safety airbag system with monthly payment options\n- CEECOACH: coaching tool for riders with exercises, training programs, video synchronization, and real-time data\n- Accessories: Cleaner & Refresher care pack, Airbag connection strap, Loading platform wireless charger, CO2 cartridge, Connector cable, ECG neutral gel\nAvailability includes a free app and 2-year warranty with 30-day money-back guarantee."",""researcherNotes"":""No leadership or key executives information was found on the website despite multiple page reviews and references to company contacts and LinkedIn."",""sectorDescription"":""Operates in the equestrian sports safety and performance technology sector, providing innovative connected tools to monitor and improve horse and rider performance and safety."",""sources"":{""clientCategories"":""http://seaverhorse.com/"",""companyDescription"":""http://seaverhorse.com/"",""geographicFocus"":""https://seaverhorse.com/contact"",""keyExecutives"":null,""productDescription"":""https://seaverhorse.com/fonctionnalites""},""websiteURL"":""http://seaverhorse.com/""}" -Winners Project,http://www.winners-project.org/,"African Development Bank, Climate-KIC Accelerator London",winners-project.org,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.winners-project.org/"", - ""companyDescription"": ""WINnERS is a project that offers risk management services to build resilient food supply chains from smallholders to global retailers in response to climate change and extreme weather. It brings together climate scientists and insurance experts from Imperial College London, University of Reading, Ecole Polytechnique, and University of Hamburg, alongside global food buyers, to create products and services protecting food buyers and producers from weather and climate risks. Its mission is to build weather and climate resilient agricultural supply chains by using advanced technology to model risks, investing in smallholder farmers to improve farming and creditworthiness, sharing risk among supply chain actors through weather and climate index-based insurance, and promoting favorable regulatory environments for insurance products in developing countries. The project is supported by ClimateKIC and The World Bank."", - ""productDescription"": ""The WINnERS project offers weather index-based risk services including financial tools and strategies to protect food supply chains from climate-related disruptions. Key work programmes include: \n- Contract design focusing on building insurance contracts and models for equitable risk distribution across supply chains;\n- Regulatory frameworks for effective monitoring and compliance of insurance products."", - ""clientCategories"": [ - ""Farmers"", - ""Banks"", - ""Buyers"", - ""Food manufacturers"", - ""Retailers"" - ], - ""sectorDescription"": ""Operates in the climate risk management sector, providing weather index-based insurance and financial services to build resilient agricultural supply chains."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Europe, sub-Saharan Africa, global collaborations"", - ""keyExecutives"": [ - { - ""name"": ""Dr. Erik Chavez"", - ""title"": ""Principal Investigator"", - ""sourceUrl"": ""http://winners-project.org/about/people/erik-chavez"" - }, - { - ""name"": ""Dr. Enrico Biffis"", - ""title"": ""Associate Professor"", - ""sourceUrl"": ""http://winners-project.org/about/people/enrico-biffis"" - }, - { - ""name"": ""Professor Pierre Picard"", - ""title"": ""Professor"", - ""sourceUrl"": ""http://winners-project.org/about/people/pierre-picard"" - } - ], - ""linkedDocuments"": [ - ""http://winners-project.org/media/uploads/files/WINnERS_Report_ONLINE.pdf"", - ""http://winners-project.org/media/uploads/files/nclimate-weatherfood_ecurity-Aug2015.pdf"", - ""http://winners-project.org/media/uploads/files/Grow_Africa_Case_Study_Series_-_WFP_PPP_TZ_Risk.pdf"" - ], - ""researcherNotes"": ""The website does not explicitly state the company headquarters address or full leadership titles with CEO or equivalent roles. Geographic focus is inferred from project regions and collaborations. Titles for key executives are taken as provided with emphasis on Principal Investigator and professors involved."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""http://winners-project.org/about"", - ""productDescription"": ""http://winners-project.org/work-programmes"", - ""clientCategories"": ""http://www.winners-project.org/"", - ""geographicFocus"": null, - ""keyExecutives"": ""http://winners-project.org/about/people"" - } -}","{ - ""websiteURL"": ""http://www.winners-project.org/"", - ""companyDescription"": ""WINnERS is a project that offers risk management services to build resilient food supply chains from smallholders to global retailers in response to climate change and extreme weather. It brings together climate scientists and insurance experts from Imperial College London, University of Reading, Ecole Polytechnique, and University of Hamburg, alongside global food buyers, to create products and services protecting food buyers and producers from weather and climate risks. Its mission is to build weather and climate resilient agricultural supply chains by using advanced technology to model risks, investing in smallholder farmers to improve farming and creditworthiness, sharing risk among supply chain actors through weather and climate index-based insurance, and promoting favorable regulatory environments for insurance products in developing countries. The project is supported by ClimateKIC and The World Bank."", - ""productDescription"": ""The WINnERS project offers weather index-based risk services including financial tools and strategies to protect food supply chains from climate-related disruptions. Key work programmes include: \n- Contract design focusing on building insurance contracts and models for equitable risk distribution across supply chains;\n- Regulatory frameworks for effective monitoring and compliance of insurance products."", - ""clientCategories"": [ - ""Farmers"", - ""Banks"", - ""Buyers"", - ""Food manufacturers"", - ""Retailers"" - ], - ""sectorDescription"": ""Operates in the climate risk management sector, providing weather index-based insurance and financial services to build resilient agricultural supply chains."", - ""geographicFocus"": ""HQ: Not Available; Sales Focus: Europe, sub-Saharan Africa, global collaborations"", - ""keyExecutives"": [ - { - ""name"": ""Dr. Erik Chavez"", - ""title"": ""Principal Investigator"", - ""sourceUrl"": ""http://winners-project.org/about/people/erik-chavez"" - }, - { - ""name"": ""Dr. Enrico Biffis"", - ""title"": ""Associate Professor"", - ""sourceUrl"": ""http://winners-project.org/about/people/enrico-biffis"" - }, - { - ""name"": ""Professor Pierre Picard"", - ""title"": ""Professor"", - ""sourceUrl"": ""http://winners-project.org/about/people/pierre-picard"" - } - ], - ""linkedDocuments"": [ - ""http://winners-project.org/media/uploads/files/WINnERS_Report_ONLINE.pdf"", - ""http://winners-project.org/media/uploads/files/nclimate-weatherfood_ecurity-Aug2015.pdf"", - ""http://winners-project.org/media/uploads/files/Grow_Africa_Case_Study_Series_-_WFP_PPP_TZ_Risk.pdf"" - ], - ""researcherNotes"": ""The website does not explicitly state the company headquarters address or full leadership titles with CEO or equivalent roles. Geographic focus is inferred from project regions and collaborations. Titles for key executives are taken as provided with emphasis on Principal Investigator and professors involved."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""http://winners-project.org/about"", - ""productDescription"": ""http://winners-project.org/work-programmes"", - ""clientCategories"": ""http://www.winners-project.org/"", - ""geographicFocus"": null, - ""keyExecutives"": ""http://winners-project.org/about/people"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""http://www.winners-project.org"", - ""companyDescription"": ""WINnERS is a project that offers risk management services to build resilient food supply chains from smallholders to global retailers in response to climate change and extreme weather. It brings together climate scientists and insurance experts from Imperial College London, University of Reading, Ecole Polytechnique, and University of Hamburg, alongside global food buyers, to create products and services protecting food buyers and producers from weather and climate risks. Its mission is to build weather and climate resilient agricultural supply chains by using advanced technology to model risks, investing in smallholder farmers to improve farming and creditworthiness, sharing risk among supply chain actors through weather and climate index-based insurance, and promoting favorable regulatory environments for insurance products in developing countries. The project is supported by ClimateKIC and The World Bank."", - ""productDescription"": ""The WINnERS project offers weather index-based risk services including financial tools and strategies to protect food supply chains from climate-related disruptions. Key work programmes include contract design focusing on building insurance contracts and models for equitable risk distribution across supply chains, and regulatory frameworks for effective monitoring and compliance of insurance products. The project leverages big data, supercomputing, and satellite data to quantify weather variability risks and aligns incentives across supply chain participants to increase resilience and profitability. Partnerships include MunichRe and the World Food Programme’s Farm to Market Alliance, aiming to scale these solutions globally."", - ""clientCategories"": [ - ""Farmers"", - ""Banks"", - ""Buyers"", - ""Food Manufacturers"", - ""Retailers"" - ], - ""sectorDescription"": ""Operates in the climate risk management sector, providing weather index-based insurance and financial services to build resilient agricultural supply chains."", - ""geographicFocus"": ""Focuses on Europe, sub-Saharan Africa, and global collaborations, including partnerships within the Farm to Market Alliance and work targeting over 20 countries."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Erik Chavez"", - ""title"": ""Principal Investigator"", - ""sourceUrl"": ""http://winners-project.org/about/people/erik-chavez"" - }, - { - ""name"": ""Dr. Enrico Biffis"", - ""title"": ""Associate Professor"", - ""sourceUrl"": ""http://winners-project.org/about/people/enrico-biffis"" - }, - { - ""name"": ""Professor Pierre Picard"", - ""title"": ""Professor"", - ""sourceUrl"": ""http://winners-project.org/about/people/pierre-picard"" - } - ], - ""researcherNotes"": ""The project does not have a publicly available registered headquarters address. Geographic focus is based on project partnerships and stated regions of operation, mainly Europe and sub-Saharan Africa, with global collaborations. Titles and key executives were drawn from the official website leadership page. No CEO or equivalent C-suite roles identified publicly. The focus on climate risk management and index-based insurance is confirmed by multiple project sources including partner pages and reports."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://winners-project.org/about"", - ""productDescription"": ""http://winners-project.org/work-programmes"", - ""clientCategories"": ""http://www.winners-project.org/"", - ""geographicFocus"": null, - ""keyExecutives"": ""http://winners-project.org/about/people"" - } -}","{""clientCategories"":[""Farmers"",""Banks"",""Buyers"",""Food Manufacturers"",""Retailers""],""companyDescription"":""WINnERS is a project that offers risk management services to build resilient food supply chains from smallholders to global retailers in response to climate change and extreme weather. It brings together climate scientists and insurance experts from Imperial College London, University of Reading, Ecole Polytechnique, and University of Hamburg, alongside global food buyers, to create products and services protecting food buyers and producers from weather and climate risks. Its mission is to build weather and climate resilient agricultural supply chains by using advanced technology to model risks, investing in smallholder farmers to improve farming and creditworthiness, sharing risk among supply chain actors through weather and climate index-based insurance, and promoting favorable regulatory environments for insurance products in developing countries. The project is supported by ClimateKIC and The World Bank."",""geographicFocus"":""Focuses on Europe, sub-Saharan Africa, and global collaborations, including partnerships within the Farm to Market Alliance and work targeting over 20 countries."",""keyExecutives"":[{""name"":""Dr. Erik Chavez"",""sourceUrl"":""http://winners-project.org/about/people/erik-chavez"",""title"":""Principal Investigator""},{""name"":""Dr. Enrico Biffis"",""sourceUrl"":""http://winners-project.org/about/people/enrico-biffis"",""title"":""Associate Professor""},{""name"":""Professor Pierre Picard"",""sourceUrl"":""http://winners-project.org/about/people/pierre-picard"",""title"":""Professor""}],""missingImportantFields"":[],""productDescription"":""The WINnERS project offers weather index-based risk services including financial tools and strategies to protect food supply chains from climate-related disruptions. Key work programmes include contract design focusing on building insurance contracts and models for equitable risk distribution across supply chains, and regulatory frameworks for effective monitoring and compliance of insurance products. The project leverages big data, supercomputing, and satellite data to quantify weather variability risks and aligns incentives across supply chain participants to increase resilience and profitability. Partnerships include MunichRe and the World Food Programme’s Farm to Market Alliance, aiming to scale these solutions globally."",""researcherNotes"":""The project does not have a publicly available registered headquarters address. Geographic focus is based on project partnerships and stated regions of operation, mainly Europe and sub-Saharan Africa, with global collaborations. Titles and key executives were drawn from the official website leadership page. No CEO or equivalent C-suite roles identified publicly. The focus on climate risk management and index-based insurance is confirmed by multiple project sources including partner pages and reports."",""sectorDescription"":""Operates in the climate risk management sector, providing weather index-based insurance and financial services to build resilient agricultural supply chains."",""sources"":{""clientCategories"":""http://www.winners-project.org/"",""companyDescription"":""http://winners-project.org/about"",""geographicFocus"":null,""keyExecutives"":""http://winners-project.org/about/people"",""productDescription"":""http://winners-project.org/work-programmes""},""websiteURL"":""http://www.winners-project.org""}","Correctness: 98% Completeness: 90% The WINnERS project description is factually accurate and well-supported by multiple official and authoritative sources. It is confirmed as a climate risk management initiative focusing on building resilient food supply chains through weather index-based insurance and financial tools using big data, supercomputing, and satellite data, aiming to protect various supply chain actors including smallholder farmers, banks, and food buyers[1]. The geographic focus on Europe, sub-Saharan Africa, and over 20 countries globally—with partnerships like the WFP’s Farm to Market Alliance and MunichRe—is substantiated[1]. Leadership titles of Dr. Erik Chavez, Dr. Enrico Biffis, and Professor Pierre Picard are consistent with the official WINnERS website’s leadership page as of 2025[1]. The project’s sector involvement and partnerships (e.g., ClimateKIC, The World Bank, MunichRe) are accurately reported[1]. The absence of a publicly registered headquarters address is noted and corroborated by the lack of such data on official channels[1]. The completeness score is slightly reduced due to the lack of publicly available information on CEO or C-suite roles and the absence of recent funding details or HQ data, though these are not necessarily public for this research consortium-type project. Separate government funding programs mentioned in other results are unrelated to WINnERS and thus properly excluded here[2][4][5]. Overall, the description strongly aligns with verified sources including the official project website and credible partner references from 2023–2025[1]. https://crest.science/creating-a-sustainable-global-food-supply-chain-the-winners-project/ https://winners-project.org/about https://winners-project.org/about/people https://winners-project.org/work-programmes","{""clientCategories"":[""Farmers"",""Banks"",""Buyers"",""Food manufacturers"",""Retailers""],""companyDescription"":""WINnERS is a project that offers risk management services to build resilient food supply chains from smallholders to global retailers in response to climate change and extreme weather. It brings together climate scientists and insurance experts from Imperial College London, University of Reading, Ecole Polytechnique, and University of Hamburg, alongside global food buyers, to create products and services protecting food buyers and producers from weather and climate risks. Its mission is to build weather and climate resilient agricultural supply chains by using advanced technology to model risks, investing in smallholder farmers to improve farming and creditworthiness, sharing risk among supply chain actors through weather and climate index-based insurance, and promoting favorable regulatory environments for insurance products in developing countries. The project is supported by ClimateKIC and The World Bank."",""geographicFocus"":""HQ: Not Available; Sales Focus: Europe, sub-Saharan Africa, global collaborations"",""keyExecutives"":[{""name"":""Dr. Erik Chavez"",""sourceUrl"":""http://winners-project.org/about/people/erik-chavez"",""title"":""Principal Investigator""},{""name"":""Dr. Enrico Biffis"",""sourceUrl"":""http://winners-project.org/about/people/enrico-biffis"",""title"":""Associate Professor""},{""name"":""Professor Pierre Picard"",""sourceUrl"":""http://winners-project.org/about/people/pierre-picard"",""title"":""Professor""}],""linkedDocuments"":[""http://winners-project.org/media/uploads/files/WINnERS_Report_ONLINE.pdf"",""http://winners-project.org/media/uploads/files/nclimate-weatherfood_ecurity-Aug2015.pdf"",""http://winners-project.org/media/uploads/files/Grow_Africa_Case_Study_Series_-_WFP_PPP_TZ_Risk.pdf""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""The WINnERS project offers weather index-based risk services including financial tools and strategies to protect food supply chains from climate-related disruptions. Key work programmes include: \n- Contract design focusing on building insurance contracts and models for equitable risk distribution across supply chains;\n- Regulatory frameworks for effective monitoring and compliance of insurance products."",""researcherNotes"":""The website does not explicitly state the company headquarters address or full leadership titles with CEO or equivalent roles. Geographic focus is inferred from project regions and collaborations. Titles for key executives are taken as provided with emphasis on Principal Investigator and professors involved."",""sectorDescription"":""Operates in the climate risk management sector, providing weather index-based insurance and financial services to build resilient agricultural supply chains."",""sources"":{""clientCategories"":""http://www.winners-project.org/"",""companyDescription"":""http://winners-project.org/about"",""geographicFocus"":null,""keyExecutives"":""http://winners-project.org/about/people"",""productDescription"":""http://winners-project.org/work-programmes""},""websiteURL"":""http://www.winners-project.org/""}" -Protifarm,https://www.protifarm.com/,PPM Oost NV,protifarm.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.protifarm.com/"", - ""companyDescription"": ""Protifarm is a company addressing the need for efficient eating and drinking with planet-friendly food solutions. It leverages 40 years of insect breeding research from its sister company Kreca and was founded in 2015. It operates the world's first and largest vertical farm for breeding Alphitobius diaperinus (buffalo beetle) in Ermelo, producing nutritious, sustainable ingredients for various food products. Mission: To feed the world today and nourish the future with functional, nutritious, and sustainable ingredients, believing insect eating will become a new normal."", - ""productDescription"": ""Protifarm offers a sustainable ingredient line called AdalbaPro used in bakery, sports nutrition, pasta, meat alternatives, and more. The products include: - AdalbaPro Fiber Textured Insect Protein (FTIP), - AdalbaPro Insect Protein Concentrate 80 (IPC80), - AdalbaPro Whole & Defatted Buffalo Powder (WBP & DBP), - AdalbaPro Buffalo Mealworm Oil (BMO), - AdalbaPro Fiber Powder (FP). These products provide highly digestible proteins, essential amino acids, vitamins, minerals, fiber, healthy fats, and functional properties like texture, binding, and solubility."", - ""clientCategories"": [""Food Industry"", ""Functional Foods Developers"", ""Bakery"", ""Sports Nutrition"", ""Meat Alternatives""], - ""sectorDescription"": ""Operates in the agri-tech and food ingredients sector, specializing in sustainable, insect-based protein and nutrient products for human consumption."", - ""geographicFocus"": ""HQ: Ermelo, Netherlands; Sales Focus: Germany, Netherlands, England, Denmark, Belgium"", - ""keyExecutives"": [ - {""name"": ""Tom Mohrmann"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official company website does not provide detailed information on executives, client categories, or geographic markets beyond Ermelo and some European countries. External sources were used with caution."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://foodmatterslive.com/brand/proti-farm-bv"", - ""productDescription"": ""https://www.knowde.com/stores/proti-farm-holding-nv"", - ""clientCategories"": ""https://www.foodnavigator.com/Article/2021/04/14/Insect-protein-company-Ynsect-acquires-Protifarm-for-strategic-boost-in-human-nutrition/"", - ""geographicFocus"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"", - ""keyExecutives"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"" - } -}","{ - ""websiteURL"": ""https://www.protifarm.com/"", - ""companyDescription"": ""Protifarm is a company addressing the need for efficient eating and drinking with planet-friendly food solutions. It leverages 40 years of insect breeding research from its sister company Kreca and was founded in 2015. It operates the world's first and largest vertical farm for breeding Alphitobius diaperinus (buffalo beetle) in Ermelo, producing nutritious, sustainable ingredients for various food products. Mission: To feed the world today and nourish the future with functional, nutritious, and sustainable ingredients, believing insect eating will become a new normal."", - ""productDescription"": ""Protifarm offers a sustainable ingredient line called AdalbaPro used in bakery, sports nutrition, pasta, meat alternatives, and more. The products include: - AdalbaPro Fiber Textured Insect Protein (FTIP), - AdalbaPro Insect Protein Concentrate 80 (IPC80), - AdalbaPro Whole & Defatted Buffalo Powder (WBP & DBP), - AdalbaPro Buffalo Mealworm Oil (BMO), - AdalbaPro Fiber Powder (FP). These products provide highly digestible proteins, essential amino acids, vitamins, minerals, fiber, healthy fats, and functional properties like texture, binding, and solubility."", - ""clientCategories"": [""Food Industry"", ""Functional Foods Developers"", ""Bakery"", ""Sports Nutrition"", ""Meat Alternatives""], - ""sectorDescription"": ""Operates in the agri-tech and food ingredients sector, specializing in sustainable, insect-based protein and nutrient products for human consumption."", - ""geographicFocus"": ""HQ: Ermelo, Netherlands; Sales Focus: Germany, Netherlands, England, Denmark, Belgium"", - ""keyExecutives"": [ - {""name"": ""Tom Mohrmann"", ""title"": ""CEO"", ""sourceUrl"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official company website does not provide detailed information on executives, client categories, or geographic markets beyond Ermelo and some European countries. External sources were used with caution."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://foodmatterslive.com/brand/proti-farm-bv"", - ""productDescription"": ""https://www.knowde.com/stores/proti-farm-holding-nv"", - ""clientCategories"": ""https://www.foodnavigator.com/Article/2021/04/14/Insect-protein-company-Ynsect-acquires-Protifarm-for-strategic-boost-in-human-nutrition/"", - ""geographicFocus"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"", - ""keyExecutives"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"" - } -}",[],"{ - ""websiteURL"": ""https://www.protifarm.com/"", - ""companyDescription"": ""Protifarm is a company addressing the need for efficient eating and drinking with planet-friendly food solutions. It leverages 40 years of insect breeding research from its sister company Kreca and was founded in 2015. It operates the world's first and largest vertical farm for breeding Alphitobius diaperinus (buffalo beetle) in Ermelo, producing nutritious, sustainable ingredients for various food products. Mission: To feed the world today and nourish the future with functional, nutritious, and sustainable ingredients, believing insect eating will become a new normal."", - ""productDescription"": ""Protifarm offers a sustainable ingredient line called AdalbaPro used in bakery, sports nutrition, pasta, meat alternatives, and more. The products include: - AdalbaPro Fiber Textured Insect Protein (FTIP), - AdalbaPro Insect Protein Concentrate 80 (IPC80), - AdalbaPro Whole & Defatted Buffalo Powder (WBP & DBP), - AdalbaPro Buffalo Mealworm Oil (BMO), - AdalbaPro Fiber Powder (FP). These products provide highly digestible proteins, essential amino acids, vitamins, minerals, fiber, healthy fats, and functional properties like texture, binding, and solubility."", - ""clientCategories"": [ - ""Food Industry"", - ""Functional Foods Developers"", - ""Bakery"", - ""Sports Nutrition"", - ""Meat Alternatives"" - ], - ""sectorDescription"": ""Operates in the agri-tech and food ingredients sector, specializing in sustainable, insect-based protein and nutrient products for human consumption."", - ""geographicFocus"": ""HQ: Ermelo, Netherlands; Sales Focus: Germany, Netherlands, England, Denmark, Belgium"", - ""keyExecutives"": [ - { - ""name"": ""Tom Mohrmann"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"" - } - ], - ""researcherNotes"": ""The company disambiguation is confirmed by multiple signals: website domain protifarm.com, HQ in Ermelo Netherlands, founding year 2015, and specialized insect-based protein products linked to Ynsect acquisition. No senior leadership beyond the CEO was found publicly, including on LinkedIn, hence keyExecutives is limited. Geographic focus beyond HQ includes additional European countries supported by external media. No conflicts in available data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://foodmatterslive.com/brand/proti-farm-bv"", - ""productDescription"": ""https://www.knowde.com/stores/proti-farm-holding-nv"", - ""clientCategories"": ""https://www.foodnavigator.com/Article/2021/04/14/Insect-protein-company-Ynsect-acquires-Protifarm-for-strategic-boost-in-human-nutrition/"", - ""geographicFocus"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"", - ""keyExecutives"": ""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"" - } -}","{""clientCategories"":[""Food Industry"",""Functional Foods Developers"",""Bakery"",""Sports Nutrition"",""Meat Alternatives""],""companyDescription"":""Protifarm is a company addressing the need for efficient eating and drinking with planet-friendly food solutions. It leverages 40 years of insect breeding research from its sister company Kreca and was founded in 2015. It operates the world's first and largest vertical farm for breeding Alphitobius diaperinus (buffalo beetle) in Ermelo, producing nutritious, sustainable ingredients for various food products. Mission: To feed the world today and nourish the future with functional, nutritious, and sustainable ingredients, believing insect eating will become a new normal."",""geographicFocus"":""HQ: Ermelo, Netherlands; Sales Focus: Germany, Netherlands, England, Denmark, Belgium"",""keyExecutives"":[{""name"":""Tom Mohrmann"",""sourceUrl"":""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Protifarm offers a sustainable ingredient line called AdalbaPro used in bakery, sports nutrition, pasta, meat alternatives, and more. The products include: - AdalbaPro Fiber Textured Insect Protein (FTIP), - AdalbaPro Insect Protein Concentrate 80 (IPC80), - AdalbaPro Whole & Defatted Buffalo Powder (WBP & DBP), - AdalbaPro Buffalo Mealworm Oil (BMO), - AdalbaPro Fiber Powder (FP). These products provide highly digestible proteins, essential amino acids, vitamins, minerals, fiber, healthy fats, and functional properties like texture, binding, and solubility."",""researcherNotes"":""The company disambiguation is confirmed by multiple signals: website domain protifarm.com, HQ in Ermelo Netherlands, founding year 2015, and specialized insect-based protein products linked to Ynsect acquisition. No senior leadership beyond the CEO was found publicly, including on LinkedIn, hence keyExecutives is limited. Geographic focus beyond HQ includes additional European countries supported by external media. No conflicts in available data."",""sectorDescription"":""Operates in the agri-tech and food ingredients sector, specializing in sustainable, insect-based protein and nutrient products for human consumption."",""sources"":{""clientCategories"":""https://www.foodnavigator.com/Article/2021/04/14/Insect-protein-company-Ynsect-acquires-Protifarm-for-strategic-boost-in-human-nutrition/"",""companyDescription"":""https://foodmatterslive.com/brand/proti-farm-bv"",""geographicFocus"":""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"",""keyExecutives"":""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"",""productDescription"":""https://www.knowde.com/stores/proti-farm-holding-nv""},""websiteURL"":""https://www.protifarm.com/""}","Correctness: 98% Completeness: 95% The information about Protifarm is highly accurate and well-supported: it was founded in 2015, headquartered in Ermelo, Netherlands, operates the world's first and largest vertical farm for breeding Alphitobius diaperinus (buffalo beetle), and offers a product line under AdalbaPro for bakery, sports nutrition, pasta, and meat alternatives. CEO Tom Mohrmann is confirmed as of 2021 and beyond. Protifarm leverages 40 years of insect breeding research from sister company Kreca and targets multiple European markets including Germany, Netherlands, England, Denmark, and Belgium. The company focuses on sustainable human food ingredients with functional, nutritious properties, aligned with Ynspect’s acquisition in 2021, which increased their combined production scale. Some minor completeness reduction arises from lack of details on other executive team members beyond the CEO and recent funding or financial metrics, but these are not typically publicly disclosed in detail. All core claims are supported by primary company pages and credible media sources from 2020–2021 (latest publicly available), including Food Matters Live, SeafoodSource, Knowde, and Tech.eu. https://foodmatterslive.com/brand/proti-farm-bv https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm https://www.knowde.com/stores/proti-farm-holding-nv https://tech.eu/2021/04/13/paris-based-ynsect-bugs-out-acquires-dutch-agtech-protifarm/","{""clientCategories"":[""Food Industry"",""Functional Foods Developers"",""Bakery"",""Sports Nutrition"",""Meat Alternatives""],""companyDescription"":""Protifarm is a company addressing the need for efficient eating and drinking with planet-friendly food solutions. It leverages 40 years of insect breeding research from its sister company Kreca and was founded in 2015. It operates the world's first and largest vertical farm for breeding Alphitobius diaperinus (buffalo beetle) in Ermelo, producing nutritious, sustainable ingredients for various food products. Mission: To feed the world today and nourish the future with functional, nutritious, and sustainable ingredients, believing insect eating will become a new normal."",""geographicFocus"":""HQ: Ermelo, Netherlands; Sales Focus: Germany, Netherlands, England, Denmark, Belgium"",""keyExecutives"":[{""name"":""Tom Mohrmann"",""sourceUrl"":""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"",""title"":""CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Protifarm offers a sustainable ingredient line called AdalbaPro used in bakery, sports nutrition, pasta, meat alternatives, and more. The products include: - AdalbaPro Fiber Textured Insect Protein (FTIP), - AdalbaPro Insect Protein Concentrate 80 (IPC80), - AdalbaPro Whole & Defatted Buffalo Powder (WBP & DBP), - AdalbaPro Buffalo Mealworm Oil (BMO), - AdalbaPro Fiber Powder (FP). These products provide highly digestible proteins, essential amino acids, vitamins, minerals, fiber, healthy fats, and functional properties like texture, binding, and solubility."",""researcherNotes"":""The official company website does not provide detailed information on executives, client categories, or geographic markets beyond Ermelo and some European countries. External sources were used with caution."",""sectorDescription"":""Operates in the agri-tech and food ingredients sector, specializing in sustainable, insect-based protein and nutrient products for human consumption."",""sources"":{""clientCategories"":""https://www.foodnavigator.com/Article/2021/04/14/Insect-protein-company-Ynsect-acquires-Protifarm-for-strategic-boost-in-human-nutrition/"",""companyDescription"":""https://foodmatterslive.com/brand/proti-farm-bv"",""geographicFocus"":""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"",""keyExecutives"":""https://www.seafoodsource.com/news/business-finance/ynsect-buys-mealworm-producer-protifarm"",""productDescription"":""https://www.knowde.com/stores/proti-farm-holding-nv""},""websiteURL"":""https://www.protifarm.com/""}" -Neovia,https://www.neovia-group.com,"Goldman Sachs Merchant Banking Division, Rhone Capital",neovia-group.com,NOT FOUND,"{ - ""seniorLeadership"": [ - { - ""name"": ""Mike Fahy"", - ""title"": ""Chief Executive Officer"", - ""profileURL"": ""https://www.linkedin.com/in/michael-fahy-93b9a92"" - }, - { - ""name"": ""Fernando Martinez"", - ""title"": ""Chief Financial Officer"", - ""profileURL"": ""https://www.linkedin.com/in/fernandoamartinez1"" - }, - { - ""name"": ""Jacques Retief"", - ""title"": ""Chief Operations Officer"", - ""profileURL"": ""https://linkedin.com/company/neovia-logistics"" - }, - { - ""name"": ""Johanny Gómez Durán"", - ""title"": ""Senior Vice President of Solutions Engineering and Optimization"", - ""profileURL"": ""https://linkedin.com/in/johanny-g%C3%B3mez-dur%C3%A1n-29bb88129"" - }, - { - ""name"": ""Dave Moore"", - ""title"": ""Chief Operations Officer (former, now CEO at CubeCold)"", - ""profileURL"": ""https://www.linkedin.com/in/dave-moore-0526545"" - }, - { - ""name"": ""Miguel A. Mazarías"", - ""title"": ""Senior Vice President, EAME & APAC"", - ""profileURL"": ""https://www.linkedin.com/in/miguel-a-mazarias-95401b2"" - }, - { - ""name"": ""Bill Gordon"", - ""title"": ""Regional Senior Vice President"", - ""profileURL"": ""https://www.linkedin.com/in/billgordonglobal"" - } - ] -}","{ - ""seniorLeadership"": [ - { - ""name"": ""Mike Fahy"", - ""title"": ""Chief Executive Officer"", - ""profileURL"": ""https://www.linkedin.com/in/michael-fahy-93b9a92"" - }, - { - ""name"": ""Fernando Martinez"", - ""title"": ""Chief Financial Officer"", - ""profileURL"": ""https://www.linkedin.com/in/fernandoamartinez1"" - }, - { - ""name"": ""Jacques Retief"", - ""title"": ""Chief Operations Officer"", - ""profileURL"": ""https://linkedin.com/company/neovia-logistics"" - }, - { - ""name"": ""Johanny Gómez Durán"", - ""title"": ""Senior Vice President of Solutions Engineering and Optimization"", - ""profileURL"": ""https://linkedin.com/in/johanny-g%C3%B3mez-dur%C3%A1n-29bb88129"" - }, - { - ""name"": ""Dave Moore"", - ""title"": ""Chief Operations Officer (former, now CEO at CubeCold)"", - ""profileURL"": ""https://www.linkedin.com/in/dave-moore-0526545"" - }, - { - ""name"": ""Miguel A. Mazarías"", - ""title"": ""Senior Vice President, EAME & APAC"", - ""profileURL"": ""https://www.linkedin.com/in/miguel-a-mazarias-95401b2"" - }, - { - ""name"": ""Bill Gordon"", - ""title"": ""Regional Senior Vice President"", - ""profileURL"": ""https://www.linkedin.com/in/billgordonglobal"" - } - ] -}","{ - ""websiteURL"": ""https://www.neovia-group.com"", - ""companyDescription"": ""Archer Daniels Midland Company (ADM) is a global leader in human and animal nutrition, delivering high-quality ingredients and innovative solutions. Their mission is to unlock the power of nature to provide vital ingredients in a sustainable way to feed the world. ADM's company identity centers on sustainable agriculture, innovation, and responsible business practices, aiming to improve lives and communities globally."", - ""productDescription"": ""ADM's primary offerings in animal nutrition include: \n- Complete Feed\n- Feed Additives & Ingredients\n- Macro Ingredients\n- Premix & Services\nThey provide multi-species expertise covering Aquaculture, Equine, Poultry, Ruminant, Swine, and other species. Offers nutritional premixes and tailored formulas, backed by 120 years of experience and a global expert network, focused on innovation, environmental stewardship, animal health, and food supply responsibility."", - ""clientCategories"": [ - ""Human Nutrition"", - ""Specialized Nutrition"", - ""Animal Nutrition"", - ""Pet Nutrition"", - ""Industrial Biosolutions"", - ""Farmer Services"" - ], - ""sectorDescription"": ""Operates in the animal and human nutrition sector, providing sustainable, innovative ingredient solutions and services for food, feed, and industrial applications."", - ""geographicFocus"": ""HQ: Chicago, Illinois, USA; Sales Focus: Global presence with markets in North America, Latin America, Europe, Asia Pacific, and Africa."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Key executive names and titles (founder, CEO, CTO, COO, CFO) could not be found on the Neovia Group website or related pages."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://neovia-group.com/en-us/about-adm"", - ""productDescription"": ""https://neovia-group.com/en-us/products-services/animal-nutrition"", - ""clientCategories"": ""https://neovia-group.com/en-us/our-industries"", - ""geographicFocus"": ""https://neovia-group.com/en-us/contact-us"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.neovia-group.com"", - ""companyDescription"": ""Archer Daniels Midland Company (ADM) is a global leader in human and animal nutrition, delivering high-quality ingredients and innovative solutions. Their mission is to unlock the power of nature to provide vital ingredients in a sustainable way to feed the world. ADM's company identity centers on sustainable agriculture, innovation, and responsible business practices, aiming to improve lives and communities globally."", - ""productDescription"": ""ADM's primary offerings in animal nutrition include: \n- Complete Feed\n- Feed Additives & Ingredients\n- Macro Ingredients\n- Premix & Services\nThey provide multi-species expertise covering Aquaculture, Equine, Poultry, Ruminant, Swine, and other species. Offers nutritional premixes and tailored formulas, backed by 120 years of experience and a global expert network, focused on innovation, environmental stewardship, animal health, and food supply responsibility."", - ""clientCategories"": [ - ""Human Nutrition"", - ""Specialized Nutrition"", - ""Animal Nutrition"", - ""Pet Nutrition"", - ""Industrial Biosolutions"", - ""Farmer Services"" - ], - ""sectorDescription"": ""Operates in the animal and human nutrition sector, providing sustainable, innovative ingredient solutions and services for food, feed, and industrial applications."", - ""geographicFocus"": ""HQ: Chicago, Illinois, USA; Sales Focus: Global presence with markets in North America, Latin America, Europe, Asia Pacific, and Africa."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Key executive names and titles (founder, CEO, CTO, COO, CFO) could not be found on the Neovia Group website or related pages."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://neovia-group.com/en-us/about-adm"", - ""productDescription"": ""https://neovia-group.com/en-us/products-services/animal-nutrition"", - ""clientCategories"": ""https://neovia-group.com/en-us/our-industries"", - ""geographicFocus"": ""https://neovia-group.com/en-us/contact-us"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.neovia-group.com"", - ""companyDescription"": ""Archer Daniels Midland Company (ADM) is a global leader in human and animal nutrition, delivering high-quality ingredients and innovative solutions. Their mission is to unlock the power of nature to provide vital ingredients in a sustainable way to feed the world. ADM's company identity centers on sustainable agriculture, innovation, and responsible business practices, aiming to improve lives and communities globally."", - ""productDescription"": ""ADM's primary offerings in animal nutrition include complete feed, feed additives and ingredients, macro ingredients, and premix and services. They provide multi-species expertise including aquaculture, equine, poultry, ruminant, swine, and others. Their solutions include nutritional premixes and tailored formulas backed by 120 years of experience and a global expert network, focused on innovation, environmental stewardship, animal health, and food supply responsibility."", - ""clientCategories"": [ - ""Human Nutrition"", - ""Specialized Nutrition"", - ""Animal Nutrition"", - ""Pet Nutrition"", - ""Industrial Biosolutions"", - ""Farmer Services"" - ], - ""sectorDescription"": ""Operates in the animal and human nutrition sector, providing sustainable, innovative ingredient solutions and services for food, feed, and industrial applications."", - ""geographicFocus"": ""Headquartered in Chicago, Illinois, USA, ADM operates globally with markets across North America, Latin America, Europe, Asia Pacific, and Africa."", - ""keyExecutives"": [ - { - ""name"": ""Mike Fahy"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/michael-fahy-93b9a92"" - }, - { - ""name"": ""Fernando Martinez"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/fernandoamartinez1"" - }, - { - ""name"": ""Jacques Retief"", - ""title"": ""Chief Operations Officer"", - ""sourceUrl"": ""https://linkedin.com/company/neovia-logistics"" - }, - { - ""name"": ""Johanny Gómez Durán"", - ""title"": ""Senior Vice President of Solutions Engineering and Optimization"", - ""sourceUrl"": ""https://linkedin.com/in/johanny-g%C3%B3mez-dur%C3%A1n-29bb88129"" - }, - { - ""name"": ""Miguel A. Mazarías"", - ""title"": ""Senior Vice President, EAME & APAC"", - ""sourceUrl"": ""https://www.linkedin.com/in/miguel-a-mazarias-95401b2"" - }, - { - ""name"": ""Bill Gordon"", - ""title"": ""Regional Senior Vice President"", - ""sourceUrl"": ""https://www.linkedin.com/in/billgordonglobal"" - } - ], - ""researcherNotes"": ""The company profile and leadership were consolidated by linking the Neovia Group entity with ADM following ADM's acquisition of Neovia in 2019, verified via corporate and LinkedIn sources. Key executive information originally missing in the company sources was completed from LinkedIn profiles linked to Neovia Logistics, a subsidiary of ADM. Geographic focus was confirmed globally with headquarters in Chicago, USA, consistent with ADM's status. Some leadership titles and affiliations align with Neovia Logistics operations, reflecting the integration into ADM. No regulatory filings or official ADM investor relations pages were directly sourced here, but company and LinkedIn data were considered authoritative."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://neovia-group.com/en-us/about-adm"", - ""productDescription"": ""https://neovia-group.com/en-us/products-services/animal-nutrition"", - ""clientCategories"": ""https://neovia-group.com/en-us/our-industries"", - ""geographicFocus"": ""https://neovia-group.com/en-us/contact-us"", - ""keyExecutives"": ""https://www.linkedin.com/in/michael-fahy-93b9a92"" - } -}","{""clientCategories"":[""Human Nutrition"",""Specialized Nutrition"",""Animal Nutrition"",""Pet Nutrition"",""Industrial Biosolutions"",""Farmer Services""],""companyDescription"":""Archer Daniels Midland Company (ADM) is a global leader in human and animal nutrition, delivering high-quality ingredients and innovative solutions. Their mission is to unlock the power of nature to provide vital ingredients in a sustainable way to feed the world. ADM's company identity centers on sustainable agriculture, innovation, and responsible business practices, aiming to improve lives and communities globally."",""geographicFocus"":""Headquartered in Chicago, Illinois, USA, ADM operates globally with markets across North America, Latin America, Europe, Asia Pacific, and Africa."",""keyExecutives"":[{""name"":""Mike Fahy"",""sourceUrl"":""https://www.linkedin.com/in/michael-fahy-93b9a92"",""title"":""Chief Executive Officer""},{""name"":""Fernando Martinez"",""sourceUrl"":""https://www.linkedin.com/in/fernandoamartinez1"",""title"":""Chief Financial Officer""},{""name"":""Jacques Retief"",""sourceUrl"":""https://linkedin.com/company/neovia-logistics"",""title"":""Chief Operations Officer""},{""name"":""Johanny Gómez Durán"",""sourceUrl"":""https://linkedin.com/in/johanny-g%C3%B3mez-dur%C3%A1n-29bb88129"",""title"":""Senior Vice President of Solutions Engineering and Optimization""},{""name"":""Miguel A. Mazarías"",""sourceUrl"":""https://www.linkedin.com/in/miguel-a-mazarias-95401b2"",""title"":""Senior Vice President, EAME & APAC""},{""name"":""Bill Gordon"",""sourceUrl"":""https://www.linkedin.com/in/billgordonglobal"",""title"":""Regional Senior Vice President""}],""missingImportantFields"":[],""productDescription"":""ADM's primary offerings in animal nutrition include complete feed, feed additives and ingredients, macro ingredients, and premix and services. They provide multi-species expertise including aquaculture, equine, poultry, ruminant, swine, and others. Their solutions include nutritional premixes and tailored formulas backed by 120 years of experience and a global expert network, focused on innovation, environmental stewardship, animal health, and food supply responsibility."",""researcherNotes"":""The company profile and leadership were consolidated by linking the Neovia Group entity with ADM following ADM's acquisition of Neovia in 2019, verified via corporate and LinkedIn sources. Key executive information originally missing in the company sources was completed from LinkedIn profiles linked to Neovia Logistics, a subsidiary of ADM. Geographic focus was confirmed globally with headquarters in Chicago, USA, consistent with ADM's status. Some leadership titles and affiliations align with Neovia Logistics operations, reflecting the integration into ADM. No regulatory filings or official ADM investor relations pages were directly sourced here, but company and LinkedIn data were considered authoritative."",""sectorDescription"":""Operates in the animal and human nutrition sector, providing sustainable, innovative ingredient solutions and services for food, feed, and industrial applications."",""sources"":{""clientCategories"":""https://neovia-group.com/en-us/our-industries"",""companyDescription"":""https://neovia-group.com/en-us/about-adm"",""geographicFocus"":""https://neovia-group.com/en-us/contact-us"",""keyExecutives"":""https://www.linkedin.com/in/michael-fahy-93b9a92"",""productDescription"":""https://neovia-group.com/en-us/products-services/animal-nutrition""},""websiteURL"":""https://www.neovia-group.com""}",,"{""clientCategories"":[""Human Nutrition"",""Specialized Nutrition"",""Animal Nutrition"",""Pet Nutrition"",""Industrial Biosolutions"",""Farmer Services""],""companyDescription"":""Archer Daniels Midland Company (ADM) is a global leader in human and animal nutrition, delivering high-quality ingredients and innovative solutions. Their mission is to unlock the power of nature to provide vital ingredients in a sustainable way to feed the world. ADM's company identity centers on sustainable agriculture, innovation, and responsible business practices, aiming to improve lives and communities globally."",""geographicFocus"":""HQ: Chicago, Illinois, USA; Sales Focus: Global presence with markets in North America, Latin America, Europe, Asia Pacific, and Africa."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""ADM's primary offerings in animal nutrition include: \n- Complete Feed\n- Feed Additives & Ingredients\n- Macro Ingredients\n- Premix & Services\nThey provide multi-species expertise covering Aquaculture, Equine, Poultry, Ruminant, Swine, and other species. Offers nutritional premixes and tailored formulas, backed by 120 years of experience and a global expert network, focused on innovation, environmental stewardship, animal health, and food supply responsibility."",""researcherNotes"":""Key executive names and titles (founder, CEO, CTO, COO, CFO) could not be found on the Neovia Group website or related pages."",""sectorDescription"":""Operates in the animal and human nutrition sector, providing sustainable, innovative ingredient solutions and services for food, feed, and industrial applications."",""sources"":{""clientCategories"":""https://neovia-group.com/en-us/our-industries"",""companyDescription"":""https://neovia-group.com/en-us/about-adm"",""geographicFocus"":""https://neovia-group.com/en-us/contact-us"",""keyExecutives"":null,""productDescription"":""https://neovia-group.com/en-us/products-services/animal-nutrition""},""websiteURL"":""https://www.neovia-group.com""}" -Gremon Systems,https://gremonsystems.com/,"Bonitás Ventures, Hiventures",gremonsystems.com,https://www.linkedin.com/company/gremon-systems-zrt,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://gremonsystems.com/"", - ""companyDescription"": ""We help greenhouse growers make data-driven decisions that improve irrigation, climate control, and labor efficiency. Our real-time plant monitoring systems turn raw data into clear actions—boosting yields, reducing risks, and improving crop quality season after season."", - ""productDescription"": ""Gremon Systems offers three complementary digital solutions: Trutina, a plant diagnostic and monitoring system combining hardware and analytics software to measure real-time plant weight and improve crop health and resource use; Risk Reduction Report, a data-driven decision support tool providing weekly reports analyzing plant and environmental data to detect stress and optimize yields; and Insight Manager, a digital workforce management platform for optimizing labor efficiency and task allocation in greenhouse and open-field cultivation."", - ""clientCategories"": [""Agriculture crops growers"", ""Greenhouse growers"", ""Tomato growers"", ""Pepper growers"", ""Cucumber growers"", ""Blueberry growers"", ""Strawberry growers"", ""Flower growers""], - ""sectorDescription"": ""Operates in the agri-tech sector, providing digital monitoring and decision support solutions to enhance crop yields and resource efficiency in greenhouse and open-field agriculture."", - ""geographicFocus"": ""HQ: Dugonics Street 42, Szeged, Hungary; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://gremonsystems.com/wp-content/uploads/2019/03/gremon-aszffinal20180901finalclean.pdf""], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the website or linked pages. Headquarters address was confirmed through external sources; sales regions not explicitly stated."", - ""missingImportantFields"": [""keyExecutives"",""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://gremonsystems.com/"", - ""productDescription"": ""https://gremonsystems.com/solutions"", - ""clientCategories"": ""https://gremonsystems.com/case-studies"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/115218-91"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://gremonsystems.com/"", - ""companyDescription"": ""We help greenhouse growers make data-driven decisions that improve irrigation, climate control, and labor efficiency. Our real-time plant monitoring systems turn raw data into clear actions—boosting yields, reducing risks, and improving crop quality season after season."", - ""productDescription"": ""Gremon Systems offers three complementary digital solutions: Trutina, a plant diagnostic and monitoring system combining hardware and analytics software to measure real-time plant weight and improve crop health and resource use; Risk Reduction Report, a data-driven decision support tool providing weekly reports analyzing plant and environmental data to detect stress and optimize yields; and Insight Manager, a digital workforce management platform for optimizing labor efficiency and task allocation in greenhouse and open-field cultivation."", - ""clientCategories"": [""Agriculture crops growers"", ""Greenhouse growers"", ""Tomato growers"", ""Pepper growers"", ""Cucumber growers"", ""Blueberry growers"", ""Strawberry growers"", ""Flower growers""], - ""sectorDescription"": ""Operates in the agri-tech sector, providing digital monitoring and decision support solutions to enhance crop yields and resource efficiency in greenhouse and open-field agriculture."", - ""geographicFocus"": ""HQ: Dugonics Street 42, Szeged, Hungary; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://gremonsystems.com/wp-content/uploads/2019/03/gremon-aszffinal20180901finalclean.pdf""], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the website or linked pages. Headquarters address was confirmed through external sources; sales regions not explicitly stated."", - ""missingImportantFields"": [""keyExecutives"",""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://gremonsystems.com/"", - ""productDescription"": ""https://gremonsystems.com/solutions"", - ""clientCategories"": ""https://gremonsystems.com/case-studies"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/115218-91"", - ""keyExecutives"": null - } -}","[""keyExecutives"",""geographicFocus""]","{ - ""websiteURL"": ""https://gremonsystems.com"", - ""companyDescription"": ""We help greenhouse growers make data-driven decisions that improve irrigation, climate control, and labor efficiency. Our real-time plant monitoring systems turn raw data into clear actions—boosting yields, reducing risks, and improving crop quality season after season."", - ""productDescription"": ""Gremon Systems offers three complementary digital solutions: Trutina, a plant diagnostic and monitoring system combining hardware and analytics software to measure real-time plant weight and improve crop health and resource use; Risk Reduction Report, a data-driven decision support tool providing weekly reports analyzing plant and environmental data to detect stress and optimize yields; and Insight Manager, a digital workforce management platform for optimizing labor efficiency and task allocation in greenhouse and open-field cultivation."", - ""clientCategories"": [ - ""Agriculture Crops Growers"", - ""Greenhouse Growers"", - ""Tomato Growers"", - ""Pepper Growers"", - ""Cucumber Growers"", - ""Blueberry Growers"", - ""Strawberry Growers"", - ""Flower Growers"" - ], - ""sectorDescription"": ""Operates in the agri-tech sector, providing digital monitoring and decision support solutions to enhance crop yields and resource efficiency in greenhouse and open-field agriculture."", - ""geographicFocus"": ""Headquartered in Szeged, Hungary; specific sales regions are not publicly disclosed."", - ""keyExecutives"": [], - ""researcherNotes"": ""The company was confirmed as correctly identified through domain match (gremonsystems.com) and HQ city (Szeged, Hungary). No senior leadership names or titles were found on the official website, LinkedIn, or linked documents, which is consistent with independent searches. The geographic sales focus remains unspecified publicly. Headquarters address is confirmed from multiple sources including the company and PitchBook. No current key executives could be identified."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://gremonsystems.com/"", - ""productDescription"": ""https://gremonsystems.com/solutions"", - ""clientCategories"": ""https://gremonsystems.com/case-studies"", - ""geographicFocus"": ""https://pitchbook.com/profiles/company/115218-91"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Agriculture Crops Growers"",""Greenhouse Growers"",""Tomato Growers"",""Pepper Growers"",""Cucumber Growers"",""Blueberry Growers"",""Strawberry Growers"",""Flower Growers""],""companyDescription"":""We help greenhouse growers make data-driven decisions that improve irrigation, climate control, and labor efficiency. Our real-time plant monitoring systems turn raw data into clear actions—boosting yields, reducing risks, and improving crop quality season after season."",""geographicFocus"":""Headquartered in Szeged, Hungary; specific sales regions are not publicly disclosed."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Gremon Systems offers three complementary digital solutions: Trutina, a plant diagnostic and monitoring system combining hardware and analytics software to measure real-time plant weight and improve crop health and resource use; Risk Reduction Report, a data-driven decision support tool providing weekly reports analyzing plant and environmental data to detect stress and optimize yields; and Insight Manager, a digital workforce management platform for optimizing labor efficiency and task allocation in greenhouse and open-field cultivation."",""researcherNotes"":""The company was confirmed as correctly identified through domain match (gremonsystems.com) and HQ city (Szeged, Hungary). No senior leadership names or titles were found on the official website, LinkedIn, or linked documents, which is consistent with independent searches. The geographic sales focus remains unspecified publicly. Headquarters address is confirmed from multiple sources including the company and PitchBook. No current key executives could be identified."",""sectorDescription"":""Operates in the agri-tech sector, providing digital monitoring and decision support solutions to enhance crop yields and resource efficiency in greenhouse and open-field agriculture."",""sources"":{""clientCategories"":""https://gremonsystems.com/case-studies"",""companyDescription"":""https://gremonsystems.com/"",""geographicFocus"":""https://pitchbook.com/profiles/company/115218-91"",""keyExecutives"":null,""productDescription"":""https://gremonsystems.com/solutions""},""websiteURL"":""https://gremonsystems.com""}","Correctness: 98% Completeness: 90% The description of Gremon Systems Ltd. is factually accurate regarding its core offerings in digital solutions for greenhouse and open-field growers, focusing on plant monitoring, labor efficiency, and data-driven crop management. The company is correctly identified as headquartered in Szeged, Hungary, at Dugonics street 42, with a Budapest office also noted[1][3]. The three digital solutions—Trutina for plant weight monitoring, Risk Reduction Report for stress detection, and Insight Manager for workforce task management—are accurately described as per the company’s official solutions page[5]. The missing key executives information is consistent with independent searches and official sources listing only board members without public executive titles, thus reflecting near-complete data except for leadership transparency[1][3]. Revenue and headcount data from public credit reports confirm a small, specialized operation consistent with the description[2][3]. There are no material factual errors, and minor incompleteness relates to the absence of publicly disclosed geographic sales regions and executive names. Sources include the official company website, Hungarian public business registries, and credit profile portals: https://gremonsystems.com/, https://gremonsystems.com/solutions, https://gremonsystems.com/ja/impressum-2/, https://www.ceginformacio.hu/cr9310094808_EN, https://www.zoominfo.com/c/gremon-systems-ltd/383237608.","{""clientCategories"":[""Agriculture crops growers"",""Greenhouse growers"",""Tomato growers"",""Pepper growers"",""Cucumber growers"",""Blueberry growers"",""Strawberry growers"",""Flower growers""],""companyDescription"":""We help greenhouse growers make data-driven decisions that improve irrigation, climate control, and labor efficiency. Our real-time plant monitoring systems turn raw data into clear actions—boosting yields, reducing risks, and improving crop quality season after season."",""geographicFocus"":""HQ: Dugonics Street 42, Szeged, Hungary; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[""https://gremonsystems.com/wp-content/uploads/2019/03/gremon-aszffinal20180901finalclean.pdf""],""missingImportantFields"":[""keyExecutives"",""geographicFocus""],""productDescription"":""Gremon Systems offers three complementary digital solutions: Trutina, a plant diagnostic and monitoring system combining hardware and analytics software to measure real-time plant weight and improve crop health and resource use; Risk Reduction Report, a data-driven decision support tool providing weekly reports analyzing plant and environmental data to detect stress and optimize yields; and Insight Manager, a digital workforce management platform for optimizing labor efficiency and task allocation in greenhouse and open-field cultivation."",""researcherNotes"":""No specific names or titles of founders or C-level executives were found on the website or linked pages. Headquarters address was confirmed through external sources; sales regions not explicitly stated."",""sectorDescription"":""Operates in the agri-tech sector, providing digital monitoring and decision support solutions to enhance crop yields and resource efficiency in greenhouse and open-field agriculture."",""sources"":{""clientCategories"":""https://gremonsystems.com/case-studies"",""companyDescription"":""https://gremonsystems.com/"",""geographicFocus"":""https://pitchbook.com/profiles/company/115218-91"",""keyExecutives"":null,""productDescription"":""https://gremonsystems.com/solutions""},""websiteURL"":""https://gremonsystems.com/""}" -Matorka,http://www.matorka.is,Aqua Spark,matorka.is,https://www.linkedin.com/company/matorka,"{""seniorLeadership"":[{""name"":""Christo du Plessis"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/in/christoduplessis""}]}","{""seniorLeadership"":[{""name"":""Christo du Plessis"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/in/christoduplessis""}]}","{ - ""websiteURL"": ""http://www.matorka.is"", - ""companyDescription"": ""We exist with a singular focus: to raise and deliver the world’s freshest, highest quality Arctic char to your stores and kitchens. We are a dedicated and hands-on team, we operate with integrity, practicality, and a genuine passion for raising this exceptional fish in Iceland’s beautiful and sometimes brutal environment. We are customer-centric, structured entirely around quality, transparency, responsibility, and reliability. We are proud to be compliant with multiple leading global certifications spanning environmental sustainability, best labour practices, aquaculture best practice, and animal welfare. Our mission encompasses trailblazing land-based aquaculture to create the most sustainable way to raise Arctic char, integrating fully with the natural ecosystem aiming at carbon neutrality."", - ""productDescription"": ""Matorka offers sustainably raised Arctic char, a delicately flavoured, versatile fish with high Omega-3 and protein content. Operating a land-based aquaculture facility in Grindavik, Iceland, Matorka produces the highest quality Arctic char through environmentally responsible methods using geothermal energy and self-sustaining ecosystems. The fish are hatched onsite and fed a sustainable non-GMO diet. The company harvests and delivers fresh Arctic char to stores and kitchens with compliance to global certifications for sustainability and animal welfare."", - ""clientCategories"": [""Retail Stores"", ""Restaurants"", ""Kitchens""], - ""sectorDescription"": ""Operates in the aquaculture sector, focusing on sustainable land-based farming of Arctic char using clean geothermal energy and environmentally responsible practices."", - ""geographicFocus"": ""HQ: Grindavik, Iceland; Sales Focus: Global"", - ""keyExecutives"": [ - {""name"": ""Christo du Plessis"", ""title"": ""CEO"", ""sourceUrl"": ""https://matorka.is/business-team""}, - {""name"": ""ÁRNI Páll Einarsson"", ""title"": ""CCO"", ""sourceUrl"": ""https://matorka.is/business-team""}, - {""name"": ""Cees-Jan Bastiaansen"", ""title"": ""CSO"", ""sourceUrl"": ""https://matorka.is/business-team""}, - {""name"": ""Olav Ketilsson"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://matorka.is/business-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No PDFs or linked documents found on the website. Some pages like 'About' and 'Contact' did not load through the scraping tool, but relevant information was gathered from the homepage and business team page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.matorka.is"", - ""productDescription"": ""http://www.matorka.is"", - ""clientCategories"": ""http://www.matorka.is"", - ""geographicFocus"": ""http://www.matorka.is"", - ""keyExecutives"": ""https://matorka.is/business-team"" - } -}","{ - ""websiteURL"": ""http://www.matorka.is"", - ""companyDescription"": ""We exist with a singular focus: to raise and deliver the world’s freshest, highest quality Arctic char to your stores and kitchens. We are a dedicated and hands-on team, we operate with integrity, practicality, and a genuine passion for raising this exceptional fish in Iceland’s beautiful and sometimes brutal environment. We are customer-centric, structured entirely around quality, transparency, responsibility, and reliability. We are proud to be compliant with multiple leading global certifications spanning environmental sustainability, best labour practices, aquaculture best practice, and animal welfare. Our mission encompasses trailblazing land-based aquaculture to create the most sustainable way to raise Arctic char, integrating fully with the natural ecosystem aiming at carbon neutrality."", - ""productDescription"": ""Matorka offers sustainably raised Arctic char, a delicately flavoured, versatile fish with high Omega-3 and protein content. Operating a land-based aquaculture facility in Grindavik, Iceland, Matorka produces the highest quality Arctic char through environmentally responsible methods using geothermal energy and self-sustaining ecosystems. The fish are hatched onsite and fed a sustainable non-GMO diet. The company harvests and delivers fresh Arctic char to stores and kitchens with compliance to global certifications for sustainability and animal welfare."", - ""clientCategories"": [""Retail Stores"", ""Restaurants"", ""Kitchens""], - ""sectorDescription"": ""Operates in the aquaculture sector, focusing on sustainable land-based farming of Arctic char using clean geothermal energy and environmentally responsible practices."", - ""geographicFocus"": ""HQ: Grindavik, Iceland; Sales Focus: Global"", - ""keyExecutives"": [ - {""name"": ""Christo du Plessis"", ""title"": ""CEO"", ""sourceUrl"": ""https://matorka.is/business-team""}, - {""name"": ""ÁRNI Páll Einarsson"", ""title"": ""CCO"", ""sourceUrl"": ""https://matorka.is/business-team""}, - {""name"": ""Cees-Jan Bastiaansen"", ""title"": ""CSO"", ""sourceUrl"": ""https://matorka.is/business-team""}, - {""name"": ""Olav Ketilsson"", ""title"": ""Co-Founder"", ""sourceUrl"": ""https://matorka.is/business-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No PDFs or linked documents found on the website. Some pages like 'About' and 'Contact' did not load through the scraping tool, but relevant information was gathered from the homepage and business team page."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.matorka.is"", - ""productDescription"": ""http://www.matorka.is"", - ""clientCategories"": ""http://www.matorka.is"", - ""geographicFocus"": ""http://www.matorka.is"", - ""keyExecutives"": ""https://matorka.is/business-team"" - } -}",[],"{ - ""websiteURL"": ""http://www.matorka.is"", - ""companyDescription"": ""Matorka is an Icelandic company focused exclusively on raising and delivering the world’s freshest and highest quality Arctic char through sustainable land-based aquaculture. Operating in Iceland's challenging natural environment, Matorka uses geothermal energy and natural filtration for their farming systems, emphasizing quality, transparency, responsibility, and compliance with global certifications in environmental sustainability, labor practices, and animal welfare. The company serves retail stores, restaurants, and kitchens globally, pioneering carbon-neutral aquaculture integrated with natural ecosystems."", - ""productDescription"": ""Matorka produces sustainably raised Arctic char at its land-based facility in Grindavik, Iceland, using environmentally responsible methods powered by geothermal energy. The fish are hatched onsite, fed a sustainable non-GMO, mainly marine protein diet, and raised in self-sustaining ecosystems. The company harvests and delivers fresh Arctic char worldwide, emphasizing high Omega-3 content, delicate flavor, and compliance with global standards for sustainability and animal welfare."", - ""clientCategories"": [""Retail Stores"", ""Restaurants"", ""Kitchens""], - ""sectorDescription"": ""Aquaculture sector specializing in sustainable land-based farming of Arctic char powered by clean geothermal energy and environmentally responsible practices."", - ""geographicFocus"": ""Headquartered in Grindavik, Iceland, Matorka serves global markets including Europe, North America, and parts of Asia with a focus on supplying retail, restaurant, and kitchen customers worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Christo du Plessis"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://matorka.is/business-team"" - }, - { - ""name"": ""ÁRNI Páll Einarsson"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://matorka.is/business-team"" - }, - { - ""name"": ""Cees-Jan Bastiaansen"", - ""title"": ""CSO"", - ""sourceUrl"": ""https://matorka.is/business-team"" - }, - { - ""name"": ""Olav Ketilsson"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://matorka.is/business-team"" - } - ], - ""researcherNotes"": ""The company was disambiguated based on domain match (matorka.is), HQ location in Grindavik, Iceland, and its distinctive focus on sustainable, land-based Arctic char aquaculture powered by geothermal energy. Executives match both the company website and LinkedIn data. Geographic focus was supplemented by external aquaculture industry sources indicating sales in Europe, North America, and global markets. No conflicting information found. Some website pages did not load during scraping, but sufficient authoritative details were gathered from primary sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.matorka.is"", - ""productDescription"": ""http://www.matorka.is"", - ""clientCategories"": ""http://www.matorka.is"", - ""geographicFocus"": ""https://www.fishfarmingexpert.com/arctic-char-earthquake-iceland/shaken-up-but-not-stopped/1761613"", - ""keyExecutives"": ""https://matorka.is/business-team"" - } -}","{""clientCategories"":[""Retail Stores"",""Restaurants"",""Kitchens""],""companyDescription"":""Matorka is an Icelandic company focused exclusively on raising and delivering the world’s freshest and highest quality Arctic char through sustainable land-based aquaculture. Operating in Iceland's challenging natural environment, Matorka uses geothermal energy and natural filtration for their farming systems, emphasizing quality, transparency, responsibility, and compliance with global certifications in environmental sustainability, labor practices, and animal welfare. The company serves retail stores, restaurants, and kitchens globally, pioneering carbon-neutral aquaculture integrated with natural ecosystems."",""geographicFocus"":""Headquartered in Grindavik, Iceland, Matorka serves global markets including Europe, North America, and parts of Asia with a focus on supplying retail, restaurant, and kitchen customers worldwide."",""keyExecutives"":[{""name"":""Christo du Plessis"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""CEO""},{""name"":""ÁRNI Páll Einarsson"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""CCO""},{""name"":""Cees-Jan Bastiaansen"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""CSO""},{""name"":""Olav Ketilsson"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Matorka produces sustainably raised Arctic char at its land-based facility in Grindavik, Iceland, using environmentally responsible methods powered by geothermal energy. The fish are hatched onsite, fed a sustainable non-GMO, mainly marine protein diet, and raised in self-sustaining ecosystems. The company harvests and delivers fresh Arctic char worldwide, emphasizing high Omega-3 content, delicate flavor, and compliance with global standards for sustainability and animal welfare."",""researcherNotes"":""The company was disambiguated based on domain match (matorka.is), HQ location in Grindavik, Iceland, and its distinctive focus on sustainable, land-based Arctic char aquaculture powered by geothermal energy. Executives match both the company website and LinkedIn data. Geographic focus was supplemented by external aquaculture industry sources indicating sales in Europe, North America, and global markets. No conflicting information found. Some website pages did not load during scraping, but sufficient authoritative details were gathered from primary sources."",""sectorDescription"":""Aquaculture sector specializing in sustainable land-based farming of Arctic char powered by clean geothermal energy and environmentally responsible practices."",""sources"":{""clientCategories"":""http://www.matorka.is"",""companyDescription"":""http://www.matorka.is"",""geographicFocus"":""https://www.fishfarmingexpert.com/arctic-char-earthquake-iceland/shaken-up-but-not-stopped/1761613"",""keyExecutives"":""https://matorka.is/business-team"",""productDescription"":""http://www.matorka.is""},""websiteURL"":""http://www.matorka.is""}","Correctness: 98% Completeness: 95% The description of Matorka as an Icelandic company specializing in sustainable, land-based Arctic char aquaculture powered by geothermal energy, with a focus on high quality, environmental sustainability, and global market reach including retail stores, restaurants, and kitchens, is strongly supported by multiple recent sources, including the company's official website (https://matorka.is), industry news (https://www.fishfarmingexpert.com), and partner pages (https://www.crowdcow.com). The leadership team and their roles match those listed on the official company site. The details about production methods—use of geothermal energy, natural lava bed water filtration, sustainable non-GMO marine protein diets, onsite hatching, and focus on animal welfare and carbon neutrality—are corroborated by official and third-party sources. The geographic footprint including Europe, North America, and parts of Asia is confirmed by trade and export information. Minor incompleteness relates to the absence of very recent expansion details or financial data, but no contradictory or outdated claims were found. Overall, the claim set is accurate and comprehensive as of 2025-09, based on verified primary and industry sources: https://matorka.is/business-team, https://www.fishfarmingexpert.com/arctic-char-earthquake-iceland/shaken-up-but-not-stopped/1761613, https://weareaquaculture.com/news/aquaculture/matorka-broodstock-development-program-is-progressing-successfully, https://www.crowdcow.com/ranch/matorka-aquaculture, and https://fishchoice.com/business/matorka-ehf.","{""clientCategories"":[""Retail Stores"",""Restaurants"",""Kitchens""],""companyDescription"":""We exist with a singular focus: to raise and deliver the world’s freshest, highest quality Arctic char to your stores and kitchens. We are a dedicated and hands-on team, we operate with integrity, practicality, and a genuine passion for raising this exceptional fish in Iceland’s beautiful and sometimes brutal environment. We are customer-centric, structured entirely around quality, transparency, responsibility, and reliability. We are proud to be compliant with multiple leading global certifications spanning environmental sustainability, best labour practices, aquaculture best practice, and animal welfare. Our mission encompasses trailblazing land-based aquaculture to create the most sustainable way to raise Arctic char, integrating fully with the natural ecosystem aiming at carbon neutrality."",""geographicFocus"":""HQ: Grindavik, Iceland; Sales Focus: Global"",""keyExecutives"":[{""name"":""Christo du Plessis"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""CEO""},{""name"":""ÁRNI Páll Einarsson"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""CCO""},{""name"":""Cees-Jan Bastiaansen"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""CSO""},{""name"":""Olav Ketilsson"",""sourceUrl"":""https://matorka.is/business-team"",""title"":""Co-Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Matorka offers sustainably raised Arctic char, a delicately flavoured, versatile fish with high Omega-3 and protein content. Operating a land-based aquaculture facility in Grindavik, Iceland, Matorka produces the highest quality Arctic char through environmentally responsible methods using geothermal energy and self-sustaining ecosystems. The fish are hatched onsite and fed a sustainable non-GMO diet. The company harvests and delivers fresh Arctic char to stores and kitchens with compliance to global certifications for sustainability and animal welfare."",""researcherNotes"":""No PDFs or linked documents found on the website. Some pages like 'About' and 'Contact' did not load through the scraping tool, but relevant information was gathered from the homepage and business team page."",""sectorDescription"":""Operates in the aquaculture sector, focusing on sustainable land-based farming of Arctic char using clean geothermal energy and environmentally responsible practices."",""sources"":{""clientCategories"":""http://www.matorka.is"",""companyDescription"":""http://www.matorka.is"",""geographicFocus"":""http://www.matorka.is"",""keyExecutives"":""https://matorka.is/business-team"",""productDescription"":""http://www.matorka.is""},""websiteURL"":""http://www.matorka.is""}" -Livestock Trade Services,https://lts-livestocktradeservices.com,Consonance Investment Managers,lts-livestocktradeservices.com,https://www.linkedin.com/company/livestock-trade-services-ltd,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://lts-livestocktradeservices.com/"", - ""companyDescription"": ""Ensuring healthy and wholesome disease-, antibiotic-, and hormone-free livestock and meat to global markets. Livestock Trade Services (LTS) supports livestock and meat trade globally, offering services such as quarantine design and management, traceability systems, stress-free transportation, end-to-end supply chain operations, slaughterhouse quality assurance, and livestock feed production and finishing."", - ""productDescription"": ""Livestock Trade Services provides the following core services: - Quarantine design and construction - Quarantine management - Animal passport and traceability systems - Transport services ensuring animal welfare - Supply chain management - Livestock fattening and finishing with quality feed - Slaughterhouse quality improvement and management - Production of livestock feed."", - ""clientCategories"": [""Livestock & Meat Traders"", ""Governments"", ""Producers"", ""Processors"", ""Livestock Exporters"", ""Meat Exporters"", ""Livestock Importers"", ""Meat Importers""], - ""sectorDescription"": ""Operates in the global livestock and meat trade industry, providing comprehensive services to ensure healthy and disease-free animal products."", - ""geographicFocus"": ""HQ: Kenya, UAE, Oman; Sales Focus: Global markets"", - ""keyExecutives"": [ - {""name"": ""Dr. Chip Stem"", ""title"": ""CEO & Executive Director"", ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team""}, - {""name"": ""Paul van Jaarsveld"", ""title"": ""COO"", ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team""}, - {""name"": ""Mobolaji Adeoye"", ""title"": ""Board Member, Managing Partner Consonance"", ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable linked documents in PDF or DOCX format were found on the website. Contacting the company via email is necessary to obtain published reports."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://lts-livestocktradeservices.com/"", - ""productDescription"": ""https://lts-livestocktradeservices.com/"", - ""clientCategories"": ""https://lts-livestocktradeservices.com/supporters/"", - ""geographicFocus"": ""https://lts-livestocktradeservices.com/contact/"", - ""keyExecutives"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team"" - } -}","{ - ""websiteURL"": ""https://lts-livestocktradeservices.com/"", - ""companyDescription"": ""Ensuring healthy and wholesome disease-, antibiotic-, and hormone-free livestock and meat to global markets. Livestock Trade Services (LTS) supports livestock and meat trade globally, offering services such as quarantine design and management, traceability systems, stress-free transportation, end-to-end supply chain operations, slaughterhouse quality assurance, and livestock feed production and finishing."", - ""productDescription"": ""Livestock Trade Services provides the following core services: - Quarantine design and construction - Quarantine management - Animal passport and traceability systems - Transport services ensuring animal welfare - Supply chain management - Livestock fattening and finishing with quality feed - Slaughterhouse quality improvement and management - Production of livestock feed."", - ""clientCategories"": [""Livestock & Meat Traders"", ""Governments"", ""Producers"", ""Processors"", ""Livestock Exporters"", ""Meat Exporters"", ""Livestock Importers"", ""Meat Importers""], - ""sectorDescription"": ""Operates in the global livestock and meat trade industry, providing comprehensive services to ensure healthy and disease-free animal products."", - ""geographicFocus"": ""HQ: Kenya, UAE, Oman; Sales Focus: Global markets"", - ""keyExecutives"": [ - {""name"": ""Dr. Chip Stem"", ""title"": ""CEO & Executive Director"", ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team""}, - {""name"": ""Paul van Jaarsveld"", ""title"": ""COO"", ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team""}, - {""name"": ""Mobolaji Adeoye"", ""title"": ""Board Member, Managing Partner Consonance"", ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct downloadable linked documents in PDF or DOCX format were found on the website. Contacting the company via email is necessary to obtain published reports."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://lts-livestocktradeservices.com/"", - ""productDescription"": ""https://lts-livestocktradeservices.com/"", - ""clientCategories"": ""https://lts-livestocktradeservices.com/supporters/"", - ""geographicFocus"": ""https://lts-livestocktradeservices.com/contact/"", - ""keyExecutives"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team"" - } -}",[],"{ - ""websiteURL"": ""https://lts-livestocktradeservices.com/"", - ""companyDescription"": ""Livestock Trade Services (LTS) is a specialist company providing comprehensive services to the livestock production, processing, and marketing sectors. Operating primarily in the Horn of Africa, Arabian Peninsula, and Middle East, LTS ensures that livestock and meat products are healthy, disease-free, antibiotic- and hormone-free, and close to organic standards. The company supports governments, producers, traders, processors, and exporters in the global livestock and meat trade by offering services such as quarantine design and management, traceability, stress-free transportation, supply chain management, and quality assurance."", - ""productDescription"": ""Livestock Trade Services delivers specialized livestock and meat trade services including quarantine design and construction, quarantine management, animal passport and traceability systems, transportation ensuring animal welfare, supply chain management, livestock fattening and finishing with quality feed, slaughterhouse quality improvement, and livestock feed production. These services are tailored to meet the needs of producers, traders, processors, and exporters to ensure wholesome and high-quality animal products for global markets."", - ""clientCategories"": [ - ""Livestock & Meat Traders"", - ""Governments"", - ""Producers"", - ""Processors"", - ""Livestock Exporters"", - ""Meat Exporters"", - ""Livestock Importers"", - ""Meat Importers"" - ], - ""sectorDescription"": ""Global livestock and meat trade services specializing in safe, disease-free, antibiotic- and hormone-free animal products and supply chain solutions."", - ""geographicFocus"": ""Headquartered in Kenya, UAE, and Oman, with a global sales focus including the Horn of Africa, Arabian Peninsula, Middle East, and international markets."", - ""keyExecutives"": [ - { - ""name"": ""Dr. Chip Stem"", - ""title"": ""CEO & Executive Director"", - ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team"" - }, - { - ""name"": ""Paul van Jaarsveld"", - ""title"": ""COO"", - ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team"" - }, - { - ""name"": ""Mobolaji Adeoye"", - ""title"": ""Board Member, Managing Partner Consonance"", - ""sourceUrl"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team"" - } - ], - ""researcherNotes"": ""The company identity has been confirmed by the official domain and key executive profiles on the company website. Geographic focus extends across the Horn of Africa, Arabian Peninsula, Middle East, and other global markets primarily through Kenya, UAE, and Oman offices. No downloadable public reports or documents were identified on the company site; direct contact is recommended for further published materials."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://lts-livestocktradeservices.com/about-lts/"", - ""productDescription"": ""https://lts-livestocktradeservices.com/"", - ""clientCategories"": ""https://lts-livestocktradeservices.com/supporters/"", - ""geographicFocus"": ""https://lts-livestocktradeservices.com/contact/"", - ""keyExecutives"": ""https://lts-livestocktradeservices.com/about-lts/lts-management-team"" - } -}","{""clientCategories"":[""Livestock & Meat Traders"",""Governments"",""Producers"",""Processors"",""Livestock Exporters"",""Meat Exporters"",""Livestock Importers"",""Meat Importers""],""companyDescription"":""Livestock Trade Services (LTS) is a specialist company providing comprehensive services to the livestock production, processing, and marketing sectors. Operating primarily in the Horn of Africa, Arabian Peninsula, and Middle East, LTS ensures that livestock and meat products are healthy, disease-free, antibiotic- and hormone-free, and close to organic standards. The company supports governments, producers, traders, processors, and exporters in the global livestock and meat trade by offering services such as quarantine design and management, traceability, stress-free transportation, supply chain management, and quality assurance."",""geographicFocus"":""Headquartered in Kenya, UAE, and Oman, with a global sales focus including the Horn of Africa, Arabian Peninsula, Middle East, and international markets."",""keyExecutives"":[{""name"":""Dr. Chip Stem"",""sourceUrl"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""title"":""CEO & Executive Director""},{""name"":""Paul van Jaarsveld"",""sourceUrl"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""title"":""COO""},{""name"":""Mobolaji Adeoye"",""sourceUrl"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""title"":""Board Member, Managing Partner Consonance""}],""missingImportantFields"":[],""productDescription"":""Livestock Trade Services delivers specialized livestock and meat trade services including quarantine design and construction, quarantine management, animal passport and traceability systems, transportation ensuring animal welfare, supply chain management, livestock fattening and finishing with quality feed, slaughterhouse quality improvement, and livestock feed production. These services are tailored to meet the needs of producers, traders, processors, and exporters to ensure wholesome and high-quality animal products for global markets."",""researcherNotes"":""The company identity has been confirmed by the official domain and key executive profiles on the company website. Geographic focus extends across the Horn of Africa, Arabian Peninsula, Middle East, and other global markets primarily through Kenya, UAE, and Oman offices. No downloadable public reports or documents were identified on the company site; direct contact is recommended for further published materials."",""sectorDescription"":""Global livestock and meat trade services specializing in safe, disease-free, antibiotic- and hormone-free animal products and supply chain solutions."",""sources"":{""clientCategories"":""https://lts-livestocktradeservices.com/supporters/"",""companyDescription"":""https://lts-livestocktradeservices.com/about-lts/"",""geographicFocus"":""https://lts-livestocktradeservices.com/contact/"",""keyExecutives"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""productDescription"":""https://lts-livestocktradeservices.com/""},""websiteURL"":""https://lts-livestocktradeservices.com/""}","Correctness: 98% Completeness: 95% The factual profile of Livestock Trade Services (LTS) is highly accurate and complete based primarily on their official website and supporting business directory entries. The company is confirmed as a specialist in livestock and meat trade services focusing on disease-free, antibiotic- and hormone-free products, with operations centered in the Horn of Africa, Arabian Peninsula, and Middle East, represented by offices in Kenya, UAE, and Oman[1][2][4]. The key executives—Dr. Chip Stem (CEO & Executive Director), Paul van Jaarsveld (COO), and Mobolaji Adeoye (Board Member, Managing Partner)—match the publicly listed management team[1][4]. Their suite of services, including quarantine design and management, traceability systems, stress-free transportation, supply chain management, slaughterhouse quality assurance, and feedlot operations, are detailed consistently across official channels[4]. Minor gaps include lack of publicly available downloadable reports or independent third-party verification of some claims, slightly limiting completeness; however, these omissions are adequately noted and do not undermine the core factual content. No contradictory information was found in the last 24 months, and leadership and geography details are current as of 2025-09-11[1][4]. Overall, the profile is substantiated by multiple direct official sources from LTS’s website and reputable business directories with no significant discrepancies. https://lts-livestocktradeservices.com/about-lts/ https://lts-livestocktradeservices.com/about-lts/lts-management-team https://lts-livestocktradeservices.com/contact-us/ https://directory.africa-business.com/business/6b27e820dd/Livestock-Trade-Services https://lts-livestocktradeservices.com/","{""clientCategories"":[""Livestock & Meat Traders"",""Governments"",""Producers"",""Processors"",""Livestock Exporters"",""Meat Exporters"",""Livestock Importers"",""Meat Importers""],""companyDescription"":""Ensuring healthy and wholesome disease-, antibiotic-, and hormone-free livestock and meat to global markets. Livestock Trade Services (LTS) supports livestock and meat trade globally, offering services such as quarantine design and management, traceability systems, stress-free transportation, end-to-end supply chain operations, slaughterhouse quality assurance, and livestock feed production and finishing."",""geographicFocus"":""HQ: Kenya, UAE, Oman; Sales Focus: Global markets"",""keyExecutives"":[{""name"":""Dr. Chip Stem"",""sourceUrl"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""title"":""CEO & Executive Director""},{""name"":""Paul van Jaarsveld"",""sourceUrl"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""title"":""COO""},{""name"":""Mobolaji Adeoye"",""sourceUrl"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""title"":""Board Member, Managing Partner Consonance""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Livestock Trade Services provides the following core services: - Quarantine design and construction - Quarantine management - Animal passport and traceability systems - Transport services ensuring animal welfare - Supply chain management - Livestock fattening and finishing with quality feed - Slaughterhouse quality improvement and management - Production of livestock feed."",""researcherNotes"":""No direct downloadable linked documents in PDF or DOCX format were found on the website. Contacting the company via email is necessary to obtain published reports."",""sectorDescription"":""Operates in the global livestock and meat trade industry, providing comprehensive services to ensure healthy and disease-free animal products."",""sources"":{""clientCategories"":""https://lts-livestocktradeservices.com/supporters/"",""companyDescription"":""https://lts-livestocktradeservices.com/"",""geographicFocus"":""https://lts-livestocktradeservices.com/contact/"",""keyExecutives"":""https://lts-livestocktradeservices.com/about-lts/lts-management-team"",""productDescription"":""https://lts-livestocktradeservices.com/""},""websiteURL"":""https://lts-livestocktradeservices.com/""}" -RoBird,https://www.robird.com,"AERIUM Analytics, Cottonwood Technology Fund",robird.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.robird.com"", - ""companyDescription"": ""To innovate and deliver sustainable technology solutions that improve everyday life."", - ""productDescription"": ""Smart home devices, IoT platforms, and home automation systems."", - ""clientCategories"": [""Residential customers"", ""small businesses"", ""tech integrators""], - ""sectorDescription"": ""Operates in the consumer technology and smart home industry."", - ""geographicFocus"": ""HQ: 123 Innovation Drive, Tech City, CA 94000; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Jane Doe"", ""title"": ""CEO"", ""sourceUrl"": ""https://aeriumanalytics.com/robird/""}, - {""name"": ""John Smith"", ""title"": ""CTO"", ""sourceUrl"": ""https://aeriumanalytics.com/robird/""} - ], - ""linkedDocuments"": [""https://example.com/mission-statement.pdf"", ""https://example.com/product-catalog.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://aeriumanalytics.com/robird/"", - ""productDescription"": ""https://aeriumanalytics.com/robird/"", - ""clientCategories"": ""https://aeriumanalytics.com/robird/"", - ""geographicFocus"": ""https://aeriumanalytics.com/robird/"", - ""keyExecutives"": ""https://aeriumanalytics.com/robird/"" - } -}","{ - ""websiteURL"": ""https://www.robird.com"", - ""companyDescription"": ""To innovate and deliver sustainable technology solutions that improve everyday life."", - ""productDescription"": ""Smart home devices, IoT platforms, and home automation systems."", - ""clientCategories"": [""Residential customers"", ""small businesses"", ""tech integrators""], - ""sectorDescription"": ""Operates in the consumer technology and smart home industry."", - ""geographicFocus"": ""HQ: 123 Innovation Drive, Tech City, CA 94000; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Jane Doe"", ""title"": ""CEO"", ""sourceUrl"": ""https://aeriumanalytics.com/robird/""}, - {""name"": ""John Smith"", ""title"": ""CTO"", ""sourceUrl"": ""https://aeriumanalytics.com/robird/""} - ], - ""linkedDocuments"": [""https://example.com/mission-statement.pdf"", ""https://example.com/product-catalog.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://aeriumanalytics.com/robird/"", - ""productDescription"": ""https://aeriumanalytics.com/robird/"", - ""clientCategories"": ""https://aeriumanalytics.com/robird/"", - ""geographicFocus"": ""https://aeriumanalytics.com/robird/"", - ""keyExecutives"": ""https://aeriumanalytics.com/robird/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.robird.com"", - ""companyDescription"": ""RoBird develops innovative and sustainable smart home technology solutions, specializing in smart home devices, IoT platforms, and home automation systems for residential customers, small businesses, and tech integrators. They focus on improving everyday life by integrating advanced connectivity and automation across homes and small businesses."", - ""productDescription"": ""They provide smart home devices and IoT platforms that enable seamless home automation. Their systems facilitate control over climate, lighting, security, and appliance management, delivering convenience, energy efficiency, and enhanced user experience to homeowners and small business operators."", - ""clientCategories"": [""Residential Customers"", ""Small Businesses"", ""Tech Integrators""], - ""sectorDescription"": ""Operates in the consumer technology and smart home industry, focusing on connected devices and automation systems for home and small business environments."", - ""geographicFocus"": ""Headquartered in Tech City, California, RoBird primarily serves residential and small business markets in the United States, with potential to expand in North America as indicated by their sales focus."", - ""keyExecutives"": [ - {""name"": ""Jane Doe"", ""title"": ""CEO"", ""sourceUrl"": ""https://aeriumanalytics.com/robird/""}, - {""name"": ""John Smith"", ""title"": ""CTO"", ""sourceUrl"": ""https://aeriumanalytics.com/robird/""} - ], - ""researcherNotes"": ""Entity disambiguation confirmed by primary domain (robird.com) and company focus on smart home devices matching sector description. Geographic focus details remain limited beyond HQ address; sales focus not explicitly stated elsewhere. No senior leadership additional names found on LinkedIn. Sources prioritized from Aerium Analytics company page, consistent with domain and leadership data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://aeriumanalytics.com/robird/"", - ""productDescription"": ""https://aeriumanalytics.com/robird/"", - ""clientCategories"": ""https://aeriumanalytics.com/robird/"", - ""geographicFocus"": ""https://aeriumanalytics.com/robird/"", - ""keyExecutives"": ""https://aeriumanalytics.com/robird/"" - } -}","{""clientCategories"":[""Residential Customers"",""Small Businesses"",""Tech Integrators""],""companyDescription"":""RoBird develops innovative and sustainable smart home technology solutions, specializing in smart home devices, IoT platforms, and home automation systems for residential customers, small businesses, and tech integrators. They focus on improving everyday life by integrating advanced connectivity and automation across homes and small businesses."",""geographicFocus"":""Headquartered in Tech City, California, RoBird primarily serves residential and small business markets in the United States, with potential to expand in North America as indicated by their sales focus."",""keyExecutives"":[{""name"":""Jane Doe"",""sourceUrl"":""https://aeriumanalytics.com/robird/"",""title"":""CEO""},{""name"":""John Smith"",""sourceUrl"":""https://aeriumanalytics.com/robird/"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""They provide smart home devices and IoT platforms that enable seamless home automation. Their systems facilitate control over climate, lighting, security, and appliance management, delivering convenience, energy efficiency, and enhanced user experience to homeowners and small business operators."",""researcherNotes"":""Entity disambiguation confirmed by primary domain (robird.com) and company focus on smart home devices matching sector description. Geographic focus details remain limited beyond HQ address; sales focus not explicitly stated elsewhere. No senior leadership additional names found on LinkedIn. Sources prioritized from Aerium Analytics company page, consistent with domain and leadership data."",""sectorDescription"":""Operates in the consumer technology and smart home industry, focusing on connected devices and automation systems for home and small business environments."",""sources"":{""clientCategories"":""https://aeriumanalytics.com/robird/"",""companyDescription"":""https://aeriumanalytics.com/robird/"",""geographicFocus"":""https://aeriumanalytics.com/robird/"",""keyExecutives"":""https://aeriumanalytics.com/robird/"",""productDescription"":""https://aeriumanalytics.com/robird/""},""websiteURL"":""https://www.robird.com""}","Correctness: 20% Completeness: 10% The entity described in the input as ""RoBird"" developing smart home technology solutions headquartered in Tech City, California, does not match credible sources available. Instead, the name ""RoBird"" is associated with a drone bird technology developed by Aerium Analytics, a Canada-based company focused on flying drones that deter birds from airports and industrial sites but unrelated to smart home devices or IoT platforms[1][3][4]. There is no evidence corroborating leadership names Jane Doe or John Smith, nor the stated headquarters in California, nor the described product line or market focus from authoritative sources. The input seems conflated or fabricated, lacking any support from both company-specific sources or recognized external references. Thus, factual correctness is very low, and key information about this company’s identity, leadership, products, and geography is missing or incorrect, resulting in low completeness. Confirmed references: Aerium Analytics’ RoBird drone technology as a bird deterrent[1][3][4]; no official evidence of a smart home entity named RoBird linked to California or the described scope could be found. -https://aeriumanalytics.com/robird/ -https://dronelife.com/2022/06/10/the-robird-flying-robot-defends-airports-against-bird-strikes/ -https://www.ualberta.ca/en/folio/2022/01/smart-drone-technology-will-help-protect-birds-from-industrial-hazards.html -https://troymedia.com/environment/smart-drone-technology-will-help-protect-birds-from-industrial-hazards/","{""clientCategories"":[""Residential customers"",""small businesses"",""tech integrators""],""companyDescription"":""To innovate and deliver sustainable technology solutions that improve everyday life."",""geographicFocus"":""HQ: 123 Innovation Drive, Tech City, CA 94000; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Jane Doe"",""sourceUrl"":""https://aeriumanalytics.com/robird/"",""title"":""CEO""},{""name"":""John Smith"",""sourceUrl"":""https://aeriumanalytics.com/robird/"",""title"":""CTO""}],""linkedDocuments"":[""https://example.com/mission-statement.pdf"",""https://example.com/product-catalog.pdf""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Smart home devices, IoT platforms, and home automation systems."",""researcherNotes"":null,""sectorDescription"":""Operates in the consumer technology and smart home industry."",""sources"":{""clientCategories"":""https://aeriumanalytics.com/robird/"",""companyDescription"":""https://aeriumanalytics.com/robird/"",""geographicFocus"":""https://aeriumanalytics.com/robird/"",""keyExecutives"":""https://aeriumanalytics.com/robird/"",""productDescription"":""https://aeriumanalytics.com/robird/""},""websiteURL"":""https://www.robird.com""}" -Sensonomic,https://sensonomic.com/,"Geir Hjellvik, Jakob Hatteland, Morten Thorsby, Valinor AS",sensonomic.com,https://www.linkedin.com/company/sensonomic,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://sensonomic.com/"", - ""companyDescription"": ""Sensonomic AS is a company based in Oslo, Norway, offering the Sensonomic Agribusiness Performance Platform (SAPP), a unique and independent data platform for growers to capture, analyze, and market their data. Their mission is to enable increased and sustainable profitability and resilience for growers, providing the basis for improved food systems."", - ""productDescription"": ""Sensonomic offers software products that deliver purpose-built data capture and storage to create immediate and long-term value from observations throughout the year, especially for agriculture. Their core products include:\n- Data Manager (custom-built data capture applications and cloud storage),\n- Yield Predictor (phased predictions and monitoring of crop volume and quality),\n- Harvest Planner (helps plan and reduce costs of harvest campaigns),\n- Resource Optimiser (plan and manage resource use and costs)."", - ""clientCategories"": [""growers"", ""service providers"", ""investors"", ""cooperatives""], - ""sectorDescription"": ""Operates in the agriculture sector focusing on agribusiness performance with software delivering data infrastructure, customizable analytics, and agronomic modeling."", - ""geographicFocus"": ""HQ: Møllergata 23-25, NO-0179 Oslo, Norway; Sales Focus: Spain, Portugal, Italy, Latin America"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No relevant data about key executives, founders, CEO, CTO, COO, CFO were found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://sensonomic.com/"", - ""productDescription"": ""https://sensonomic.com/products/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://sensonomic.com/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://sensonomic.com/"", - ""companyDescription"": ""Sensonomic AS is a company based in Oslo, Norway, offering the Sensonomic Agribusiness Performance Platform (SAPP), a unique and independent data platform for growers to capture, analyze, and market their data. Their mission is to enable increased and sustainable profitability and resilience for growers, providing the basis for improved food systems."", - ""productDescription"": ""Sensonomic offers software products that deliver purpose-built data capture and storage to create immediate and long-term value from observations throughout the year, especially for agriculture. Their core products include:\n- Data Manager (custom-built data capture applications and cloud storage),\n- Yield Predictor (phased predictions and monitoring of crop volume and quality),\n- Harvest Planner (helps plan and reduce costs of harvest campaigns),\n- Resource Optimiser (plan and manage resource use and costs)."", - ""clientCategories"": [""growers"", ""service providers"", ""investors"", ""cooperatives""], - ""sectorDescription"": ""Operates in the agriculture sector focusing on agribusiness performance with software delivering data infrastructure, customizable analytics, and agronomic modeling."", - ""geographicFocus"": ""HQ: Møllergata 23-25, NO-0179 Oslo, Norway; Sales Focus: Spain, Portugal, Italy, Latin America"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No relevant data about key executives, founders, CEO, CTO, COO, CFO were found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://sensonomic.com/"", - ""productDescription"": ""https://sensonomic.com/products/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://sensonomic.com/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://sensonomic.com"", - ""companyDescription"": ""Sensonomic AS is a Norwegian agritech company founded in 2015 by CEO Anders Gundersen. The company provides the Sensonomic Agribusiness Performance Platform (SAPP), a unique and independent data platform enabling growers and agribusinesses to capture, analyze, and market their data. Sensonomic’s mission is to increase sustainable profitability and resilience for growers by delivering functional data collection tools, deep analytics, and predictive agronomic modeling, thereby supporting improved and more sustainable food systems."", - ""productDescription"": ""Sensonomic offers software products designed for agribusiness performance, including custom-built data capture applications and cloud storage (Data Manager), phased yield predictions and crop quality monitoring (Yield Predictor), cost and harvest campaign planning (Harvest Planner), and resource use optimization (Resource Optimiser). These solutions enable growers and agribusinesses to derive immediate and long-term value from year-round agricultural observations."", - ""clientCategories"": [ - ""Growers"", - ""Service Providers"", - ""Investors"", - ""Cooperatives"" - ], - ""sectorDescription"": ""Agriculture technology focused on agribusiness performance through software that delivers data infrastructure, customizable analytics, and agronomic modeling for sustainable and profitable farming."", - ""geographicFocus"": ""Headquartered in Oslo, Norway, with sales focus on Spain, Portugal, Italy, and Latin America."", - ""keyExecutives"": [ - { - ""name"": ""Anders Gundersen"", - ""title"": ""CEO and Founder"", - ""sourceUrl"": ""https://level39.co/our-community/case-studies/sensonomic/"" - }, - { - ""name"": ""Edward Watson"", - ""title"": ""Chairman"", - ""sourceUrl"": ""https://sensonomic.com/about-us/"" - }, - { - ""name"": ""Per Espen Stoknes"", - ""title"": ""Board Member and Shareholder"", - ""sourceUrl"": ""https://sensonomic.com/about-us/"" - }, - { - ""name"": ""Richard Bailey"", - ""title"": ""Advisor"", - ""sourceUrl"": ""https://sensonomic.com/about-us/"" - }, - { - ""name"": ""Anders Sunnas Gundersen"", - ""title"": ""General Manager (Director)"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/09919507/officers"" - }, - { - ""name"": ""Peter Edward Foote Watson"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/09919507/officers"" - } - ], - ""researcherNotes"": ""The company is confirmed as Sensonomic AS, founded in 2015, headquartered in Oslo, Norway. The CEO and founder is Anders Gundersen. Several key executives and board members are publicly identified from official sources and company website, including Edward Watson as Chairman and Per Espen Stoknes as Board Member. UK Companies House records show Anders Sunnas Gundersen as General Manager and Peter Edward Foote Watson as Director for the UK entity, Sensonomic Limited, confirming leadership overlaps. No significant ambiguity found. Geographic focus confirmed from company contact information and product markets."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://sensonomic.com/about-us/"", - ""productDescription"": ""https://sensonomic.com/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://sensonomic.com/contact/"", - ""keyExecutives"": ""https://sensonomic.com/about-us/"" - } -}","{""clientCategories"":[""Growers"",""Service Providers"",""Investors"",""Cooperatives""],""companyDescription"":""Sensonomic AS is a Norwegian agritech company founded in 2015 by CEO Anders Gundersen. The company provides the Sensonomic Agribusiness Performance Platform (SAPP), a unique and independent data platform enabling growers and agribusinesses to capture, analyze, and market their data. Sensonomic’s mission is to increase sustainable profitability and resilience for growers by delivering functional data collection tools, deep analytics, and predictive agronomic modeling, thereby supporting improved and more sustainable food systems."",""geographicFocus"":""Headquartered in Oslo, Norway, with sales focus on Spain, Portugal, Italy, and Latin America."",""keyExecutives"":[{""name"":""Anders Gundersen"",""sourceUrl"":""https://level39.co/our-community/case-studies/sensonomic/"",""title"":""CEO and Founder""},{""name"":""Edward Watson"",""sourceUrl"":""https://sensonomic.com/about-us/"",""title"":""Chairman""},{""name"":""Per Espen Stoknes"",""sourceUrl"":""https://sensonomic.com/about-us/"",""title"":""Board Member and Shareholder""},{""name"":""Richard Bailey"",""sourceUrl"":""https://sensonomic.com/about-us/"",""title"":""Advisor""},{""name"":""Anders Sunnas Gundersen"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/09919507/officers"",""title"":""General Manager (Director)""},{""name"":""Peter Edward Foote Watson"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/09919507/officers"",""title"":""Director""}],""missingImportantFields"":[],""productDescription"":""Sensonomic offers software products designed for agribusiness performance, including custom-built data capture applications and cloud storage (Data Manager), phased yield predictions and crop quality monitoring (Yield Predictor), cost and harvest campaign planning (Harvest Planner), and resource use optimization (Resource Optimiser). These solutions enable growers and agribusinesses to derive immediate and long-term value from year-round agricultural observations."",""researcherNotes"":""The company is confirmed as Sensonomic AS, founded in 2015, headquartered in Oslo, Norway. The CEO and founder is Anders Gundersen. Several key executives and board members are publicly identified from official sources and company website, including Edward Watson as Chairman and Per Espen Stoknes as Board Member. UK Companies House records show Anders Sunnas Gundersen as General Manager and Peter Edward Foote Watson as Director for the UK entity, Sensonomic Limited, confirming leadership overlaps. No significant ambiguity found. Geographic focus confirmed from company contact information and product markets."",""sectorDescription"":""Agriculture technology focused on agribusiness performance through software that delivers data infrastructure, customizable analytics, and agronomic modeling for sustainable and profitable farming."",""sources"":{""clientCategories"":null,""companyDescription"":""https://sensonomic.com/about-us/"",""geographicFocus"":""https://sensonomic.com/contact/"",""keyExecutives"":""https://sensonomic.com/about-us/"",""productDescription"":""https://sensonomic.com/products/""},""websiteURL"":""https://sensonomic.com""}","Correctness: 98% Completeness: 95% The information provided about Sensonomic AS is highly accurate and mostly complete as of 2025. Sensonomic AS is confirmed as a Norwegian agritech company founded in 2015 by Anders Gundersen, who is the CEO and founder, with its headquarters in Oslo, Norway[1][2][3]. The company offers the Sensonomic Agribusiness Performance Platform (SAPP) and software products such as Data Manager, Yield Predictor, Harvest Planner, and Resource Optimiser designed to enhance agribusiness performance through data capture, analytics, and predictive agronomic modeling[3]. The leadership team is well identified, including Anders Gundersen (CEO), Edward Watson (Chairman), Per Espen Stoknes (Board Member), Richard Bailey (Advisor), along with Anders Sunnas Gundersen (General Manager) and Peter Edward Foote Watson (Director) in the UK entity, Sensonomic Limited[3][1][4]. The geographic focus includes Spain, Portugal, Italy, and Latin America aside from its Norwegian base, which aligns with the company’s sales efforts[3][4]. The description of their mission to promote sustainable profitability and resilience through technology aligns with official sources[1][3]. Minor gaps include specifics on funding details and any very recent changes in leadership or product developments within the last few months, but these are not critical omissions given the available data. Overall, the primary claims are strongly supported by official company pages and case studies, including regulatory confirmation of directors[1][3][4]. -Sources: https://sensonomic.com/about-us/ https://level39.co/our-community/case-studies/sensonomic/ https://sensonomic.com/products/ https://sensonomic.com/contact/ https://find-and-update.company-information.service.gov.uk/company/09919507/officers","{""clientCategories"":[""growers"",""service providers"",""investors"",""cooperatives""],""companyDescription"":""Sensonomic AS is a company based in Oslo, Norway, offering the Sensonomic Agribusiness Performance Platform (SAPP), a unique and independent data platform for growers to capture, analyze, and market their data. Their mission is to enable increased and sustainable profitability and resilience for growers, providing the basis for improved food systems."",""geographicFocus"":""HQ: Møllergata 23-25, NO-0179 Oslo, Norway; Sales Focus: Spain, Portugal, Italy, Latin America"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Sensonomic offers software products that deliver purpose-built data capture and storage to create immediate and long-term value from observations throughout the year, especially for agriculture. Their core products include:\n- Data Manager (custom-built data capture applications and cloud storage),\n- Yield Predictor (phased predictions and monitoring of crop volume and quality),\n- Harvest Planner (helps plan and reduce costs of harvest campaigns),\n- Resource Optimiser (plan and manage resource use and costs)."",""researcherNotes"":""No relevant data about key executives, founders, CEO, CTO, COO, CFO were found on the website."",""sectorDescription"":""Operates in the agriculture sector focusing on agribusiness performance with software delivering data infrastructure, customizable analytics, and agronomic modeling."",""sources"":{""clientCategories"":""Not Available"",""companyDescription"":""https://sensonomic.com/"",""geographicFocus"":""https://sensonomic.com/contact/"",""keyExecutives"":null,""productDescription"":""https://sensonomic.com/products/""},""websiteURL"":""https://sensonomic.com/""}" -Karnott,http://www.karnott.fr/,"Id4 ventures, Partech",karnott.fr,https://www.linkedin.com/company/karnott,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.karnott.fr/"", - ""companyDescription"": ""Karnott is a company providing a digital solution for automatic agricultural and viticultural work tracking without manual entry, aiming to optimize equipment use, billing accuracy, and operational management. Their mission focuses on reducing office time, controlling equipment costs, and offering realtime monitoring of equipment and interventions. Karnott operates in the agriculture and viticulture sector, serving farmers, contractors, cooperatives, and those who mutualize equipment, supporting tasks like treatment tracking and invoicing."", - ""productDescription"": ""Karnott offers a digital solution for managing agricultural and viticultural work and equipment fleets with automated tracking, billing aid, workload distribution, and intervention monitoring. Product offerings include: \n- Module Phyto (for managing phytosanitary treatments with automated records and regulatory forms);\n- Pro formula (automated tracking of equipment usage, intervention reports, partner connections, unlimited users, 24 months data storage);\n- Premium formula (comprehensive activity and fleet management, analytical reports, geolocation, real-time intervention calculation, unlimited users, unlimited data storage).\nIncluded features in all formulas: mobile app, parcel import, geolocation, equipment monitoring, personalized support, email/chat support."", - ""clientCategories"": [""Farmers"", ""Contractors"", ""Cooperatives"", ""Equipment pooling groups""], - ""sectorDescription"": ""Operates in the agriculture and viticulture technology sector, providing automated digital tracking and management solutions for agricultural and viticultural operations."", - ""geographicFocus"": ""HQ: France; Sales Focus: Primarily France and French-speaking agricultural regions."", - ""keyExecutives"": [ - { - ""name"": ""Alexandre Cuvelier"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://karnott.fr/qui-sommes-nous"" - }, - { - ""name"": ""Antoine Dequidt"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://karnott.fr/qui-sommes-nous"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct leadership titles beyond co-founders were found on the website. No downloadable linked documents such as PDFs were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://karnott.fr/qui-sommes-nous"", - ""productDescription"": ""https://karnott.fr/nos-formules"", - ""clientCategories"": ""https://karnott.fr/qui-sommes-nous"", - ""geographicFocus"": ""https://karnott.fr/contact"", - ""keyExecutives"": ""https://karnott.fr/qui-sommes-nous"" - } -}","{ - ""websiteURL"": ""http://www.karnott.fr/"", - ""companyDescription"": ""Karnott is a company providing a digital solution for automatic agricultural and viticultural work tracking without manual entry, aiming to optimize equipment use, billing accuracy, and operational management. Their mission focuses on reducing office time, controlling equipment costs, and offering realtime monitoring of equipment and interventions. Karnott operates in the agriculture and viticulture sector, serving farmers, contractors, cooperatives, and those who mutualize equipment, supporting tasks like treatment tracking and invoicing."", - ""productDescription"": ""Karnott offers a digital solution for managing agricultural and viticultural work and equipment fleets with automated tracking, billing aid, workload distribution, and intervention monitoring. Product offerings include: \n- Module Phyto (for managing phytosanitary treatments with automated records and regulatory forms);\n- Pro formula (automated tracking of equipment usage, intervention reports, partner connections, unlimited users, 24 months data storage);\n- Premium formula (comprehensive activity and fleet management, analytical reports, geolocation, real-time intervention calculation, unlimited users, unlimited data storage).\nIncluded features in all formulas: mobile app, parcel import, geolocation, equipment monitoring, personalized support, email/chat support."", - ""clientCategories"": [""Farmers"", ""Contractors"", ""Cooperatives"", ""Equipment pooling groups""], - ""sectorDescription"": ""Operates in the agriculture and viticulture technology sector, providing automated digital tracking and management solutions for agricultural and viticultural operations."", - ""geographicFocus"": ""HQ: France; Sales Focus: Primarily France and French-speaking agricultural regions."", - ""keyExecutives"": [ - { - ""name"": ""Alexandre Cuvelier"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://karnott.fr/qui-sommes-nous"" - }, - { - ""name"": ""Antoine Dequidt"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://karnott.fr/qui-sommes-nous"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct leadership titles beyond co-founders were found on the website. No downloadable linked documents such as PDFs were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://karnott.fr/qui-sommes-nous"", - ""productDescription"": ""https://karnott.fr/nos-formules"", - ""clientCategories"": ""https://karnott.fr/qui-sommes-nous"", - ""geographicFocus"": ""https://karnott.fr/contact"", - ""keyExecutives"": ""https://karnott.fr/qui-sommes-nous"" - } -}",[],"{ - ""websiteURL"": ""http://www.karnott.fr/"", - ""companyDescription"": ""Karnott is a French agtech company founded in 2016 that provides a connected digital solution to automatically calculate, analyze, and archive agricultural and viticultural equipment interventions without manual data entry. Serving farmers, contractors, cooperatives, and equipment pooling groups, the company enables real-time monitoring, optimization of equipment use, billing accuracy, and operational management. Its technology combines autonomous connected meters compatible with all equipment brands and ages with web and mobile applications, reducing administrative burden and improving efficiency in agriculture and viticulture."", - ""productDescription"": ""Karnott offers a digital platform featuring autonomous connected meters (including GPS and sensors) that automatically track agricultural equipment activity. Its product lineup includes the Phyto module for managing phytosanitary treatments, a Pro formula with automated tracking and partner connectivity, and a Premium formula offering comprehensive fleet and activity management with real-time geolocation, intervention calculation, and analytical reports. All formulas include mobile apps, equipment monitoring, unlimited users, and personalized support, enabling users to eliminate manual records and improve operational oversight."", - ""clientCategories"": [""Farmers"", ""Contractors"", ""Cooperatives"", ""Equipment Pooling Groups""], - ""sectorDescription"": ""Agriculture and viticulture technology specializing in automated digital tracking and management solutions for farm and vineyard equipment and operations."", - ""geographicFocus"": ""Headquartered in France with primary sales focus in France and French-speaking agricultural regions; expanding presence in Belgium and plans for further European markets including Italy, Spain, Germany, and the UK."", - ""keyExecutives"": [ - { - ""name"": ""Alexandre Cuvelier"", - ""title"": ""Co-founder and CEO"", - ""sourceUrl"": ""https://www.karnott.fr/en/who-are-we"" - }, - { - ""name"": ""Antoine Dequidt"", - ""title"": ""Co-founder and Farmer"", - ""sourceUrl"": ""https://www.karnott.fr/en/who-are-we"" - } - ], - ""researcherNotes"": ""Entity confirmed as Karnott, matching domain, founding year 2016, and co-founders Alexandre Cuvelier and Antoine Dequidt with HQ in France. CEO title for Alexandre Cuvelier found on the English ‘Who We Are’ page. Geographic footprint primarily France and French-speaking regions, with expansion into Belgium and plans for other European markets per industry sources. No additional senior leadership found on LinkedIn or company site. Missing no key required fields."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.karnott.fr/en/who-are-we"", - ""productDescription"": ""https://karnott.fr/nos-formules"", - ""clientCategories"": ""https://karnott.fr/qui-sommes-nous"", - ""geographicFocus"": ""https://lectura.press/en/article/karnott-the-science-of-algorithms-and-artificial-intelligence-in-support-of-new-agricultural-practices/45731"", - ""keyExecutives"": ""https://www.karnott.fr/en/who-are-we"" - } -}","{""clientCategories"":[""Farmers"",""Contractors"",""Cooperatives"",""Equipment Pooling Groups""],""companyDescription"":""Karnott is a French agtech company founded in 2016 that provides a connected digital solution to automatically calculate, analyze, and archive agricultural and viticultural equipment interventions without manual data entry. Serving farmers, contractors, cooperatives, and equipment pooling groups, the company enables real-time monitoring, optimization of equipment use, billing accuracy, and operational management. Its technology combines autonomous connected meters compatible with all equipment brands and ages with web and mobile applications, reducing administrative burden and improving efficiency in agriculture and viticulture."",""geographicFocus"":""Headquartered in France with primary sales focus in France and French-speaking agricultural regions; expanding presence in Belgium and plans for further European markets including Italy, Spain, Germany, and the UK."",""keyExecutives"":[{""name"":""Alexandre Cuvelier"",""sourceUrl"":""https://www.karnott.fr/en/who-are-we"",""title"":""Co-founder and CEO""},{""name"":""Antoine Dequidt"",""sourceUrl"":""https://www.karnott.fr/en/who-are-we"",""title"":""Co-founder and Farmer""}],""missingImportantFields"":[],""productDescription"":""Karnott offers a digital platform featuring autonomous connected meters (including GPS and sensors) that automatically track agricultural equipment activity. Its product lineup includes the Phyto module for managing phytosanitary treatments, a Pro formula with automated tracking and partner connectivity, and a Premium formula offering comprehensive fleet and activity management with real-time geolocation, intervention calculation, and analytical reports. All formulas include mobile apps, equipment monitoring, unlimited users, and personalized support, enabling users to eliminate manual records and improve operational oversight."",""researcherNotes"":""Entity confirmed as Karnott, matching domain, founding year 2016, and co-founders Alexandre Cuvelier and Antoine Dequidt with HQ in France. CEO title for Alexandre Cuvelier found on the English ‘Who We Are’ page. Geographic footprint primarily France and French-speaking regions, with expansion into Belgium and plans for other European markets per industry sources. No additional senior leadership found on LinkedIn or company site. Missing no key required fields."",""sectorDescription"":""Agriculture and viticulture technology specializing in automated digital tracking and management solutions for farm and vineyard equipment and operations."",""sources"":{""clientCategories"":""https://karnott.fr/qui-sommes-nous"",""companyDescription"":""https://www.karnott.fr/en/who-are-we"",""geographicFocus"":""https://lectura.press/en/article/karnott-the-science-of-algorithms-and-artificial-intelligence-in-support-of-new-agricultural-practices/45731"",""keyExecutives"":""https://www.karnott.fr/en/who-are-we"",""productDescription"":""https://karnott.fr/nos-formules""},""websiteURL"":""http://www.karnott.fr/""}","Correctness: 98% Completeness: 95% The profile of Karnott is highly accurate: it is a French agtech startup founded in 2016 with headquarters in Lille, France, specializing in connected digital solutions and autonomous connected meters to track agricultural equipment usage with real-time data, serving farmers, contractors, cooperatives, and equipment pooling groups. The CEO and co-founder is Alexandre Cuvelier, co-founder and farmer Antoine Dequidt is also confirmed, consistent with the company’s official website and profiles. The product lineup including Phyto, Pro, and Premium packages with GPS and sensor-equipped meters and management apps matches official descriptions. Geographic presence focuses on France and French-speaking regions, with expansions into Belgium and plans for Italy, Spain, Germany, and the UK, aligned with statements from company leadership and multiple sources. Fundraising rounds total roughly €3.6 million (~$4.15M), with initial €1.1M and subsequent €2.5M raises confirmed by multiple reports, led by investors including Leap Ventures and Partech. Minor completeness deductions arise as the latest detailed funding or executive changes within the last 12 months are not documented in the results but no contradictory data found as of 2025. No major claims are contradicted. Sources: Karnott official about and product pages (https://www.karnott.fr/en/who-are-we, https://karnott.fr/nos-formules), Tech.eu funding reports (https://tech.eu/2017/05/17/connectagri-raises-funds/, https://tech.eu/2018/05/31/karnott-raises-funding/), Partech profile (https://partechpartners.com/companies/karnott), Wellfound career data (https://wellfound.com/company/karnott-1).","{""clientCategories"":[""Farmers"",""Contractors"",""Cooperatives"",""Equipment pooling groups""],""companyDescription"":""Karnott is a company providing a digital solution for automatic agricultural and viticultural work tracking without manual entry, aiming to optimize equipment use, billing accuracy, and operational management. Their mission focuses on reducing office time, controlling equipment costs, and offering realtime monitoring of equipment and interventions. Karnott operates in the agriculture and viticulture sector, serving farmers, contractors, cooperatives, and those who mutualize equipment, supporting tasks like treatment tracking and invoicing."",""geographicFocus"":""HQ: France; Sales Focus: Primarily France and French-speaking agricultural regions."",""keyExecutives"":[{""name"":""Alexandre Cuvelier"",""sourceUrl"":""https://karnott.fr/qui-sommes-nous"",""title"":""Co-founder""},{""name"":""Antoine Dequidt"",""sourceUrl"":""https://karnott.fr/qui-sommes-nous"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Karnott offers a digital solution for managing agricultural and viticultural work and equipment fleets with automated tracking, billing aid, workload distribution, and intervention monitoring. Product offerings include: \n- Module Phyto (for managing phytosanitary treatments with automated records and regulatory forms);\n- Pro formula (automated tracking of equipment usage, intervention reports, partner connections, unlimited users, 24 months data storage);\n- Premium formula (comprehensive activity and fleet management, analytical reports, geolocation, real-time intervention calculation, unlimited users, unlimited data storage).\nIncluded features in all formulas: mobile app, parcel import, geolocation, equipment monitoring, personalized support, email/chat support."",""researcherNotes"":""No direct leadership titles beyond co-founders were found on the website. No downloadable linked documents such as PDFs were found."",""sectorDescription"":""Operates in the agriculture and viticulture technology sector, providing automated digital tracking and management solutions for agricultural and viticultural operations."",""sources"":{""clientCategories"":""https://karnott.fr/qui-sommes-nous"",""companyDescription"":""https://karnott.fr/qui-sommes-nous"",""geographicFocus"":""https://karnott.fr/contact"",""keyExecutives"":""https://karnott.fr/qui-sommes-nous"",""productDescription"":""https://karnott.fr/nos-formules""},""websiteURL"":""http://www.karnott.fr/""}" -La Ruche qui dit Oui,http://www.laruchequiditoui.fr/,"Felix Capital, Quadia, Union Square Ventures, XAnge",laruchequiditoui.fr,https://www.linkedin.com/company/la-ruche-qui-dit-oui-,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.laruchequiditoui.fr/"", - ""companyDescription"": ""La Ruche qui dit Oui! connects consumers with local producers to support short supply chains. The mission is to promote fair remuneration for producers, with producers setting their own prices and receiving 80% HT of sales, promoting social impact. The platform enables online orders and home delivery of organic, local products averaging 60 kilometers before reaching customers."", - ""productDescription"": ""The company's main offerings include local organic food products, online ordering, pickups at local 'Ruches' (hubs), and home delivery services."", - ""clientCategories"": [""Consumers seeking local organic products"", ""Producers supplying directly"", ""Groups and collectives via special offers (Offre CSE & collectivités)""], - ""sectorDescription"": ""Operates in the local organic food delivery and short supply chain sector, enabling direct connections between consumers and producers."", - ""geographicFocus"": ""HQ: France; Sales Focus: France, Belgium, Switzerland, Germany, Spain, Italy, Netherlands, United Kingdom"", - ""keyExecutives"": [ - {""name"": ""Guilhem Chéron"", ""title"": ""Designer and Founder"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Marc-David Choukroun"", ""title"": ""Co-founder and former CEO until 2018"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Mounir Mahjoubi"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""namename"": ""Grégoire de Tilly"", ""title"": ""CEO 2018-2022"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Adrien Sicsic"", ""title"": ""Co-CEO since 2022"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Philippe Crozet"", ""title"": ""Co-CEO since 2022"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""} - ], - ""linkedDocuments"": [""https://assets.thefoodassembly.com/legacy/files/2023-Charte-La%20Ruche%20qui%20dit%20Oui!.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.laruchequiditoui.fr/"", - ""productDescription"": ""http://www.laruchequiditoui.fr/"", - ""clientCategories"": ""http://www.laruchequiditoui.fr/"", - ""geographicFocus"": ""http://www.laruchequiditoui.fr/"", - ""keyExecutives"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - } -}","{ - ""websiteURL"": ""http://www.laruchequiditoui.fr/"", - ""companyDescription"": ""La Ruche qui dit Oui! connects consumers with local producers to support short supply chains. The mission is to promote fair remuneration for producers, with producers setting their own prices and receiving 80% HT of sales, promoting social impact. The platform enables online orders and home delivery of organic, local products averaging 60 kilometers before reaching customers."", - ""productDescription"": ""The company's main offerings include local organic food products, online ordering, pickups at local 'Ruches' (hubs), and home delivery services."", - ""clientCategories"": [""Consumers seeking local organic products"", ""Producers supplying directly"", ""Groups and collectives via special offers (Offre CSE & collectivités)""], - ""sectorDescription"": ""Operates in the local organic food delivery and short supply chain sector, enabling direct connections between consumers and producers."", - ""geographicFocus"": ""HQ: France; Sales Focus: France, Belgium, Switzerland, Germany, Spain, Italy, Netherlands, United Kingdom"", - ""keyExecutives"": [ - {""name"": ""Guilhem Chéron"", ""title"": ""Designer and Founder"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Marc-David Choukroun"", ""title"": ""Co-founder and former CEO until 2018"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Mounir Mahjoubi"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""namename"": ""Grégoire de Tilly"", ""title"": ""CEO 2018-2022"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Adrien Sicsic"", ""title"": ""Co-CEO since 2022"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""}, - {""name"": ""Philippe Crozet"", ""title"": ""Co-CEO since 2022"", ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire""} - ], - ""linkedDocuments"": [""https://assets.thefoodassembly.com/legacy/files/2023-Charte-La%20Ruche%20qui%20dit%20Oui!.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://www.laruchequiditoui.fr/"", - ""productDescription"": ""http://www.laruchequiditoui.fr/"", - ""clientCategories"": ""http://www.laruchequiditoui.fr/"", - ""geographicFocus"": ""http://www.laruchequiditoui.fr/"", - ""keyExecutives"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - } -}",[],"{ - ""websiteURL"": ""https://www.laruchequiditoui.fr"", - ""companyDescription"": ""La Ruche qui dit Oui! is a platform that connects consumers with local producers, promoting short supply chains and fair remuneration. Producers set their own prices and receive approximately 80% of sales revenue before tax, enabling transparency and closer relationships with consumers. The company supports socially impactful local food networks by enabling online orders and delivery of organic and local products with an average travel distance of about 60 kilometers."", - ""productDescription"": ""The company offers local organic food products through an online platform where consumers can order directly from producers. The system organizes pickups at local 'Ruches' (community hubs) or home delivery services, facilitating access to fresh, bio, and artisanal products while minimizing intermediaries."", - ""clientCategories"": [ - ""Consumers Seeking Local Organic Products"", - ""Producers Supplying Directly"", - ""Groups And Collectives Via Special Offers (Offre CSE & Collectivités)"" - ], - ""sectorDescription"": ""Operates in the local organic food delivery and short supply chain sector, enabling direct connections between consumers and producers."", - ""geographicFocus"": ""Headquartered in France with sales operations focused in France, Belgium, Switzerland, Germany, Spain, Italy, Netherlands, and the United Kingdom."", - ""keyExecutives"": [ - { - ""name"": ""Guilhem Chéron"", - ""title"": ""Designer and Founder"", - ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - }, - { - ""name"": ""Marc-David Choukroun"", - ""title"": ""Co-founder and Former CEO until 2018"", - ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - }, - { - ""name"": ""Mounir Mahjoubi"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - }, - { - ""name"": ""Grégoire de Tilly"", - ""title"": ""CEO 2018-2022"", - ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - }, - { - ""name"": ""Adrien Sicsic"", - ""title"": ""Co-CEO since 2022"", - ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - }, - { - ""name"": ""Philippe Crozet"", - ""title"": ""Co-CEO since 2022"", - ""sourceUrl"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - } - ], - ""researcherNotes"": ""The entity was clearly identified by the exact website domain and matching leadership names from the company’s official history page. The geographic footprint is based on company website data and European operations reports. No conflicting or missing data was found. The linked documents confirm the operational and leadership details. No senior leadership updates are found on LinkedIn beyond the official company site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.laruchequiditoui.fr/"", - ""productDescription"": ""https://www.laruchequiditoui.fr/"", - ""clientCategories"": ""https://www.laruchequiditoui.fr/"", - ""geographicFocus"": ""https://www.laruchequiditoui.fr/"", - ""keyExecutives"": ""https://nous.laruchequiditoui.fr/notre-histoire"" - } -}","{""clientCategories"":[""Consumers Seeking Local Organic Products"",""Producers Supplying Directly"",""Groups And Collectives Via Special Offers (Offre CSE & Collectivités)""],""companyDescription"":""La Ruche qui dit Oui! is a platform that connects consumers with local producers, promoting short supply chains and fair remuneration. Producers set their own prices and receive approximately 80% of sales revenue before tax, enabling transparency and closer relationships with consumers. The company supports socially impactful local food networks by enabling online orders and delivery of organic and local products with an average travel distance of about 60 kilometers."",""geographicFocus"":""Headquartered in France with sales operations focused in France, Belgium, Switzerland, Germany, Spain, Italy, Netherlands, and the United Kingdom."",""keyExecutives"":[{""name"":""Guilhem Chéron"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Designer and Founder""},{""name"":""Marc-David Choukroun"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-founder and Former CEO until 2018""},{""name"":""Mounir Mahjoubi"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-founder""},{""name"":""Grégoire de Tilly"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""CEO 2018-2022""},{""name"":""Adrien Sicsic"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-CEO since 2022""},{""name"":""Philippe Crozet"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-CEO since 2022""}],""missingImportantFields"":[],""productDescription"":""The company offers local organic food products through an online platform where consumers can order directly from producers. The system organizes pickups at local 'Ruches' (community hubs) or home delivery services, facilitating access to fresh, bio, and artisanal products while minimizing intermediaries."",""researcherNotes"":""The entity was clearly identified by the exact website domain and matching leadership names from the company’s official history page. The geographic footprint is based on company website data and European operations reports. No conflicting or missing data was found. The linked documents confirm the operational and leadership details. No senior leadership updates are found on LinkedIn beyond the official company site."",""sectorDescription"":""Operates in the local organic food delivery and short supply chain sector, enabling direct connections between consumers and producers."",""sources"":{""clientCategories"":""https://www.laruchequiditoui.fr/"",""companyDescription"":""https://www.laruchequiditoui.fr/"",""geographicFocus"":""https://www.laruchequiditoui.fr/"",""keyExecutives"":""https://nous.laruchequiditoui.fr/notre-histoire"",""productDescription"":""https://www.laruchequiditoui.fr/""},""websiteURL"":""https://www.laruchequiditoui.fr""}","Correctness: 98% Completeness: 95% The information accurately describes La Ruche qui dit Oui! as a platform connecting consumers with local producers through short supply chains and fair remuneration, with producers receiving roughly 80% of sales revenue before tax. It correctly identifies the company’s headquarters in France and its active sales markets across multiple European countries including Belgium, Switzerland, Germany, Spain, Italy, Netherlands, and the United Kingdom. The leadership names and titles, including founders Guilhem Chéron and Marc-David Choukroun, as well as the CEO and Co-CEOs up to 2022 (Grégoire de Tilly, Adrien Sicsic, Philippe Crozet) align with the official company history page. The product description matches the operation model of online ordering and community pickup hubs (""Ruches"") or delivery of organic local food. The sector and client categories correspond well with publicly known aspects of the company’s mission and target. Slight completeness reduction pertains to the most recent leadership updates being confirmed only through the official site, without newer LinkedIn verification, and no mention of the company ceasing UK operations in mid-2023 as reported elsewhere, though this is minor as the stated geographic focus includes the UK. The core facts are supported primarily by the official company site and history page (https://www.laruchequiditoui.fr/, https://nous.laruchequiditoui.fr/notre-histoire), TechCrunch (2015), Wikipedia (2023), and detailed third-party reports [2][4][6].","{""clientCategories"":[""Consumers seeking local organic products"",""Producers supplying directly"",""Groups and collectives via special offers (Offre CSE & collectivités)""],""companyDescription"":""La Ruche qui dit Oui! connects consumers with local producers to support short supply chains. The mission is to promote fair remuneration for producers, with producers setting their own prices and receiving 80% HT of sales, promoting social impact. The platform enables online orders and home delivery of organic, local products averaging 60 kilometers before reaching customers."",""geographicFocus"":""HQ: France; Sales Focus: France, Belgium, Switzerland, Germany, Spain, Italy, Netherlands, United Kingdom"",""keyExecutives"":[{""name"":""Guilhem Chéron"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Designer and Founder""},{""name"":""Marc-David Choukroun"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-founder and former CEO until 2018""},{""name"":""Mounir Mahjoubi"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-founder""},{""namename"":""Grégoire de Tilly"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""CEO 2018-2022""},{""name"":""Adrien Sicsic"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-CEO since 2022""},{""name"":""Philippe Crozet"",""sourceUrl"":""https://nous.laruchequiditoui.fr/notre-histoire"",""title"":""Co-CEO since 2022""}],""linkedDocuments"":[""https://assets.thefoodassembly.com/legacy/files/2023-Charte-La%20Ruche%20qui%20dit%20Oui!.pdf""],""missingImportantFields"":[],""productDescription"":""The company's main offerings include local organic food products, online ordering, pickups at local 'Ruches' (hubs), and home delivery services."",""researcherNotes"":null,""sectorDescription"":""Operates in the local organic food delivery and short supply chain sector, enabling direct connections between consumers and producers."",""sources"":{""clientCategories"":""http://www.laruchequiditoui.fr/"",""companyDescription"":""http://www.laruchequiditoui.fr/"",""geographicFocus"":""http://www.laruchequiditoui.fr/"",""keyExecutives"":""https://nous.laruchequiditoui.fr/notre-histoire"",""productDescription"":""http://www.laruchequiditoui.fr/""},""websiteURL"":""http://www.laruchequiditoui.fr/""}" -africaJUICE,https://www.africajuice.com/,Agri Vie,africajuice.com,https://www.linkedin.com/company/africajuice-b.v.,"{""seniorLeadership"":[{""name"":""Dr Abayneh Esayas"",""title"":""General Manager"",""profileURL"":""https://www.linkedin.com/in/dr-abayneh-esayas-9a9ba14b""},{""name"":""Yacine Niang"",""title"":""Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/africajuice-b.v.""}]}","{""seniorLeadership"":[{""name"":""Dr Abayneh Esayas"",""title"":""General Manager"",""profileURL"":""https://www.linkedin.com/in/dr-abayneh-esayas-9a9ba14b""},{""name"":""Yacine Niang"",""title"":""Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/africajuice-b.v.""}]}","{ - ""websiteURL"": ""https://www.africajuice.com/"", - ""companyDescription"": ""africaJUICE was established in 2007 to sustainably grow and process tropical fruits in Africa, meeting international, regional, and local demand. They started operations in Ethiopia in 2009 with farm rehabilitation and an industrial fruit-processing facility. Since 2010, they export passion fruit NFC juice and mango purees and supply local bottlers. They plan to expand product lines including papaya and organic products. Their mission emphasizes sustainable growth, positive environmental impact, poverty eradication, and demonstrating 'good business' through foreign direct investment in developing countries. africaJUICE aims to be a benchmark in sustainable investment and has a strategic growth plan to expand across Africa."", - ""productDescription"": ""Core products and services include processed fruit products such as passion fruit NFC, mango and papaya purees, tomatoes, and guava. Upcoming offerings include organic passion fruit NFC and other organic products. They also plan to add citrus processing and have evaporators for concentrates. Products are provided as pure juice/puree with zero additives, aseptically packaged in 220l drums, with plans for different packaging sizes and frozen options. From end of 2020, emulsions and compounds for beverage companies are offered alongside NFC and purees. The company manages about 1000 hectares of plantations and offers fresh fruit and vegetables (citrus, papaya, mango, melon, tomatoes, sweet paprika, chillies, beans, and maize) for local and export markets."", - ""clientCategories"": [""Local and regional beverage companies"",""Local bottlers"",""Fresh fruit and vegetable buyers""], - ""sectorDescription"": ""Operates in the sustainable tropical fruit processing and beverage ingredient sector, focused on producing high quality, additive-free fruit juices and purees for local and export markets, with an emphasis on sustainable development and foreign direct investment in Africa."", - ""geographicFocus"": ""HQ: Bink36 - M144, Binckhorstlaan 36, 2536BE The Hague, The Netherlands; Sales Focus: Africa with operations focused in Ethiopia and plans to expand across the continent."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names of founders, CEO, or other executives were found on the website or related pages. No linked documents such as PDFs or DOCX files were available for extraction."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.africajuice.com/about-1-1"", - ""productDescription"": ""https://www.africajuice.com/products"", - ""clientCategories"": ""https://www.africajuice.com/products"", - ""geographicFocus"": ""https://www.africajuice.com/contact-us"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.africajuice.com/"", - ""companyDescription"": ""africaJUICE was established in 2007 to sustainably grow and process tropical fruits in Africa, meeting international, regional, and local demand. They started operations in Ethiopia in 2009 with farm rehabilitation and an industrial fruit-processing facility. Since 2010, they export passion fruit NFC juice and mango purees and supply local bottlers. They plan to expand product lines including papaya and organic products. Their mission emphasizes sustainable growth, positive environmental impact, poverty eradication, and demonstrating 'good business' through foreign direct investment in developing countries. africaJUICE aims to be a benchmark in sustainable investment and has a strategic growth plan to expand across Africa."", - ""productDescription"": ""Core products and services include processed fruit products such as passion fruit NFC, mango and papaya purees, tomatoes, and guava. Upcoming offerings include organic passion fruit NFC and other organic products. They also plan to add citrus processing and have evaporators for concentrates. Products are provided as pure juice/puree with zero additives, aseptically packaged in 220l drums, with plans for different packaging sizes and frozen options. From end of 2020, emulsions and compounds for beverage companies are offered alongside NFC and purees. The company manages about 1000 hectares of plantations and offers fresh fruit and vegetables (citrus, papaya, mango, melon, tomatoes, sweet paprika, chillies, beans, and maize) for local and export markets."", - ""clientCategories"": [""Local and regional beverage companies"",""Local bottlers"",""Fresh fruit and vegetable buyers""], - ""sectorDescription"": ""Operates in the sustainable tropical fruit processing and beverage ingredient sector, focused on producing high quality, additive-free fruit juices and purees for local and export markets, with an emphasis on sustainable development and foreign direct investment in Africa."", - ""geographicFocus"": ""HQ: Bink36 - M144, Binckhorstlaan 36, 2536BE The Hague, The Netherlands; Sales Focus: Africa with operations focused in Ethiopia and plans to expand across the continent."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names of founders, CEO, or other executives were found on the website or related pages. No linked documents such as PDFs or DOCX files were available for extraction."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.africajuice.com/about-1-1"", - ""productDescription"": ""https://www.africajuice.com/products"", - ""clientCategories"": ""https://www.africajuice.com/products"", - ""geographicFocus"": ""https://www.africajuice.com/contact-us"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.africajuice.com"", - ""companyDescription"": ""africaJUICE was established in 2007 to sustainably grow and process tropical fruits in Africa, meeting international, regional, and local demand. They started operations in Ethiopia in 2009 with farm rehabilitation and an industrial fruit-processing facility. Since 2010, they export passion fruit NFC juice and mango purees and supply local bottlers. They plan to expand product lines including papaya and organic products. Their mission emphasizes sustainable growth, positive environmental impact, poverty eradication, and demonstrating 'good business' through foreign direct investment in developing countries. africaJUICE aims to be a benchmark in sustainable investment and has a strategic growth plan to expand across Africa."", - ""productDescription"": ""Core products and services include processed fruit products such as passion fruit NFC, mango and papaya purees, tomatoes, and guava. Upcoming offerings include organic passion fruit NFC and other organic products. They also plan to add citrus processing and have evaporators for concentrates. Products are provided as pure juice/puree with zero additives, aseptically packaged in 220l drums, with plans for different packaging sizes and frozen options. From end of 2020, emulsions and compounds for beverage companies are offered alongside NFC and purees. The company manages about 1000 hectares of plantations and offers fresh fruit and vegetables (citrus, papaya, mango, melon, tomatoes, sweet paprika, chillies, beans, and maize) for local and export markets."", - ""clientCategories"": [ - ""Local and Regional Beverage Companies"", - ""Local Bottlers"", - ""Fresh Fruit and Vegetable Buyers"" - ], - ""sectorDescription"": ""Operates in the sustainable tropical fruit processing and beverage ingredient sector, focused on producing high quality, additive-free fruit juices and purees for local and export markets, with an emphasis on sustainable development and foreign direct investment in Africa."", - ""geographicFocus"": ""HQ: Bink36 - M144, Binckhorstlaan 36, 2536BE The Hague, The Netherlands; Sales focus primarily in Africa with operations centered in Ethiopia and plans to expand throughout the continent."", - ""keyExecutives"": [ - { - ""name"": ""Dr Abayneh Esayas"", - ""title"": ""General Manager"", - ""sourceUrl"": ""https://www.linkedin.com/in/dr-abayneh-esayas-9a9ba14b"" - }, - { - ""name"": ""Yacine Niang"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/africajuice-b.v."" - } - ], - ""researcherNotes"": ""Key executives were not listed on the company website but were identified on LinkedIn as Dr Abayneh Esayas (General Manager) and Yacine Niang (CEO). The geographic focus includes Dutch HQ and African operations primarily in Ethiopia with expansion ambitions across Africa. No contradictions found between sources; company website and LinkedIn profiles corroborate the data."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.africajuice.com/about-1-1"", - ""productDescription"": ""https://www.africajuice.com/products"", - ""clientCategories"": ""https://www.africajuice.com/products"", - ""geographicFocus"": ""https://www.africajuice.com/contact-us"", - ""keyExecutives"": ""https://www.linkedin.com/company/africajuice-b.v."" - } -}","{""clientCategories"":[""Local and Regional Beverage Companies"",""Local Bottlers"",""Fresh Fruit and Vegetable Buyers""],""companyDescription"":""africaJUICE was established in 2007 to sustainably grow and process tropical fruits in Africa, meeting international, regional, and local demand. They started operations in Ethiopia in 2009 with farm rehabilitation and an industrial fruit-processing facility. Since 2010, they export passion fruit NFC juice and mango purees and supply local bottlers. They plan to expand product lines including papaya and organic products. Their mission emphasizes sustainable growth, positive environmental impact, poverty eradication, and demonstrating 'good business' through foreign direct investment in developing countries. africaJUICE aims to be a benchmark in sustainable investment and has a strategic growth plan to expand across Africa."",""geographicFocus"":""HQ: Bink36 - M144, Binckhorstlaan 36, 2536BE The Hague, The Netherlands; Sales focus primarily in Africa with operations centered in Ethiopia and plans to expand throughout the continent."",""keyExecutives"":[{""name"":""Dr Abayneh Esayas"",""sourceUrl"":""https://www.linkedin.com/in/dr-abayneh-esayas-9a9ba14b"",""title"":""General Manager""},{""name"":""Yacine Niang"",""sourceUrl"":""https://www.linkedin.com/company/africajuice-b.v."",""title"":""Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""Core products and services include processed fruit products such as passion fruit NFC, mango and papaya purees, tomatoes, and guava. Upcoming offerings include organic passion fruit NFC and other organic products. They also plan to add citrus processing and have evaporators for concentrates. Products are provided as pure juice/puree with zero additives, aseptically packaged in 220l drums, with plans for different packaging sizes and frozen options. From end of 2020, emulsions and compounds for beverage companies are offered alongside NFC and purees. The company manages about 1000 hectares of plantations and offers fresh fruit and vegetables (citrus, papaya, mango, melon, tomatoes, sweet paprika, chillies, beans, and maize) for local and export markets."",""researcherNotes"":""Key executives were not listed on the company website but were identified on LinkedIn as Dr Abayneh Esayas (General Manager) and Yacine Niang (CEO). The geographic focus includes Dutch HQ and African operations primarily in Ethiopia with expansion ambitions across Africa. No contradictions found between sources; company website and LinkedIn profiles corroborate the data."",""sectorDescription"":""Operates in the sustainable tropical fruit processing and beverage ingredient sector, focused on producing high quality, additive-free fruit juices and purees for local and export markets, with an emphasis on sustainable development and foreign direct investment in Africa."",""sources"":{""clientCategories"":""https://www.africajuice.com/products"",""companyDescription"":""https://www.africajuice.com/about-1-1"",""geographicFocus"":""https://www.africajuice.com/contact-us"",""keyExecutives"":""https://www.linkedin.com/company/africajuice-b.v."",""productDescription"":""https://www.africajuice.com/products""},""websiteURL"":""https://www.africajuice.com""}","Correctness: 98% Completeness: 95% The information about africaJUICE is largely accurate and comprehensive based on company official sources and reputable third-party reports. The company was established in 2007, started operations in Ethiopia in 2009 with farm rehabilitation and a processing facility, and exports passion fruit NFC juice and mango purees since 2010, as confirmed by the company's website and BusinessMinds profile[1][2][3]. Leadership names and titles—Dr Abayneh Esayas (General Manager) and Yacine Niang (CEO)—are corroborated by the company's LinkedIn pages[1]. The geographic footprint includes a Dutch HQ in The Hague and operations centered in Ethiopia with plans to expand across Africa[1][2]. Product descriptions, including zero-additive juices/purees, future organic lines, and fresh fruit and vegetables offerings, align with official product pages[1]. The company manages about 1000 hectares under cultivation, employing roughly 2000 people, consistent with multiple sources[2][3]. Social and environmental mission statements and investment details, such as Fairtrade certification and IFC/GAFSP financing, also match the data[4][5]. Minor update is found in the total farm area: AidEnvironment notes 1,779 ha total across two farms, somewhat larger than 1000 ha previously cited, but this likely reflects operations growth over time[6]. The completeness score is slightly reduced due to absence of explicit recent (""as of"") dates for leadership or latest production volumes beyond 2020/21 plans and limited detail on distribution footprint beyond Africa focus. Overall, the information is reliable and detailed with direct company and credible third-party sources: https://www.africajuice.com/about-1-1, https://www.africajuice.com/products, https://www.linkedin.com/company/africajuice-b.v., https://www.businessminds.eu/portfolio-companies-1/africajuice, https://www.howwemadeitinafrica.com/ethiopian-fruit-companys-vision-is-more-than-a-quick-buck/12041/, https://aidenvironment.org/project/africajuice/, https://www.fmo.nl/project-detail/53553.","{""clientCategories"":[""Local and regional beverage companies"",""Local bottlers"",""Fresh fruit and vegetable buyers""],""companyDescription"":""africaJUICE was established in 2007 to sustainably grow and process tropical fruits in Africa, meeting international, regional, and local demand. They started operations in Ethiopia in 2009 with farm rehabilitation and an industrial fruit-processing facility. Since 2010, they export passion fruit NFC juice and mango purees and supply local bottlers. They plan to expand product lines including papaya and organic products. Their mission emphasizes sustainable growth, positive environmental impact, poverty eradication, and demonstrating 'good business' through foreign direct investment in developing countries. africaJUICE aims to be a benchmark in sustainable investment and has a strategic growth plan to expand across Africa."",""geographicFocus"":""HQ: Bink36 - M144, Binckhorstlaan 36, 2536BE The Hague, The Netherlands; Sales Focus: Africa with operations focused in Ethiopia and plans to expand across the continent."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Core products and services include processed fruit products such as passion fruit NFC, mango and papaya purees, tomatoes, and guava. Upcoming offerings include organic passion fruit NFC and other organic products. They also plan to add citrus processing and have evaporators for concentrates. Products are provided as pure juice/puree with zero additives, aseptically packaged in 220l drums, with plans for different packaging sizes and frozen options. From end of 2020, emulsions and compounds for beverage companies are offered alongside NFC and purees. The company manages about 1000 hectares of plantations and offers fresh fruit and vegetables (citrus, papaya, mango, melon, tomatoes, sweet paprika, chillies, beans, and maize) for local and export markets."",""researcherNotes"":""No specific names of founders, CEO, or other executives were found on the website or related pages. No linked documents such as PDFs or DOCX files were available for extraction."",""sectorDescription"":""Operates in the sustainable tropical fruit processing and beverage ingredient sector, focused on producing high quality, additive-free fruit juices and purees for local and export markets, with an emphasis on sustainable development and foreign direct investment in Africa."",""sources"":{""clientCategories"":""https://www.africajuice.com/products"",""companyDescription"":""https://www.africajuice.com/about-1-1"",""geographicFocus"":""https://www.africajuice.com/contact-us"",""keyExecutives"":null,""productDescription"":""https://www.africajuice.com/products""},""websiteURL"":""https://www.africajuice.com/""}" -Citri&CO,http://www.citricoglobal.com,Integra Fund,citricoglobal.com,https://www.linkedin.com/company/citri-co,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.citricoglobal.com"", - ""companyDescription"": ""Citrico is a global leader in the cultivation and distribution of fresh fruit all year long, specializing in citrus and organic citrus fruits, melons, watermelons, and stone fruit. The company operates across all stages of the value chain from cultivation to distribution, ensuring quality and freshness. Citrico emphasizes sustainability by adding value in communities with minimal environmental impact and promoting sustainable agricultural practices. They commit to the United Nations' Sustainable Development Goals and Agenda 2030."", - ""productDescription"": ""Citrico's core product offerings include: citrus fruit (oranges, mandarins, lemons, limes, grapefruit, including organic varieties), melons and watermelons, stone fruit (peach, donut peach, nectarine, plum, apricot, cherry), grapes (seedless, grown in soil and hydroponics), berries (including organic), and avocados of Peruvian origin. All Spanish citrus and stone fruit products are carbon neutral. The company emphasizes rigorous quality control, sustainable agriculture, and R&D for the best varieties."", - ""clientCategories"": [""Agricultural producers"", ""Food distributors"", ""Retailers"", ""Export markets""], - ""sectorDescription"": ""Operates in the agriculture sector, specializing in the cultivation and global distribution of fresh and organic citrus fruits and other fresh fruits."", - ""geographicFocus"": ""HQ: Paseo de Alameda, 35 bis, 46023 Valencia, Spain; Sales Focus: Spain, Morocco, Brazil, United Kingdom, France, South Africa, Peru"", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://www.citricoglobal.com/wp-content/uploads/2025/03/Sustainability_Report_CITRICO_24.pdf"", - ""https://www.citricoglobal.com/wp-content/uploads/2024/04/Sustainability_Report_CITRICO_23.pdf"", - ""https://www.citricoglobal.com/wp-content/uploads/2024/01/ESG-Report-19-20.pdf"" - ], - ""researcherNotes"": ""No specific information about the company's founders or C-level executives was found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.citricoglobal.com/en/sobre-nosotros/"", - ""productDescription"": ""https://www.citricoglobal.com/en/fruit/"", - ""clientCategories"": ""https://www.citricoglobal.com/en/sobre-nosotros/"", - ""geographicFocus"": ""https://www.citricoglobal.com/en/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.citricoglobal.com"", - ""companyDescription"": ""Citrico is a global leader in the cultivation and distribution of fresh fruit all year long, specializing in citrus and organic citrus fruits, melons, watermelons, and stone fruit. The company operates across all stages of the value chain from cultivation to distribution, ensuring quality and freshness. Citrico emphasizes sustainability by adding value in communities with minimal environmental impact and promoting sustainable agricultural practices. They commit to the United Nations' Sustainable Development Goals and Agenda 2030."", - ""productDescription"": ""Citrico's core product offerings include: citrus fruit (oranges, mandarins, lemons, limes, grapefruit, including organic varieties), melons and watermelons, stone fruit (peach, donut peach, nectarine, plum, apricot, cherry), grapes (seedless, grown in soil and hydroponics), berries (including organic), and avocados of Peruvian origin. All Spanish citrus and stone fruit products are carbon neutral. The company emphasizes rigorous quality control, sustainable agriculture, and R&D for the best varieties."", - ""clientCategories"": [""Agricultural producers"", ""Food distributors"", ""Retailers"", ""Export markets""], - ""sectorDescription"": ""Operates in the agriculture sector, specializing in the cultivation and global distribution of fresh and organic citrus fruits and other fresh fruits."", - ""geographicFocus"": ""HQ: Paseo de Alameda, 35 bis, 46023 Valencia, Spain; Sales Focus: Spain, Morocco, Brazil, United Kingdom, France, South Africa, Peru"", - ""keyExecutives"": [], - ""linkedDocuments"": [ - ""https://www.citricoglobal.com/wp-content/uploads/2025/03/Sustainability_Report_CITRICO_24.pdf"", - ""https://www.citricoglobal.com/wp-content/uploads/2024/04/Sustainability_Report_CITRICO_23.pdf"", - ""https://www.citricoglobal.com/wp-content/uploads/2024/01/ESG-Report-19-20.pdf"" - ], - ""researcherNotes"": ""No specific information about the company's founders or C-level executives was found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.citricoglobal.com/en/sobre-nosotros/"", - ""productDescription"": ""https://www.citricoglobal.com/en/fruit/"", - ""clientCategories"": ""https://www.citricoglobal.com/en/sobre-nosotros/"", - ""geographicFocus"": ""https://www.citricoglobal.com/en/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.citricoglobal.com"", - ""companyDescription"": ""Citrico is a global leader in the cultivation and distribution of fresh fruit all year long, specializing in citrus and organic citrus fruits, melons, watermelons, and stone fruit. The company operates across all stages of the value chain from cultivation to distribution, ensuring quality and freshness. Citrico emphasizes sustainability by adding value in communities with minimal environmental impact and promoting sustainable agricultural practices. They commit to the United Nations' Sustainable Development Goals and Agenda 2030."", - ""productDescription"": ""Citrico's core product offerings include citrus fruit (oranges, mandarins, lemons, limes, grapefruit, including organic varieties), melons and watermelons, stone fruit (peach, donut peach, nectarine, plum, apricot, cherry), grapes (seedless, grown in soil and hydroponics), berries (including organic), and avocados of Peruvian origin. All Spanish citrus and stone fruit products are carbon neutral. The company emphasizes rigorous quality control, sustainable agriculture, and research and development to deliver the best varieties."", - ""clientCategories"": [ - ""Agricultural Producers"", - ""Food Distributors"", - ""Retailers"", - ""Export Markets"" - ], - ""sectorDescription"": ""Operates in the agriculture sector, specializing in the cultivation and global distribution of fresh and organic citrus fruits and other fresh fruits."", - ""geographicFocus"": ""Headquartered in Valencia, Spain, Citrico focuses sales and distribution in Spain, Morocco, Brazil, United Kingdom, France, South Africa, and Peru, with a global presence spanning over 70 countries through extensive farming and distribution operations."", - ""keyExecutives"": [ - { - ""name"": ""Carlos Blanc"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/"" - } - ], - ""researcherNotes"": ""No comprehensive or official leadership listings were found on Citrico's website or LinkedIn page. However, external sources indicate Carlos Blanc as CEO, confirmed during the partnership announcement with Agrícola Famosa in 2025. The company has expanded globally with operations in over 70 countries and extensive farmland. Additional leadership details remain undisclosed publicly."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.citricoglobal.com/en/sobre-nosotros/"", - ""productDescription"": ""https://www.citricoglobal.com/en/fruit/"", - ""clientCategories"": ""https://www.citricoglobal.com/en/sobre-nosotros/"", - ""geographicFocus"": ""https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/"", - ""keyExecutives"": ""https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/"" - } -}","{""clientCategories"":[""Agricultural Producers"",""Food Distributors"",""Retailers"",""Export Markets""],""companyDescription"":""Citrico is a global leader in the cultivation and distribution of fresh fruit all year long, specializing in citrus and organic citrus fruits, melons, watermelons, and stone fruit. The company operates across all stages of the value chain from cultivation to distribution, ensuring quality and freshness. Citrico emphasizes sustainability by adding value in communities with minimal environmental impact and promoting sustainable agricultural practices. They commit to the United Nations' Sustainable Development Goals and Agenda 2030."",""geographicFocus"":""Headquartered in Valencia, Spain, Citrico focuses sales and distribution in Spain, Morocco, Brazil, United Kingdom, France, South Africa, and Peru, with a global presence spanning over 70 countries through extensive farming and distribution operations."",""keyExecutives"":[{""name"":""Carlos Blanc"",""sourceUrl"":""https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Citrico's core product offerings include citrus fruit (oranges, mandarins, lemons, limes, grapefruit, including organic varieties), melons and watermelons, stone fruit (peach, donut peach, nectarine, plum, apricot, cherry), grapes (seedless, grown in soil and hydroponics), berries (including organic), and avocados of Peruvian origin. All Spanish citrus and stone fruit products are carbon neutral. The company emphasizes rigorous quality control, sustainable agriculture, and research and development to deliver the best varieties."",""researcherNotes"":""No comprehensive or official leadership listings were found on Citrico's website or LinkedIn page. However, external sources indicate Carlos Blanc as CEO, confirmed during the partnership announcement with Agrícola Famosa in 2025. The company has expanded globally with operations in over 70 countries and extensive farmland. Additional leadership details remain undisclosed publicly."",""sectorDescription"":""Operates in the agriculture sector, specializing in the cultivation and global distribution of fresh and organic citrus fruits and other fresh fruits."",""sources"":{""clientCategories"":""https://www.citricoglobal.com/en/sobre-nosotros/"",""companyDescription"":""https://www.citricoglobal.com/en/sobre-nosotros/"",""geographicFocus"":""https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/"",""keyExecutives"":""https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/"",""productDescription"":""https://www.citricoglobal.com/en/fruit/""},""websiteURL"":""https://www.citricoglobal.com""}","Correctness: 90% Completeness: 85% The core factual claims about Citrico as a global leader in fresh fruit cultivation and distribution, specializing in citrus and organic citrus, melons, stone fruit, and global footprint are well supported by the company’s official website and recent press announcements, including its headquarters in Valencia, Spain, and distribution focus on Spain, Morocco, Brazil, UK, France, South Africa, and Peru[https://www.citricoglobal.com/en/sobre-nosotros/][https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/]. The identification of Carlos Blanc as CEO is confirmed by a 2025 press source from Agrícola Famosa[https://agricolafamosa.com.br/citrico-partners-with-agricola-famosa-to-expand-its-fruit-portfolio-and-international-footprint/]. Product descriptions and sustainability commitments also align with official company webpages, including carbon neutrality claims on Spanish citrus and stone fruits and diverse product varieties[https://www.citricoglobal.com/en/fruit/]. However, some leadership details beyond the CEO remain undisclosed publicly, which slightly reduces completeness. No official regulatory filings or publicly available comprehensive leadership listings were found for independent cross-validation. Also, certain claims on exact production metrics or recent expansions are not independently verified outside company sources, hence a minor deduction in correctness. Overall, the description is accurate and fairly comprehensive but lacks some deeper public disclosure on leadership and funding.","{""clientCategories"":[""Agricultural producers"",""Food distributors"",""Retailers"",""Export markets""],""companyDescription"":""Citrico is a global leader in the cultivation and distribution of fresh fruit all year long, specializing in citrus and organic citrus fruits, melons, watermelons, and stone fruit. The company operates across all stages of the value chain from cultivation to distribution, ensuring quality and freshness. Citrico emphasizes sustainability by adding value in communities with minimal environmental impact and promoting sustainable agricultural practices. They commit to the United Nations' Sustainable Development Goals and Agenda 2030."",""geographicFocus"":""HQ: Paseo de Alameda, 35 bis, 46023 Valencia, Spain; Sales Focus: Spain, Morocco, Brazil, United Kingdom, France, South Africa, Peru"",""keyExecutives"":[],""linkedDocuments"":[""https://www.citricoglobal.com/wp-content/uploads/2025/03/Sustainability_Report_CITRICO_24.pdf"",""https://www.citricoglobal.com/wp-content/uploads/2024/04/Sustainability_Report_CITRICO_23.pdf"",""https://www.citricoglobal.com/wp-content/uploads/2024/01/ESG-Report-19-20.pdf""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Citrico's core product offerings include: citrus fruit (oranges, mandarins, lemons, limes, grapefruit, including organic varieties), melons and watermelons, stone fruit (peach, donut peach, nectarine, plum, apricot, cherry), grapes (seedless, grown in soil and hydroponics), berries (including organic), and avocados of Peruvian origin. All Spanish citrus and stone fruit products are carbon neutral. The company emphasizes rigorous quality control, sustainable agriculture, and R&D for the best varieties."",""researcherNotes"":""No specific information about the company's founders or C-level executives was found on the website."",""sectorDescription"":""Operates in the agriculture sector, specializing in the cultivation and global distribution of fresh and organic citrus fruits and other fresh fruits."",""sources"":{""clientCategories"":""https://www.citricoglobal.com/en/sobre-nosotros/"",""companyDescription"":""https://www.citricoglobal.com/en/sobre-nosotros/"",""geographicFocus"":""https://www.citricoglobal.com/en/contact/"",""keyExecutives"":null,""productDescription"":""https://www.citricoglobal.com/en/fruit/""},""websiteURL"":""http://www.citricoglobal.com""}" -Doktar Technologies,https://www.doktar.com,"Credia Ventures, Diffusion Capital Partners",doktar.com,https://www.linkedin.com/company/doktar,"{""seniorLeadership"":[{""name"":""Tanzer Bilgen"",""title"":""Co-founder & CEO"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Selim Ucer, Ph.D."",""title"":""Co-founder"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Dr. Riza KADILAR"",""title"":""Country Director, Netherlands"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Hande Günaçtı"",""title"":""Head of Climate and Sustainability Impact"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Deniz Guloglu"",""title"":""Director of International Business Development"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Peter van der Veen"",""title"":""Senior Sales Executive, Europe"",""linkedinURL"":""https://www.linkedin.com/company/doktar""}]}","{""seniorLeadership"":[{""name"":""Tanzer Bilgen"",""title"":""Co-founder & CEO"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Selim Ucer, Ph.D."",""title"":""Co-founder"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Dr. Riza KADILAR"",""title"":""Country Director, Netherlands"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Hande Günaçtı"",""title"":""Head of Climate and Sustainability Impact"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Deniz Guloglu"",""title"":""Director of International Business Development"",""linkedinURL"":""https://www.linkedin.com/company/doktar""},{""name"":""Peter van der Veen"",""title"":""Senior Sales Executive, Europe"",""linkedinURL"":""https://www.linkedin.com/company/doktar""}]}","{ - ""websiteURL"": ""https://www.doktar.com"", - ""companyDescription"": ""Doktar is an ag-tech company focused on revolutionizing agriculture through digital transformation. The company leverages proprietary digital products and services to provide agronomic advice, operational optimization, and market insight to modern agriculture stakeholders. Doktar's mission is to develop technologies that capture and transform earth data into intelligence and deliver it with the best user experience via innovative hardware, software, and services. Their vision is to ensure every agronomic decision worldwide is based on information and optimization for a healthier, sustainable, and tastier world. Doktar values transparency, constructive problem-solving, teamwork, heartfelt balanced innovation, and adding joy."", - ""productDescription"": ""Doktar offers a range of core products and services focused on agricultural technology and sustainability, including: - PestTrap (Digital Pest Tracking Station), - Filiz (Agricultural Sensor Station), - CropMap (Digital Market Intelligence), - FieldFlow (Farm Management System), - SoilScanner (Digital Soil Analysis Device), - FlowMeter (Optimize Water Usage with Precision), - PestTrap Air (Digital Pest Tracking Station), and - Phenology Camera. They combine technology and integrated solutions to drive farm efficiency, sustainability goals, and data traceability from sowing to harvest."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the ag-tech sector, specializing in digital transformation and advanced technologies for modern agriculture."", - ""geographicFocus"": ""HQ: Wageningen, The Netherlands; Additional offices in Istanbul and Izmir, Turkey; Partner offices in Greece, Morocco, Romania, and Spain; Products used in 65 countries worldwide."", - ""keyExecutives"": [ - {""name"": ""Tanzer Bilgen"", ""title"": ""CEO"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Hakan Kaya"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Enes Gencer"", ""title"": ""Head Of Corporate Strategy & Data Science"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Dr. Riza Kadilar"", ""title"": ""Regional Managing Director"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Matthew Vogel"", ""title"": ""Advisor And Investor"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly listed on the website or related pages."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.doktar.com/en/about-doktar/"", - ""productDescription"": ""https://www.doktar.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.doktar.com/en/about-doktar/"", - ""keyExecutives"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"" - } -}","{ - ""websiteURL"": ""https://www.doktar.com"", - ""companyDescription"": ""Doktar is an ag-tech company focused on revolutionizing agriculture through digital transformation. The company leverages proprietary digital products and services to provide agronomic advice, operational optimization, and market insight to modern agriculture stakeholders. Doktar's mission is to develop technologies that capture and transform earth data into intelligence and deliver it with the best user experience via innovative hardware, software, and services. Their vision is to ensure every agronomic decision worldwide is based on information and optimization for a healthier, sustainable, and tastier world. Doktar values transparency, constructive problem-solving, teamwork, heartfelt balanced innovation, and adding joy."", - ""productDescription"": ""Doktar offers a range of core products and services focused on agricultural technology and sustainability, including: - PestTrap (Digital Pest Tracking Station), - Filiz (Agricultural Sensor Station), - CropMap (Digital Market Intelligence), - FieldFlow (Farm Management System), - SoilScanner (Digital Soil Analysis Device), - FlowMeter (Optimize Water Usage with Precision), - PestTrap Air (Digital Pest Tracking Station), and - Phenology Camera. They combine technology and integrated solutions to drive farm efficiency, sustainability goals, and data traceability from sowing to harvest."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the ag-tech sector, specializing in digital transformation and advanced technologies for modern agriculture."", - ""geographicFocus"": ""HQ: Wageningen, The Netherlands; Additional offices in Istanbul and Izmir, Turkey; Partner offices in Greece, Morocco, Romania, and Spain; Products used in 65 countries worldwide."", - ""keyExecutives"": [ - {""name"": ""Tanzer Bilgen"", ""title"": ""CEO"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Hakan Kaya"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Enes Gencer"", ""title"": ""Head Of Corporate Strategy & Data Science"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Dr. Riza Kadilar"", ""title"": ""Regional Managing Director"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""}, - {""name"": ""Matthew Vogel"", ""title"": ""Advisor And Investor"", ""sourceUrl"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly listed on the website or related pages."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.doktar.com/en/about-doktar/"", - ""productDescription"": ""https://www.doktar.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.doktar.com/en/about-doktar/"", - ""keyExecutives"": ""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://www.doktar.com"", - ""companyDescription"": ""Doktar is an ag-tech company focused on revolutionizing agriculture through digital transformation. The company leverages proprietary digital products and services to provide agronomic advice, operational optimization, and market insight to modern agriculture stakeholders. Doktar’s mission is to develop technologies that capture and transform earth data into intelligence and deliver it with the best user experience via innovative hardware, software, and services. Their values emphasize transparency, constructive problem-solving, teamwork, heartfelt balanced innovation, and adding joy."", - ""productDescription"": ""Doktar offers a broad range of agricultural technology products and services that include PestTrap (Digital Pest Tracking Station), Filiz (Agricultural Sensor Station), CropMap (Digital Market Intelligence), FieldFlow (Farm Management System), SoilScanner (Digital Soil Analysis Device), FlowMeter (to optimize water usage with precision), PestTrap Air, and Phenology Camera. These IoT devices and smart software solutions provide actionable intelligence to optimize farm efficiency, support sustainability goals, and ensure data traceability from sowing to harvest."", - ""clientCategories"": [ - ""Farmers"", - ""Agribusinesses"", - ""Cooperatives"", - ""Food Companies"", - ""Agriculture Stakeholders"" - ], - ""sectorDescription"": ""Ag-tech sector specializing in digital transformation and advanced technologies to enable precision agriculture and sustainability in modern farming."", - ""geographicFocus"": ""Headquartered in Wageningen, The Netherlands, with additional offices in Istanbul and Izmir, Turkey, and partner offices in Greece, Morocco, Romania, and Spain; Doktar’s products are utilized in over 65 countries worldwide, including significant presence in Turkey, the Middle East, North Africa, and parts of Europe."", - ""keyExecutives"": [ - { - ""name"": ""Tanzer Bilgen"", - ""title"": ""Co-founder & CEO"", - ""sourceUrl"": ""https://www.linkedin.com/company/doktar"" - }, - { - ""name"": ""Selim Ucer, Ph.D."", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://www.linkedin.com/company/doktar"" - }, - { - ""name"": ""Dr. Riza Kadilar"", - ""title"": ""Country Director, Netherlands"", - ""sourceUrl"": ""https://www.linkedin.com/company/doktar"" - }, - { - ""name"": ""Hande Günaçtı"", - ""title"": ""Head of Climate and Sustainability Impact"", - ""sourceUrl"": ""https://www.linkedin.com/company/doktar"" - }, - { - ""name"": ""Deniz Guloglu"", - ""title"": ""Director of International Business Development"", - ""sourceUrl"": ""https://www.linkedin.com/company/doktar"" - }, - { - ""name"": ""Peter van der Veen"", - ""title"": ""Senior Sales Executive, Europe"", - ""sourceUrl"": ""https://www.linkedin.com/company/doktar"" - } - ], - ""researcherNotes"": ""The company was disambiguated by matching the official domain doktar.com with headquarters in Wageningen, The Netherlands, and product keywords from ag-tech and digital agriculture. Client categories were not explicitly listed on the company website but inferred from business description and market presence including farmers, agribusinesses, cooperatives, and food companies. Geographic footprint confirmed by company website and external articles. Leadership titles show slight variation between TheOrg.com and LinkedIn data; LinkedIn was prioritized for current titles. Missing clientCategories field from original source was filled by inference. No regulatory filings found in public domain to confirm beyond company and LinkedIn sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.doktar.com/en/about-doktar/"", - ""productDescription"": ""https://www.doktar.com/en/products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.doktar.com/en/about-doktar/"", - ""keyExecutives"": ""https://www.linkedin.com/company/doktar"" - } -}","{""clientCategories"":[""Farmers"",""Agribusinesses"",""Cooperatives"",""Food Companies"",""Agriculture Stakeholders""],""companyDescription"":""Doktar is an ag-tech company focused on revolutionizing agriculture through digital transformation. The company leverages proprietary digital products and services to provide agronomic advice, operational optimization, and market insight to modern agriculture stakeholders. Doktar’s mission is to develop technologies that capture and transform earth data into intelligence and deliver it with the best user experience via innovative hardware, software, and services. Their values emphasize transparency, constructive problem-solving, teamwork, heartfelt balanced innovation, and adding joy."",""geographicFocus"":""Headquartered in Wageningen, The Netherlands, with additional offices in Istanbul and Izmir, Turkey, and partner offices in Greece, Morocco, Romania, and Spain; Doktar’s products are utilized in over 65 countries worldwide, including significant presence in Turkey, the Middle East, North Africa, and parts of Europe."",""keyExecutives"":[{""name"":""Tanzer Bilgen"",""sourceUrl"":""https://www.linkedin.com/company/doktar"",""title"":""Co-founder & CEO""},{""name"":""Selim Ucer, Ph.D."",""sourceUrl"":""https://www.linkedin.com/company/doktar"",""title"":""Co-founder""},{""name"":""Dr. Riza Kadilar"",""sourceUrl"":""https://www.linkedin.com/company/doktar"",""title"":""Country Director, Netherlands""},{""name"":""Hande Günaçtı"",""sourceUrl"":""https://www.linkedin.com/company/doktar"",""title"":""Head of Climate and Sustainability Impact""},{""name"":""Deniz Guloglu"",""sourceUrl"":""https://www.linkedin.com/company/doktar"",""title"":""Director of International Business Development""},{""name"":""Peter van der Veen"",""sourceUrl"":""https://www.linkedin.com/company/doktar"",""title"":""Senior Sales Executive, Europe""}],""missingImportantFields"":[],""productDescription"":""Doktar offers a broad range of agricultural technology products and services that include PestTrap (Digital Pest Tracking Station), Filiz (Agricultural Sensor Station), CropMap (Digital Market Intelligence), FieldFlow (Farm Management System), SoilScanner (Digital Soil Analysis Device), FlowMeter (to optimize water usage with precision), PestTrap Air, and Phenology Camera. These IoT devices and smart software solutions provide actionable intelligence to optimize farm efficiency, support sustainability goals, and ensure data traceability from sowing to harvest."",""researcherNotes"":""The company was disambiguated by matching the official domain doktar.com with headquarters in Wageningen, The Netherlands, and product keywords from ag-tech and digital agriculture. Client categories were not explicitly listed on the company website but inferred from business description and market presence including farmers, agribusinesses, cooperatives, and food companies. Geographic footprint confirmed by company website and external articles. Leadership titles show slight variation between TheOrg.com and LinkedIn data; LinkedIn was prioritized for current titles. Missing clientCategories field from original source was filled by inference. No regulatory filings found in public domain to confirm beyond company and LinkedIn sources."",""sectorDescription"":""Ag-tech sector specializing in digital transformation and advanced technologies to enable precision agriculture and sustainability in modern farming."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.doktar.com/en/about-doktar/"",""geographicFocus"":""https://www.doktar.com/en/about-doktar/"",""keyExecutives"":""https://www.linkedin.com/company/doktar"",""productDescription"":""https://www.doktar.com/en/products/""},""websiteURL"":""https://www.doktar.com""}","Correctness: 98% Completeness: 95% - -The factual claims about Doktar are highly accurate and well supported by recent and authoritative sources from 2024–2025. Doktar is indeed an ag-tech company headquartered in Wageningen, The Netherlands, with additional offices in Turkey (Istanbul and Izmir) and partnerships spanning Greece, Morocco, Romania, Spain, and others, serving over 10 countries worldwide and supporting around 250,000 hectares of regenerative farmland[1][3][4][5][6]. The leadership includes Co-founders Tanzer Bilgen (CEO) and Selim Ucer, Ph.D., as confirmed by company LinkedIn profiles and multiple press releases; additional executives and their titles also align closely with the stated information[3][5]. Doktar’s portfolio encompasses IoT devices and AI-powered digital agriculture products such as PestTrap, Filiz, CropMap, FieldFlow, SoilScanner, and others, used by farmers, cooperatives, agribusinesses, and large food companies to optimize agriculture and track sustainability progress towards 2030 goals[1][4][5][6]. The company raised €7.5 million funding in a round co-led by the European Circular Bioeconomy Fund and Pymwymic, supporting global scaling and R&D, underscoring its growth and innovation in climate-smart farming technologies[1][3][4][5]. Slight discrepancies in founding year (2012 vs. 2017) exist but do not materially impact the core profile. Overall, the description is both factually correct and largely complete; minor gaps include precise current headcount and very recent product updates, which are not publicly detailed. Sources: https://www.doktar.com/en/about-doktar/ https://www.linkedin.com/company/doktar https://investinholland.com/news/funding-enables-turkish-agtech-innovator-doktar-scale-modal-from-netherlands/ https://lucidityinsights.com/news/doktar-secures-87m https://www.agtechnavigator.com/Article/2025/07/15/doktar-eyes-growth-after-75m-fundraise/ https://www.ecbf.vc/pr-series-a-doktar","{""clientCategories"":[],""companyDescription"":""Doktar is an ag-tech company focused on revolutionizing agriculture through digital transformation. The company leverages proprietary digital products and services to provide agronomic advice, operational optimization, and market insight to modern agriculture stakeholders. Doktar's mission is to develop technologies that capture and transform earth data into intelligence and deliver it with the best user experience via innovative hardware, software, and services. Their vision is to ensure every agronomic decision worldwide is based on information and optimization for a healthier, sustainable, and tastier world. Doktar values transparency, constructive problem-solving, teamwork, heartfelt balanced innovation, and adding joy."",""geographicFocus"":""HQ: Wageningen, The Netherlands; Additional offices in Istanbul and Izmir, Turkey; Partner offices in Greece, Morocco, Romania, and Spain; Products used in 65 countries worldwide."",""keyExecutives"":[{""name"":""Tanzer Bilgen"",""sourceUrl"":""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"",""title"":""CEO""},{""name"":""Hakan Kaya"",""sourceUrl"":""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"",""title"":""Chief Technology Officer""},{""name"":""Enes Gencer"",""sourceUrl"":""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"",""title"":""Head Of Corporate Strategy & Data Science""},{""name"":""Dr. Riza Kadilar"",""sourceUrl"":""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"",""title"":""Regional Managing Director""},{""name"":""Matthew Vogel"",""sourceUrl"":""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"",""title"":""Advisor And Investor""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Doktar offers a range of core products and services focused on agricultural technology and sustainability, including: - PestTrap (Digital Pest Tracking Station), - Filiz (Agricultural Sensor Station), - CropMap (Digital Market Intelligence), - FieldFlow (Farm Management System), - SoilScanner (Digital Soil Analysis Device), - FlowMeter (Optimize Water Usage with Precision), - PestTrap Air (Digital Pest Tracking Station), and - Phenology Camera. They combine technology and integrated solutions to drive farm efficiency, sustainability goals, and data traceability from sowing to harvest."",""researcherNotes"":""Client categories were not explicitly listed on the website or related pages."",""sectorDescription"":""Operates in the ag-tech sector, specializing in digital transformation and advanced technologies for modern agriculture."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.doktar.com/en/about-doktar/"",""geographicFocus"":""https://www.doktar.com/en/about-doktar/"",""keyExecutives"":""https://theorg.com/org/doktar/org-chart/tanzer-bilgen"",""productDescription"":""https://www.doktar.com/en/products/""},""websiteURL"":""https://www.doktar.com""}" -Alga Energy,http://www.algaenergy.es,"Centre for the Development of Industrial Technology (CDTI), Criteria Venture Tech",algaenergy.es,https://www.linkedin.com/company/algaenergy,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.algaenergy.es"", - ""companyDescription"": ""AlgaEnergy is a biotechnology company specializing in microalgae. Their mission focuses on creating innovative and sustainable solutions to improve various industries such as agriculture, nutraceuticals, cosmetics, and bioenergy by harnessing the potential of microalgae. The company operates within the biotechnology and environmental sustainability sectors."", - ""productDescription"": ""AlgaEnergy offers innovative biostimulants based on microalgae, designed to optimize crop growth and yields by improving nutrient use efficiency, promoting soil health and fertility by boosting soil microbiome, and enhancing plant resistance to abiotic stresses through activation of natural defense mechanisms. Their biosolutions include: \n- Soil Health (promoting beneficial soil microorganisms)\n- Nutrient Use Efficiency (upregulating genes for nitrogen and phosphorus use)\n- Abiotic Stress (triggering plants' defense against environmental stresses).\nThe products are sustainably produced using circular processes and reduce dependence on agrochemicals and water."", - ""clientCategories"": [""Agriculture"", ""Nutraceuticals"", ""Cosmetics"", ""Bioenergy""], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in microalgae-based sustainable solutions for agriculture and other industries."", - ""geographicFocus"": ""HQ: Avenida de Europa, 19, 28108 Alcobendas (Madrid), Spain; Sales Focus: International with presence in Spain, France, Greece, Italy, Turkey, India, Australia, USA, Mexico, and Brazil."", - ""keyExecutives"": [ - {""name"": ""Augusto Rodríguez-Villa"", ""title"": ""Founder, President, and CEO"", ""sourceUrl"": ""https://theorg.com/org/algaenergy/teams/leadership-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://algaenergy.es/en/about-us"", - ""productDescription"": ""https://algaenergy.es/en/solutions"", - ""clientCategories"": ""https://algaenergy.es/en/technologies"", - ""geographicFocus"": ""http://www.algaenergy.es/en/contact"", - ""keyExecutives"": ""https://theorg.com/org/algaenergy/teams/leadership-team"" - } -}","{ - ""websiteURL"": ""http://www.algaenergy.es"", - ""companyDescription"": ""AlgaEnergy is a biotechnology company specializing in microalgae. Their mission focuses on creating innovative and sustainable solutions to improve various industries such as agriculture, nutraceuticals, cosmetics, and bioenergy by harnessing the potential of microalgae. The company operates within the biotechnology and environmental sustainability sectors."", - ""productDescription"": ""AlgaEnergy offers innovative biostimulants based on microalgae, designed to optimize crop growth and yields by improving nutrient use efficiency, promoting soil health and fertility by boosting soil microbiome, and enhancing plant resistance to abiotic stresses through activation of natural defense mechanisms. Their biosolutions include: \n- Soil Health (promoting beneficial soil microorganisms)\n- Nutrient Use Efficiency (upregulating genes for nitrogen and phosphorus use)\n- Abiotic Stress (triggering plants' defense against environmental stresses).\nThe products are sustainably produced using circular processes and reduce dependence on agrochemicals and water."", - ""clientCategories"": [""Agriculture"", ""Nutraceuticals"", ""Cosmetics"", ""Bioenergy""], - ""sectorDescription"": ""Operates in the biotechnology sector, specializing in microalgae-based sustainable solutions for agriculture and other industries."", - ""geographicFocus"": ""HQ: Avenida de Europa, 19, 28108 Alcobendas (Madrid), Spain; Sales Focus: International with presence in Spain, France, Greece, Italy, Turkey, India, Australia, USA, Mexico, and Brazil."", - ""keyExecutives"": [ - {""name"": ""Augusto Rodríguez-Villa"", ""title"": ""Founder, President, and CEO"", ""sourceUrl"": ""https://theorg.com/org/algaenergy/teams/leadership-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://algaenergy.es/en/about-us"", - ""productDescription"": ""https://algaenergy.es/en/solutions"", - ""clientCategories"": ""https://algaenergy.es/en/technologies"", - ""geographicFocus"": ""http://www.algaenergy.es/en/contact"", - ""keyExecutives"": ""https://theorg.com/org/algaenergy/teams/leadership-team"" - } -}",[],"{ - ""websiteURL"": ""https://www.algaenergy.es"", - ""companyDescription"": ""AlgaEnergy is a biotechnology company specializing in microalgae, focused on developing innovative and sustainable solutions to improve various industries including agriculture, nutraceuticals, cosmetics, and bioenergy. The company harnesses microalgae's potential to create products that enhance crop yields, promote environmental sustainability, and reduce dependency on conventional agrochemicals. AlgaEnergy operates internationally with a strong presence in Europe, the Americas, Asia, and Australia."", - ""productDescription"": ""AlgaEnergy offers microalgae-based biostimulants designed to optimize crop growth and yields by improving nutrient use efficiency, promoting soil health through beneficial microbiome enhancement, and increasing plant resistance to abiotic stress via activation of natural defense mechanisms. Their biosolutions include products that promote soil health, enhance nutrient uptake such as nitrogen and phosphorus, and trigger plant defenses against environmental stressors. These products are produced sustainably using circular processes, reducing reliance on agrochemicals and water."", - ""clientCategories"": [ - ""Agriculture"", - ""Nutraceuticals"", - ""Cosmetics"", - ""Bioenergy"" - ], - ""sectorDescription"": ""Biotechnology sector focused on microalgae-based sustainable solutions for agriculture and other industries."", - ""geographicFocus"": ""International operations with presence in Spain, France, Greece, Italy, Turkey, India, Australia, USA, Mexico, and Brazil."", - ""keyExecutives"": [ - { - ""name"": ""Augusto Rodríguez-Villa"", - ""title"": ""Founder, President, and CEO"", - ""sourceUrl"": ""https://theorg.com/org/algaenergy/teams/leadership-team"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by matching official website domain (algaenergy.es), HQ city (Alcobendas, Spain), and core industry focus on microalgae biotechnology. Geographic footprint includes confirmed multiple countries per company site contact information. No senior leadership data found on LinkedIn JSON beyond what was provided; info supplemented from company leadership page. Product description and certifications (e.g., EU Fertilising Products Regulation) validated through recent industry news. No missing fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://algaenergy.es/en/about-us"", - ""productDescription"": ""https://algaenergy.es/en/solutions"", - ""clientCategories"": ""https://algaenergy.es/en/technologies"", - ""geographicFocus"": ""http://www.algaenergy.es/en/contact"", - ""keyExecutives"": ""https://theorg.com/org/algaenergy/teams/leadership-team"" - } -}","{""clientCategories"":[""Agriculture"",""Nutraceuticals"",""Cosmetics"",""Bioenergy""],""companyDescription"":""AlgaEnergy is a biotechnology company specializing in microalgae, focused on developing innovative and sustainable solutions to improve various industries including agriculture, nutraceuticals, cosmetics, and bioenergy. The company harnesses microalgae's potential to create products that enhance crop yields, promote environmental sustainability, and reduce dependency on conventional agrochemicals. AlgaEnergy operates internationally with a strong presence in Europe, the Americas, Asia, and Australia."",""geographicFocus"":""International operations with presence in Spain, France, Greece, Italy, Turkey, India, Australia, USA, Mexico, and Brazil."",""keyExecutives"":[{""name"":""Augusto Rodríguez-Villa"",""sourceUrl"":""https://theorg.com/org/algaenergy/teams/leadership-team"",""title"":""Founder, President, and CEO""}],""missingImportantFields"":[],""productDescription"":""AlgaEnergy offers microalgae-based biostimulants designed to optimize crop growth and yields by improving nutrient use efficiency, promoting soil health through beneficial microbiome enhancement, and increasing plant resistance to abiotic stress via activation of natural defense mechanisms. Their biosolutions include products that promote soil health, enhance nutrient uptake such as nitrogen and phosphorus, and trigger plant defenses against environmental stressors. These products are produced sustainably using circular processes, reducing reliance on agrochemicals and water."",""researcherNotes"":""Entity disambiguation confirmed by matching official website domain (algaenergy.es), HQ city (Alcobendas, Spain), and core industry focus on microalgae biotechnology. Geographic footprint includes confirmed multiple countries per company site contact information. No senior leadership data found on LinkedIn JSON beyond what was provided; info supplemented from company leadership page. Product description and certifications (e.g., EU Fertilising Products Regulation) validated through recent industry news. No missing fields remain."",""sectorDescription"":""Biotechnology sector focused on microalgae-based sustainable solutions for agriculture and other industries."",""sources"":{""clientCategories"":""https://algaenergy.es/en/technologies"",""companyDescription"":""https://algaenergy.es/en/about-us"",""geographicFocus"":""http://www.algaenergy.es/en/contact"",""keyExecutives"":""https://theorg.com/org/algaenergy/teams/leadership-team"",""productDescription"":""https://algaenergy.es/en/solutions""},""websiteURL"":""https://www.algaenergy.es""}","Correctness: 97% Completeness: 95% The description of AlgaEnergy is factually accurate and comprehensive based on multiple recent and authoritative sources. It is confirmed that AlgaEnergy is a Spanish biotechnology company founded in 2007 in Madrid, specializing in microalgae with applications in agriculture, nutraceuticals, cosmetics, and bioenergy[1][3][4]. The company’s international operations include presence in Spain, France, Greece, Italy, Turkey, India, Australia, USA, Mexico, and Brazil as described on their contact pages and corporate disclosures[1][4]. Augusto Rodríguez-Villa is verified as the Founder, President, and CEO [""The Org"" company leadership page], matching the leadership information provided[1]. The company’s product portfolio revolves around microalgae-based biostimulants that improve crop growth, nutrient uptake, soil health, and abiotic stress resistance through sustainable circular processes reducing agrochemical use, confirming the provided product description[1][3]. No significant crucial public fields are missing, and the information incorporates pertinent aspects such as the circular economy model and CO2 capture linked to microalgae cultivation cited in 2024 references[3]. Minor discrepancies include that some sources highlight the expansion also into aquaculture and human/animal nutrition sectors beyond the four stated client categories; however, this does not conflict with nor severely limit completeness. Overall, the data is well corroborated against primary company sources and industry news as of mid-2025. https://ag.algaenergy.com/na/agribusiness/ https://theorg.com/org/algaenergy/teams/leadership-team https://app.dealroom.co/companies/algaenergy https://ag.algaenergy.com/agribusiness/","{""clientCategories"":[""Agriculture"",""Nutraceuticals"",""Cosmetics"",""Bioenergy""],""companyDescription"":""AlgaEnergy is a biotechnology company specializing in microalgae. Their mission focuses on creating innovative and sustainable solutions to improve various industries such as agriculture, nutraceuticals, cosmetics, and bioenergy by harnessing the potential of microalgae. The company operates within the biotechnology and environmental sustainability sectors."",""geographicFocus"":""HQ: Avenida de Europa, 19, 28108 Alcobendas (Madrid), Spain; Sales Focus: International with presence in Spain, France, Greece, Italy, Turkey, India, Australia, USA, Mexico, and Brazil."",""keyExecutives"":[{""name"":""Augusto Rodríguez-Villa"",""sourceUrl"":""https://theorg.com/org/algaenergy/teams/leadership-team"",""title"":""Founder, President, and CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""AlgaEnergy offers innovative biostimulants based on microalgae, designed to optimize crop growth and yields by improving nutrient use efficiency, promoting soil health and fertility by boosting soil microbiome, and enhancing plant resistance to abiotic stresses through activation of natural defense mechanisms. Their biosolutions include: \n- Soil Health (promoting beneficial soil microorganisms)\n- Nutrient Use Efficiency (upregulating genes for nitrogen and phosphorus use)\n- Abiotic Stress (triggering plants' defense against environmental stresses).\nThe products are sustainably produced using circular processes and reduce dependence on agrochemicals and water."",""researcherNotes"":null,""sectorDescription"":""Operates in the biotechnology sector, specializing in microalgae-based sustainable solutions for agriculture and other industries."",""sources"":{""clientCategories"":""https://algaenergy.es/en/technologies"",""companyDescription"":""https://algaenergy.es/en/about-us"",""geographicFocus"":""http://www.algaenergy.es/en/contact"",""keyExecutives"":""https://theorg.com/org/algaenergy/teams/leadership-team"",""productDescription"":""https://algaenergy.es/en/solutions""},""websiteURL"":""http://www.algaenergy.es""}" -Breedr,https://www.breedr.co,,breedr.co,https://www.linkedin.com/company/breedr,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.breedr.co"", - ""companyDescription"": ""Breedr is a livestock app designed to make farms more productive by speeding up management tasks, removing complicated paperwork, and enabling better-informed business decisions. Their mission includes delivering precision tools for sustainable supply chains, improving livestock management efficiency, reducing carbon footprints by up to 28%, and finishing cattle 5 months earlier. Breedr focuses on sustainable supply chains including grass-fed and dairy beef. The company identity emphasizes innovation in livestock management, sustainability, and farmer support."", - ""productDescription"": ""Save time and improve returns using our unique individual animal management tools (Livestock App). Take control of sourcing and selling with our national online livestock market (Livestock Marketing). Unlock cash as your animals grow with our new livestock funding service (Cashflow). Precision tools for sustainable supply chains including Dairy Beef finishing animals 5 months faster reducing carbon footprint by up to 28%, and Grass Fed Beef & Lamb with complete traceability. Core product links: Livestock App (https://breedr.co/livestock-app), Livestock Marketing (https://breedr.co/livestock-market), Cow Calf & Seed Stock (https://breedr.co/suckler), Feed yards (https://breedr.co/finisher), Calf Ranch (https://breedr.co/rearer), Sheep & Goats (https://breedr.co/sheep), Grass Fed (https://breedr.co/grass-fed), Beef on Dairy (https://breedr.co/dairy-beef)."", - ""clientCategories"": [""Cow Calf & Seed Stock"", ""Feed Yards"", ""Calf Ranch"", ""Sheep & Goats"", ""Grass Fed Beef & Lamb"", ""Beef on Dairy""], - ""sectorDescription"": ""Operates in agritech, providing precision livestock management software and sustainable supply chain solutions for the global beef and livestock industry."", - ""geographicFocus"": ""HQ: 1 Lincoln House, City Fields Way, Tangmere, West Sussex, PO20 2FS, UK and Suite 306, 1515 S Capital of Texas Highway, Austin, TX 78746, USA; Sales Focus: United Kingdom, United States."", - ""keyExecutives"": [ - {""name"": ""Ian Wheal"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://breedr.co/en/team""}, - {""name"": ""James Law"", ""title"": ""COO"", ""sourceUrl"": ""https://breedr.co/en/team""}, - {""name"": ""Liam Farrell"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://breedr.co/en/team""} - ], - ""linkedDocuments"": [ - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/8e0c43a6-9a17-49f1-8a5f-f509656f8bbc"", - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/1733553f-48cb-45f1-ab6c-e5b3fdd79f6b"", - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/481412e9-5367-487e-ad28-7a7aa794ba05"", - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/e202dd06-e17d-47fe-96eb-36996aa0db08"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.breedr.co/en/"", - ""productDescription"": ""https://www.breedr.co/en/products"", - ""clientCategories"": ""https://www.breedr.co/our-farmers"", - ""geographicFocus"": ""https://www.breedr.co/en/contact-us"", - ""keyExecutives"": ""https://www.breedr.co/en/team"" - } -}","{ - ""websiteURL"": ""https://www.breedr.co"", - ""companyDescription"": ""Breedr is a livestock app designed to make farms more productive by speeding up management tasks, removing complicated paperwork, and enabling better-informed business decisions. Their mission includes delivering precision tools for sustainable supply chains, improving livestock management efficiency, reducing carbon footprints by up to 28%, and finishing cattle 5 months earlier. Breedr focuses on sustainable supply chains including grass-fed and dairy beef. The company identity emphasizes innovation in livestock management, sustainability, and farmer support."", - ""productDescription"": ""Save time and improve returns using our unique individual animal management tools (Livestock App). Take control of sourcing and selling with our national online livestock market (Livestock Marketing). Unlock cash as your animals grow with our new livestock funding service (Cashflow). Precision tools for sustainable supply chains including Dairy Beef finishing animals 5 months faster reducing carbon footprint by up to 28%, and Grass Fed Beef & Lamb with complete traceability. Core product links: Livestock App (https://breedr.co/livestock-app), Livestock Marketing (https://breedr.co/livestock-market), Cow Calf & Seed Stock (https://breedr.co/suckler), Feed yards (https://breedr.co/finisher), Calf Ranch (https://breedr.co/rearer), Sheep & Goats (https://breedr.co/sheep), Grass Fed (https://breedr.co/grass-fed), Beef on Dairy (https://breedr.co/dairy-beef)."", - ""clientCategories"": [""Cow Calf & Seed Stock"", ""Feed Yards"", ""Calf Ranch"", ""Sheep & Goats"", ""Grass Fed Beef & Lamb"", ""Beef on Dairy""], - ""sectorDescription"": ""Operates in agritech, providing precision livestock management software and sustainable supply chain solutions for the global beef and livestock industry."", - ""geographicFocus"": ""HQ: 1 Lincoln House, City Fields Way, Tangmere, West Sussex, PO20 2FS, UK and Suite 306, 1515 S Capital of Texas Highway, Austin, TX 78746, USA; Sales Focus: United Kingdom, United States."", - ""keyExecutives"": [ - {""name"": ""Ian Wheal"", ""title"": ""Founder & CEO"", ""sourceUrl"": ""https://breedr.co/en/team""}, - {""name"": ""James Law"", ""title"": ""COO"", ""sourceUrl"": ""https://breedr.co/en/team""}, - {""name"": ""Liam Farrell"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://breedr.co/en/team""} - ], - ""linkedDocuments"": [ - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/8e0c43a6-9a17-49f1-8a5f-f509656f8bbc"", - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/1733553f-48cb-45f1-ab6c-e5b3fdd79f6b"", - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/481412e9-5367-487e-ad28-7a7aa794ba05"", - ""https://cta-redirect.hubspot.com/cta/redirect/8055559/e202dd06-e17d-47fe-96eb-36996aa0db08"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.breedr.co/en/"", - ""productDescription"": ""https://www.breedr.co/en/products"", - ""clientCategories"": ""https://www.breedr.co/our-farmers"", - ""geographicFocus"": ""https://www.breedr.co/en/contact-us"", - ""keyExecutives"": ""https://www.breedr.co/en/team"" - } -}",[],"{ - ""websiteURL"": ""https://www.breedr.co"", - ""companyDescription"": ""Breedr is a livestock app and data platform transforming the global beef and livestock industry by enabling precision livestock management, streamlining farm operations, and supporting sustainable supply chains. The company provides farmers with digital tools to improve animal health, growth, and profitability while reducing carbon footprints by up to 28%. Breedr emphasizes innovation and sustainability with programs that accelerate cattle finishing by 5 months and promote full traceability from conception to carcass, supporting grass-fed and dairy beef sectors."", - ""productDescription"": ""Breedr delivers an integrated livestock management platform comprising a precision Livestock App for individual animal tracking, a national online Livestock Marketplace for transparent trading, and a Livestock Funding service to unlock cash flow as animals grow. The platform supports diverse client categories including Cow Calf & Seed Stock, Feed Yards, Calf Ranches, Sheep & Goats, Grass Fed Beef & Lamb, and Beef on Dairy. Its precision tools enable improved growth rates, better-informed business decisions, and sustainable beef supply chains with comprehensive traceability."", - ""clientCategories"": [ - ""Cow Calf & Seed Stock"", - ""Feed Yards"", - ""Calf Ranch"", - ""Sheep & Goats"", - ""Grass Fed Beef & Lamb"", - ""Beef on Dairy"" - ], - ""sectorDescription"": ""Agritech company specializing in precision livestock management software and sustainable supply chain solutions for the global beef and livestock industry."", - ""geographicFocus"": ""Primary sales focus in the United Kingdom and United States with headquarters in West Sussex, UK, and Austin, Texas, USA."", - ""keyExecutives"": [ - { - ""name"": ""Ian Wheal"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://breedr.co/en/team"" - }, - { - ""name"": ""James Law"", - ""title"": ""COO"", - ""sourceUrl"": ""https://breedr.co/en/team"" - }, - { - ""name"": ""Liam Farrell"", - ""title"": ""Chief Technical Officer"", - ""sourceUrl"": ""https://breedr.co/en/team"" - } - ], - ""researcherNotes"": ""Entity disambiguation is confirmed by domain match (breedr.co), headquarters locations in UK and USA, and agritech livestock management context. Geographic focus confirmed via official contact and sales information. Key executives verified from the company team page. No conflicts detected. LinkedIn leadership data was not available to supplement existing exec info."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.breedr.co/en/"", - ""productDescription"": ""https://www.breedr.co/en/products"", - ""clientCategories"": ""https://www.breedr.co/our-farmers"", - ""geographicFocus"": ""https://www.breedr.co/en/contact-us"", - ""keyExecutives"": ""https://breedr.co/en/team"" - } -}","{""clientCategories"":[""Cow Calf & Seed Stock"",""Feed Yards"",""Calf Ranch"",""Sheep & Goats"",""Grass Fed Beef & Lamb"",""Beef on Dairy""],""companyDescription"":""Breedr is a livestock app and data platform transforming the global beef and livestock industry by enabling precision livestock management, streamlining farm operations, and supporting sustainable supply chains. The company provides farmers with digital tools to improve animal health, growth, and profitability while reducing carbon footprints by up to 28%. Breedr emphasizes innovation and sustainability with programs that accelerate cattle finishing by 5 months and promote full traceability from conception to carcass, supporting grass-fed and dairy beef sectors."",""geographicFocus"":""Primary sales focus in the United Kingdom and United States with headquarters in West Sussex, UK, and Austin, Texas, USA."",""keyExecutives"":[{""name"":""Ian Wheal"",""sourceUrl"":""https://breedr.co/en/team"",""title"":""Founder & CEO""},{""name"":""James Law"",""sourceUrl"":""https://breedr.co/en/team"",""title"":""COO""},{""name"":""Liam Farrell"",""sourceUrl"":""https://breedr.co/en/team"",""title"":""Chief Technical Officer""}],""missingImportantFields"":[],""productDescription"":""Breedr delivers an integrated livestock management platform comprising a precision Livestock App for individual animal tracking, a national online Livestock Marketplace for transparent trading, and a Livestock Funding service to unlock cash flow as animals grow. The platform supports diverse client categories including Cow Calf & Seed Stock, Feed Yards, Calf Ranches, Sheep & Goats, Grass Fed Beef & Lamb, and Beef on Dairy. Its precision tools enable improved growth rates, better-informed business decisions, and sustainable beef supply chains with comprehensive traceability."",""researcherNotes"":""Entity disambiguation is confirmed by domain match (breedr.co), headquarters locations in UK and USA, and agritech livestock management context. Geographic focus confirmed via official contact and sales information. Key executives verified from the company team page. No conflicts detected. LinkedIn leadership data was not available to supplement existing exec info."",""sectorDescription"":""Agritech company specializing in precision livestock management software and sustainable supply chain solutions for the global beef and livestock industry."",""sources"":{""clientCategories"":""https://www.breedr.co/our-farmers"",""companyDescription"":""https://www.breedr.co/en/"",""geographicFocus"":""https://www.breedr.co/en/contact-us"",""keyExecutives"":""https://breedr.co/en/team"",""productDescription"":""https://www.breedr.co/en/products""},""websiteURL"":""https://www.breedr.co""}","Correctness: 98% Completeness: 95% The information about Breedr is highly accurate and well corroborated by multiple official company sources from 2024-2025. The company is correctly described as a livestock app and data platform focused on precision livestock management, improving animal health and profitability while reducing carbon footprints, with a strong emphasis on sustainability and innovation, including accelerating cattle finishing and traceability (https://www.breedr.co/en/, https://www.breedr.co/team). The stated geographic focus on the United Kingdom and United States with headquarters in West Sussex, UK, and Austin, Texas, USA, aligns with official contact details and corporate presence (https://www.breedr.co/en/contact-us, https://highperformr.ai/company/breedr). The executive team listing Ian Wheal as Founder & CEO, James Law as COO, and Liam Farrell as CTO is directly confirmed on the company team page as of 2025 (https://www.breedr.co/team). Breedr’s product offerings—including the Precision Livestock App, online Livestock Marketplace, and Livestock Funding service—are accurately described (https://www.breedr.co/en/products). Minor deductions for completeness stem from no explicit mention in the input of Breedr's Australian expansion, which is noted but not central, and limited external independent verification outside company sources. Nonetheless, all core factual claims about Breedr’s identity, leadership, location, offerings, and mission are current and well-supported by company-controlled official references dated within the last year.","{""clientCategories"":[""Cow Calf & Seed Stock"",""Feed Yards"",""Calf Ranch"",""Sheep & Goats"",""Grass Fed Beef & Lamb"",""Beef on Dairy""],""companyDescription"":""Breedr is a livestock app designed to make farms more productive by speeding up management tasks, removing complicated paperwork, and enabling better-informed business decisions. Their mission includes delivering precision tools for sustainable supply chains, improving livestock management efficiency, reducing carbon footprints by up to 28%, and finishing cattle 5 months earlier. Breedr focuses on sustainable supply chains including grass-fed and dairy beef. The company identity emphasizes innovation in livestock management, sustainability, and farmer support."",""geographicFocus"":""HQ: 1 Lincoln House, City Fields Way, Tangmere, West Sussex, PO20 2FS, UK and Suite 306, 1515 S Capital of Texas Highway, Austin, TX 78746, USA; Sales Focus: United Kingdom, United States."",""keyExecutives"":[{""name"":""Ian Wheal"",""sourceUrl"":""https://breedr.co/en/team"",""title"":""Founder & CEO""},{""name"":""James Law"",""sourceUrl"":""https://breedr.co/en/team"",""title"":""COO""},{""name"":""Liam Farrell"",""sourceUrl"":""https://breedr.co/en/team"",""title"":""Chief Technical Officer""}],""linkedDocuments"":[""https://cta-redirect.hubspot.com/cta/redirect/8055559/8e0c43a6-9a17-49f1-8a5f-f509656f8bbc"",""https://cta-redirect.hubspot.com/cta/redirect/8055559/1733553f-48cb-45f1-ab6c-e5b3fdd79f6b"",""https://cta-redirect.hubspot.com/cta/redirect/8055559/481412e9-5367-487e-ad28-7a7aa794ba05"",""https://cta-redirect.hubspot.com/cta/redirect/8055559/e202dd06-e17d-47fe-96eb-36996aa0db08""],""missingImportantFields"":[],""productDescription"":""Save time and improve returns using our unique individual animal management tools (Livestock App). Take control of sourcing and selling with our national online livestock market (Livestock Marketing). Unlock cash as your animals grow with our new livestock funding service (Cashflow). Precision tools for sustainable supply chains including Dairy Beef finishing animals 5 months faster reducing carbon footprint by up to 28%, and Grass Fed Beef & Lamb with complete traceability. Core product links: Livestock App (https://breedr.co/livestock-app), Livestock Marketing (https://breedr.co/livestock-market), Cow Calf & Seed Stock (https://breedr.co/suckler), Feed yards (https://breedr.co/finisher), Calf Ranch (https://breedr.co/rearer), Sheep & Goats (https://breedr.co/sheep), Grass Fed (https://breedr.co/grass-fed), Beef on Dairy (https://breedr.co/dairy-beef)."",""researcherNotes"":null,""sectorDescription"":""Operates in agritech, providing precision livestock management software and sustainable supply chain solutions for the global beef and livestock industry."",""sources"":{""clientCategories"":""https://www.breedr.co/our-farmers"",""companyDescription"":""https://www.breedr.co/en/"",""geographicFocus"":""https://www.breedr.co/en/contact-us"",""keyExecutives"":""https://www.breedr.co/en/team"",""productDescription"":""https://www.breedr.co/en/products""},""websiteURL"":""https://www.breedr.co""}" -Prediktor Instruments AS,https://www.prediktorinstruments.com,,prediktorinstruments.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.prediktorinstruments.com"", - ""companyDescription"": ""Prediktor is a leading asset management and real-time data management solutions provider to renewable and energy asset owners, offering cutting-edge data-driven solutions and customer service to energy companies worldwide. This description is derived from the information about Prediktor as acquired by TGS, which highlights its mission around advanced data management in the energy sector."", - ""productDescription"": ""Prediktor's core offerings are focused on asset and data management solutions for renewable energy projects. While specific standalone products were not explicitly detailed under the original Prediktor Instruments domain, the acquisition by TGS indicates a portfolio including various data libraries and technology solutions related to energy data, imaging, acquisition, digital, and application tools across seismic, well, carbon, wind, and solar data domains."", - ""clientCategories"": [""Renewable Energy Companies"", ""Energy Asset Owners"", ""Industrial Energy Sector""], - ""sectorDescription"": ""Operates in the renewable energy asset management and real-time data solutions sector, providing advanced technology to optimize energy production and asset performance."", - ""geographicFocus"": ""HQ: Fredrikstad, Norway; Sales Focus: Global including North America, Latin America, Africa, Mediterranean & Middle East, Asia Pacific, and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Kristian Johansen"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://tgs.com/about-us/leadership"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Original company website (prediktorinstruments.com) was not operable or accessible; data sourced from the acquiring company's website (tgs.com) and related public information about Prediktor's acquisition and integration."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tgs.com/?hsLang=en"", - ""productDescription"": ""https://tgs.com/?hsLang=en"", - ""clientCategories"": ""https://tgs.com/?hsLang=en"", - ""geographicFocus"": ""https://tgs.com/contact-us"", - ""keyExecutives"": ""https://tgs.com/about-us/leadership"" - } -}","{ - ""websiteURL"": ""https://www.prediktorinstruments.com"", - ""companyDescription"": ""Prediktor is a leading asset management and real-time data management solutions provider to renewable and energy asset owners, offering cutting-edge data-driven solutions and customer service to energy companies worldwide. This description is derived from the information about Prediktor as acquired by TGS, which highlights its mission around advanced data management in the energy sector."", - ""productDescription"": ""Prediktor's core offerings are focused on asset and data management solutions for renewable energy projects. While specific standalone products were not explicitly detailed under the original Prediktor Instruments domain, the acquisition by TGS indicates a portfolio including various data libraries and technology solutions related to energy data, imaging, acquisition, digital, and application tools across seismic, well, carbon, wind, and solar data domains."", - ""clientCategories"": [""Renewable Energy Companies"", ""Energy Asset Owners"", ""Industrial Energy Sector""], - ""sectorDescription"": ""Operates in the renewable energy asset management and real-time data solutions sector, providing advanced technology to optimize energy production and asset performance."", - ""geographicFocus"": ""HQ: Fredrikstad, Norway; Sales Focus: Global including North America, Latin America, Africa, Mediterranean & Middle East, Asia Pacific, and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Kristian Johansen"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://tgs.com/about-us/leadership"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Original company website (prediktorinstruments.com) was not operable or accessible; data sourced from the acquiring company's website (tgs.com) and related public information about Prediktor's acquisition and integration."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tgs.com/?hsLang=en"", - ""productDescription"": ""https://tgs.com/?hsLang=en"", - ""clientCategories"": ""https://tgs.com/?hsLang=en"", - ""geographicFocus"": ""https://tgs.com/contact-us"", - ""keyExecutives"": ""https://tgs.com/about-us/leadership"" - } -}",[],"{ - ""websiteURL"": ""https://www.prediktorinstruments.com"", - ""companyDescription"": ""Prediktor is a leading asset management and real-time data management solutions provider specializing in renewable and energy asset ownership. Founded in 1995 and headquartered in Fredrikstad, Norway, Prediktor delivers cutting-edge data-driven technology and operational intelligence designed to optimize energy production and asset performance globally. It is recognized for pioneering OPC UA standards in industrial interoperability and serving a worldwide customer base through advanced IoT data integration and semantic data contextualization."", - ""productDescription"": ""Prediktor offers advanced asset and data management systems for renewable energy projects, including SCADA systems and the MAP Gateway platform, which aggregates, standardizes, and semantically interprets operational data using OPC UA protocols and AI. Its flagship product, Prediktor Data Gateway, provides real-time, contextualized operational data enabling predictive maintenance, machine learning, and automation to improve decision-making and operational performance across solar, wind, hydro, and other energy assets."", - ""clientCategories"": [ - ""Renewable Energy Companies"", - ""Energy Asset Owners"", - ""Industrial Energy Sector"" - ], - ""sectorDescription"": ""Renewable energy asset management and real-time data solutions provider specializing in advanced technology for optimizing energy production and asset performance."", - ""geographicFocus"": ""Global operations with headquarters in Fredrikstad, Norway, and sales focus across North America, Latin America, Africa, Mediterranean & Middle East, Asia Pacific, and Europe."", - ""keyExecutives"": [ - { - ""name"": ""Kristian Johansen"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://tgs.com/about-us/leadership"" - } - ], - ""researcherNotes"": ""The entity was confidently identified as Prediktor Instruments, headquartered in Fredrikstad, Norway, and acquired by TGS in July 2022. The original Prediktor website is currently inaccessible, so information was primarily sourced from TGS and related authoritative third-party documentation. The geographic focus and client categories are consistent across sources. No discrepancies found. No additional senior leadership information available from LinkedIn."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://tgs.com/?hsLang=en"", - ""productDescription"": ""https://tgs.com/digital/data-gateway"", - ""clientCategories"": ""https://tgs.com/?hsLang=en"", - ""geographicFocus"": ""https://tgs.com/contact-us"", - ""keyExecutives"": ""https://tgs.com/about-us/leadership"" - } -}","{""clientCategories"":[""Renewable Energy Companies"",""Energy Asset Owners"",""Industrial Energy Sector""],""companyDescription"":""Prediktor is a leading asset management and real-time data management solutions provider specializing in renewable and energy asset ownership. Founded in 1995 and headquartered in Fredrikstad, Norway, Prediktor delivers cutting-edge data-driven technology and operational intelligence designed to optimize energy production and asset performance globally. It is recognized for pioneering OPC UA standards in industrial interoperability and serving a worldwide customer base through advanced IoT data integration and semantic data contextualization."",""geographicFocus"":""Global operations with headquarters in Fredrikstad, Norway, and sales focus across North America, Latin America, Africa, Mediterranean & Middle East, Asia Pacific, and Europe."",""keyExecutives"":[{""name"":""Kristian Johansen"",""sourceUrl"":""https://tgs.com/about-us/leadership"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Prediktor offers advanced asset and data management systems for renewable energy projects, including SCADA systems and the MAP Gateway platform, which aggregates, standardizes, and semantically interprets operational data using OPC UA protocols and AI. Its flagship product, Prediktor Data Gateway, provides real-time, contextualized operational data enabling predictive maintenance, machine learning, and automation to improve decision-making and operational performance across solar, wind, hydro, and other energy assets."",""researcherNotes"":""The entity was confidently identified as Prediktor Instruments, headquartered in Fredrikstad, Norway, and acquired by TGS in July 2022. The original Prediktor website is currently inaccessible, so information was primarily sourced from TGS and related authoritative third-party documentation. The geographic focus and client categories are consistent across sources. No discrepancies found. No additional senior leadership information available from LinkedIn."",""sectorDescription"":""Renewable energy asset management and real-time data solutions provider specializing in advanced technology for optimizing energy production and asset performance."",""sources"":{""clientCategories"":""https://tgs.com/?hsLang=en"",""companyDescription"":""https://tgs.com/?hsLang=en"",""geographicFocus"":""https://tgs.com/contact-us"",""keyExecutives"":""https://tgs.com/about-us/leadership"",""productDescription"":""https://tgs.com/digital/data-gateway""},""websiteURL"":""https://www.prediktorinstruments.com""}","Correctness: 98% Completeness: 95% The provided information about Prediktor is highly accurate and well-supported by multiple authoritative sources. Prediktor was founded in 1995, is headquartered in Fredrikstad, Norway, and focuses on asset management and real-time data management solutions for renewable energy and industrial assets, consistent with TGS’s July 2022 acquisition announcement[1][5]. Kristian Johansen is confirmed as CEO of TGS, the parent company, but no direct CEO for Prediktor post-acquisition is listed, which aligns with the absence of publicly available senior leadership detail beyond that in TGS sources[1]. The product descriptions, including Prediktor Data Gateway™, advanced SCADA, semantic data contextualization with OPC UA protocols, and AI-driven operational intelligence, are corroborated by OPC Foundation membership info and TGS’s web resources[1][3]. The global footprint spanning key regions and the client focus on renewable asset owners matches TGS’s data and third-party profiles[1][3][5]. Minor incompleteness exists because the original Prediktor website is currently inaccessible, limiting direct company-controlled inputs and detailed leadership beyond CEO scope, but critical founding, product, and geographic data are documented reliably. No major factual contradictions were found. References: https://www.tgs.com/press-releases/tgs-acquires-prediktor, https://opcfoundation.org/members/view/306, https://www.tgs.com/about-us/leadership, https://www.alpha.no/transactions?name=tgs-acquires-prediktor","{""clientCategories"":[""Renewable Energy Companies"",""Energy Asset Owners"",""Industrial Energy Sector""],""companyDescription"":""Prediktor is a leading asset management and real-time data management solutions provider to renewable and energy asset owners, offering cutting-edge data-driven solutions and customer service to energy companies worldwide. This description is derived from the information about Prediktor as acquired by TGS, which highlights its mission around advanced data management in the energy sector."",""geographicFocus"":""HQ: Fredrikstad, Norway; Sales Focus: Global including North America, Latin America, Africa, Mediterranean & Middle East, Asia Pacific, and Europe."",""keyExecutives"":[{""name"":""Kristian Johansen"",""sourceUrl"":""https://tgs.com/about-us/leadership"",""title"":""CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Prediktor's core offerings are focused on asset and data management solutions for renewable energy projects. While specific standalone products were not explicitly detailed under the original Prediktor Instruments domain, the acquisition by TGS indicates a portfolio including various data libraries and technology solutions related to energy data, imaging, acquisition, digital, and application tools across seismic, well, carbon, wind, and solar data domains."",""researcherNotes"":""Original company website (prediktorinstruments.com) was not operable or accessible; data sourced from the acquiring company's website (tgs.com) and related public information about Prediktor's acquisition and integration."",""sectorDescription"":""Operates in the renewable energy asset management and real-time data solutions sector, providing advanced technology to optimize energy production and asset performance."",""sources"":{""clientCategories"":""https://tgs.com/?hsLang=en"",""companyDescription"":""https://tgs.com/?hsLang=en"",""geographicFocus"":""https://tgs.com/contact-us"",""keyExecutives"":""https://tgs.com/about-us/leadership"",""productDescription"":""https://tgs.com/?hsLang=en""},""websiteURL"":""https://www.prediktorinstruments.com""}" -TOOPI Organics,https://toopi-organics.com/,"BNP Paribas, Clay Capital, Edaphon, IRDI SORIDEC Gestion, Johes, MAIF Impact, MakeSense, Meusinvest (Noshaq)",toopi-organics.com,https://www.linkedin.com/company/toopi-organics/,"{""seniorLeadership"":[{""name"":""Adrien Dumaine-Martin"",""title"":""CFO"",""linkedInURL"":""https://www.linkedin.com/in/adrien-dumaine-martin-6a593847""},{""name"":""Frédéric FAVROT"",""title"":""Directeur général"",""linkedInURL"":""https://www.linkedin.com/in/frédéric-favrot-7906937b""}]}","{""seniorLeadership"":[{""name"":""Adrien Dumaine-Martin"",""title"":""CFO"",""linkedInURL"":""https://www.linkedin.com/in/adrien-dumaine-martin-6a593847""},{""name"":""Frédéric FAVROT"",""title"":""Directeur général"",""linkedInURL"":""https://www.linkedin.com/in/frédéric-favrot-7906937b""}]}","{ - ""websiteURL"": ""https://toopi-organics.com/"", - ""companyDescription"": ""NOTRE MISSION: Sortir l’urine du cycle de l’eau, et la transformer en ressource pour une agriculture performante, résiliente, et écologique. Toopi Organics was founded in 2019 by Michael Roes. The company collects and recycles human urine to produce biostimulants and microbial products for agriculture, aiming to provide alternatives to chemical fertilizers. They utilize a filtration and fermentation process to sanitize urine and use it as a growth medium for beneficial bacteria."", - ""productDescription"": ""The company's core offerings include ecological fertilizer alternatives sourced from human urine. Products include Lactopi start and Lactipi plus, which are urine-derived biostimulants designed to be diluted and applied for various crop types. These products aim to reduce chemical fertilizer use, lower carbon emissions, and promote local circular resource valorization. Product sheets and safety data sheets are provided for these offerings."", - ""clientCategories"": [""Event organizers"", ""Facility managers of sites with high-traffic toilets"", ""Farmers using biostimulants""], - ""sectorDescription"": ""Operates in the sustainable agriculture and waste recycling sector, providing urine-derived biostimulants and microbial products as alternatives to chemical fertilizers."", - ""geographicFocus"": ""HQ: 14 rue ZAE Ecopôle 33190 Loupiac de la Réole, France; Sales Focus: France, Belgium"", - ""keyExecutives"": [ - {""name"": ""Michael ROES"", ""title"": ""Fondateur & Président (Founder & President)"", ""sourceUrl"": ""https://toopi-organics.com/equipe/""}, - {""name"": ""Frédéric FAVROT"", ""title"": ""Directeur Général (General Director)"", ""sourceUrl"": ""https://toopi-organics.com/equipe/""}, - {""name"": ""René MESNAGE"", ""title"": ""Directeur Général Adjoint (Deputy General Director)"", ""sourceUrl"": ""https://toopi-organics.com/equipe/""} - ], - ""linkedDocuments"": [""https://toopi-organics.com/wp-content/uploads/2025/02/FDS_LACTIPI-PLUS_V4.1_250207_FR.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://toopi-organics.com/about/"", - ""productDescription"": ""https://toopi-organics.com/nos-produits/"", - ""clientCategories"": ""https://toopi-organics.com/"", - ""geographicFocus"": ""https://toopi-organics.com/contact/"", - ""keyExecutives"": ""https://toopi-organics.com/equipe/"" - } -}","{ - ""websiteURL"": ""https://toopi-organics.com/"", - ""companyDescription"": ""NOTRE MISSION: Sortir l’urine du cycle de l’eau, et la transformer en ressource pour une agriculture performante, résiliente, et écologique. Toopi Organics was founded in 2019 by Michael Roes. The company collects and recycles human urine to produce biostimulants and microbial products for agriculture, aiming to provide alternatives to chemical fertilizers. They utilize a filtration and fermentation process to sanitize urine and use it as a growth medium for beneficial bacteria."", - ""productDescription"": ""The company's core offerings include ecological fertilizer alternatives sourced from human urine. Products include Lactopi start and Lactipi plus, which are urine-derived biostimulants designed to be diluted and applied for various crop types. These products aim to reduce chemical fertilizer use, lower carbon emissions, and promote local circular resource valorization. Product sheets and safety data sheets are provided for these offerings."", - ""clientCategories"": [""Event organizers"", ""Facility managers of sites with high-traffic toilets"", ""Farmers using biostimulants""], - ""sectorDescription"": ""Operates in the sustainable agriculture and waste recycling sector, providing urine-derived biostimulants and microbial products as alternatives to chemical fertilizers."", - ""geographicFocus"": ""HQ: 14 rue ZAE Ecopôle 33190 Loupiac de la Réole, France; Sales Focus: France, Belgium"", - ""keyExecutives"": [ - {""name"": ""Michael ROES"", ""title"": ""Fondateur & Président (Founder & President)"", ""sourceUrl"": ""https://toopi-organics.com/equipe/""}, - {""name"": ""Frédéric FAVROT"", ""title"": ""Directeur Général (General Director)"", ""sourceUrl"": ""https://toopi-organics.com/equipe/""}, - {""name"": ""René MESNAGE"", ""title"": ""Directeur Général Adjoint (Deputy General Director)"", ""sourceUrl"": ""https://toopi-organics.com/equipe/""} - ], - ""linkedDocuments"": [""https://toopi-organics.com/wp-content/uploads/2025/02/FDS_LACTIPI-PLUS_V4.1_250207_FR.pdf""], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://toopi-organics.com/about/"", - ""productDescription"": ""https://toopi-organics.com/nos-produits/"", - ""clientCategories"": ""https://toopi-organics.com/"", - ""geographicFocus"": ""https://toopi-organics.com/contact/"", - ""keyExecutives"": ""https://toopi-organics.com/equipe/"" - } -}",[],"{ - ""websiteURL"": ""https://toopi-organics.com"", - ""companyDescription"": ""Toopi Organics, founded in 2019 by Michael Roes and headquartered in Loupiac-de-la-Réole, France, is a biotechnology company specializing in transforming human urine into microbial plant biostimulants for sustainable agriculture. Their mission is to extract urine from the water cycle and convert it into an ecological resource that supports resilient and high-performance farming. The company provides alternatives to chemical fertilizers by sanitizing urine through filtration and fermentation processes to cultivate beneficial bacteria, targeting farmers, event organizers, and facility managers in France and Belgium."", - ""productDescription"": ""Toopi Organics produces ecological fertilizer alternatives derived from human urine, including biostimulant products such as Lactopi start and Lactipi plus. These products are designed to be diluted and applied across various crop types to reduce chemical fertilizer dependency, decrease carbon emissions, and encourage local circular resource valorization. Product sheets and safety data sheets accompany these offerings to ensure safe and effective use in agriculture."", - ""clientCategories"": [ - ""Event Organizers"", - ""Facility Managers of Sites with High-Traffic Toilets"", - ""Farmers Using Biostimulants"" - ], - ""sectorDescription"": ""Biotechnology company focused on sustainable agriculture and waste recycling through urine-derived biostimulants and microbial products as alternatives to chemical fertilizers."", - ""geographicFocus"": ""Primary focus on France and Belgium, with headquarters in Loupiac-de-la-Réole, France."", - ""keyExecutives"": [ - { - ""name"": ""Michael ROES"", - ""title"": ""Fondateur & Président (Founder & President)"", - ""sourceUrl"": ""https://toopi-organics.com/equipe/"" - }, - { - ""name"": ""Frédéric FAVROT"", - ""title"": ""Directeur Général (General Director)"", - ""sourceUrl"": ""https://toopi-organics.com/equipe/"" - }, - { - ""name"": ""René MESNAGE"", - ""title"": ""Directeur Général Adjoint (Deputy General Director)"", - ""sourceUrl"": ""https://toopi-organics.com/equipe/"" - }, - { - ""name"": ""Adrien Dumaine-Martin"", - ""title"": ""CFO"", - ""sourceUrl"": ""https://www.linkedin.com/in/adrien-dumaine-martin-6a593847"" - } - ], - ""researcherNotes"": ""The entity was confirmed as Toopi Organics, headquartered in Loupiac-de-la-Réole, France, founded in 2019, matching key details including product niche and executive identities from official website and LinkedIn profiles. Geographic focus is primarily France and Belgium as detailed on the official site. CFO Adrien Dumaine-Martin was not listed on the company site but confirmed via LinkedIn. No significant conflicting information was found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://toopi-organics.com/about/"", - ""productDescription"": ""https://toopi-organics.com/nos-produits/"", - ""clientCategories"": ""https://toopi-organics.com/"", - ""geographicFocus"": ""https://toopi-organics.com/contact/"", - ""keyExecutives"": ""https://toopi-organics.com/equipe/"" - } -}","{""clientCategories"":[""Event Organizers"",""Facility Managers of Sites with High-Traffic Toilets"",""Farmers Using Biostimulants""],""companyDescription"":""Toopi Organics, founded in 2019 by Michael Roes and headquartered in Loupiac-de-la-Réole, France, is a biotechnology company specializing in transforming human urine into microbial plant biostimulants for sustainable agriculture. Their mission is to extract urine from the water cycle and convert it into an ecological resource that supports resilient and high-performance farming. The company provides alternatives to chemical fertilizers by sanitizing urine through filtration and fermentation processes to cultivate beneficial bacteria, targeting farmers, event organizers, and facility managers in France and Belgium."",""geographicFocus"":""Primary focus on France and Belgium, with headquarters in Loupiac-de-la-Réole, France."",""keyExecutives"":[{""name"":""Michael ROES"",""sourceUrl"":""https://toopi-organics.com/equipe/"",""title"":""Fondateur & Président (Founder & President)""},{""name"":""Frédéric FAVROT"",""sourceUrl"":""https://toopi-organics.com/equipe/"",""title"":""Directeur Général (General Director)""},{""name"":""René MESNAGE"",""sourceUrl"":""https://toopi-organics.com/equipe/"",""title"":""Directeur Général Adjoint (Deputy General Director)""},{""name"":""Adrien Dumaine-Martin"",""sourceUrl"":""https://www.linkedin.com/in/adrien-dumaine-martin-6a593847"",""title"":""CFO""}],""missingImportantFields"":[],""productDescription"":""Toopi Organics produces ecological fertilizer alternatives derived from human urine, including biostimulant products such as Lactopi start and Lactipi plus. These products are designed to be diluted and applied across various crop types to reduce chemical fertilizer dependency, decrease carbon emissions, and encourage local circular resource valorization. Product sheets and safety data sheets accompany these offerings to ensure safe and effective use in agriculture."",""researcherNotes"":""The entity was confirmed as Toopi Organics, headquartered in Loupiac-de-la-Réole, France, founded in 2019, matching key details including product niche and executive identities from official website and LinkedIn profiles. Geographic focus is primarily France and Belgium as detailed on the official site. CFO Adrien Dumaine-Martin was not listed on the company site but confirmed via LinkedIn. No significant conflicting information was found."",""sectorDescription"":""Biotechnology company focused on sustainable agriculture and waste recycling through urine-derived biostimulants and microbial products as alternatives to chemical fertilizers."",""sources"":{""clientCategories"":""https://toopi-organics.com/"",""companyDescription"":""https://toopi-organics.com/about/"",""geographicFocus"":""https://toopi-organics.com/contact/"",""keyExecutives"":""https://toopi-organics.com/equipe/"",""productDescription"":""https://toopi-organics.com/nos-produits/""},""websiteURL"":""https://toopi-organics.com""}",,"{""clientCategories"":[""Event organizers"",""Facility managers of sites with high-traffic toilets"",""Farmers using biostimulants""],""companyDescription"":""NOTRE MISSION: Sortir l’urine du cycle de l’eau, et la transformer en ressource pour une agriculture performante, résiliente, et écologique. Toopi Organics was founded in 2019 by Michael Roes. The company collects and recycles human urine to produce biostimulants and microbial products for agriculture, aiming to provide alternatives to chemical fertilizers. They utilize a filtration and fermentation process to sanitize urine and use it as a growth medium for beneficial bacteria."",""geographicFocus"":""HQ: 14 rue ZAE Ecopôle 33190 Loupiac de la Réole, France; Sales Focus: France, Belgium"",""keyExecutives"":[{""name"":""Michael ROES"",""sourceUrl"":""https://toopi-organics.com/equipe/"",""title"":""Fondateur & Président (Founder & President)""},{""name"":""Frédéric FAVROT"",""sourceUrl"":""https://toopi-organics.com/equipe/"",""title"":""Directeur Général (General Director)""},{""name"":""René MESNAGE"",""sourceUrl"":""https://toopi-organics.com/equipe/"",""title"":""Directeur Général Adjoint (Deputy General Director)""}],""linkedDocuments"":[""https://toopi-organics.com/wp-content/uploads/2025/02/FDS_LACTIPI-PLUS_V4.1_250207_FR.pdf""],""missingImportantFields"":[],""productDescription"":""The company's core offerings include ecological fertilizer alternatives sourced from human urine. Products include Lactopi start and Lactipi plus, which are urine-derived biostimulants designed to be diluted and applied for various crop types. These products aim to reduce chemical fertilizer use, lower carbon emissions, and promote local circular resource valorization. Product sheets and safety data sheets are provided for these offerings."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable agriculture and waste recycling sector, providing urine-derived biostimulants and microbial products as alternatives to chemical fertilizers."",""sources"":{""clientCategories"":""https://toopi-organics.com/"",""companyDescription"":""https://toopi-organics.com/about/"",""geographicFocus"":""https://toopi-organics.com/contact/"",""keyExecutives"":""https://toopi-organics.com/equipe/"",""productDescription"":""https://toopi-organics.com/nos-produits/""},""websiteURL"":""https://toopi-organics.com/""}" -Fertimed,https://fertimed.fr/,UGFS,fertimed.fr,https://www.linkedin.com/company/fertimed-international,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://fertimed.fr/"", - ""companyDescription"": ""Nous accompagnons le développement de l’agriculture durable sur la zone de l’Afrique du nord et Moyen orient. La qualité de nos produits confirme notre engagement dans l’agriculture durable en aidant les cultures dans l’économie de l’eau, un meilleur entretien des sols et le prolongement du cycle des cultures. Notre équipe proactive est là pour vous conseiller techniquement et vous assister dans le processus logistique. La solution Fertimed : Conseil et Support technique, Présence et écoute, Des solutions de nutrition efficaces, Accompagnement commercial et marketing. Fertimed is a leader in plant nutrition and addressing challenges for sustainable advancement of global agriculture. They operate in the agriculture/nutrition sector focusing on sustainable crop evolution and providing effective plant nutrition products. Their approach integrates economic, social, and environmental dimensions, supporting UN Sustainable Development Goals. Their products are designed to improve crop efficiency, reduce environmental impact, and support small producers, especially in developing countries."", - ""productDescription"": ""Our core products and solutions for effective crop nutrition include:\n- Nutrition-KNitrate de Potassium\n- Nutrition-SOP Sulfate de potassium\n- Nutrition-CAL Nitrate de Calcium\n- Nutrition-MAP Mono Ammonium Phosphate\n- Nutrition-MKP Mono Potassium Phosphate\n- Nutrition-MgN Magnesium Nitrate\n- Nutrition-MgS Sulfate de magnésium\n- Oligo Fe 6% EDDHA chelated soluble iron\nThese products support fertility through various application methods like foliar, hydroponics, ferti-irrigation, and soil amendment."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agriculture and plant nutrition sector, focusing on sustainable crop evolution and environmentally friendly fertilizer solutions primarily for developing countries."", - ""geographicFocus"": ""HQ: Rue Badem Powell-3400 Montpellier, France; Sales Focus: North Africa, Middle East, Southeast Asia, Africa, South America"", - ""keyExecutives"": [ - { - ""name"": ""Joaquín Cartagena Galvez"", - ""title"": ""Directeur général / Managing Director"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Fatima Zahra Taznagte"", - ""title"": ""Responsable Commercial Maroc / Morocco Country Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Khaled Alaya"", - ""title"": ""Responsable Commercial Algérie et Tunisie / Algeria & Tunisia Country Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Ahmed Ali"", - ""title"": ""Egypt Country Sales Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories data not found on the website despite searching multiple relevant pages."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://fertimed.fr/"", - ""productDescription"": ""https://fertimed.fr/filter-products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://fertimed.fr/en/sustainability"", - ""keyExecutives"": ""https://fertimed.fr/en/"" - } -}","{ - ""websiteURL"": ""https://fertimed.fr/"", - ""companyDescription"": ""Nous accompagnons le développement de l’agriculture durable sur la zone de l’Afrique du nord et Moyen orient. La qualité de nos produits confirme notre engagement dans l’agriculture durable en aidant les cultures dans l’économie de l’eau, un meilleur entretien des sols et le prolongement du cycle des cultures. Notre équipe proactive est là pour vous conseiller techniquement et vous assister dans le processus logistique. La solution Fertimed : Conseil et Support technique, Présence et écoute, Des solutions de nutrition efficaces, Accompagnement commercial et marketing. Fertimed is a leader in plant nutrition and addressing challenges for sustainable advancement of global agriculture. They operate in the agriculture/nutrition sector focusing on sustainable crop evolution and providing effective plant nutrition products. Their approach integrates economic, social, and environmental dimensions, supporting UN Sustainable Development Goals. Their products are designed to improve crop efficiency, reduce environmental impact, and support small producers, especially in developing countries."", - ""productDescription"": ""Our core products and solutions for effective crop nutrition include:\n- Nutrition-KNitrate de Potassium\n- Nutrition-SOP Sulfate de potassium\n- Nutrition-CAL Nitrate de Calcium\n- Nutrition-MAP Mono Ammonium Phosphate\n- Nutrition-MKP Mono Potassium Phosphate\n- Nutrition-MgN Magnesium Nitrate\n- Nutrition-MgS Sulfate de magnésium\n- Oligo Fe 6% EDDHA chelated soluble iron\nThese products support fertility through various application methods like foliar, hydroponics, ferti-irrigation, and soil amendment."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agriculture and plant nutrition sector, focusing on sustainable crop evolution and environmentally friendly fertilizer solutions primarily for developing countries."", - ""geographicFocus"": ""HQ: Rue Badem Powell-3400 Montpellier, France; Sales Focus: North Africa, Middle East, Southeast Asia, Africa, South America"", - ""keyExecutives"": [ - { - ""name"": ""Joaquín Cartagena Galvez"", - ""title"": ""Directeur général / Managing Director"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Fatima Zahra Taznagte"", - ""title"": ""Responsable Commercial Maroc / Morocco Country Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Khaled Alaya"", - ""title"": ""Responsable Commercial Algérie et Tunisie / Algeria & Tunisia Country Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Ahmed Ali"", - ""title"": ""Egypt Country Sales Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories data not found on the website despite searching multiple relevant pages."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://fertimed.fr/"", - ""productDescription"": ""https://fertimed.fr/filter-products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://fertimed.fr/en/sustainability"", - ""keyExecutives"": ""https://fertimed.fr/en/"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://fertimed.fr"", - ""companyDescription"": ""Fertimed is a leader in plant nutrition dedicated to supporting sustainable agriculture development in North Africa, the Middle East, and other developing regions. They provide innovative and efficient crop nutrition products that promote water economy, soil health, and extended crop cycles. Fertimed targets small producers and integrates economic, social, and environmental sustainability aligned with the UN Sustainable Development Goals, offering technical advice and logistical support to improve agricultural productivity and farmers’ livelihoods."", - ""productDescription"": ""Fertimed offers a range of high-quality plant nutrition products including Potassium Nitrate, Potassium Sulfate, Calcium Nitrate, Mono Ammonium Phosphate, Mono Potassium Phosphate, Magnesium Nitrate, Magnesium Sulfate, and Chelated Soluble Iron (EDDHA 6%). These products support fertility through diverse application methods such as foliar feeding, hydroponics, fertigation, and soil amendments, helping improve crop yields sustainably."", - ""clientCategories"": [ - ""Smallholder Farmers"", - ""Agricultural Cooperatives"", - ""Agro-Industrial Companies"", - ""Agricultural Distributors"", - ""Agriculture Extension Services"" - ], - ""sectorDescription"": ""Agriculture and plant nutrition sector specializing in sustainable crop evolution and environmentally friendly fertilizer solutions for developing countries."", - ""geographicFocus"": ""Headquartered in Montpellier, France, with sales focused primarily on North Africa, the Middle East, Southeast Asia, Africa, and South America."", - ""keyExecutives"": [ - { - ""name"": ""Joaquín Cartagena Galvez"", - ""title"": ""Directeur général / Managing Director"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Fatima Zahra Taznagte"", - ""title"": ""Responsable Commercial Maroc / Morocco Country Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Khaled Alaya"", - ""title"": ""Responsable Commercial Algérie et Tunisie / Algeria & Tunisia Country Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - }, - { - ""name"": ""Ahmed Ali"", - ""title"": ""Egypt Country Sales Manager"", - ""sourceUrl"": ""https://fertimed.fr/en/"" - } - ], - ""researcherNotes"": ""The client categories field was not explicitly listed on the company website, but based on context from product applications and regional focus, the main clients include smallholder farmers, cooperatives, agro-industrial firms, distributors, and agriculture extension services. Geographic focus and leadership data were confirmed directly from the official Fertimed website, which matched company domain and key executive information. No discrepancies found. Sources: https://fertimed.fr/qui-sommes-nous/, https://fertimed.fr/en/."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://fertimed.fr/qui-sommes-nous/"", - ""productDescription"": ""https://fertimed.fr/filter-products/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://fertimed.fr/en/sustainability"", - ""keyExecutives"": ""https://fertimed.fr/en/"" - } -}","{""clientCategories"":[""Smallholder Farmers"",""Agricultural Cooperatives"",""Agro-Industrial Companies"",""Agricultural Distributors"",""Agriculture Extension Services""],""companyDescription"":""Fertimed is a leader in plant nutrition dedicated to supporting sustainable agriculture development in North Africa, the Middle East, and other developing regions. They provide innovative and efficient crop nutrition products that promote water economy, soil health, and extended crop cycles. Fertimed targets small producers and integrates economic, social, and environmental sustainability aligned with the UN Sustainable Development Goals, offering technical advice and logistical support to improve agricultural productivity and farmers’ livelihoods."",""geographicFocus"":""Headquartered in Montpellier, France, with sales focused primarily on North Africa, the Middle East, Southeast Asia, Africa, and South America."",""keyExecutives"":[{""name"":""Joaquín Cartagena Galvez"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Directeur général / Managing Director""},{""name"":""Fatima Zahra Taznagte"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Responsable Commercial Maroc / Morocco Country Manager""},{""name"":""Khaled Alaya"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Responsable Commercial Algérie et Tunisie / Algeria & Tunisia Country Manager""},{""name"":""Ahmed Ali"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Egypt Country Sales Manager""}],""missingImportantFields"":[],""productDescription"":""Fertimed offers a range of high-quality plant nutrition products including Potassium Nitrate, Potassium Sulfate, Calcium Nitrate, Mono Ammonium Phosphate, Mono Potassium Phosphate, Magnesium Nitrate, Magnesium Sulfate, and Chelated Soluble Iron (EDDHA 6%). These products support fertility through diverse application methods such as foliar feeding, hydroponics, fertigation, and soil amendments, helping improve crop yields sustainably."",""researcherNotes"":""The client categories field was not explicitly listed on the company website, but based on context from product applications and regional focus, the main clients include smallholder farmers, cooperatives, agro-industrial firms, distributors, and agriculture extension services. Geographic focus and leadership data were confirmed directly from the official Fertimed website, which matched company domain and key executive information. No discrepancies found. Sources: https://fertimed.fr/qui-sommes-nous/, https://fertimed.fr/en/."",""sectorDescription"":""Agriculture and plant nutrition sector specializing in sustainable crop evolution and environmentally friendly fertilizer solutions for developing countries."",""sources"":{""clientCategories"":null,""companyDescription"":""https://fertimed.fr/qui-sommes-nous/"",""geographicFocus"":""https://fertimed.fr/en/sustainability"",""keyExecutives"":""https://fertimed.fr/en/"",""productDescription"":""https://fertimed.fr/filter-products/""},""websiteURL"":""https://fertimed.fr""}","Correctness: 100% Completeness: 100% The provided company profile for Fertimed as a plant nutrition leader with a focus on sustainable agriculture in North Africa, the Middle East, and other developing regions is fully supported by the official Fertimed website sources. The geographic focus including Southeast Asia, Africa, and South America and the headquarters in Montpellier, France, are confirmed on their site. The listed key executives—Joaquín Cartagena Galvez (Managing Director), Fatima Zahra Taznagte (Morocco Country Manager), Khaled Alaya (Algeria & Tunisia Country Manager), and Ahmed Ali (Egypt Country Sales Manager)—match the official team page details as of 2025-09-11. The product portfolio of plant nutrition products such as Potassium Nitrate, Calcium Nitrate, Mono Ammonium Phosphate, and Chelated Soluble Iron (EDDHA 6%), along with application methods (foliar feeding, hydroponics, fertigation, soil amendments), is directly detailed on their product filter page. Although client categories are not explicitly stated on their website, the classification as smallholder farmers, cooperatives, agro-industrial companies, distributors, and extension services is a reasonable synthesis from product applications and regional outreach described in company communications. There are no material discrepancies or missing critical data for a comprehensive company snapshot in agriculture and plant nutrition, making the information both factually correct and complete. Sources: https://fertimed.fr/qui-sommes-nous/, https://fertimed.fr/en/, https://fertimed.fr/filter-products/","{""clientCategories"":[],""companyDescription"":""Nous accompagnons le développement de l’agriculture durable sur la zone de l’Afrique du nord et Moyen orient. La qualité de nos produits confirme notre engagement dans l’agriculture durable en aidant les cultures dans l’économie de l’eau, un meilleur entretien des sols et le prolongement du cycle des cultures. Notre équipe proactive est là pour vous conseiller techniquement et vous assister dans le processus logistique. La solution Fertimed : Conseil et Support technique, Présence et écoute, Des solutions de nutrition efficaces, Accompagnement commercial et marketing. Fertimed is a leader in plant nutrition and addressing challenges for sustainable advancement of global agriculture. They operate in the agriculture/nutrition sector focusing on sustainable crop evolution and providing effective plant nutrition products. Their approach integrates economic, social, and environmental dimensions, supporting UN Sustainable Development Goals. Their products are designed to improve crop efficiency, reduce environmental impact, and support small producers, especially in developing countries."",""geographicFocus"":""HQ: Rue Badem Powell-3400 Montpellier, France; Sales Focus: North Africa, Middle East, Southeast Asia, Africa, South America"",""keyExecutives"":[{""name"":""Joaquín Cartagena Galvez"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Directeur général / Managing Director""},{""name"":""Fatima Zahra Taznagte"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Responsable Commercial Maroc / Morocco Country Manager""},{""name"":""Khaled Alaya"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Responsable Commercial Algérie et Tunisie / Algeria & Tunisia Country Manager""},{""name"":""Ahmed Ali"",""sourceUrl"":""https://fertimed.fr/en/"",""title"":""Egypt Country Sales Manager""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Our core products and solutions for effective crop nutrition include:\n- Nutrition-KNitrate de Potassium\n- Nutrition-SOP Sulfate de potassium\n- Nutrition-CAL Nitrate de Calcium\n- Nutrition-MAP Mono Ammonium Phosphate\n- Nutrition-MKP Mono Potassium Phosphate\n- Nutrition-MgN Magnesium Nitrate\n- Nutrition-MgS Sulfate de magnésium\n- Oligo Fe 6% EDDHA chelated soluble iron\nThese products support fertility through various application methods like foliar, hydroponics, ferti-irrigation, and soil amendment."",""researcherNotes"":""Client categories data not found on the website despite searching multiple relevant pages."",""sectorDescription"":""Operates in the agriculture and plant nutrition sector, focusing on sustainable crop evolution and environmentally friendly fertilizer solutions primarily for developing countries."",""sources"":{""clientCategories"":null,""companyDescription"":""https://fertimed.fr/"",""geographicFocus"":""https://fertimed.fr/en/sustainability"",""keyExecutives"":""https://fertimed.fr/en/"",""productDescription"":""https://fertimed.fr/filter-products/""},""websiteURL"":""https://fertimed.fr/""}" -Yum Bug,http://www.yumbug.com,"BrewDog, James Watt",yumbug.com,https://www.linkedin.com/company/yumbug,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""http://www.yumbug.com"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website http://www.yumbug.com and all its subpages were repeatedly visited to find relevant company data, but no substantive information was found regarding the company description, products, clients, leadership, or geographic presence. The site appears to have no accessible content or pages with the required details."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""http://www.yumbug.com"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website http://www.yumbug.com and all its subpages were repeatedly visited to find relevant company data, but no substantive information was found regarding the company description, products, clients, leadership, or geographic presence. The site appears to have no accessible content or pages with the required details."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""http://www.yumbug.com"", - ""companyDescription"": ""Yum Bug is a company dedicated to creating a more sustainable food system by mainstreaming edible insects as an alternative protein source. They focus on offering innovative, bug-based meat alternatives that promote environmental sustainability and healthy consumption."", - ""productDescription"": ""Yum Bug delivers sustainable edible insect products directly to consumers' doors, including single dried cricket packs and recipe kits. Their products provide an alternative protein source designed for environmentally conscious consumers seeking meat substitutes."", - ""clientCategories"": [ - ""Consumers"", - ""Sustainable Food Enthusiasts"", - ""Environmentally Conscious Shoppers"" - ], - ""sectorDescription"": ""Sustainable food industry specializing in edible insect products and alternative protein delivery."", - ""geographicFocus"": ""Primary focus: United Kingdom, with a headquarters in London."", - ""keyExecutives"": [], - ""researcherNotes"": ""Despite multiple visits to the official website, substantive company details and leadership information were not available. External credible sources indicate Yum Bug is a London-based company specializing in sustainable edible insect products for direct consumer delivery. No verified leadership data was found in LinkedIn profiles or public filings. Geographic presence is primarily UK-based as per Dealroom and InvestNY sources."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.datanyze.com/companies/yum-bug/1323946435"", - ""productDescription"": ""https://investny.org/companies/yum_bug/team"", - ""clientCategories"": ""https://app.dealroom.co/companies/yum_bug"", - ""geographicFocus"": ""https://investny.org/companies/yum_bug/team"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Consumers"",""Sustainable Food Enthusiasts"",""Environmentally Conscious Shoppers""],""companyDescription"":""Yum Bug is a company dedicated to creating a more sustainable food system by mainstreaming edible insects as an alternative protein source. They focus on offering innovative, bug-based meat alternatives that promote environmental sustainability and healthy consumption."",""geographicFocus"":""Primary focus: United Kingdom, with a headquarters in London."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Yum Bug delivers sustainable edible insect products directly to consumers' doors, including single dried cricket packs and recipe kits. Their products provide an alternative protein source designed for environmentally conscious consumers seeking meat substitutes."",""researcherNotes"":""Despite multiple visits to the official website, substantive company details and leadership information were not available. External credible sources indicate Yum Bug is a London-based company specializing in sustainable edible insect products for direct consumer delivery. No verified leadership data was found in LinkedIn profiles or public filings. Geographic presence is primarily UK-based as per Dealroom and InvestNY sources."",""sectorDescription"":""Sustainable food industry specializing in edible insect products and alternative protein delivery."",""sources"":{""clientCategories"":""https://app.dealroom.co/companies/yum_bug"",""companyDescription"":""https://www.datanyze.com/companies/yum-bug/1323946435"",""geographicFocus"":""https://investny.org/companies/yum_bug/team"",""keyExecutives"":null,""productDescription"":""https://investny.org/companies/yum_bug/team""},""websiteURL"":""http://www.yumbug.com""}","Correctness: 90% Completeness: 80% The factual profile of Yum Bug is generally correct: it is a London-based sustainable food company founded in 2018, specializing in edible insect products such as cricket-based meat alternatives, targeting environmentally conscious consumers in the UK market. Their product range includes cricket mince, strips, patties, whole crickets, and cricket powder, aimed to offer high-protein, nutrient-rich and low-CO₂ alternatives to traditional meat[2]. Yum Bug’s website and investor backing by notable figures Carl Pei, Holly Branson, and James Watt further reinforce these facts[2]. However, the official UK Companies House registry shows that the registered company ""YUM BUG RESTAURANT LIMITED"" was only incorporated in January 2024 with a focus on licensed restaurants and event catering, suggesting a potentially newer or subsidiary entity or a shift in business structure[1]. Leadership details remain missing publicly, reducing completeness given the focus on key executives in the query. The direct-to-consumer delivery model and detailed product descriptions are confirmed by external sources, but no official leadership or funding filings could be verified at a primary level, affecting the overall thoroughness[1][2]. Company website: http://www.yumbug.com, UK company registry: https://find-and-update.company-information.service.gov.uk/company/15408779, TechRound profile: https://techround.co.uk/startups/startup-of-the-week-yumbug/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website http://www.yumbug.com and all its subpages were repeatedly visited to find relevant company data, but no substantive information was found regarding the company description, products, clients, leadership, or geographic presence. The site appears to have no accessible content or pages with the required details."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://www.yumbug.com""}" -Institute of Precision Agriculture,https://rolnictwoprecyzyjne.eu/,,rolnictwoprecyzyjne.eu,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""https://rolnictwoprecyzyjne.eu/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://rolnictwoprecyzyjne.eu/ and its subpages were inaccessible or did not provide structured data regarding the Institute of Precision Agriculture, as the scraping tool failed to retrieve any content from the website. No relevant information about company mission, products, clients, sector, geography, leadership, or linked documents could be extracted."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""https://rolnictwoprecyzyjne.eu/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://rolnictwoprecyzyjne.eu/ and its subpages were inaccessible or did not provide structured data regarding the Institute of Precision Agriculture, as the scraping tool failed to retrieve any content from the website. No relevant information about company mission, products, clients, sector, geography, leadership, or linked documents could be extracted."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://rolnictwoprecyzyjne.eu"", - ""companyDescription"": ""No verifiable information about the Institute of Precision Agriculture on the company's website or LinkedIn could be found. The entity appears to be related to precision agriculture in Poland but lacks public detailed descriptions of its mission, products, or market focus."", - ""productDescription"": ""No definitive product or service description was found from the company’s own sources or LinkedIn. Related references to precision agriculture technologies and automation in agriculture generally exist in the sector, but not specifically linked to this entity."", - ""clientCategories"": [], - ""sectorDescription"": ""Likely operates in the precision agriculture sector, focusing on technologies and methods to improve farming efficiency and sustainability through data-driven and automated solutions."", - ""geographicFocus"": null, - ""keyExecutives"": [], - ""researcherNotes"": ""The website https://rolnictwoprecyzyjne.eu/ was inaccessible and did not provide structured data. No leadership information was found on LinkedIn or other official sources. There is ambiguity due to a lack of verifiable external data linking a firm named exactly 'Institute of Precision Agriculture' to that website. The entity might be related to the Polish precision agriculture sector broadly, but specific confirming information is absent after searching authoritative sources and LinkedIn. External search revealed a separate registered sole proprietorship named 'Rolnictwo Precyzyjne Mateusz Nawrocki,' which appears unrelated based on legal form and address. Hence, the profile remains incomplete."", - ""missingImportantFields"": [ - ""companyDescription"", - ""productDescription"", - ""clientCategories"", - ""geographicFocus"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{""clientCategories"":[],""companyDescription"":""No verifiable information about the Institute of Precision Agriculture on the company's website or LinkedIn could be found. The entity appears to be related to precision agriculture in Poland but lacks public detailed descriptions of its mission, products, or market focus."",""geographicFocus"":null,""keyExecutives"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""geographicFocus"",""keyExecutives""],""productDescription"":""No definitive product or service description was found from the company’s own sources or LinkedIn. Related references to precision agriculture technologies and automation in agriculture generally exist in the sector, but not specifically linked to this entity."",""researcherNotes"":""The website https://rolnictwoprecyzyjne.eu/ was inaccessible and did not provide structured data. No leadership information was found on LinkedIn or other official sources. There is ambiguity due to a lack of verifiable external data linking a firm named exactly 'Institute of Precision Agriculture' to that website. The entity might be related to the Polish precision agriculture sector broadly, but specific confirming information is absent after searching authoritative sources and LinkedIn. External search revealed a separate registered sole proprietorship named 'Rolnictwo Precyzyjne Mateusz Nawrocki,' which appears unrelated based on legal form and address. Hence, the profile remains incomplete."",""sectorDescription"":""Likely operates in the precision agriculture sector, focusing on technologies and methods to improve farming efficiency and sustainability through data-driven and automated solutions."",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://rolnictwoprecyzyjne.eu""}","Correctness: 85% Completeness: 40% - -The claim that there is an entity named the ""Institute of Precision Agriculture"" related to precision agriculture in Poland is partially correct but lacks verifiable detailed public information. No official company website or LinkedIn page with substantiated leadership, product descriptions, or geographic focus matching that exact name or the website https://rolnictwoprecyzyjne.eu is found, confirming the absence of concrete data on the entity’s mission or offerings. The domain appears linked to precision agriculture in Poland broadly but is inaccessible, and official Polish precision agriculture research is primarily represented by the Institute of Plant Protection – National Research Institute (Instytut Ochrony Roślin) in Poznań, which conducts precision agriculture work but is distinct and more authoritative[1][2]. Secondary sources referencing the named entity are sparse and often not independently verifiable[4]. The profile omits essential facts such as key executives, definitive company description, and concrete products/services, limiting completeness. The general precision agriculture sector context and technologies like drones and spectral imaging in Poland are well substantiated but not specifically tied to this entity[1][3]. No corroborated filings or leadership data further reduce completeness and correctness for this specific institute. - -Sources: -https://www.ior.poznan.pl/2053,precision-agriculture -https://www.ior.poznan.pl/1906,offer -https://www.greyb.com/startups/institute-of-precision-agriculture/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website https://rolnictwoprecyzyjne.eu/ and its subpages were inaccessible or did not provide structured data regarding the Institute of Precision Agriculture, as the scraping tool failed to retrieve any content from the website. No relevant information about company mission, products, clients, sector, geography, leadership, or linked documents could be extracted."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://rolnictwoprecyzyjne.eu/""}" -Aquabyte,https://www.aquabyte.no,"Alaya Capital, Alliance VC, Costanoa Ventures, New Enterprise Associates, Struck Capital",aquabyte.no,https://www.linkedin.com/company/aquabyte,"{""seniorLeadership"":[{""name"":""Steve Tucker"",""title"":""Chairman and Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/stevetucker""},{""name"":""Conor Travers"",""title"":""Chief Financial Officer"",""linkedinProfile"":""https://www.linkedin.com/in/conor-travers-5850b54b""}]}","{""seniorLeadership"":[{""name"":""Steve Tucker"",""title"":""Chairman and Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/stevetucker""},{""name"":""Conor Travers"",""title"":""Chief Financial Officer"",""linkedinProfile"":""https://www.linkedin.com/in/conor-travers-5850b54b""}]}","{ - ""websiteURL"": ""https://www.aquabyte.no"", - ""companyDescription"": ""Aquabyte is a company focused on data-driven fish farming, providing decision support tools based on AI analysis of fish and their environment. Their mission involves improving fish welfare and operational insights throughout the production cycle."", - ""productDescription"": ""Aquabyte offers software packages supported by an all-in-one camera platform and a winch for efficient operation, designed to optimize fish welfare and production in aquaculture. Their platform includes tools like Aquabyte Sales Planner for harvest and biomass control decisions, Aquabyte LICE for automatic lice counting, Aquabyte WISE for welfare scoring, and Aquabyte Performance for daily performance metrics. The company develops autonomous units with fish farmers to manage production in fish pens through data-driven decision tools."", - ""clientCategories"": [""Fish farmers"", ""Aquaculture producers"", ""Seafood production companies""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-powered decision support tools and software solutions to optimize fish farming operations."", - ""geographicFocus"": ""HQ: Damsgårdsveien 163B, 5160 Laksevåg, Norway; Additional offices: San Francisco, USA and Puerto Varas, Chile; Sales Focus: Global aquaculture markets"", - ""keyExecutives"": [ - { ""name"": ""Bryton Shang"", ""title"": ""Founder and Executive Chairman"", ""sourceUrl"": ""https://www.globenewswire.com/news-release/2024/08/19/2932037/0/en/Aquabyte-announces-leadership-transition-President-COO-Steve-Tucker-to-assume-CEO-role-founder-Bryton-Shang-to-become-Executive-Chairman.html"" }, - { ""name"": ""Steve Tucker"", ""title"": ""CEO"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" }, - { ""name"": ""Darryl Weatherspoon"", ""title"": ""CTO"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" }, - { ""name"": ""Thomas Fekete Rønningen"", ""title"": ""CCO"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" }, - { ""name"": ""Conor Travers"", ""title"": ""Director of Finance"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.aquabyte.no/"", - ""productDescription"": ""https://www.aquabyte.no/produkter/"", - ""clientCategories"": ""https://www.aquabyte.no/kundeopplevelsen/"", - ""geographicFocus"": ""https://www.aquabyte.no/kontakt/"", - ""keyExecutives"": ""https://aquabyte.ai/about-us/"" - } -}","{ - ""websiteURL"": ""https://www.aquabyte.no"", - ""companyDescription"": ""Aquabyte is a company focused on data-driven fish farming, providing decision support tools based on AI analysis of fish and their environment. Their mission involves improving fish welfare and operational insights throughout the production cycle."", - ""productDescription"": ""Aquabyte offers software packages supported by an all-in-one camera platform and a winch for efficient operation, designed to optimize fish welfare and production in aquaculture. Their platform includes tools like Aquabyte Sales Planner for harvest and biomass control decisions, Aquabyte LICE for automatic lice counting, Aquabyte WISE for welfare scoring, and Aquabyte Performance for daily performance metrics. The company develops autonomous units with fish farmers to manage production in fish pens through data-driven decision tools."", - ""clientCategories"": [""Fish farmers"", ""Aquaculture producers"", ""Seafood production companies""], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-powered decision support tools and software solutions to optimize fish farming operations."", - ""geographicFocus"": ""HQ: Damsgårdsveien 163B, 5160 Laksevåg, Norway; Additional offices: San Francisco, USA and Puerto Varas, Chile; Sales Focus: Global aquaculture markets"", - ""keyExecutives"": [ - { ""name"": ""Bryton Shang"", ""title"": ""Founder and Executive Chairman"", ""sourceUrl"": ""https://www.globenewswire.com/news-release/2024/08/19/2932037/0/en/Aquabyte-announces-leadership-transition-President-COO-Steve-Tucker-to-assume-CEO-role-founder-Bryton-Shang-to-become-Executive-Chairman.html"" }, - { ""name"": ""Steve Tucker"", ""title"": ""CEO"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" }, - { ""name"": ""Darryl Weatherspoon"", ""title"": ""CTO"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" }, - { ""name"": ""Thomas Fekete Rønningen"", ""title"": ""CCO"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" }, - { ""name"": ""Conor Travers"", ""title"": ""Director of Finance"", ""sourceUrl"": ""https://aquabyte.ai/about-us/"" } - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.aquabyte.no/"", - ""productDescription"": ""https://www.aquabyte.no/produkter/"", - ""clientCategories"": ""https://www.aquabyte.no/kundeopplevelsen/"", - ""geographicFocus"": ""https://www.aquabyte.no/kontakt/"", - ""keyExecutives"": ""https://aquabyte.ai/about-us/"" - } -}",[],"{ - ""websiteURL"": ""https://www.aquabyte.no"", - ""companyDescription"": ""Aquabyte is a company focused on data-driven fish farming, providing decision support tools based on AI analysis of fish and their environment. Their mission involves improving fish welfare and operational insights throughout the production cycle. The company combines cutting-edge AI and computer vision technology with practical aquaculture expertise to serve fish farmers globally and optimize aquaculture operations."", - ""productDescription"": ""Aquabyte offers software packages supported by an all-in-one camera platform and a winch for efficient operation, designed to optimize fish welfare and production in aquaculture. Their platform includes tools such as Aquabyte Sales Planner for harvest and biomass control decisions, Aquabyte LICE for automatic lice counting, Aquabyte WISE for welfare scoring, and Aquabyte Performance for daily performance metrics. These AI-powered tools provide fish farmers with actionable insights through automated data collection and analysis to improve operational efficiency and fish health."", - ""clientCategories"": [ - ""Fish Farmers"", - ""Aquaculture Producers"", - ""Seafood Production Companies"" - ], - ""sectorDescription"": ""Operates in the aquaculture technology sector, providing AI-powered decision support tools and software solutions to optimize fish farming operations."", - ""geographicFocus"": ""Headquartered in Bergen, Norway with additional offices in San Francisco, USA and Puerto Varas, Chile; serves global aquaculture markets."", - ""keyExecutives"": [ - { - ""name"": ""Bryton Shang"", - ""title"": ""Founder and Executive Chairman"", - ""sourceUrl"": ""https://www.globenewswire.com/news-release/2024/08/19/2932037/0/en/Aquabyte-announces-leadership-transition-President-COO-Steve-Tucker-to-assume-CEO-role-founder-Bryton-Shang-to-become-Executive-Chairman.html"" - }, - { - ""name"": ""Steve Tucker"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://aquabyte.ai/about-us/"" - }, - { - ""name"": ""Darryl Weatherspoon"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://aquabyte.ai/about-us/"" - }, - { - ""name"": ""Thomas Fekete Rønningen"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://aquabyte.ai/about-us/"" - }, - { - ""name"": ""Conor Travers"", - ""title"": ""Director of Finance"", - ""sourceUrl"": ""https://aquabyte.ai/about-us/"" - } - ], - ""researcherNotes"": ""The company is clearly identified by matching primary domain aquabyte.no, headquarters in Bergen, Norway (Damsgårdsveien 163B), and global aquaculture technology focus. There is consistent information that leadership includes Steve Tucker as CEO and Bryton Shang now Executive Chairman. Geographic footprint spans Norway, USA (San Francisco), and Chile (Puerto Varas). Executive titles from official company site and recent press release are consistent. The Director of Finance title for Conor Travers was confirmed on the company site, although LinkedIn lists him as Chief Financial Officer, indicating possible title variance or update timing. No important fields remain missing."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.aquabyte.no/"", - ""productDescription"": ""https://www.aquabyte.no/produkter/"", - ""clientCategories"": ""https://www.aquabyte.no/kundeopplevelsen/"", - ""geographicFocus"": ""https://www.aquabyte.no/kontakt/"", - ""keyExecutives"": ""https://aquabyte.ai/about-us/"" - } -}","{""clientCategories"":[""Fish Farmers"",""Aquaculture Producers"",""Seafood Production Companies""],""companyDescription"":""Aquabyte is a company focused on data-driven fish farming, providing decision support tools based on AI analysis of fish and their environment. Their mission involves improving fish welfare and operational insights throughout the production cycle. The company combines cutting-edge AI and computer vision technology with practical aquaculture expertise to serve fish farmers globally and optimize aquaculture operations."",""geographicFocus"":""Headquartered in Bergen, Norway with additional offices in San Francisco, USA and Puerto Varas, Chile; serves global aquaculture markets."",""keyExecutives"":[{""name"":""Bryton Shang"",""sourceUrl"":""https://www.globenewswire.com/news-release/2024/08/19/2932037/0/en/Aquabyte-announces-leadership-transition-President-COO-Steve-Tucker-to-assume-CEO-role-founder-Bryton-Shang-to-become-Executive-Chairman.html"",""title"":""Founder and Executive Chairman""},{""name"":""Steve Tucker"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""CEO""},{""name"":""Darryl Weatherspoon"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""CTO""},{""name"":""Thomas Fekete Rønningen"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""CCO""},{""name"":""Conor Travers"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""Director of Finance""}],""missingImportantFields"":[],""productDescription"":""Aquabyte offers software packages supported by an all-in-one camera platform and a winch for efficient operation, designed to optimize fish welfare and production in aquaculture. Their platform includes tools such as Aquabyte Sales Planner for harvest and biomass control decisions, Aquabyte LICE for automatic lice counting, Aquabyte WISE for welfare scoring, and Aquabyte Performance for daily performance metrics. These AI-powered tools provide fish farmers with actionable insights through automated data collection and analysis to improve operational efficiency and fish health."",""researcherNotes"":""The company is clearly identified by matching primary domain aquabyte.no, headquarters in Bergen, Norway (Damsgårdsveien 163B), and global aquaculture technology focus. There is consistent information that leadership includes Steve Tucker as CEO and Bryton Shang now Executive Chairman. Geographic footprint spans Norway, USA (San Francisco), and Chile (Puerto Varas). Executive titles from official company site and recent press release are consistent. The Director of Finance title for Conor Travers was confirmed on the company site, although LinkedIn lists him as Chief Financial Officer, indicating possible title variance or update timing. No important fields remain missing."",""sectorDescription"":""Operates in the aquaculture technology sector, providing AI-powered decision support tools and software solutions to optimize fish farming operations."",""sources"":{""clientCategories"":""https://www.aquabyte.no/kundeopplevelsen/"",""companyDescription"":""https://www.aquabyte.no/"",""geographicFocus"":""https://www.aquabyte.no/kontakt/"",""keyExecutives"":""https://aquabyte.ai/about-us/"",""productDescription"":""https://www.aquabyte.no/produkter/""},""websiteURL"":""https://www.aquabyte.no""}","Correctness: 85% Completeness: 90% The core facts about Aquabyte — its founding year (2017), mission, AI-driven fish farming technology, and product offerings — are accurate and consistent with official sources such as the company website and press releases[2][4]. Its geographic footprint includes headquarters in Bergen, Norway, with offices in San Francisco, USA, and Puerto Varas, Chile, as confirmed by the company site and summary data[1][4]. The leadership information aligns well with current sources, naming Steve Tucker as CEO and Bryton Shang as Executive Chairman (though one source mentions Shang as CEO in 2023, he transitioned to Executive Chairman by 2024-08 per a GlobeNewswire press release highlighted in the input)[4]. Conor Travers’s title varies between Director of Finance and CFO depending on source, likely reflecting a recent update[4]. Funding details of around $46 million total with a $25 million Series B led by SoftBank Ventures Asia are corroborated by multiple sources but funding amounts and rounds differ slightly in summaries[2][3]. The product descriptions, including AI-powered tools like lice counting (Aquabyte LICE), welfare scoring (Aquabyte WISE), and performance metrics, are comprehensive and match official product pages[4]. The only minor discrepancies are in exact funding totals and the slight title variance for Travers; also, the HQ city sometimes appears as San Francisco, but Bergen, Norway is the official global HQ as per the latest.[1][4] No major relevant fields appear missing, and time-sensitive leadership data is recent (2024). Sources: https://www.aquabyte.no/, https://aquabyte.ai/about-us/, https://www.globenewswire.com/news-release/2024/08/19/2932037/0/en/Aquabyte-announces-leadership-transition-President-COO-Steve-Tucker-to-assume-CEO-role-founder-Bryton-Shang-to-become-Executive-Chairman.html, https://thefishsite.com/articles/aquabyte-raises-25-million, https://www.zoominfo.com/c/aquabyte-inc/450804019","{""clientCategories"":[""Fish farmers"",""Aquaculture producers"",""Seafood production companies""],""companyDescription"":""Aquabyte is a company focused on data-driven fish farming, providing decision support tools based on AI analysis of fish and their environment. Their mission involves improving fish welfare and operational insights throughout the production cycle."",""geographicFocus"":""HQ: Damsgårdsveien 163B, 5160 Laksevåg, Norway; Additional offices: San Francisco, USA and Puerto Varas, Chile; Sales Focus: Global aquaculture markets"",""keyExecutives"":[{""name"":""Bryton Shang"",""sourceUrl"":""https://www.globenewswire.com/news-release/2024/08/19/2932037/0/en/Aquabyte-announces-leadership-transition-President-COO-Steve-Tucker-to-assume-CEO-role-founder-Bryton-Shang-to-become-Executive-Chairman.html"",""title"":""Founder and Executive Chairman""},{""name"":""Steve Tucker"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""CEO""},{""name"":""Darryl Weatherspoon"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""CTO""},{""name"":""Thomas Fekete Rønningen"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""CCO""},{""name"":""Conor Travers"",""sourceUrl"":""https://aquabyte.ai/about-us/"",""title"":""Director of Finance""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Aquabyte offers software packages supported by an all-in-one camera platform and a winch for efficient operation, designed to optimize fish welfare and production in aquaculture. Their platform includes tools like Aquabyte Sales Planner for harvest and biomass control decisions, Aquabyte LICE for automatic lice counting, Aquabyte WISE for welfare scoring, and Aquabyte Performance for daily performance metrics. The company develops autonomous units with fish farmers to manage production in fish pens through data-driven decision tools."",""researcherNotes"":null,""sectorDescription"":""Operates in the aquaculture technology sector, providing AI-powered decision support tools and software solutions to optimize fish farming operations."",""sources"":{""clientCategories"":""https://www.aquabyte.no/kundeopplevelsen/"",""companyDescription"":""https://www.aquabyte.no/"",""geographicFocus"":""https://www.aquabyte.no/kontakt/"",""keyExecutives"":""https://aquabyte.ai/about-us/"",""productDescription"":""https://www.aquabyte.no/produkter/""},""websiteURL"":""https://www.aquabyte.no""}" -Les Alchimistes,https://alchimistes.co/,"France Active, Investir&+, PhiTrust Impact Investors, Thierry Petit",alchimistes.co,https://www.linkedin.com/company/les-alchimistes-sas/,"{""seniorLeadership"":[{""name"":""Foucauld Watine"",""title"":""Co-Founder"",""linkedinProfile"":""https://www.linkedin.com/in/foucauld-watine""},{""name"":""Maïwenn Mollet"",""title"":""Innovation & développement / Directrice \""Les Couches Fertiles\"""",""linkedinProfile"":""https://www.linkedin.com/in/maïwenn-mollet-6647b068""},{""name"":""Victoria Richel"",""title"":""Directrice commerciale"",""linkedinProfile"":""https://www.linkedin.com/in/victoria-richel-1b760685""}]}","{""seniorLeadership"":[{""name"":""Foucauld Watine"",""title"":""Co-Founder"",""linkedinProfile"":""https://www.linkedin.com/in/foucauld-watine""},{""name"":""Maïwenn Mollet"",""title"":""Innovation & développement / Directrice \""Les Couches Fertiles\"""",""linkedinProfile"":""https://www.linkedin.com/in/maïwenn-mollet-6647b068""},{""name"":""Victoria Richel"",""title"":""Directrice commerciale"",""linkedinProfile"":""https://www.linkedin.com/in/victoria-richel-1b760685""}]}","{ - ""websiteURL"": ""https://alchimistes.co/"", - ""companyDescription"": ""Les Alchimistes is an impact-driven company founded in late 2016 that salvages food waste from incineration and landfill to convert it into compost and nourish soils. Mission: To compost food waste locally, return organic matter to soils as compost, prevent greenhouse gas emissions, support agricultural transition, and create meaningful employment."", - ""productDescription"": ""Les Alchimistes offers composting services for food waste; educational workshops and awareness campaigns on waste sorting, food waste reduction, and soil health; partnerships for economic circularity."", - ""clientCategories"": [ - ""Large capacity restaurants"", - ""Engaged restaurants"", - ""Hotel chains/groups"", - ""Startups and SMEs"", - ""Corporate catering"", - ""EHPAD (nursing homes)"", - ""Medical-social institutions"", - ""Clinics and hospitals"", - ""Large retailers"", - ""Public communities"", - ""School sector"", - ""Individuals"" - ], - ""sectorDescription"": ""Operates in the environmental sustainability sector focused on food waste valorization and local compost production."", - ""geographicFocus"": ""26 French metropolitan areas plus La Réunion island including Paris Ile-de-France, Normandie, Hauts-de-France, Auvergne Rhône Alpes, Provence, Côte d’Azur, Languedoc, Occitanie, Pays Basque, Loire Atlantique, Maine et Loire, and La Réunion."", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://docs.google.com/document/d/1RFz01o4vAs7glfneCtqL3cygRFqJw9Znm5MMQr1msdQ/edit?usp=sharing""], - ""researcherNotes"": ""No direct information about founders or current C-level executives was found on the website or linked social pages. The company emphasizes impact and collective governance but does not name specific leaders."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://alchimistes.co/a-propos"", - ""productDescription"": ""https://alchimistes.co/a-propos"", - ""clientCategories"": ""https://alchimistes.co/a-propos"", - ""geographicFocus"": ""https://alchimistes.co/a-propos"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://alchimistes.co/"", - ""companyDescription"": ""Les Alchimistes is an impact-driven company founded in late 2016 that salvages food waste from incineration and landfill to convert it into compost and nourish soils. Mission: To compost food waste locally, return organic matter to soils as compost, prevent greenhouse gas emissions, support agricultural transition, and create meaningful employment."", - ""productDescription"": ""Les Alchimistes offers composting services for food waste; educational workshops and awareness campaigns on waste sorting, food waste reduction, and soil health; partnerships for economic circularity."", - ""clientCategories"": [ - ""Large capacity restaurants"", - ""Engaged restaurants"", - ""Hotel chains/groups"", - ""Startups and SMEs"", - ""Corporate catering"", - ""EHPAD (nursing homes)"", - ""Medical-social institutions"", - ""Clinics and hospitals"", - ""Large retailers"", - ""Public communities"", - ""School sector"", - ""Individuals"" - ], - ""sectorDescription"": ""Operates in the environmental sustainability sector focused on food waste valorization and local compost production."", - ""geographicFocus"": ""26 French metropolitan areas plus La Réunion island including Paris Ile-de-France, Normandie, Hauts-de-France, Auvergne Rhône Alpes, Provence, Côte d’Azur, Languedoc, Occitanie, Pays Basque, Loire Atlantique, Maine et Loire, and La Réunion."", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://docs.google.com/document/d/1RFz01o4vAs7glfneCtqL3cygRFqJw9Znm5MMQr1msdQ/edit?usp=sharing""], - ""researcherNotes"": ""No direct information about founders or current C-level executives was found on the website or linked social pages. The company emphasizes impact and collective governance but does not name specific leaders."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://alchimistes.co/a-propos"", - ""productDescription"": ""https://alchimistes.co/a-propos"", - ""clientCategories"": ""https://alchimistes.co/a-propos"", - ""geographicFocus"": ""https://alchimistes.co/a-propos"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://alchimistes.co"", - ""companyDescription"": ""Les Alchimistes is an impact-driven social and solidarity economy company founded in late 2016 that salvages food waste from incineration and landfill to convert it into compost and nourish soils. The company focuses on local composting of food waste to prevent greenhouse gas emissions, support agricultural transition, promote circular economy, and create meaningful employment in French metropolitan areas and La Réunion island. Originating with the project “Les Couches Fertiles,” it has expanded into food waste collection and local compost production for various sectors."", - ""productDescription"": ""Les Alchimistes offers local collection and composting services for food waste—transforming biodegradable waste from kitchens, restaurants, hospitals, and other institutions into certified quality compost. They deliver educational workshops and awareness campaigns on waste sorting, food waste reduction, and soil health, and establish partnerships to foster economic circularity and local soil regeneration."", - ""clientCategories"": [ - ""Large Capacity Restaurants"", - ""Engaged Restaurants"", - ""Hotel Chains/Groups"", - ""Startups And SMEs"", - ""Corporate Catering"", - ""EHPAD (Nursing Homes)"", - ""Medical-Social Institutions"", - ""Clinics And Hospitals"", - ""Large Retailers"", - ""Public Communities"", - ""School Sector"", - ""Individuals"" - ], - ""sectorDescription"": ""Environmental sustainability company focused on local food waste valorization and compost production within the circular economy."", - ""geographicFocus"": ""Operates in 26 French metropolitan areas plus La Réunion island including Paris Ile-de-France, Normandie, Hauts-de-France, Auvergne Rhône-Alpes, Provence, Côte d’Azur, Languedoc, Occitanie, Pays Basque, Loire Atlantique, Maine et Loire, and La Réunion."", - ""keyExecutives"": [ - { - ""name"": ""Foucauld Watine"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.linkedin.com/in/foucauld-watine"" - }, - { - ""name"": ""Maïwenn Mollet"", - ""title"": ""Innovation & développement / Directrice \""Les Couches Fertiles\"""", - ""sourceUrl"": ""https://www.linkedin.com/in/maïwenn-mollet-6647b068"" - }, - { - ""name"": ""Victoria Richel"", - ""title"": ""Directrice commerciale"", - ""sourceUrl"": ""https://www.linkedin.com/in/victoria-richel-1b760685"" - } - ], - ""researcherNotes"": ""The entity is confirmed by several points: the domain 'alchimistes.co', founding year 2016, and distinct impact-driven composting activity focused on French regions including La Réunion. The company emphasizes collective governance without listing leadership publicly on its website, but LinkedIn data supplements key executives as co-founder Foucauld Watine and senior leaders Maïwenn Mollet and Victoria Richel. Geographic focus and sector details are well confirmed. No official governmental registry filings were found online to cross-validate ownership structure."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://alchimistes.co/a-propos"", - ""productDescription"": ""https://alchimistes.co/a-propos"", - ""clientCategories"": ""https://alchimistes.co/a-propos"", - ""geographicFocus"": ""https://alchimistes.co/a-propos"", - ""keyExecutives"": ""https://www.linkedin.com/in/foucauld-watine"" - } -}","{""clientCategories"":[""Large Capacity Restaurants"",""Engaged Restaurants"",""Hotel Chains/Groups"",""Startups And SMEs"",""Corporate Catering"",""EHPAD (Nursing Homes)"",""Medical-Social Institutions"",""Clinics And Hospitals"",""Large Retailers"",""Public Communities"",""School Sector"",""Individuals""],""companyDescription"":""Les Alchimistes is an impact-driven social and solidarity economy company founded in late 2016 that salvages food waste from incineration and landfill to convert it into compost and nourish soils. The company focuses on local composting of food waste to prevent greenhouse gas emissions, support agricultural transition, promote circular economy, and create meaningful employment in French metropolitan areas and La Réunion island. Originating with the project “Les Couches Fertiles,” it has expanded into food waste collection and local compost production for various sectors."",""geographicFocus"":""Operates in 26 French metropolitan areas plus La Réunion island including Paris Ile-de-France, Normandie, Hauts-de-France, Auvergne Rhône-Alpes, Provence, Côte d’Azur, Languedoc, Occitanie, Pays Basque, Loire Atlantique, Maine et Loire, and La Réunion."",""keyExecutives"":[{""name"":""Foucauld Watine"",""sourceUrl"":""https://www.linkedin.com/in/foucauld-watine"",""title"":""Co-Founder""},{""name"":""Maïwenn Mollet"",""sourceUrl"":""https://www.linkedin.com/in/maïwenn-mollet-6647b068"",""title"":""Innovation & développement / Directrice \""Les Couches Fertiles\""""},{""name"":""Victoria Richel"",""sourceUrl"":""https://www.linkedin.com/in/victoria-richel-1b760685"",""title"":""Directrice commerciale""}],""missingImportantFields"":[],""productDescription"":""Les Alchimistes offers local collection and composting services for food waste—transforming biodegradable waste from kitchens, restaurants, hospitals, and other institutions into certified quality compost. They deliver educational workshops and awareness campaigns on waste sorting, food waste reduction, and soil health, and establish partnerships to foster economic circularity and local soil regeneration."",""researcherNotes"":""The entity is confirmed by several points: the domain 'alchimistes.co', founding year 2016, and distinct impact-driven composting activity focused on French regions including La Réunion. The company emphasizes collective governance without listing leadership publicly on its website, but LinkedIn data supplements key executives as co-founder Foucauld Watine and senior leaders Maïwenn Mollet and Victoria Richel. Geographic focus and sector details are well confirmed. No official governmental registry filings were found online to cross-validate ownership structure."",""sectorDescription"":""Environmental sustainability company focused on local food waste valorization and compost production within the circular economy."",""sources"":{""clientCategories"":""https://alchimistes.co/a-propos"",""companyDescription"":""https://alchimistes.co/a-propos"",""geographicFocus"":""https://alchimistes.co/a-propos"",""keyExecutives"":""https://www.linkedin.com/in/foucauld-watine"",""productDescription"":""https://alchimistes.co/a-propos""},""websiteURL"":""https://alchimistes.co""}","Correctness: 98% Completeness: 95% - -The description of Les Alchimistes as an impact-driven social and solidarity economy company founded in 2016 that focuses on local composting of food waste, particularly in French metropolitan areas and La Réunion, is accurate and well-supported by multiple sources[1][3]. The company was initiated around the “Les Couches Fertiles” project targeting baby diaper composting and has expanded into food waste collection and producing certified quality compost from kitchens, hospitals, and institutions[1][3]. Key executives listed (Foucauld Watine, Maïwenn Mollet, and Victoria Richel) align with LinkedIn profiles confirming their respective roles[2][3]. The geographic footprint covering 26 French metropolitan areas plus La Réunion is consistent with the company’s own statements and regional accounts[1]. The description of services, including workshops on waste sorting and soil health, and the circular economy emphasis, matches corporate communications[1][3]. Minor completeness deductions relate to the absence of official governmental registry confirmations on ownership structures, which were noted as unavailable, and the lack of explicit details on recent milestones or funding rounds in public filings. Overall, the synthesis is both factually correct and largely complete relative to accessible credible information. Sources: https://alchimistes.co/a-propos, https://www.linkedin.com/in/foucauld-watine, https://www.le-grand-rebond.fr/observatoire/les-alchimistes-une-entreprise-solidaire-qui-sort-les-dechets-dune-logique-lineaire-pour-les-rendre-a-la-terre/, https://greentechinnovation.fr/2020/11/06/les-alchimistes/, https://terres-et-territoires.com/les-alchimistes-des-dechets-alimentaires-au-compost-a-grande-echelle","{""clientCategories"":[""Large capacity restaurants"",""Engaged restaurants"",""Hotel chains/groups"",""Startups and SMEs"",""Corporate catering"",""EHPAD (nursing homes)"",""Medical-social institutions"",""Clinics and hospitals"",""Large retailers"",""Public communities"",""School sector"",""Individuals""],""companyDescription"":""Les Alchimistes is an impact-driven company founded in late 2016 that salvages food waste from incineration and landfill to convert it into compost and nourish soils. Mission: To compost food waste locally, return organic matter to soils as compost, prevent greenhouse gas emissions, support agricultural transition, and create meaningful employment."",""geographicFocus"":""26 French metropolitan areas plus La Réunion island including Paris Ile-de-France, Normandie, Hauts-de-France, Auvergne Rhône Alpes, Provence, Côte d’Azur, Languedoc, Occitanie, Pays Basque, Loire Atlantique, Maine et Loire, and La Réunion."",""keyExecutives"":[],""linkedDocuments"":[""https://docs.google.com/document/d/1RFz01o4vAs7glfneCtqL3cygRFqJw9Znm5MMQr1msdQ/edit?usp=sharing""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Les Alchimistes offers composting services for food waste; educational workshops and awareness campaigns on waste sorting, food waste reduction, and soil health; partnerships for economic circularity."",""researcherNotes"":""No direct information about founders or current C-level executives was found on the website or linked social pages. The company emphasizes impact and collective governance but does not name specific leaders."",""sectorDescription"":""Operates in the environmental sustainability sector focused on food waste valorization and local compost production."",""sources"":{""clientCategories"":""https://alchimistes.co/a-propos"",""companyDescription"":""https://alchimistes.co/a-propos"",""geographicFocus"":""https://alchimistes.co/a-propos"",""keyExecutives"":null,""productDescription"":""https://alchimistes.co/a-propos""},""websiteURL"":""https://alchimistes.co/""}" -nextProtein,http://www.nextprotein.co,"Althelia Funds, aucfan, Blue Oceans Partners, Kepple Africa Ventures, Mirova, RAISE Impact, Telos Impact",nextprotein.co,https://www.linkedin.com/company/nextprotein,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.nextprotein.co"", - ""companyDescription"": ""nextProtein produces insect-based protein for animal feed stocks to accelerate sustainable agriculture and address resource scarcity with low carbon footprint. Founded in 2015 by Syrine Chaalala (Founder & COO) and Mohamed Gastli (Founder & CEO), it operates a production site in Tunisia and an office in Paris with a 15-person team. Mission: To sustainably increase food production by using insect protein, specifically the Black Soldier Fly, raised on otherwise unconsumable food; approved by the EU for aquaculture feed and usable for poultry, pork, and pet food feedstocks."", - ""productDescription"": ""nextProtein offers detailed product descriptions of their insect-based protein products: nextProtein, a dry protein powder used as a feed ingredient for aquaculture, pet food, and other animal feed; nextOil, a lipid product used as a feed ingredient for aquaculture and other animal feed; and nextGrow, a natural fertilizer made from Black Soldier Fly frass and organic waste for agricultural use. The products are made by processing Black Soldier Fly larvae raised on otherwise inedible food waste."", - ""clientCategories"": [""Aquaculture"", ""Poultry"", ""Pork Industries"", ""Pet Food Manufacturers""], - ""sectorDescription"": ""Operates in the sustainable agriculture and animal feed sector, producing insect-based proteins and related products for animal nutrition."", - ""geographicFocus"": ""HQ: 91, rue du Faubourg Saint Honoré 75008 Paris, France; Sales Focus: Europe, Tunisia"", - ""keyExecutives"": [ - { - ""name"": ""Syrine Chaalala"", - ""title"": ""Founder & COO"", - ""sourceUrl"": ""https://nextprotein.co/#about"" - }, - { - ""name"": ""Mohamed Gastli"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://nextprotein.co/#about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked document files such as PDFs or DOCX were found on the website despite checking thoroughly."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nextprotein.co/#mission"", - ""productDescription"": ""https://nextprotein.co/#products"", - ""clientCategories"": ""http://nextprotein.co/#about"", - ""geographicFocus"": ""https://nextprotein.co/#contact"", - ""keyExecutives"": ""https://nextprotein.co/#about"" - } -}","{ - ""websiteURL"": ""http://www.nextprotein.co"", - ""companyDescription"": ""nextProtein produces insect-based protein for animal feed stocks to accelerate sustainable agriculture and address resource scarcity with low carbon footprint. Founded in 2015 by Syrine Chaalala (Founder & COO) and Mohamed Gastli (Founder & CEO), it operates a production site in Tunisia and an office in Paris with a 15-person team. Mission: To sustainably increase food production by using insect protein, specifically the Black Soldier Fly, raised on otherwise unconsumable food; approved by the EU for aquaculture feed and usable for poultry, pork, and pet food feedstocks."", - ""productDescription"": ""nextProtein offers detailed product descriptions of their insect-based protein products: nextProtein, a dry protein powder used as a feed ingredient for aquaculture, pet food, and other animal feed; nextOil, a lipid product used as a feed ingredient for aquaculture and other animal feed; and nextGrow, a natural fertilizer made from Black Soldier Fly frass and organic waste for agricultural use. The products are made by processing Black Soldier Fly larvae raised on otherwise inedible food waste."", - ""clientCategories"": [""Aquaculture"", ""Poultry"", ""Pork Industries"", ""Pet Food Manufacturers""], - ""sectorDescription"": ""Operates in the sustainable agriculture and animal feed sector, producing insect-based proteins and related products for animal nutrition."", - ""geographicFocus"": ""HQ: 91, rue du Faubourg Saint Honoré 75008 Paris, France; Sales Focus: Europe, Tunisia"", - ""keyExecutives"": [ - { - ""name"": ""Syrine Chaalala"", - ""title"": ""Founder & COO"", - ""sourceUrl"": ""https://nextprotein.co/#about"" - }, - { - ""name"": ""Mohamed Gastli"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://nextprotein.co/#about"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked document files such as PDFs or DOCX were found on the website despite checking thoroughly."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nextprotein.co/#mission"", - ""productDescription"": ""https://nextprotein.co/#products"", - ""clientCategories"": ""http://nextprotein.co/#about"", - ""geographicFocus"": ""https://nextprotein.co/#contact"", - ""keyExecutives"": ""https://nextprotein.co/#about"" - } -}",[],"{ - ""websiteURL"": ""https://nextprotein.co"", - ""companyDescription"": ""nextProtein produces insect-based protein for animal feed stocks to accelerate sustainable agriculture and address resource scarcity with low carbon footprint. Founded in 2015 by Syrine Chaalala (Founder & COO) and Mohamed Gastli (Founder & CEO), it operates a production site in Tunisia and an office in Paris with a 15-person team. The company uses Black Soldier Fly larvae raised on otherwise inedible organic waste approved by the EU to create sustainable animal feed ingredients and natural fertilizer, serving industries including aquaculture, poultry, pork, and pet food manufacturers."", - ""productDescription"": ""nextProtein offers insect-based protein products including nextProtein, a dry protein powder for aquaculture, poultry, pork, and pet food feed; nextOil, a lipid product for aquaculture and other animal feed; and nextGrow, a natural fertilizer made from Black Soldier Fly frass and organic waste. These products are made via processing larvae fed on EU-approved organic waste, providing a sustainable alternative with significantly reduced resource use and environmental impact."", - ""clientCategories"": [ - ""Aquaculture"", - ""Poultry"", - ""Pork Industries"", - ""Pet Food Manufacturers"" - ], - ""sectorDescription"": ""Operates in the sustainable agriculture and animal feed sector, specializing in insect-based protein production and related products for animal nutrition."", - ""geographicFocus"": ""Headquartered in Paris, France, with production operations in Tunisia; primary sales focus on Europe and Tunisia."", - ""keyExecutives"": [ - { - ""name"": ""Syrine Chaalala"", - ""title"": ""Founder & COO"", - ""sourceUrl"": ""https://nextprotein.co/#about"" - }, - { - ""name"": ""Mohamed Gastli"", - ""title"": ""Founder & CEO"", - ""sourceUrl"": ""https://nextprotein.co/#about"" - } - ], - ""researcherNotes"": ""The company was clearly identified by matching domain (nextprotein.co), founding year (2015), founders' names, and headquarters in Paris with production in Tunisia. Geographic focus beyond registered address is confirmed via multiple news sources citing operations and sales focus in Europe and Tunisia. No senior leadership additions or discrepancies were found from LinkedIn scraping. No linked document files like PDF/DOCX were found on the website as noted. Geographic footprint is specified based on company statements and regional news coverage."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nextprotein.co/#mission"", - ""productDescription"": ""https://nextprotein.co/#products"", - ""clientCategories"": ""http://nextprotein.co/#about"", - ""geographicFocus"": ""https://nextprotein.co/#contact"", - ""keyExecutives"": ""https://nextprotein.co/#about"" - } -}","{""clientCategories"":[""Aquaculture"",""Poultry"",""Pork Industries"",""Pet Food Manufacturers""],""companyDescription"":""nextProtein produces insect-based protein for animal feed stocks to accelerate sustainable agriculture and address resource scarcity with low carbon footprint. Founded in 2015 by Syrine Chaalala (Founder & COO) and Mohamed Gastli (Founder & CEO), it operates a production site in Tunisia and an office in Paris with a 15-person team. The company uses Black Soldier Fly larvae raised on otherwise inedible organic waste approved by the EU to create sustainable animal feed ingredients and natural fertilizer, serving industries including aquaculture, poultry, pork, and pet food manufacturers."",""geographicFocus"":""Headquartered in Paris, France, with production operations in Tunisia; primary sales focus on Europe and Tunisia."",""keyExecutives"":[{""name"":""Syrine Chaalala"",""sourceUrl"":""https://nextprotein.co/#about"",""title"":""Founder & COO""},{""name"":""Mohamed Gastli"",""sourceUrl"":""https://nextprotein.co/#about"",""title"":""Founder & CEO""}],""missingImportantFields"":[],""productDescription"":""nextProtein offers insect-based protein products including nextProtein, a dry protein powder for aquaculture, poultry, pork, and pet food feed; nextOil, a lipid product for aquaculture and other animal feed; and nextGrow, a natural fertilizer made from Black Soldier Fly frass and organic waste. These products are made via processing larvae fed on EU-approved organic waste, providing a sustainable alternative with significantly reduced resource use and environmental impact."",""researcherNotes"":""The company was clearly identified by matching domain (nextprotein.co), founding year (2015), founders' names, and headquarters in Paris with production in Tunisia. Geographic focus beyond registered address is confirmed via multiple news sources citing operations and sales focus in Europe and Tunisia. No senior leadership additions or discrepancies were found from LinkedIn scraping. No linked document files like PDF/DOCX were found on the website as noted. Geographic footprint is specified based on company statements and regional news coverage."",""sectorDescription"":""Operates in the sustainable agriculture and animal feed sector, specializing in insect-based protein production and related products for animal nutrition."",""sources"":{""clientCategories"":""http://nextprotein.co/#about"",""companyDescription"":""https://nextprotein.co/#mission"",""geographicFocus"":""https://nextprotein.co/#contact"",""keyExecutives"":""https://nextprotein.co/#about"",""productDescription"":""https://nextprotein.co/#products""},""websiteURL"":""https://nextprotein.co""}","Correctness: 98% Completeness: 95% The company description is highly accurate and well-supported by multiple detailed sources including nextProtein’s official website and reputable agri-foodtech coverage. The founding year (2015), founders (Syrine Chaalala and Mohamed Gastli), headquarters in Paris with production facilities in Tunisia, and their focus on insect protein from Black Soldier Fly larvae fed on EU-approved organic waste are corroborated by company statements and funding news[1][2][5]. The product range (protein powder, lipid product, and natural fertilizer) matches official product descriptions and coverage of their circular economy approach[1][5]. Geographic focus includes Europe and Tunisia, with confirmed expansion plans into Latin America (Mexico) underlining growth trajectory beyond original footprints[3][4]. Leadership titles and team size (15 persons) align with official sources as of 2025, with no conflicting updates found[1][5]. The company’s unique sustainability claims—low carbon footprint, resource efficiency through insect protein—are consistent with public reports and funding rationales[2][5]. Minor information gaps exist regarding any recent leadership additions or detailed funding rounds beyond the 2020/2024 raises, but this does not materially undermine the core facts. Overall, the claim is factual and substantively complete with strong primary sources: https://nextprotein.co, https://agfundernews.com/fly-my-pretties-nextprotein-closes-11-2m-series-a-to-scale-up-insect-production-in-tunisia, https://thestartupscene.me/INVESTMENTS/Tunisian-Insect-Protein-Startup-nextProtein-Raises-11-2-Million-in-Series-A-Funding, and https://launchbaseafrica.com/2024/05/21/tunisian-agtech-startup-nextprotein-latam-pours-33-million-into-mexico-one-year-after-us-expansion/.","{""clientCategories"":[""Aquaculture"",""Poultry"",""Pork Industries"",""Pet Food Manufacturers""],""companyDescription"":""nextProtein produces insect-based protein for animal feed stocks to accelerate sustainable agriculture and address resource scarcity with low carbon footprint. Founded in 2015 by Syrine Chaalala (Founder & COO) and Mohamed Gastli (Founder & CEO), it operates a production site in Tunisia and an office in Paris with a 15-person team. Mission: To sustainably increase food production by using insect protein, specifically the Black Soldier Fly, raised on otherwise unconsumable food; approved by the EU for aquaculture feed and usable for poultry, pork, and pet food feedstocks."",""geographicFocus"":""HQ: 91, rue du Faubourg Saint Honoré 75008 Paris, France; Sales Focus: Europe, Tunisia"",""keyExecutives"":[{""name"":""Syrine Chaalala"",""sourceUrl"":""https://nextprotein.co/#about"",""title"":""Founder & COO""},{""name"":""Mohamed Gastli"",""sourceUrl"":""https://nextprotein.co/#about"",""title"":""Founder & CEO""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""nextProtein offers detailed product descriptions of their insect-based protein products: nextProtein, a dry protein powder used as a feed ingredient for aquaculture, pet food, and other animal feed; nextOil, a lipid product used as a feed ingredient for aquaculture and other animal feed; and nextGrow, a natural fertilizer made from Black Soldier Fly frass and organic waste for agricultural use. The products are made by processing Black Soldier Fly larvae raised on otherwise inedible food waste."",""researcherNotes"":""No linked document files such as PDFs or DOCX were found on the website despite checking thoroughly."",""sectorDescription"":""Operates in the sustainable agriculture and animal feed sector, producing insect-based proteins and related products for animal nutrition."",""sources"":{""clientCategories"":""http://nextprotein.co/#about"",""companyDescription"":""https://nextprotein.co/#mission"",""geographicFocus"":""https://nextprotein.co/#contact"",""keyExecutives"":""https://nextprotein.co/#about"",""productDescription"":""https://nextprotein.co/#products""},""websiteURL"":""http://www.nextprotein.co""}" -Solvionic,http://en.solvionic.com/,"IRDI SORIDEC Gestion, Omnes Capital",en.solvionic.com,https://www.linkedin.com/company/solvionic/,"{""seniorLeadership"":[{""name"":""François Malbosc"",""title"":""CEO"",""profileUrl"":""https://www.linkedin.com/in/françois-malbosc-3165a812""}]}","{""seniorLeadership"":[{""name"":""François Malbosc"",""title"":""CEO"",""profileUrl"":""https://www.linkedin.com/in/françois-malbosc-3165a812""}]}","{ - ""websiteURL"": ""http://en.solvionic.com/"", - ""companyDescription"": ""Founded in 2003, Solvionic is a pioneer in ionic liquids technology, capable of achieving 99.9% purity in its product range. They focus on innovative chemistry based on ionic liquids, committed to sustainability by designing chemical processes that reduce energy consumption and waste, producing non-volatile, non-flammable, recyclable, and durable products. Solvionic integrates research, production, and marketing with a global strategy, serving cutting-edge markets including catalysis, surface treatment, and energy storage."", - ""productDescription"": ""Solvionic offers high purity ionic solutions including: \n- Ionic Liquids\n- Electrolytes\n- Metallic Salts\nThese are produced using continuous production and intensification techniques ensuring purity over 99.9%. Packaging options include drums or flexible containers with specialized Nitto Kohki© or Swagelok© connections to maintain product integrity."", - ""clientCategories"": [""Electrochemical device manufacturers"", ""Surface finishing industry"", ""Solvent, separation & extraction applications""], - ""sectorDescription"": ""Operates in the chemical manufacturing sector specializing in high-purity ionic liquids and advanced chemical solutions for energy, catalysis, and surface treatment applications."", - ""geographicFocus"": ""HQ: 11 Chemin des Silos, 31100 Toulouse, France; Sales Focus: Global (including countries across Europe, Americas, Asia, Middle East, Africa)"", - ""keyExecutives"": [ - {""name"": ""François Malbosc"", ""title"": ""Founder, Chief Executive Officer & Président"", ""sourceUrl"": ""https://www.crunchbase.com/organization/solvionic""}, - {""name"": ""Gildas Sorin"", ""title"": ""Director"", ""sourceUrl"": ""https://craft.co/solvionic/executives""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories are inferred from application areas mentioned on the website as explicit client category lists are not provided."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://solvionic.com/en/content/the-company"", - ""productDescription"": ""https://solvionic.com/en/10-products"", - ""clientCategories"": ""https://solvionic.com/en/content/applications"", - ""geographicFocus"": ""https://solvionic.com/en/contact-us"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/solvionic"" - } -}","{ - ""websiteURL"": ""http://en.solvionic.com/"", - ""companyDescription"": ""Founded in 2003, Solvionic is a pioneer in ionic liquids technology, capable of achieving 99.9% purity in its product range. They focus on innovative chemistry based on ionic liquids, committed to sustainability by designing chemical processes that reduce energy consumption and waste, producing non-volatile, non-flammable, recyclable, and durable products. Solvionic integrates research, production, and marketing with a global strategy, serving cutting-edge markets including catalysis, surface treatment, and energy storage."", - ""productDescription"": ""Solvionic offers high purity ionic solutions including: \n- Ionic Liquids\n- Electrolytes\n- Metallic Salts\nThese are produced using continuous production and intensification techniques ensuring purity over 99.9%. Packaging options include drums or flexible containers with specialized Nitto Kohki© or Swagelok© connections to maintain product integrity."", - ""clientCategories"": [""Electrochemical device manufacturers"", ""Surface finishing industry"", ""Solvent, separation & extraction applications""], - ""sectorDescription"": ""Operates in the chemical manufacturing sector specializing in high-purity ionic liquids and advanced chemical solutions for energy, catalysis, and surface treatment applications."", - ""geographicFocus"": ""HQ: 11 Chemin des Silos, 31100 Toulouse, France; Sales Focus: Global (including countries across Europe, Americas, Asia, Middle East, Africa)"", - ""keyExecutives"": [ - {""name"": ""François Malbosc"", ""title"": ""Founder, Chief Executive Officer & Président"", ""sourceUrl"": ""https://www.crunchbase.com/organization/solvionic""}, - {""name"": ""Gildas Sorin"", ""title"": ""Director"", ""sourceUrl"": ""https://craft.co/solvionic/executives""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories are inferred from application areas mentioned on the website as explicit client category lists are not provided."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://solvionic.com/en/content/the-company"", - ""productDescription"": ""https://solvionic.com/en/10-products"", - ""clientCategories"": ""https://solvionic.com/en/content/applications"", - ""geographicFocus"": ""https://solvionic.com/en/contact-us"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/solvionic"" - } -}",[],"{ - ""websiteURL"": ""https://solvionic.com"", - ""companyDescription"": ""Founded in 2003, Solvionic is a pioneer in ionic liquids technology, capable of achieving 99.9% purity in its product range. They focus on innovative chemistry based on ionic liquids, committed to sustainability by designing chemical processes that reduce energy consumption and waste, producing non-volatile, non-flammable, recyclable, and durable products. Solvionic integrates research, production, and marketing with a global strategy, serving cutting-edge markets including catalysis, surface treatment, and energy storage."", - ""productDescription"": ""Solvionic offers high purity ionic solutions including: Ionic Liquids, Electrolytes, and Metallic Salts, produced using continuous production and intensification techniques ensuring purity over 99.9%. Packaging options include drums or flexible containers with specialized Nitto Kohki© or Swagelok© connections that maintain product integrity for demanding applications."", - ""clientCategories"": [ - ""Electrochemical Device Manufacturers"", - ""Surface Finishing Industry"", - ""Solvent, Separation & Extraction Applications"" - ], - ""sectorDescription"": ""Operates in the chemical manufacturing sector specializing in high-purity ionic liquids and advanced chemical solutions for energy, catalysis, and surface treatment applications."", - ""geographicFocus"": ""Headquartered in Toulouse, France, with a global sales focus including Europe, Americas, Asia, Middle East, and Africa."", - ""keyExecutives"": [ - { - ""name"": ""François Malbosc"", - ""title"": ""Founder, Chief Executive Officer & Président"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/solvionic"" - }, - { - ""name"": ""Gildas Sorin"", - ""title"": ""Director"", - ""sourceUrl"": ""https://craft.co/solvionic/executives"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain, founding year, product specialization in ionic liquids, and executive names. Geographic focus verified on company site. CEO title corroborated by LinkedIn. No significant gaps remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://solvionic.com/en/content/the-company"", - ""productDescription"": ""https://solvionic.com/en/10-products"", - ""clientCategories"": ""https://solvionic.com/en/content/applications"", - ""geographicFocus"": ""https://solvionic.com/en/contact-us"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/solvionic"" - } -}","{""clientCategories"":[""Electrochemical Device Manufacturers"",""Surface Finishing Industry"",""Solvent, Separation & Extraction Applications""],""companyDescription"":""Founded in 2003, Solvionic is a pioneer in ionic liquids technology, capable of achieving 99.9% purity in its product range. They focus on innovative chemistry based on ionic liquids, committed to sustainability by designing chemical processes that reduce energy consumption and waste, producing non-volatile, non-flammable, recyclable, and durable products. Solvionic integrates research, production, and marketing with a global strategy, serving cutting-edge markets including catalysis, surface treatment, and energy storage."",""geographicFocus"":""Headquartered in Toulouse, France, with a global sales focus including Europe, Americas, Asia, Middle East, and Africa."",""keyExecutives"":[{""name"":""François Malbosc"",""sourceUrl"":""https://www.crunchbase.com/organization/solvionic"",""title"":""Founder, Chief Executive Officer & Président""},{""name"":""Gildas Sorin"",""sourceUrl"":""https://craft.co/solvionic/executives"",""title"":""Director""}],""missingImportantFields"":[],""productDescription"":""Solvionic offers high purity ionic solutions including: Ionic Liquids, Electrolytes, and Metallic Salts, produced using continuous production and intensification techniques ensuring purity over 99.9%. Packaging options include drums or flexible containers with specialized Nitto Kohki© or Swagelok© connections that maintain product integrity for demanding applications."",""researcherNotes"":""Company identity confirmed by domain, founding year, product specialization in ionic liquids, and executive names. Geographic focus verified on company site. CEO title corroborated by LinkedIn. No significant gaps remain."",""sectorDescription"":""Operates in the chemical manufacturing sector specializing in high-purity ionic liquids and advanced chemical solutions for energy, catalysis, and surface treatment applications."",""sources"":{""clientCategories"":""https://solvionic.com/en/content/applications"",""companyDescription"":""https://solvionic.com/en/content/the-company"",""geographicFocus"":""https://solvionic.com/en/contact-us"",""keyExecutives"":""https://www.crunchbase.com/organization/solvionic"",""productDescription"":""https://solvionic.com/en/10-products""},""websiteURL"":""https://solvionic.com""}","Correctness: 98% Completeness: 95% The information about Solvionic is highly accurate and well-supported by multiple authoritative sources. The founding year (2003), headquarters in Toulouse, France, pioneering status in ionic liquids technology, and ability to achieve 99.9% purity across their product range are confirmed by the official company website and related pages[1][2][3]. François Malbosc as Founder and CEO is consistently indicated, affirming leadership details[1][3]. Their focus on innovative chemistry, sustainability, and applications in catalysis, surface treatment, and energy storage aligns well with company descriptions[1][2]. Packaging details and high purity claims are mentioned on product pages, supporting product-related claims[2]. The global sales footprint (Europe, Americas, Asia, Middle East, Africa) although less detailed in search results, is consistent with company statements on contact and international presence[2]. A minor deduction is applied for the absence of explicit recent press releases or filings for leadership titles and the slightly limited details on packaging connectors in the provided results. Overall, all core claims about company identity, leadership, product purity, innovation focus, and geographic reach are well corroborated. URLs: https://solvionic.com/en/, https://www.solvionic-energy.com/en/company/, https://app.dealroom.co/companies/solvionic","{""clientCategories"":[""Electrochemical device manufacturers"",""Surface finishing industry"",""Solvent, separation & extraction applications""],""companyDescription"":""Founded in 2003, Solvionic is a pioneer in ionic liquids technology, capable of achieving 99.9% purity in its product range. They focus on innovative chemistry based on ionic liquids, committed to sustainability by designing chemical processes that reduce energy consumption and waste, producing non-volatile, non-flammable, recyclable, and durable products. Solvionic integrates research, production, and marketing with a global strategy, serving cutting-edge markets including catalysis, surface treatment, and energy storage."",""geographicFocus"":""HQ: 11 Chemin des Silos, 31100 Toulouse, France; Sales Focus: Global (including countries across Europe, Americas, Asia, Middle East, Africa)"",""keyExecutives"":[{""name"":""François Malbosc"",""sourceUrl"":""https://www.crunchbase.com/organization/solvionic"",""title"":""Founder, Chief Executive Officer & Président""},{""name"":""Gildas Sorin"",""sourceUrl"":""https://craft.co/solvionic/executives"",""title"":""Director""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Solvionic offers high purity ionic solutions including: \n- Ionic Liquids\n- Electrolytes\n- Metallic Salts\nThese are produced using continuous production and intensification techniques ensuring purity over 99.9%. Packaging options include drums or flexible containers with specialized Nitto Kohki© or Swagelok© connections to maintain product integrity."",""researcherNotes"":""Client categories are inferred from application areas mentioned on the website as explicit client category lists are not provided."",""sectorDescription"":""Operates in the chemical manufacturing sector specializing in high-purity ionic liquids and advanced chemical solutions for energy, catalysis, and surface treatment applications."",""sources"":{""clientCategories"":""https://solvionic.com/en/content/applications"",""companyDescription"":""https://solvionic.com/en/content/the-company"",""geographicFocus"":""https://solvionic.com/en/contact-us"",""keyExecutives"":""https://www.crunchbase.com/organization/solvionic"",""productDescription"":""https://solvionic.com/en/10-products""},""websiteURL"":""http://en.solvionic.com/""}" -Huddle Corp,http://www.huddlecorp.com/,Demeter Partners,huddlecorp.com,https://www.linkedin.com/company/huddle-corp,"{""seniorLeadership"":[{""name"":""Jon Schmieder"",""title"":""Founder + CEO"",""linkedinURL"":""https://www.linkedin.com/in/jon-schmieder-1a979061""}]}","{""seniorLeadership"":[{""name"":""Jon Schmieder"",""title"":""Founder + CEO"",""linkedinURL"":""https://www.linkedin.com/in/jon-schmieder-1a979061""}]}","{ - ""websiteURL"": ""http://www.huddlecorp.com/"", - ""companyDescription"": ""Huddle Corp offers technological feeds and encapsulated ingredients to improve nutritional performance by enhancing metabolic actions, digestibility, and nutrient preservation. Their mission focuses on precision nutrition for health, resilience for sustainable nutrition by reducing waste and environmental impact, and creating functional feeds for broodstock and young livestock to improve gut health, nutrient synergy, and antioxidative stress. They operate in the aquaculture sector, providing aquafeeds for broodstock and hatcheries, and patented encapsulation technologies for feed, food, and human health."", - ""productDescription"": ""BroodSup: for Broodstock, enhances quality of spawnings & hatching, provides high energy intake when low feed intake, contains high amount of qualitative lipids (EPA / DHA), reduces dependency on live feeds, available for Marine Fish (8 mm, 12 mm, 20 mm) and Shrimp (2.5 mm). VivoHatch: for Larvae, live feed substitute, contributes to biosecurity & survival, available for Marine Fish and Shrimp in sizes 50-150μm, 150-300μm, 300-500μm."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the aquaculture sector, providing encapsulated technological feeds and ingredients to improve nutritional performance and sustainability."", - ""geographicFocus"": ""HQ: 9 rue du Fondeur 44800 Saint-Herblain, FRANCE; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information about client categories or senior leadership. Sales focus regions other than the HQ location are also not stated."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.huddlecorp.com/"", - ""productDescription"": ""https://www.huddlecorp.com/pages/products.php"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.huddlecorp.com/pages/contact.php"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.huddlecorp.com/"", - ""companyDescription"": ""Huddle Corp offers technological feeds and encapsulated ingredients to improve nutritional performance by enhancing metabolic actions, digestibility, and nutrient preservation. Their mission focuses on precision nutrition for health, resilience for sustainable nutrition by reducing waste and environmental impact, and creating functional feeds for broodstock and young livestock to improve gut health, nutrient synergy, and antioxidative stress. They operate in the aquaculture sector, providing aquafeeds for broodstock and hatcheries, and patented encapsulation technologies for feed, food, and human health."", - ""productDescription"": ""BroodSup: for Broodstock, enhances quality of spawnings & hatching, provides high energy intake when low feed intake, contains high amount of qualitative lipids (EPA / DHA), reduces dependency on live feeds, available for Marine Fish (8 mm, 12 mm, 20 mm) and Shrimp (2.5 mm). VivoHatch: for Larvae, live feed substitute, contributes to biosecurity & survival, available for Marine Fish and Shrimp in sizes 50-150μm, 150-300μm, 300-500μm."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the aquaculture sector, providing encapsulated technological feeds and ingredients to improve nutritional performance and sustainability."", - ""geographicFocus"": ""HQ: 9 rue du Fondeur 44800 Saint-Herblain, FRANCE; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website does not provide explicit information about client categories or senior leadership. Sales focus regions other than the HQ location are also not stated."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.huddlecorp.com/"", - ""productDescription"": ""https://www.huddlecorp.com/pages/products.php"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.huddlecorp.com/pages/contact.php"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.huddlecorp.com"", - ""companyDescription"": ""Huddle Corp develops technological feeds and encapsulated ingredients to enhance nutritional performance in aquaculture. Their mission centers on precision nutrition to improve metabolic activity, digestibility, and nutrient preservation, while promoting sustainable nutrition by reducing waste and environmental impact. Their patented technologies create functional feeds for broodstock and young livestock, improving gut health, nutrient synergy, and antioxidative stress, primarily for fish and shrimp hatcheries."", - ""productDescription"": ""Huddle Corp offers specialized aquafeeds including BroodSup, designed for broodstock to enhance spawning quality, provide high-energy intake at low feed consumption, and reduce dependency on live feeds, available in different sizes for marine fish and shrimp. VivoHatch acts as a live feed substitute for larvae, supporting biosecurity and survival, offered in multiple size ranges for marine fish and shrimp larvae."", - ""clientCategories"": [ - ""Aquaculture Producers"", - ""Fish Hatcheries"", - ""Shrimp Hatcheries"", - ""Broodstock Farmers"", - ""Larvae Rearing Operations"" - ], - ""sectorDescription"": ""Aquaculture sector focused on advanced encapsulated feeds and ingredients to optimize nutrition performance and sustainability in fish and shrimp hatcheries."", - ""geographicFocus"": ""Headquartered in Saint-Herblain, France; no verifiable information available on broader sales or operating regions beyond the HQ location."", - ""keyExecutives"": [ - { - ""name"": ""Jon Schmieder"", - ""title"": ""Founder + CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/jon-schmieder-1a979061"" - } - ], - ""researcherNotes"": ""Company domain and headquarters in Saint-Herblain, France match across sources confirming company identity. Senior leadership data supplemented from LinkedIn as absent on official site. No explicit geographic sales footprint beyond headquarters found. Client categories inferred from product offerings and sector focus since not explicitly listed on company site."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.huddlecorp.com/"", - ""productDescription"": ""https://www.huddlecorp.com/pages/products.php"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.huddlecorp.com/pages/contact.php"", - ""keyExecutives"": ""https://www.linkedin.com/in/jon-schmieder-1a979061"" - } -}","{""clientCategories"":[""Aquaculture Producers"",""Fish Hatcheries"",""Shrimp Hatcheries"",""Broodstock Farmers"",""Larvae Rearing Operations""],""companyDescription"":""Huddle Corp develops technological feeds and encapsulated ingredients to enhance nutritional performance in aquaculture. Their mission centers on precision nutrition to improve metabolic activity, digestibility, and nutrient preservation, while promoting sustainable nutrition by reducing waste and environmental impact. Their patented technologies create functional feeds for broodstock and young livestock, improving gut health, nutrient synergy, and antioxidative stress, primarily for fish and shrimp hatcheries."",""geographicFocus"":""Headquartered in Saint-Herblain, France; no verifiable information available on broader sales or operating regions beyond the HQ location."",""keyExecutives"":[{""name"":""Jon Schmieder"",""sourceUrl"":""https://www.linkedin.com/in/jon-schmieder-1a979061"",""title"":""Founder + CEO""}],""missingImportantFields"":[],""productDescription"":""Huddle Corp offers specialized aquafeeds including BroodSup, designed for broodstock to enhance spawning quality, provide high-energy intake at low feed consumption, and reduce dependency on live feeds, available in different sizes for marine fish and shrimp. VivoHatch acts as a live feed substitute for larvae, supporting biosecurity and survival, offered in multiple size ranges for marine fish and shrimp larvae."",""researcherNotes"":""Company domain and headquarters in Saint-Herblain, France match across sources confirming company identity. Senior leadership data supplemented from LinkedIn as absent on official site. No explicit geographic sales footprint beyond headquarters found. Client categories inferred from product offerings and sector focus since not explicitly listed on company site."",""sectorDescription"":""Aquaculture sector focused on advanced encapsulated feeds and ingredients to optimize nutrition performance and sustainability in fish and shrimp hatcheries."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.huddlecorp.com/"",""geographicFocus"":""https://www.huddlecorp.com/pages/contact.php"",""keyExecutives"":""https://www.linkedin.com/in/jon-schmieder-1a979061"",""productDescription"":""https://www.huddlecorp.com/pages/products.php""},""websiteURL"":""https://www.huddlecorp.com""}","Correctness: 93% Completeness: 88% The information about Huddle Corp’s focus on advanced encapsulated feeds to improve nutritional performance in aquaculture, especially for fish and shrimp hatcheries, is well supported by their official website and product pages, confirming details like proprietary encapsulation technologies, nutrient preservation, gut health enhancement, and sustainability benefits[3][4]. The company is headquartered in Saint-Herblain, France, as confirmed by multiple official sources including their contact page and press[2][3][4]. Jon Schmieder is verified as Founder and CEO via LinkedIn, supplementing the official site which lacks explicit leadership details[4][keyExecutives source]. Their product offerings include specialized feeds such as BroodSup for broodstock and VivoHatch as a live feed substitute for larvae, with marine fish and shrimp applications explicitly mentioned[3][4]. However, the geographic footprint beyond the French headquarters remains unconfirmed, reducing completeness since no broader operational regions are publicly available[4]. Additionally, public sources do not reference any funding details or industrial scale-up investments in the supplied query, though an external article confirms a €1.5M funding round and expansion plans which are relevant but not included in the presented data[1][2]. The company’s founding date and Cébazat location stated by an external directory conflicts with the main HQ location and founding year details, suggesting either outdated or less authoritative information[5]. Overall, the core factual claims about company identity, products, technology, leadership, and HQ are accurate, but the lack of publicly stated market scope and some minor discrepancies on founding and location details slightly affect completeness and correctness. Links: https://www.huddlecorp.com/pages/products.php https://www.huddlecorp.com/pages/aquafeed.php https://agfundernews.com/breaking-huddle-corp-raises-e1-5m-to-launch-efficient-aquafeed-products https://www.linkedin.com/in/jon-schmieder-1a979061 https://www.huddlecorp.com/pages/contact.php","{""clientCategories"":[],""companyDescription"":""Huddle Corp offers technological feeds and encapsulated ingredients to improve nutritional performance by enhancing metabolic actions, digestibility, and nutrient preservation. Their mission focuses on precision nutrition for health, resilience for sustainable nutrition by reducing waste and environmental impact, and creating functional feeds for broodstock and young livestock to improve gut health, nutrient synergy, and antioxidative stress. They operate in the aquaculture sector, providing aquafeeds for broodstock and hatcheries, and patented encapsulation technologies for feed, food, and human health."",""geographicFocus"":""HQ: 9 rue du Fondeur 44800 Saint-Herblain, FRANCE; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""BroodSup: for Broodstock, enhances quality of spawnings & hatching, provides high energy intake when low feed intake, contains high amount of qualitative lipids (EPA / DHA), reduces dependency on live feeds, available for Marine Fish (8 mm, 12 mm, 20 mm) and Shrimp (2.5 mm). VivoHatch: for Larvae, live feed substitute, contributes to biosecurity & survival, available for Marine Fish and Shrimp in sizes 50-150μm, 150-300μm, 300-500μm."",""researcherNotes"":""The website does not provide explicit information about client categories or senior leadership. Sales focus regions other than the HQ location are also not stated."",""sectorDescription"":""Operates in the aquaculture sector, providing encapsulated technological feeds and ingredients to improve nutritional performance and sustainability."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.huddlecorp.com/"",""geographicFocus"":""https://www.huddlecorp.com/pages/contact.php"",""keyExecutives"":null,""productDescription"":""https://www.huddlecorp.com/pages/products.php""},""websiteURL"":""http://www.huddlecorp.com/""}" -Drone Ag,https://droneag.farm,Agrii,droneag.farm,https://www.linkedin.com/company/droneag,"{""seniorLeadership"":[{""name"":""Jack Wrangham"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/jack-wrangham""},{""name"":""Abu Salim"",""title"":""Chief Technology Officer (fractional)"",""linkedinProfile"":""https://www.linkedin.com/in/abu-salim24""},{""name"":""Alexander Egorov"",""title"":""Board Member"",""linkedinProfile"":""https://www.linkedin.com/in/alexander-egorov""}]}","{""seniorLeadership"":[{""name"":""Jack Wrangham"",""title"":""Chief Executive Officer"",""linkedinProfile"":""https://www.linkedin.com/in/jack-wrangham""},{""name"":""Abu Salim"",""title"":""Chief Technology Officer (fractional)"",""linkedinProfile"":""https://www.linkedin.com/in/abu-salim24""},{""name"":""Alexander Egorov"",""title"":""Board Member"",""linkedinProfile"":""https://www.linkedin.com/in/alexander-egorov""}]}","{ - ""websiteURL"": ""https://droneag.farm"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and its subpages present no accessible content for extraction. No descriptions, leadership information, geographic details, or product data were found through scanning all available pages, including main URLs and expected subpages. The site might be under maintenance or the content is heavily scripted or blocked from scraping."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://droneag.farm"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and its subpages present no accessible content for extraction. No descriptions, leadership information, geographic details, or product data were found through scanning all available pages, including main URLs and expected subpages. The site might be under maintenance or the content is heavily scripted or blocked from scraping."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://droneag.farm"", - ""companyDescription"": ""Drone AG is a private technology company founded in 2015 and headquartered in Alnwick, United Kingdom. It specializes in providing drone automation solutions tailored for agriculture, helping farmers increase productivity through practical and hassle-free drone technology. The company integrates advanced crop sensors, imaging systems, and AI to enhance farming practices such as crop scouting, spraying, and field mapping."", - ""productDescription"": ""Drone AG delivers a range of products and services including drones, cameras, imaging systems, automated crop scouting and spraying, and field mapping solutions. It also offers training for farmers to effectively use drone technology and advanced crop sensors. These offerings enable faster crop monitoring and smarter decision-making to improve farm productivity and operational efficiency."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Enterprises"", - ""Crop Managers"", - ""Agritech Service Providers"", - ""Research Institutions"" - ], - ""sectorDescription"": ""Technology company focused on agritech, specializing in drone automation and AI-driven solutions for precision farming and crop management."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Jack Wrangham"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/jack-wrangham"" - }, - { - ""name"": ""Abu Salim"", - ""title"": ""Chief Technology Officer (fractional)"", - ""sourceUrl"": ""https://www.linkedin.com/in/abu-salim24"" - }, - { - ""name"": ""Alexander Egorov"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://www.linkedin.com/in/alexander-egorov"" - } - ], - ""researcherNotes"": ""The company website (droneag.farm) offers minimal direct descriptive content; however, Craft.co provides a comprehensive profile confirming Drone AG as a UK-based agritech firm focused on drone automation for farming, founded in 2015. LinkedIn profiles supply current senior leadership details. No explicit geographic focus beyond UK HQ could be identified. The website’s content is limited and may be under maintenance or heavily scripted."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://craft.co/drone-ag"", - ""productDescription"": ""https://craft.co/drone-ag"", - ""clientCategories"": ""https://craft.co/drone-ag"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://www.linkedin.com/in/jack-wrangham"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Enterprises"",""Crop Managers"",""Agritech Service Providers"",""Research Institutions""],""companyDescription"":""Drone AG is a private technology company founded in 2015 and headquartered in Alnwick, United Kingdom. It specializes in providing drone automation solutions tailored for agriculture, helping farmers increase productivity through practical and hassle-free drone technology. The company integrates advanced crop sensors, imaging systems, and AI to enhance farming practices such as crop scouting, spraying, and field mapping."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Jack Wrangham"",""sourceUrl"":""https://www.linkedin.com/in/jack-wrangham"",""title"":""Chief Executive Officer""},{""name"":""Abu Salim"",""sourceUrl"":""https://www.linkedin.com/in/abu-salim24"",""title"":""Chief Technology Officer (fractional)""},{""name"":""Alexander Egorov"",""sourceUrl"":""https://www.linkedin.com/in/alexander-egorov"",""title"":""Board Member""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Drone AG delivers a range of products and services including drones, cameras, imaging systems, automated crop scouting and spraying, and field mapping solutions. It also offers training for farmers to effectively use drone technology and advanced crop sensors. These offerings enable faster crop monitoring and smarter decision-making to improve farm productivity and operational efficiency."",""researcherNotes"":""The company website (droneag.farm) offers minimal direct descriptive content; however, Craft.co provides a comprehensive profile confirming Drone AG as a UK-based agritech firm focused on drone automation for farming, founded in 2015. LinkedIn profiles supply current senior leadership details. No explicit geographic focus beyond UK HQ could be identified. The website’s content is limited and may be under maintenance or heavily scripted."",""sectorDescription"":""Technology company focused on agritech, specializing in drone automation and AI-driven solutions for precision farming and crop management."",""sources"":{""clientCategories"":""https://craft.co/drone-ag"",""companyDescription"":""https://craft.co/drone-ag"",""geographicFocus"":null,""keyExecutives"":""https://www.linkedin.com/in/jack-wrangham"",""productDescription"":""https://craft.co/drone-ag""},""websiteURL"":""https://droneag.farm""}","Correctness: 98% Completeness: 90% - -The information about Drone AG is largely correct and well-supported. Drone AG Limited is a UK-based private technology company incorporated on 17 July 2015, headquartered at The Steadings, East Lilburn, Alnwick, UK, specializing in drone automation solutions for agriculture, integrating AI and imaging systems for crop monitoring, spraying, and mapping[1][3][6]. The current key executives are confirmed as Jack Wrangham (CEO), Abu Salim (Chief Technology Officer, fractional), and Alexander Egorov (Board Member/Director), consistent with LinkedIn and Companies House records updated as recently as 2023[2][3][6]. The product offerings include drones, cameras, AI-driven crop scouting, spraying, and field mapping, with farmer training services, which aligns with multiple descriptions including the company website and third-party profiles[3][6]. The company’s sector description as agritech focused on drone automation for precision farming is accurate as well. The only minor incompleteness is the lack of explicit geographic market focus outside the UK, which remains unspecified in all sources reviewed, and some limited detail about recent funding rounds beyond a previous £800,000 raise confirmed by Innovation SuperNetwork in 2021[3]. Overall, the core facts are up to date and well-corroborated by official filings (Companies House), official company-linked sources, and reputable agritech networks. - -Sources: -https://find-and-update.company-information.service.gov.uk/company/09691535 -https://find-and-update.company-information.service.gov.uk/company/09691535/officers -https://supernetwork.org.uk/case-studies/droneag/ -https://www.linkedin.com/in/jack-wrangham -https://www.linkedin.com/in/abu-salim24 -https://www.linkedin.com/in/alexander-egorov -https://wcg.ac.uk/page/1145/leading-expert-on-the-use-of-drone-technology-to-visit-pershore-college","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website and its subpages present no accessible content for extraction. No descriptions, leadership information, geographic details, or product data were found through scanning all available pages, including main URLs and expected subpages. The site might be under maintenance or the content is heavily scripted or blocked from scraping."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://droneag.farm""}" -Edgard & Cooper,https://nl.edgardcooper.com,"DLF Venture, The Craftory",nl.edgardcooper.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://nl.edgardcooper.com"", - ""companyDescription"": ""Edgard & Cooper produces nutritious dog food made with real ingredients, emphasizing expert preparation and natural recipes."", - ""productDescription"": ""Edgard & Cooper offers core products including dry food, wet food, and treats formulated for puppies, adults, and senior dogs. Key products include:\n- Free-Run Chicken Adult Dog Dry Food\n- Chicken & Turkey Adult Dog Wet Food\n- Oatmeal with Peanut Butter Biscuit Treats"", - ""clientCategories"": [""Pet owners seeking high-quality, grain-free or natural ingredient dog food""], - ""sectorDescription"": ""Operates in the pet food industry focused on health-oriented dog nutrition."", - ""geographicFocus"": ""HQ: Spinnerijstraat 101/0023, Kortrijk, Flanders, Belgium; Sales Focus: Multiple European countries and the United States"", - ""keyExecutives"": [ - {""name"": ""Louis Chalabi"", ""title"": ""Founder, Chief Marketing Officer"", ""sourceUrl"": ""https://www.cbinsights.com/company/edgard-cooper/people""}, - {""name"": ""Koen Bostoen"", ""title"": ""Founder"", ""sourceUrl"": ""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner""}, - {""name"": ""Jürgen Degrande"", ""title"": ""Founder"", ""sourceUrl"": ""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific CEO or other C-level executives found beyond founders and CMO. Headquarters found via third-party sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nl.edgardcooper.com"", - ""productDescription"": ""https://nl.edgardcooper.com"", - ""clientCategories"": ""https://nl.edgardcooper.com"", - ""geographicFocus"": ""https://www.cbinsights.com/company/edgard-cooper/people"", - ""keyExecutives"": ""https://www.cbinsights.com/company/edgard-cooper/people"" - } -}","{ - ""websiteURL"": ""https://nl.edgardcooper.com"", - ""companyDescription"": ""Edgard & Cooper produces nutritious dog food made with real ingredients, emphasizing expert preparation and natural recipes."", - ""productDescription"": ""Edgard & Cooper offers core products including dry food, wet food, and treats formulated for puppies, adults, and senior dogs. Key products include:\n- Free-Run Chicken Adult Dog Dry Food\n- Chicken & Turkey Adult Dog Wet Food\n- Oatmeal with Peanut Butter Biscuit Treats"", - ""clientCategories"": [""Pet owners seeking high-quality, grain-free or natural ingredient dog food""], - ""sectorDescription"": ""Operates in the pet food industry focused on health-oriented dog nutrition."", - ""geographicFocus"": ""HQ: Spinnerijstraat 101/0023, Kortrijk, Flanders, Belgium; Sales Focus: Multiple European countries and the United States"", - ""keyExecutives"": [ - {""name"": ""Louis Chalabi"", ""title"": ""Founder, Chief Marketing Officer"", ""sourceUrl"": ""https://www.cbinsights.com/company/edgard-cooper/people""}, - {""name"": ""Koen Bostoen"", ""title"": ""Founder"", ""sourceUrl"": ""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner""}, - {""name"": ""Jürgen Degrande"", ""title"": ""Founder"", ""sourceUrl"": ""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific CEO or other C-level executives found beyond founders and CMO. Headquarters found via third-party sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nl.edgardcooper.com"", - ""productDescription"": ""https://nl.edgardcooper.com"", - ""clientCategories"": ""https://nl.edgardcooper.com"", - ""geographicFocus"": ""https://www.cbinsights.com/company/edgard-cooper/people"", - ""keyExecutives"": ""https://www.cbinsights.com/company/edgard-cooper/people"" - } -}",[],"{ - ""websiteURL"": ""https://nl.edgardcooper.com"", - ""companyDescription"": ""Edgard & Cooper produces nutritious dog food made with real ingredients, emphasizing expert preparation and natural recipes. Founded in 2014 by Koen Bostoen, Louis Chalabi, and Jürgen Degrande, the company is dedicated to making healthy, delicious pet food that is good for dogs, pet owners, and the planet. Their focus is on transparency, sustainability, and high-quality natural ingredients to improve pet nutrition and wellbeing."", - ""productDescription"": ""Edgard & Cooper offers a range of dog food products, including dry food, wet food, and treats formulated for puppies, adult dogs, and seniors. Their core products include Free-Run Chicken Adult Dog Dry Food, Chicken & Turkey Adult Dog Wet Food, and Oatmeal with Peanut Butter Biscuit Treats. These products feature fresh meat, fruits, vegetables, and herbs, designed to be nutritious, grain-free, and supportive of dogs' gut health."", - ""clientCategories"": [ - ""Pet Owners Seeking High-Quality Dog Food"", - ""Consumers Interested in Natural Ingredient Pet Food"", - ""Health-Conscious Dog Owners"", - ""Dog Owners Looking for Grain-Free Pet Food"" - ], - ""sectorDescription"": ""Pet food industry focused on health-oriented and natural ingredient dog nutrition."", - ""geographicFocus"": ""Edgard & Cooper is headquartered in Kortrijk, Flanders, Belgium, and operates primarily across multiple European countries including Austria, Belgium, Finland, France, Germany, Ireland, Italy, Netherlands, Spain, United Kingdom, as well as in the United States."", - ""keyExecutives"": [ - { - ""name"": ""Louis Chalabi"", - ""title"": ""Founder, Chief Marketing Officer"", - ""sourceUrl"": ""https://www.cbinsights.com/company/edgard-cooper/people"" - }, - { - ""name"": ""Koen Bostoen"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner"" - }, - { - ""name"": ""Jürgen Degrande"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner"" - } - ], - ""researcherNotes"": ""The company was confirmed as Edgard & Cooper based on domain, founders' names, and HQ location in West Flanders, Belgium. Operating footprint includes multiple European countries and the US, supported by B Corp listing and company sites. No additional senior leadership beyond founders and CMO could be found, including a missing CEO title. The founding year is 2014 based on multiple sources despite some reporting 2016, which appears to be a discrepancy in secondary sources. Geographic focus was updated to reflect verified multiple European markets plus the US. No missing critical core fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://nl.edgardcooper.com"", - ""productDescription"": ""https://nl.edgardcooper.com"", - ""clientCategories"": ""https://nl.edgardcooper.com"", - ""geographicFocus"": ""https://www.bcorporation.net/find-a-b-corp/company/edgard-cooper/"", - ""keyExecutives"": ""https://www.cbinsights.com/company/edgard-cooper/people"" - } -}","{""clientCategories"":[""Pet Owners Seeking High-Quality Dog Food"",""Consumers Interested in Natural Ingredient Pet Food"",""Health-Conscious Dog Owners"",""Dog Owners Looking for Grain-Free Pet Food""],""companyDescription"":""Edgard & Cooper produces nutritious dog food made with real ingredients, emphasizing expert preparation and natural recipes. Founded in 2014 by Koen Bostoen, Louis Chalabi, and Jürgen Degrande, the company is dedicated to making healthy, delicious pet food that is good for dogs, pet owners, and the planet. Their focus is on transparency, sustainability, and high-quality natural ingredients to improve pet nutrition and wellbeing."",""geographicFocus"":""Edgard & Cooper is headquartered in Kortrijk, Flanders, Belgium, and operates primarily across multiple European countries including Austria, Belgium, Finland, France, Germany, Ireland, Italy, Netherlands, Spain, United Kingdom, as well as in the United States."",""keyExecutives"":[{""name"":""Louis Chalabi"",""sourceUrl"":""https://www.cbinsights.com/company/edgard-cooper/people"",""title"":""Founder, Chief Marketing Officer""},{""name"":""Koen Bostoen"",""sourceUrl"":""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner"",""title"":""Founder""},{""name"":""Jürgen Degrande"",""sourceUrl"":""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Edgard & Cooper offers a range of dog food products, including dry food, wet food, and treats formulated for puppies, adult dogs, and seniors. Their core products include Free-Run Chicken Adult Dog Dry Food, Chicken & Turkey Adult Dog Wet Food, and Oatmeal with Peanut Butter Biscuit Treats. These products feature fresh meat, fruits, vegetables, and herbs, designed to be nutritious, grain-free, and supportive of dogs' gut health."",""researcherNotes"":""The company was confirmed as Edgard & Cooper based on domain, founders' names, and HQ location in West Flanders, Belgium. Operating footprint includes multiple European countries and the US, supported by B Corp listing and company sites. No additional senior leadership beyond founders and CMO could be found, including a missing CEO title. The founding year is 2014 based on multiple sources despite some reporting 2016, which appears to be a discrepancy in secondary sources. Geographic focus was updated to reflect verified multiple European markets plus the US. No missing critical core fields remain."",""sectorDescription"":""Pet food industry focused on health-oriented and natural ingredient dog nutrition."",""sources"":{""clientCategories"":""https://nl.edgardcooper.com"",""companyDescription"":""https://nl.edgardcooper.com"",""geographicFocus"":""https://www.bcorporation.net/find-a-b-corp/company/edgard-cooper/"",""keyExecutives"":""https://www.cbinsights.com/company/edgard-cooper/people"",""productDescription"":""https://nl.edgardcooper.com""},""websiteURL"":""https://nl.edgardcooper.com""}","Correctness: 90% Completeness: 88% The key facts about Edgard & Cooper are largely correct and well-supported. The company was founded by Koen Bostoen, Louis Chalabi, and Jürgen Degrande, all confirmed as founders and still involved in leadership roles[1][2][3][4]. The headquarters is in Kortrijk, Belgium, specifically West Flanders, and it operates across many European countries plus the US[2][5]. The founding year is somewhat disputed: official company stories mention the idea starting earlier (from 2004 to 2014) with product development and launch phases noted around 2014 and 2016; most credible sources, including the B Corporation listing and the founders’ statements, settle on 2014 as the foundation year, while some media reports cite 2016 as the launch year[2][4][5]. The product descriptions (nutritious dog food with fresh ingredients, grain-free options, and recipes designed for different dog life stages) are consistent with the company's own information, highlighting fresh meat, fruits, vegetables, and no preservatives[1][3]. Also confirmed is the company’s recent acquisition by General Mills, which will maintain the founders in leadership roles[4][5]. Missing from the checked materials is the exact CEO title clarity—founders remain the top executives but no explicit CEO title is present, which is noted as a gap[4][5]. Overall, the information is mostly up to date as of mid-2025 and captures the important business scope, leadership, products, and geographic footprint well with slight ambiguity on foundation timing and leadership titles. Sources: https://us.edgardcooper.com/pages/our-story, https://www.bcorporation.net/find-a-b-corp/company/edgard-cooper/, https://www.cbinsights.com/company/edgard-cooper/people, https://faq.edgardcooper.com/en/articles/9263656-a-message-from-edgard-cooper-s-founders, https://www.foodnavigator.com/Article/2024/05/02/general-mills-acquires-edgard-cooper-pet-food-brand/, https://www.vlerick.com/en/insights/scaling-your-business-the-story-of-edgard-cooper-episode-2/","{""clientCategories"":[""Pet owners seeking high-quality, grain-free or natural ingredient dog food""],""companyDescription"":""Edgard & Cooper produces nutritious dog food made with real ingredients, emphasizing expert preparation and natural recipes."",""geographicFocus"":""HQ: Spinnerijstraat 101/0023, Kortrijk, Flanders, Belgium; Sales Focus: Multiple European countries and the United States"",""keyExecutives"":[{""name"":""Louis Chalabi"",""sourceUrl"":""https://www.cbinsights.com/company/edgard-cooper/people"",""title"":""Founder, Chief Marketing Officer""},{""name"":""Koen Bostoen"",""sourceUrl"":""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner"",""title"":""Founder""},{""name"":""Jürgen Degrande"",""sourceUrl"":""https://invest.flandersinvestmentandtrade.com/en/news/edgard-cooper-acquired-haagen-dazs-owner"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Edgard & Cooper offers core products including dry food, wet food, and treats formulated for puppies, adults, and senior dogs. Key products include:\n- Free-Run Chicken Adult Dog Dry Food\n- Chicken & Turkey Adult Dog Wet Food\n- Oatmeal with Peanut Butter Biscuit Treats"",""researcherNotes"":""No specific CEO or other C-level executives found beyond founders and CMO. Headquarters found via third-party sources."",""sectorDescription"":""Operates in the pet food industry focused on health-oriented dog nutrition."",""sources"":{""clientCategories"":""https://nl.edgardcooper.com"",""companyDescription"":""https://nl.edgardcooper.com"",""geographicFocus"":""https://www.cbinsights.com/company/edgard-cooper/people"",""keyExecutives"":""https://www.cbinsights.com/company/edgard-cooper/people"",""productDescription"":""https://nl.edgardcooper.com""},""websiteURL"":""https://nl.edgardcooper.com""}" -ZoomAgri,https://zoomagri.com/,"Artesian VC, GrainCorp Ventures, GrainInnovate, Grains Research and Development Corp, SP Ventures",zoomagri.com,https://www.linkedin.com/company/zoomagri,"{""seniorLeadership"":[{""name"":""Fernando Martinez de Hoz"",""title"":""Co-Founder"",""profileURL"":""https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049""},{""name"":""Jaap Rommelaar"",""title"":""Member Board of Directors, Co-Founder"",""profileURL"":""https://www.linkedin.com/in/jaap-rommelaar-237b535""},{""name"":""Matías Micheloud"",""title"":""Co-founder & CTO/COO"",""profileURL"":""https://www.linkedin.com/in/mat%C3%ADas-micheloud-5026a310""}]}","{""seniorLeadership"":[{""name"":""Fernando Martinez de Hoz"",""title"":""Co-Founder"",""profileURL"":""https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049""},{""name"":""Jaap Rommelaar"",""title"":""Member Board of Directors, Co-Founder"",""profileURL"":""https://www.linkedin.com/in/jaap-rommelaar-237b535""},{""name"":""Matías Micheloud"",""title"":""Co-founder & CTO/COO"",""profileURL"":""https://www.linkedin.com/in/mat%C3%ADas-micheloud-5026a310""}]}","{ - ""websiteURL"": ""https://zoomagri.com/"", - ""companyDescription"": ""ZoomAgri is a global AgTech company focused on transforming the Testing, Inspection, and Certification of agricultural commodities and food using Computer Vision and Machine Learning. Their mission involves providing standardized, objective, and accurate visual quality assessments and variety recognition in grains and oilseeds."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the Agricultural Technology (AgTech) sector, providing innovative computer vision and machine learning solutions for testing and certification of agricultural commodities."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://drive.google.com/file/d/10XlXsiSG7zwQRXTohoIFpomkfwZ7o947/view?usp=sharing"",""https://drive.google.com/file/d/1I7J2sUU5YpP9B5QOhWzHis1oztfDRYd0/view?usp=sharing""], - ""researcherNotes"": ""Many critical fields such as product offerings, client categories, geographic footprint, and leadership information could not be found from the website pages accessed. Leadership and client information was notably absent despite multiple page checks. The product offerings page lacked direct descriptive content. Contact pages and other relevant areas did not show specific geographic HQ or market regions."", - ""missingImportantFields"": [""productDescription"",""clientCategories"",""geographicFocus"",""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://zoomagri.com/en/home#about-us"", - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://zoomagri.com/"", - ""companyDescription"": ""ZoomAgri is a global AgTech company focused on transforming the Testing, Inspection, and Certification of agricultural commodities and food using Computer Vision and Machine Learning. Their mission involves providing standardized, objective, and accurate visual quality assessments and variety recognition in grains and oilseeds."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the Agricultural Technology (AgTech) sector, providing innovative computer vision and machine learning solutions for testing and certification of agricultural commodities."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://drive.google.com/file/d/10XlXsiSG7zwQRXTohoIFpomkfwZ7o947/view?usp=sharing"",""https://drive.google.com/file/d/1I7J2sUU5YpP9B5QOhWzHis1oztfDRYd0/view?usp=sharing""], - ""researcherNotes"": ""Many critical fields such as product offerings, client categories, geographic footprint, and leadership information could not be found from the website pages accessed. Leadership and client information was notably absent despite multiple page checks. The product offerings page lacked direct descriptive content. Contact pages and other relevant areas did not show specific geographic HQ or market regions."", - ""missingImportantFields"": [""productDescription"",""clientCategories"",""geographicFocus"",""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://zoomagri.com/en/home#about-us"", - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""productDescription"",""clientCategories"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://zoomagri.com"", - ""companyDescription"": ""ZoomAgri is a global AgTech company specializing in transforming the testing, inspection, and certification processes of agricultural commodities and food by leveraging computer vision and machine learning technologies. The company provides standardized, objective, and accurate visual quality assessments and variety recognition specifically for grains and oilseeds, enabling faster and more reliable quality control in the agricultural supply chain."", - ""productDescription"": ""ZoomAgri delivers AI-powered hardware-software systems, including ZoomSpex for grain grading and ZoomVarieties for variety determination. These systems scan grain or seed samples and use a proprietary image-processing algorithm trained on over 250 million images to classify sample quality and variety within minutes. Customers benefit from real-time, standardized visual quality results that enhance decision-making in grain trading and handling."", - ""clientCategories"": [ - ""Commodity Traders"", - ""Agribusinesses"", - ""Food and Beverage Companies"", - ""Grain Exporters"", - ""Quality Control Laboratories"" - ], - ""sectorDescription"": ""Agricultural Technology (AgTech) focused on computer vision and machine learning solutions for testing and certifying quality and variety of agricultural commodities."", - ""geographicFocus"": ""Global operations with presence in Argentina, Spain, Brazil, Australia, and customers in 25 countries, with planned expansion into North America."", - ""keyExecutives"": [ - { - ""name"": ""Fernando Martinez de Hoz"", - ""title"": ""Co-Founder & Managing Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049"" - }, - { - ""name"": ""Jaap Rommelaar"", - ""title"": ""Co-Founder & Managing Director"", - ""sourceUrl"": ""https://www.linkedin.com/in/jaap-rommelaar-237b535"" - }, - { - ""name"": ""Matías Micheloud"", - ""title"": ""Co-Founder & CTO"", - ""sourceUrl"": ""https://www.linkedin.com/in/mat%C3%ADas-micheloud-5026a310"" - } - ], - ""researcherNotes"": ""The company was confirmed as ZoomAgri based on domain matching and leadership identities from LinkedIn that align with the company website and press sources. The geographic focus was supplemented from press describing operations in Argentina, Spain, Brazil, Australia, and 25 countries total, with plans for North America. Product details and client categories were enriched using recent funding announcements and press. Missing fields originally included product description, client categories, geographic focus, and key executives; these were populated from LinkedIn and recent credible sources. Exact headquarters location conflicts with older secondary sources, with primary presence noted in Buenos Aires, Argentina, and offices in Madrid, Spain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://zoomagri.com/en/home#about-us"", - ""productDescription"": ""https://www.vantrumpreport.com/2024/05/21/ai-powered-system-from-zoomagri-provides-fast-accurate-grain-and-seed-inspection/"", - ""clientCategories"": ""https://www.vantrumpreport.com/2024/05/21/ai-powered-system-from-zoomagri-provides-fast-accurate-grain-and-seed-inspection/"", - ""geographicFocus"": ""https://agfundernews.com/zoomagri-lands-6m-from-graincorp-and-others-to-expand-ai-powered-grain-inspection-system"", - ""keyExecutives"": ""https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049"" - } -}","{""clientCategories"":[""Commodity Traders"",""Agribusinesses"",""Food and Beverage Companies"",""Grain Exporters"",""Quality Control Laboratories""],""companyDescription"":""ZoomAgri is a global AgTech company specializing in transforming the testing, inspection, and certification processes of agricultural commodities and food by leveraging computer vision and machine learning technologies. The company provides standardized, objective, and accurate visual quality assessments and variety recognition specifically for grains and oilseeds, enabling faster and more reliable quality control in the agricultural supply chain."",""geographicFocus"":""Global operations with presence in Argentina, Spain, Brazil, Australia, and customers in 25 countries, with planned expansion into North America."",""keyExecutives"":[{""name"":""Fernando Martinez de Hoz"",""sourceUrl"":""https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049"",""title"":""Co-Founder & Managing Director""},{""name"":""Jaap Rommelaar"",""sourceUrl"":""https://www.linkedin.com/in/jaap-rommelaar-237b535"",""title"":""Co-Founder & Managing Director""},{""name"":""Matías Micheloud"",""sourceUrl"":""https://www.linkedin.com/in/mat%C3%ADas-micheloud-5026a310"",""title"":""Co-Founder & CTO""}],""missingImportantFields"":[],""productDescription"":""ZoomAgri delivers AI-powered hardware-software systems, including ZoomSpex for grain grading and ZoomVarieties for variety determination. These systems scan grain or seed samples and use a proprietary image-processing algorithm trained on over 250 million images to classify sample quality and variety within minutes. Customers benefit from real-time, standardized visual quality results that enhance decision-making in grain trading and handling."",""researcherNotes"":""The company was confirmed as ZoomAgri based on domain matching and leadership identities from LinkedIn that align with the company website and press sources. The geographic focus was supplemented from press describing operations in Argentina, Spain, Brazil, Australia, and 25 countries total, with plans for North America. Product details and client categories were enriched using recent funding announcements and press. Missing fields originally included product description, client categories, geographic focus, and key executives; these were populated from LinkedIn and recent credible sources. Exact headquarters location conflicts with older secondary sources, with primary presence noted in Buenos Aires, Argentina, and offices in Madrid, Spain."",""sectorDescription"":""Agricultural Technology (AgTech) focused on computer vision and machine learning solutions for testing and certifying quality and variety of agricultural commodities."",""sources"":{""clientCategories"":""https://www.vantrumpreport.com/2024/05/21/ai-powered-system-from-zoomagri-provides-fast-accurate-grain-and-seed-inspection/"",""companyDescription"":""https://zoomagri.com/en/home#about-us"",""geographicFocus"":""https://agfundernews.com/zoomagri-lands-6m-from-graincorp-and-others-to-expand-ai-powered-grain-inspection-system"",""keyExecutives"":""https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049"",""productDescription"":""https://www.vantrumpreport.com/2024/05/21/ai-powered-system-from-zoomagri-provides-fast-accurate-grain-and-seed-inspection/""},""websiteURL"":""https://zoomagri.com""}","Correctness: 95% Completeness: 90% The information about ZoomAgri is largely accurate and well-supported. The company was founded in 2017, specializes in AI-powered visual quality assessment and variety recognition for grains and oilseeds using computer vision and machine learning, and serves a global market including Argentina, Spain, Brazil, Australia, and 25 countries total with planned expansion into North America[1][4][5]. The leadership team includes co-founders Fernando Martinez de Hoz (Managing Director), Jaap Rommelaar (Managing Director), and Matías Micheloud (CTO), all confirmed via LinkedIn and aligned with company sources[5]. The product description of AI-powered hardware-software systems such as ZoomSpex and ZoomVarieties using proprietary algorithms trained on over 250 million images fits the publicly described tech[1][4]. The company raised $6 million in a Series A round led by GrainCorp and GrainInnovate in July 2023, consistent with multiple investor reports[1][3]. The company’s headquarter location is primarily Argentina with operational offices in Spain, Brazil, and Australia, though some sources highlight a Madrid registration or presence; this is a minor geographic complexity common in multinational firms but does not significantly undermine accuracy[4][5]. Completeness is slightly reduced because the funding figure differs in one source citing $9 million, which might reflect a later or larger total raise not fully reconciled in all sources[6]. The client categories and sector description are well-covered but could include more detail on exact commodities besides grains and oilseeds. Overall, the company profile is fully consistent with public official and press information as of mid-2023 and early 2024[1][4][5][6]. https://zoomagri.com/en/home#about-us https://www.linkedin.com/in/fernando-martinez-de-hoz-b166049 https://www.vantrumpreport.com/2024/05/21/ai-powered-system-from-zoomagri-provides-fast-accurate-grain-and-seed-inspection/ https://agfundernews.com/zoomagri-lands-6m-from-graincorp-and-others-to-expand-ai-powered-grain-inspection-system https://www.thesaasnews.com/news/zoomagri-raises-6-million-in-series-a","{""clientCategories"":[],""companyDescription"":""ZoomAgri is a global AgTech company focused on transforming the Testing, Inspection, and Certification of agricultural commodities and food using Computer Vision and Machine Learning. Their mission involves providing standardized, objective, and accurate visual quality assessments and variety recognition in grains and oilseeds."",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[""https://drive.google.com/file/d/10XlXsiSG7zwQRXTohoIFpomkfwZ7o947/view?usp=sharing"",""https://drive.google.com/file/d/1I7J2sUU5YpP9B5QOhWzHis1oztfDRYd0/view?usp=sharing""],""missingImportantFields"":[""productDescription"",""clientCategories"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""Many critical fields such as product offerings, client categories, geographic footprint, and leadership information could not be found from the website pages accessed. Leadership and client information was notably absent despite multiple page checks. The product offerings page lacked direct descriptive content. Contact pages and other relevant areas did not show specific geographic HQ or market regions."",""sectorDescription"":""Operates in the Agricultural Technology (AgTech) sector, providing innovative computer vision and machine learning solutions for testing and certification of agricultural commodities."",""sources"":{""clientCategories"":null,""companyDescription"":""https://zoomagri.com/en/home#about-us"",""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://zoomagri.com/""}" -Stenon,https://www.stenon.io,"Atlantic Labs, Cherry Ventures, Founders Fund, The Production Board (TPB)",stenon.io,https://www.linkedin.com/company/stenon/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.stenon.io"", - ""companyDescription"": ""Founded in 2018 and headquartered in Potsdam, Germany, Stenon GmbH is the global leader in real-time digital soil data. The company provides innovative technology offering essential soil insights aimed at optimizing yields, improving soil health, and reducing input costs. Its solutions are designed for input retailers, machinery dealers, agriculture consultants, and food producers. Stenon's mission is to provide the world’s leading technology for real-time Soil Insights and Soil Fertility Data, empowering agri-businesses to achieve unparalleled success by improving sustainability, maximizing yields, reducing input costs for growers, and minimizing over-fertilization while supporting a more efficient and sustainable agricultural ecosystem."", - ""productDescription"": ""Stenon offers a complete soil data management solution including hardware and software. Their hardware product, FarmLab, is a portable soil-analysis device equipped with advanced sensors (EIS, optical, GPS) to capture over 4,500 data points rapidly; it is assembled in Germany and certified by TüV and DLG. The technology uses near-infrared spectroscopy, UV-Vis spectroscopy, electrical impedance spectroscopy, and AI to turn sensor data into precise soil nutrient insights with regional calibration. Core parameters measured include plant-available nitrogen (Nmin), soil organic matter (SOM), moisture, and temperature. The software provides nutrient composition, field mapping, soil trends, and region-specific fertilization recommendations, integrating data with platforms like John Deere Operations Center and Trimble Ag."", - ""clientCategories"": [ - ""Input Retailers"", - ""Machinery Dealers"", - ""Agriculture Consultants"", - ""Food Producers"" - ], - ""sectorDescription"": ""Operates in the agri-tech sector, providing real-time digital soil data and soil fertility insights to optimize agricultural productivity and sustainability."", - ""geographicFocus"": ""HQ: Potsdam, Germany; Sales Focus: DACH (Germany, Austria, Switzerland), Brazil, Central Asia (Kazakhstan and North Kyrgyzstan), Greece, USA (California)."", - ""keyExecutives"": [ - { - ""name"": ""Niels Grabbert"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.stenon.io/en/about-us/the-company"" - }, - { - ""name"": ""Jens Meichsner"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.stenon.io/en/about-us/the-company"" - } - ], - ""linkedDocuments"": [ - ""https://www.stenon.io/files/generaltermsofsaleanddelivery_stenon_gmbh_en_july3_2020.pdf"", - ""https://www.stenon.io/files/pr_stenon-gmbh_dlg_240921.pdf"", - ""https://www.stenon.io/files/2194.12_fututec-2024_convite_digital.pdf"", - ""https://www.stenon.io/files/stenon-worldagsummit-september-2023.pdf"", - ""https://www.stenon.io/files/farmlab-erste-schritte.pdf"", - ""https://www.stenon.io/files/flyer-stenon-case-study-bra-jb.pdf"", - ""https://www.stenon.io/files/stimmen-aus-der-praxis-rwg-rheinland-pdf.pdf"", - ""https://blog.stenon.io/wp-content/uploads/2021/11/2021-09-16-Sachgerechte-Validierung-von-FarmLab_final.pdf"", - ""https://www.stenon.io/files/der-boden-in-seiner-gesamtheit-bodeneigenschaften-funktionen-und-phasen-infografik-stenon.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.stenon.io/en/about-us/the-company"", - ""productDescription"": ""https://www.stenon.io/en/technology"", - ""clientCategories"": ""https://www.stenon.io/en/customers"", - ""geographicFocus"": ""https://www.stenon.io/en/contact-us"", - ""keyExecutives"": ""https://www.stenon.io/en/about-us/the-company"" - } -}","{ - ""websiteURL"": ""https://www.stenon.io"", - ""companyDescription"": ""Founded in 2018 and headquartered in Potsdam, Germany, Stenon GmbH is the global leader in real-time digital soil data. The company provides innovative technology offering essential soil insights aimed at optimizing yields, improving soil health, and reducing input costs. Its solutions are designed for input retailers, machinery dealers, agriculture consultants, and food producers. Stenon's mission is to provide the world’s leading technology for real-time Soil Insights and Soil Fertility Data, empowering agri-businesses to achieve unparalleled success by improving sustainability, maximizing yields, reducing input costs for growers, and minimizing over-fertilization while supporting a more efficient and sustainable agricultural ecosystem."", - ""productDescription"": ""Stenon offers a complete soil data management solution including hardware and software. Their hardware product, FarmLab, is a portable soil-analysis device equipped with advanced sensors (EIS, optical, GPS) to capture over 4,500 data points rapidly; it is assembled in Germany and certified by TüV and DLG. The technology uses near-infrared spectroscopy, UV-Vis spectroscopy, electrical impedance spectroscopy, and AI to turn sensor data into precise soil nutrient insights with regional calibration. Core parameters measured include plant-available nitrogen (Nmin), soil organic matter (SOM), moisture, and temperature. The software provides nutrient composition, field mapping, soil trends, and region-specific fertilization recommendations, integrating data with platforms like John Deere Operations Center and Trimble Ag."", - ""clientCategories"": [ - ""Input Retailers"", - ""Machinery Dealers"", - ""Agriculture Consultants"", - ""Food Producers"" - ], - ""sectorDescription"": ""Operates in the agri-tech sector, providing real-time digital soil data and soil fertility insights to optimize agricultural productivity and sustainability."", - ""geographicFocus"": ""HQ: Potsdam, Germany; Sales Focus: DACH (Germany, Austria, Switzerland), Brazil, Central Asia (Kazakhstan and North Kyrgyzstan), Greece, USA (California)."", - ""keyExecutives"": [ - { - ""name"": ""Niels Grabbert"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.stenon.io/en/about-us/the-company"" - }, - { - ""name"": ""Jens Meichsner"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.stenon.io/en/about-us/the-company"" - } - ], - ""linkedDocuments"": [ - ""https://www.stenon.io/files/generaltermsofsaleanddelivery_stenon_gmbh_en_july3_2020.pdf"", - ""https://www.stenon.io/files/pr_stenon-gmbh_dlg_240921.pdf"", - ""https://www.stenon.io/files/2194.12_fututec-2024_convite_digital.pdf"", - ""https://www.stenon.io/files/stenon-worldagsummit-september-2023.pdf"", - ""https://www.stenon.io/files/farmlab-erste-schritte.pdf"", - ""https://www.stenon.io/files/flyer-stenon-case-study-bra-jb.pdf"", - ""https://www.stenon.io/files/stimmen-aus-der-praxis-rwg-rheinland-pdf.pdf"", - ""https://blog.stenon.io/wp-content/uploads/2021/11/2021-09-16-Sachgerechte-Validierung-von-FarmLab_final.pdf"", - ""https://www.stenon.io/files/der-boden-in-seiner-gesamtheit-bodeneigenschaften-funktionen-und-phasen-infografik-stenon.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.stenon.io/en/about-us/the-company"", - ""productDescription"": ""https://www.stenon.io/en/technology"", - ""clientCategories"": ""https://www.stenon.io/en/customers"", - ""geographicFocus"": ""https://www.stenon.io/en/contact-us"", - ""keyExecutives"": ""https://www.stenon.io/en/about-us/the-company"" - } -}",[],"{ - ""websiteURL"": ""https://www.stenon.io"", - ""companyDescription"": ""Founded in 2018 and headquartered in Potsdam, Germany, Stenon GmbH is the global leader in real-time digital soil data. The company provides innovative technology offering essential soil insights aimed at optimizing yields, improving soil health, and reducing input costs. Its solutions are designed for input retailers, machinery dealers, agriculture consultants, and food producers. Stenon's mission is to provide the world’s leading technology for real-time Soil Insights and Soil Fertility Data, empowering agri-businesses to achieve unparalleled success by improving sustainability, maximizing yields, reducing input costs for growers, and minimizing over-fertilization while supporting a more efficient and sustainable agricultural ecosystem."", - ""productDescription"": ""Stenon offers a complete soil data management solution including hardware and software. Their hardware product, FarmLab, is a portable soil-analysis device equipped with advanced sensors (EIS, optical, GPS) to capture over 4,500 data points rapidly; it is assembled in Germany and certified by TüV and DLG. The technology uses near-infrared spectroscopy, UV-Vis spectroscopy, electrical impedance spectroscopy, and AI to turn sensor data into precise soil nutrient insights with regional calibration. Core parameters measured include plant-available nitrogen (Nmin), soil organic matter (SOM), moisture, and temperature. The software provides nutrient composition, field mapping, soil trends, and region-specific fertilization recommendations, integrating data with platforms like John Deere Operations Center and Trimble Ag."", - ""clientCategories"": [ - ""Input Retailers"", - ""Machinery Dealers"", - ""Agriculture Consultants"", - ""Food Producers"" - ], - ""sectorDescription"": ""Operates in the agri-tech sector, providing real-time digital soil data and soil fertility insights to optimize agricultural productivity and sustainability."", - ""geographicFocus"": ""HQ: Potsdam, Germany; Sales Focus: DACH (Germany, Austria, Switzerland), Brazil, Central Asia (Kazakhstan and North Kyrgyzstan), Greece, USA (California)."", - ""keyExecutives"": [ - { - ""name"": ""Niels Grabbert"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""https://www.stenon.io/en/about-us/the-company"" - }, - { - ""name"": ""Jens Meichsner"", - ""title"": ""CTO"", - ""sourceUrl"": ""https://www.stenon.io/en/about-us/the-company"" - } - ], - ""researcherNotes"": ""The entity Stenon GmbH was confirmed using HQ location (Potsdam, Germany), founding year (2018), and product focus on real-time digital soil data. Geographic sales footprint includes DACH, Brazil, Central Asia, Greece, and USA, with recent expansion into the Greek market via Agrotech partnership (June 2025). There were no key senior leadership additions found beyond the CEO and CTO listed on the official website. All key fields were filled from authoritative official company pages."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.stenon.io/en/about-us/the-company"", - ""productDescription"": ""https://www.stenon.io/en/technology"", - ""clientCategories"": ""https://www.stenon.io/en/customers"", - ""geographicFocus"": ""https://www.stenon.io/en/contact-us"", - ""keyExecutives"": ""https://www.stenon.io/en/about-us/the-company"" - } -}","{""clientCategories"":[""Input Retailers"",""Machinery Dealers"",""Agriculture Consultants"",""Food Producers""],""companyDescription"":""Founded in 2018 and headquartered in Potsdam, Germany, Stenon GmbH is the global leader in real-time digital soil data. The company provides innovative technology offering essential soil insights aimed at optimizing yields, improving soil health, and reducing input costs. Its solutions are designed for input retailers, machinery dealers, agriculture consultants, and food producers. Stenon's mission is to provide the world’s leading technology for real-time Soil Insights and Soil Fertility Data, empowering agri-businesses to achieve unparalleled success by improving sustainability, maximizing yields, reducing input costs for growers, and minimizing over-fertilization while supporting a more efficient and sustainable agricultural ecosystem."",""geographicFocus"":""HQ: Potsdam, Germany; Sales Focus: DACH (Germany, Austria, Switzerland), Brazil, Central Asia (Kazakhstan and North Kyrgyzstan), Greece, USA (California)."",""keyExecutives"":[{""name"":""Niels Grabbert"",""sourceUrl"":""https://www.stenon.io/en/about-us/the-company"",""title"":""Founder and CEO""},{""name"":""Jens Meichsner"",""sourceUrl"":""https://www.stenon.io/en/about-us/the-company"",""title"":""CTO""}],""missingImportantFields"":[],""productDescription"":""Stenon offers a complete soil data management solution including hardware and software. Their hardware product, FarmLab, is a portable soil-analysis device equipped with advanced sensors (EIS, optical, GPS) to capture over 4,500 data points rapidly; it is assembled in Germany and certified by TüV and DLG. The technology uses near-infrared spectroscopy, UV-Vis spectroscopy, electrical impedance spectroscopy, and AI to turn sensor data into precise soil nutrient insights with regional calibration. Core parameters measured include plant-available nitrogen (Nmin), soil organic matter (SOM), moisture, and temperature. The software provides nutrient composition, field mapping, soil trends, and region-specific fertilization recommendations, integrating data with platforms like John Deere Operations Center and Trimble Ag."",""researcherNotes"":""The entity Stenon GmbH was confirmed using HQ location (Potsdam, Germany), founding year (2018), and product focus on real-time digital soil data. Geographic sales footprint includes DACH, Brazil, Central Asia, Greece, and USA, with recent expansion into the Greek market via Agrotech partnership (June 2025). There were no key senior leadership additions found beyond the CEO and CTO listed on the official website. All key fields were filled from authoritative official company pages."",""sectorDescription"":""Operates in the agri-tech sector, providing real-time digital soil data and soil fertility insights to optimize agricultural productivity and sustainability."",""sources"":{""clientCategories"":""https://www.stenon.io/en/customers"",""companyDescription"":""https://www.stenon.io/en/about-us/the-company"",""geographicFocus"":""https://www.stenon.io/en/contact-us"",""keyExecutives"":""https://www.stenon.io/en/about-us/the-company"",""productDescription"":""https://www.stenon.io/en/technology""},""websiteURL"":""https://www.stenon.io""}","Correctness: 98% Completeness: 95% The information about Stenon GmbH is largely correct and complete based on authoritative company sources and reputable media. The company was founded in 2018 and is headquartered at Hegelallee 53, Potsdam, Germany, confirmed by official company credit profiles and their own website[2][3]. It specializes in real-time digital soil data and delivers a hardware-software solution including the FarmLab device that uses advanced sensors and AI for soil nutrient analysis with TüV and DLG certifications, as detailed on their official technology page[3]. The stated geographic focus includes DACH countries, Brazil, Central Asia, Greece, and the USA, which aligns with their public sales contacts and recent market expansions mentioned in 2025 updates[3]. Leadership with Niels Grabbert as CEO and Jens Meichsner as CTO matches the official company site with no major recent changes found[3]. Their $20M Series A funding round from reputable investors like Founders Fund was announced in late 2021 and remains current without later conflicting updates[4][5]. Key sectors served and core product features are accurately summarized from multiple official and press sources[3][4]. Minor completeness deductions arise from no mention of some partnerships (e.g., Agrotech in Greece) explicitly in the search results and employee counts varying slightly (51-200 vs. 55 in sources) but these do not affect accuracy materially. Overall, this is a high-fidelity representation of Stenon with robust sourcing from company-controlled pages and credible news reports. https://www.stenon.io/en/about-us/the-company https://www.stenon.io/en/technology https://www.stenon.io/en/contact-us https://techcrunch.com/2021/12/20/real-time-soil-testing-agtech-startup-stenon-raises-20m-series-a-funding-round/ https://www.creditsafe.com/business-index/en-gb/company/stenon-gmbh-de25581618","{""clientCategories"":[""Input Retailers"",""Machinery Dealers"",""Agriculture Consultants"",""Food Producers""],""companyDescription"":""Founded in 2018 and headquartered in Potsdam, Germany, Stenon GmbH is the global leader in real-time digital soil data. The company provides innovative technology offering essential soil insights aimed at optimizing yields, improving soil health, and reducing input costs. Its solutions are designed for input retailers, machinery dealers, agriculture consultants, and food producers. Stenon's mission is to provide the world’s leading technology for real-time Soil Insights and Soil Fertility Data, empowering agri-businesses to achieve unparalleled success by improving sustainability, maximizing yields, reducing input costs for growers, and minimizing over-fertilization while supporting a more efficient and sustainable agricultural ecosystem."",""geographicFocus"":""HQ: Potsdam, Germany; Sales Focus: DACH (Germany, Austria, Switzerland), Brazil, Central Asia (Kazakhstan and North Kyrgyzstan), Greece, USA (California)."",""keyExecutives"":[{""name"":""Niels Grabbert"",""sourceUrl"":""https://www.stenon.io/en/about-us/the-company"",""title"":""Founder and CEO""},{""name"":""Jens Meichsner"",""sourceUrl"":""https://www.stenon.io/en/about-us/the-company"",""title"":""CTO""}],""linkedDocuments"":[""https://www.stenon.io/files/generaltermsofsaleanddelivery_stenon_gmbh_en_july3_2020.pdf"",""https://www.stenon.io/files/pr_stenon-gmbh_dlg_240921.pdf"",""https://www.stenon.io/files/2194.12_fututec-2024_convite_digital.pdf"",""https://www.stenon.io/files/stenon-worldagsummit-september-2023.pdf"",""https://www.stenon.io/files/farmlab-erste-schritte.pdf"",""https://www.stenon.io/files/flyer-stenon-case-study-bra-jb.pdf"",""https://www.stenon.io/files/stimmen-aus-der-praxis-rwg-rheinland-pdf.pdf"",""https://blog.stenon.io/wp-content/uploads/2021/11/2021-09-16-Sachgerechte-Validierung-von-FarmLab_final.pdf"",""https://www.stenon.io/files/der-boden-in-seiner-gesamtheit-bodeneigenschaften-funktionen-und-phasen-infografik-stenon.pdf""],""missingImportantFields"":[],""productDescription"":""Stenon offers a complete soil data management solution including hardware and software. Their hardware product, FarmLab, is a portable soil-analysis device equipped with advanced sensors (EIS, optical, GPS) to capture over 4,500 data points rapidly; it is assembled in Germany and certified by TüV and DLG. The technology uses near-infrared spectroscopy, UV-Vis spectroscopy, electrical impedance spectroscopy, and AI to turn sensor data into precise soil nutrient insights with regional calibration. Core parameters measured include plant-available nitrogen (Nmin), soil organic matter (SOM), moisture, and temperature. The software provides nutrient composition, field mapping, soil trends, and region-specific fertilization recommendations, integrating data with platforms like John Deere Operations Center and Trimble Ag."",""researcherNotes"":null,""sectorDescription"":""Operates in the agri-tech sector, providing real-time digital soil data and soil fertility insights to optimize agricultural productivity and sustainability."",""sources"":{""clientCategories"":""https://www.stenon.io/en/customers"",""companyDescription"":""https://www.stenon.io/en/about-us/the-company"",""geographicFocus"":""https://www.stenon.io/en/contact-us"",""keyExecutives"":""https://www.stenon.io/en/about-us/the-company"",""productDescription"":""https://www.stenon.io/en/technology""},""websiteURL"":""https://www.stenon.io""}" -VitalFields,http://vitalfields.com,"Eesti Arengufond, Monsanto Growth Ventures (MGV), SmartCap, Tera Ventures",vitalfields.com,https://www.linkedin.com/company/frequencell,"{""seniorLeadership"":[{""fullName"":""Vahur Meus"",""title"":""Founder"",""profileURL"":""https://www.linkedin.com/company/frequencell""}]}","{""seniorLeadership"":[{""fullName"":""Vahur Meus"",""title"":""Founder"",""profileURL"":""https://www.linkedin.com/company/frequencell""}]}","{ - ""websiteURL"": ""http://vitalfields.com"", - ""companyDescription"": ""VitalFields is a digital agriculture company incorporated in Tallinn, Estonia, that offers farm management systems via app and web for planning, managing, and analyzing field activities. It focuses on helping farmers track and report crop inputs to meet EU environmental standards."", - ""productDescription"": ""VitalFields provides an easy-to-use farm management software tool for farmers with features including planning, managing, and analyzing field activities and tracking crop inputs."", - ""clientCategories"": [""Farmers"", ""Agricultural Producers""], - ""sectorDescription"": ""Operates in the digital agriculture sector, providing farm management software solutions to support sustainable farming and regulatory compliance."", - ""geographicFocus"": ""HQ: Tallinn, Estonia; Sales Focus: Austria, Estonia, Germany, Poland, Romania, Switzerland, Ukraine"", - ""keyExecutives"": [ - {""name"": ""Martin Rand"", ""title"": ""CEO and co-founder"", ""sourceUrl"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields""}, - {""name"": ""Mike Stern"", ""title"": ""CEO of The Climate Corporation"", ""sourceUrl"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields""} - ], - ""linkedDocuments"": [""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf""], - ""researcherNotes"": ""The main company website is not functioning with regard to content retrieval. Key data was found from external credible sources including a company acquisition news and investment documents. Some detailed client categories and product feature specifics beyond basic farm management software were not available."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""productDescription"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""clientCategories"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""geographicFocus"": ""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf"", - ""keyExecutives"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"" - } -}","{ - ""websiteURL"": ""http://vitalfields.com"", - ""companyDescription"": ""VitalFields is a digital agriculture company incorporated in Tallinn, Estonia, that offers farm management systems via app and web for planning, managing, and analyzing field activities. It focuses on helping farmers track and report crop inputs to meet EU environmental standards."", - ""productDescription"": ""VitalFields provides an easy-to-use farm management software tool for farmers with features including planning, managing, and analyzing field activities and tracking crop inputs."", - ""clientCategories"": [""Farmers"", ""Agricultural Producers""], - ""sectorDescription"": ""Operates in the digital agriculture sector, providing farm management software solutions to support sustainable farming and regulatory compliance."", - ""geographicFocus"": ""HQ: Tallinn, Estonia; Sales Focus: Austria, Estonia, Germany, Poland, Romania, Switzerland, Ukraine"", - ""keyExecutives"": [ - {""name"": ""Martin Rand"", ""title"": ""CEO and co-founder"", ""sourceUrl"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields""}, - {""name"": ""Mike Stern"", ""title"": ""CEO of The Climate Corporation"", ""sourceUrl"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields""} - ], - ""linkedDocuments"": [""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf""], - ""researcherNotes"": ""The main company website is not functioning with regard to content retrieval. Key data was found from external credible sources including a company acquisition news and investment documents. Some detailed client categories and product feature specifics beyond basic farm management software were not available."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""productDescription"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""clientCategories"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""geographicFocus"": ""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf"", - ""keyExecutives"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"" - } -}",[],"{ - ""websiteURL"": ""http://vitalfields.com"", - ""companyDescription"": ""VitalFields is a digital agriculture company incorporated in Tallinn, Estonia, offering an easy-to-use farm management system via app and web. It supports farmers and agricultural producers in planning, managing, and analyzing field activities, while helping track and report crop inputs to comply with EU environmental standards. The platform integrates tools for weather forecasting, pest management, and operational recommendations to improve farm efficiency and sustainability."", - ""productDescription"": ""VitalFields provides cloud-based farm management software accessible via web and mobile apps. Its features include planning and tracking of field activities, weather forecasting, plant disease and growth monitoring, pest and chemical application recommendations, and record keeping for compliance reporting. Designed for farmers, the software aims to replace paperwork with data-driven insights to optimize farming operations across several European countries."", - ""clientCategories"": [""Farmers"", ""Agricultural Producers""], - ""sectorDescription"": ""Digital agriculture sector specializing in farm management software solutions that support sustainable farming and regulatory compliance."", - ""geographicFocus"": ""Headquartered in Tallinn, Estonia with market presence focused on Austria, Estonia, Germany, Poland, Romania, Switzerland, and Ukraine."", - ""keyExecutives"": [ - { - ""name"": ""Martin Rand"", - ""title"": ""CEO and co-founder"", - ""sourceUrl"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"" - }, - { - ""name"": ""Mike Stern"", - ""title"": ""CEO of The Climate Corporation"", - ""sourceUrl"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"" - } - ], - ""researcherNotes"": ""The main company website's content was limited; key data was verified through multiple credible sources including a Monsanto/Climate Corporation acquisition announcement and startup investment reports. No conflicting information was found. LinkedIn data for a founder named Vahur Meus appears unrelated to VitalFields, thus was excluded. Geographic focus was established from an investment document and press releases. Some detailed product feature descriptions were supplemented from user reviews and ag software libraries."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""productDescription"": ""https://u.osu.edu/agsoftwarelibrary/2018/04/09/vitalfields/"", - ""clientCategories"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"", - ""geographicFocus"": ""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf"", - ""keyExecutives"": ""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Producers""],""companyDescription"":""VitalFields is a digital agriculture company incorporated in Tallinn, Estonia, offering an easy-to-use farm management system via app and web. It supports farmers and agricultural producers in planning, managing, and analyzing field activities, while helping track and report crop inputs to comply with EU environmental standards. The platform integrates tools for weather forecasting, pest management, and operational recommendations to improve farm efficiency and sustainability."",""geographicFocus"":""Headquartered in Tallinn, Estonia with market presence focused on Austria, Estonia, Germany, Poland, Romania, Switzerland, and Ukraine."",""keyExecutives"":[{""name"":""Martin Rand"",""sourceUrl"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""title"":""CEO and co-founder""},{""name"":""Mike Stern"",""sourceUrl"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""title"":""CEO of The Climate Corporation""}],""missingImportantFields"":[],""productDescription"":""VitalFields provides cloud-based farm management software accessible via web and mobile apps. Its features include planning and tracking of field activities, weather forecasting, plant disease and growth monitoring, pest and chemical application recommendations, and record keeping for compliance reporting. Designed for farmers, the software aims to replace paperwork with data-driven insights to optimize farming operations across several European countries."",""researcherNotes"":""The main company website's content was limited; key data was verified through multiple credible sources including a Monsanto/Climate Corporation acquisition announcement and startup investment reports. No conflicting information was found. LinkedIn data for a founder named Vahur Meus appears unrelated to VitalFields, thus was excluded. Geographic focus was established from an investment document and press releases. Some detailed product feature descriptions were supplemented from user reviews and ag software libraries."",""sectorDescription"":""Digital agriculture sector specializing in farm management software solutions that support sustainable farming and regulatory compliance."",""sources"":{""clientCategories"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""companyDescription"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""geographicFocus"":""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf"",""keyExecutives"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""productDescription"":""https://u.osu.edu/agsoftwarelibrary/2018/04/09/vitalfields/""},""websiteURL"":""http://vitalfields.com""}","Correctness: 98% Completeness: 95% VitalFields is accurately described as an Estonian digital agriculture company headquartered in Tallinn, offering a cloud-based farm management system via app and web that supports farmers with planning, field activity tracking, compliance with EU environmental standards, and operational insights. The company’s geographic focus is well documented across seven European countries: Austria, Estonia, Germany, Poland, Romania, Switzerland, and Ukraine. Leadership details are correct as of the last update, with Martin Rand as CEO and co-founder and Mike Stern as CEO of The Climate Corporation, which acquired VitalFields. The product features include weather forecasting, pest and disease monitoring, and farm planning, matching descriptions from independent ag software libraries and acquisition press releases. Its acquisition by The Climate Corporation (owned by Monsanto) and prior funding rounds totaling around $2.22 million are also confirmed. Missing are very detailed recent feature updates or post-acquisition integration outcomes, but these are not publicly documented. The sources are authoritative company statements, press releases, and ag tech media published mostly around 2016–2017, but remain the most recent confirming facts available. No notable contradictions or errors were found. [1][2][3][4][5]","{""clientCategories"":[""Farmers"",""Agricultural Producers""],""companyDescription"":""VitalFields is a digital agriculture company incorporated in Tallinn, Estonia, that offers farm management systems via app and web for planning, managing, and analyzing field activities. It focuses on helping farmers track and report crop inputs to meet EU environmental standards."",""geographicFocus"":""HQ: Tallinn, Estonia; Sales Focus: Austria, Estonia, Germany, Poland, Romania, Switzerland, Ukraine"",""keyExecutives"":[{""name"":""Martin Rand"",""sourceUrl"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""title"":""CEO and co-founder""},{""name"":""Mike Stern"",""sourceUrl"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""title"":""CEO of The Climate Corporation""}],""linkedDocuments"":[""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf""],""missingImportantFields"":[],""productDescription"":""VitalFields provides an easy-to-use farm management software tool for farmers with features including planning, managing, and analyzing field activities and tracking crop inputs."",""researcherNotes"":""The main company website is not functioning with regard to content retrieval. Key data was found from external credible sources including a company acquisition news and investment documents. Some detailed client categories and product feature specifics beyond basic farm management software were not available."",""sectorDescription"":""Operates in the digital agriculture sector, providing farm management software solutions to support sustainable farming and regulatory compliance."",""sources"":{""clientCategories"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""companyDescription"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""geographicFocus"":""https://tmtinvestments.com/wp-content/uploads/2019/04/VitalFields-exit-RNS-Reach-23-Nov-16-Final.pdf"",""keyExecutives"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields"",""productDescription"":""https://www.foodlogistics.com/sustainability/news/12281720/monsantobacked-climate-corp-acquires-vitalfields""},""websiteURL"":""http://vitalfields.com""}" -Alteia,https://alteia.com,Wa’ed Ventures,alteia.com,https://www.linkedin.com/company/alteia-ai/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://alteia.com"", - ""companyDescription"": ""Alteia is a company specializing in visual intelligence, transforming visual data into actionable insights across multiple industries such as energy, grid, infrastructure, and environment. Their software serves public, private, and non-profit sectors to solve complex challenges. The company emphasizes rapid deployment of visual intelligence projects within weeks using a scalable technology platform called Æther Platform. Alteia focuses on purpose-driven engineering and innovation, with recognition from organizations like the World Economic Forum and Deloitte."", - ""productDescription"": ""Alteia offers AI software products and services including: - Æther Platform: an open AI workflow platform for visual data; - Worksite Management: for data contextualization and visualization of construction sites; - Field Trial Analysis: digital phenotyping application for seed companies; - Mine Optimization: AI-powered application ensuring mine site safety and efficiency."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the software sector, specializing in AI, computer vision, and digital transformation solutions using visual intelligence."", - ""geographicFocus"": ""HQ: Toulouse's Aerospace Valley, with offices in California and Paris; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories and key executives data were not found on the website. Leadership section listed non-C-level roles and client pages did not provide distinct categories."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://alteia.com/company"", - ""productDescription"": ""https://alteia.com/software/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://alteia.com/company/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://alteia.com"", - ""companyDescription"": ""Alteia is a company specializing in visual intelligence, transforming visual data into actionable insights across multiple industries such as energy, grid, infrastructure, and environment. Their software serves public, private, and non-profit sectors to solve complex challenges. The company emphasizes rapid deployment of visual intelligence projects within weeks using a scalable technology platform called Æther Platform. Alteia focuses on purpose-driven engineering and innovation, with recognition from organizations like the World Economic Forum and Deloitte."", - ""productDescription"": ""Alteia offers AI software products and services including: - Æther Platform: an open AI workflow platform for visual data; - Worksite Management: for data contextualization and visualization of construction sites; - Field Trial Analysis: digital phenotyping application for seed companies; - Mine Optimization: AI-powered application ensuring mine site safety and efficiency."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the software sector, specializing in AI, computer vision, and digital transformation solutions using visual intelligence."", - ""geographicFocus"": ""HQ: Toulouse's Aerospace Valley, with offices in California and Paris; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories and key executives data were not found on the website. Leadership section listed non-C-level roles and client pages did not provide distinct categories."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://alteia.com/company"", - ""productDescription"": ""https://alteia.com/software/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://alteia.com/company/"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://alteia.com"", - ""companyDescription"": ""Alteia is a France-based software company specializing in AI-driven visual intelligence solutions that transform visual data into actionable insights for industries such as energy, grid, infrastructure, and environment. Their scalable Æther Platform enables rapid deployment of AI-powered visual data workflows, supporting digital transformation efforts by delivering predictive insights that improve operational decision-making. Alteia serves public, private, and non-profit sectors and is recognized for innovation by entities like the World Economic Forum and Deloitte."", - ""productDescription"": ""Alteia offers AI software products and services including the Æther Platform—an open AI workflow platform that enables management and deployment of visual data applications. Key solutions include Worksite Management for construction site data contextualization and visualization, Field Trial Analysis for digital phenotyping in seed companies, and Mine Optimization, which leverages AI to enhance mine safety and operational efficiency. These products allow clients to rapidly operationalize visual intelligence with minimal coding, driving improved asset management and risk assessment."", - ""clientCategories"": [""Grid Operators"", ""Infrastructure Managers"", ""Energy Companies"", ""Construction Firms"", ""Agricultural Seed Companies"", ""Mining Companies"", ""Public Sector Organizations"", ""Private Sector Enterprises"", ""Non-Profit Organizations""], - ""sectorDescription"": ""Software sector specializing in AI, computer vision, and digital transformation solutions leveraging visual intelligence to improve operational insights across key infrastructure industries."", - ""geographicFocus"": ""Headquartered in Toulouse's Aerospace Valley with offices in California and Paris; primarily serving clients in Europe and the United States."", - ""keyExecutives"": [ - { - ""name"": ""Michael de Lagarde"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.tdworld.com/smart-utility/news/55304539/ge-vernova-ge-vernova-to-acquire-french-ai-company-alteia-to-boost-grid-visualization-capabilities"" - } - ], - ""researcherNotes"": ""Key executives data was not available on the company website or LinkedIn company leadership pages. External sources identified Michael de Lagarde as CEO, confirmed via a reputable industry news article. Client categories were inferred from described product use cases and industry focus. Geographic focus is based on stated HQ and office locations; detailed sales footprint was not publicly available. No conflicts in data sources were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://alteia.com/company"", - ""productDescription"": ""https://alteia.com/software/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://alteia.com/company/"", - ""keyExecutives"": ""https://www.tdworld.com/smart-utility/news/55304539/ge-vernova-ge-vernova-to-acquire-french-ai-company-alteia-to-boost-grid-visualization-capabilities"" - } -}","{""clientCategories"":[""Grid Operators"",""Infrastructure Managers"",""Energy Companies"",""Construction Firms"",""Agricultural Seed Companies"",""Mining Companies"",""Public Sector Organizations"",""Private Sector Enterprises"",""Non-Profit Organizations""],""companyDescription"":""Alteia is a France-based software company specializing in AI-driven visual intelligence solutions that transform visual data into actionable insights for industries such as energy, grid, infrastructure, and environment. Their scalable Æther Platform enables rapid deployment of AI-powered visual data workflows, supporting digital transformation efforts by delivering predictive insights that improve operational decision-making. Alteia serves public, private, and non-profit sectors and is recognized for innovation by entities like the World Economic Forum and Deloitte."",""geographicFocus"":""Headquartered in Toulouse's Aerospace Valley with offices in California and Paris; primarily serving clients in Europe and the United States."",""keyExecutives"":[{""name"":""Michael de Lagarde"",""sourceUrl"":""https://www.tdworld.com/smart-utility/news/55304539/ge-vernova-ge-vernova-to-acquire-french-ai-company-alteia-to-boost-grid-visualization-capabilities"",""title"":""CEO""}],""missingImportantFields"":[],""productDescription"":""Alteia offers AI software products and services including the Æther Platform—an open AI workflow platform that enables management and deployment of visual data applications. Key solutions include Worksite Management for construction site data contextualization and visualization, Field Trial Analysis for digital phenotyping in seed companies, and Mine Optimization, which leverages AI to enhance mine safety and operational efficiency. These products allow clients to rapidly operationalize visual intelligence with minimal coding, driving improved asset management and risk assessment."",""researcherNotes"":""Key executives data was not available on the company website or LinkedIn company leadership pages. External sources identified Michael de Lagarde as CEO, confirmed via a reputable industry news article. Client categories were inferred from described product use cases and industry focus. Geographic focus is based on stated HQ and office locations; detailed sales footprint was not publicly available. No conflicts in data sources were found."",""sectorDescription"":""Software sector specializing in AI, computer vision, and digital transformation solutions leveraging visual intelligence to improve operational insights across key infrastructure industries."",""sources"":{""clientCategories"":null,""companyDescription"":""https://alteia.com/company"",""geographicFocus"":""https://alteia.com/company/"",""keyExecutives"":""https://www.tdworld.com/smart-utility/news/55304539/ge-vernova-ge-vernova-to-acquire-french-ai-company-alteia-to-boost-grid-visualization-capabilities"",""productDescription"":""https://alteia.com/software/""},""websiteURL"":""https://alteia.com""}","Correctness: 98% Completeness: 95% The information about Alteia is highly accurate and well-supported by recent official and company sources. Alteia is confirmed to be a France-based AI-driven visual intelligence software company headquartered in Toulouse, serving sectors including energy, grid operators, infrastructure, and environment, with offices also in California and Paris[1][2][5]. Michael de Lagarde is validated as CEO by a recent industry news article aligned with the company's latest public information as of 2025[1]. The company’s flagship Æther Platform and its solutions for Worksite Management, Field Trial Analysis, and Mine Optimization match descriptions on Alteia’s official software page[5], showing comprehensive coverage of their product suite. Geographic focus on Europe and the U.S. is supported by stated headquarters locations and regional offices[1][5]. Kunde categories including grid operators, infrastructure managers, energy companies, and others correspond with documented client examples such as Enedis and Eramet, underscoring completeness[5]. The data is current with no conflicting information found across reputable sources, though minor omissions include more detailed leadership bios or recent financial metrics beyond revenue estimates found on third-party sites[3]. Overall, the synthesis is well grounded in primary company sources and authoritative third-party press[1][2][5]. https://www.tdworld.com/smart-utility/news/55304539/ge-vernova-ge-vernova-to-acquire-french-ai-company-alteia-to-boost-grid-visualization-capabilities https://alteia.com https://www.iotm2mcouncil.org/iot-library/news/smart-energy-news/ge-vernova-acquires-alteia-to-improve-utility-vision/","{""clientCategories"":[],""companyDescription"":""Alteia is a company specializing in visual intelligence, transforming visual data into actionable insights across multiple industries such as energy, grid, infrastructure, and environment. Their software serves public, private, and non-profit sectors to solve complex challenges. The company emphasizes rapid deployment of visual intelligence projects within weeks using a scalable technology platform called Æther Platform. Alteia focuses on purpose-driven engineering and innovation, with recognition from organizations like the World Economic Forum and Deloitte."",""geographicFocus"":""HQ: Toulouse's Aerospace Valley, with offices in California and Paris; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""Alteia offers AI software products and services including: - Æther Platform: an open AI workflow platform for visual data; - Worksite Management: for data contextualization and visualization of construction sites; - Field Trial Analysis: digital phenotyping application for seed companies; - Mine Optimization: AI-powered application ensuring mine site safety and efficiency."",""researcherNotes"":""Client categories and key executives data were not found on the website. Leadership section listed non-C-level roles and client pages did not provide distinct categories."",""sectorDescription"":""Operates in the software sector, specializing in AI, computer vision, and digital transformation solutions using visual intelligence."",""sources"":{""clientCategories"":null,""companyDescription"":""https://alteia.com/company"",""geographicFocus"":""https://alteia.com/company/"",""keyExecutives"":null,""productDescription"":""https://alteia.com/software/""},""websiteURL"":""https://alteia.com""}" -AirForestry,https://www.airforestry.com/en/,EIC Accelerator,airforestry.com,https://www.linkedin.com/company/airforestry,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.airforestry.com/en/"", - ""companyDescription"": ""AirForestry is building the forestry of the future by thinning forests from the air using electric harvesting drones. Their mission is to create better forests that contribute to a more sustainable society economically, environmentally, and socially. Their innovative thinning method reduces carbon dioxide emissions, protects biodiversity, and increases forest growth potential. They emphasize sustainable forest management to benefit both current and future generations."", - ""productDescription"": ""AirForestry provides a harvest drone system for forestry. Their core products and services include a high-capacity drone (6.2 meters in diameter, made with carbon fiber and angled rotors for precision flying) and a 60 kilo light harvesting tool that the drone carries to selectively thin trees by grabbing, pruning branches, sawing off the trunk, and transporting the tree to the nearest road."", - ""clientCategories"": [""Forest owners"", ""Forestry companies"", ""Environmental organizations""], - ""sectorDescription"": ""Operates in sustainable forestry technology, providing innovative aerial harvesting drones to enable eco-friendly and efficient forest management."", - ""geographicFocus"": ""HQ: Danmarksgatan 26, hus 1, 75323 Uppsala, Sweden; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Olle Gelin"", ""title"": ""Chief Executive Officer (CEO)"", ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/""}, - {""name"": ""Caroline Walerud"", ""title"": ""Executive Chairman"", ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/""}, - {""name"": ""Dr Mauritz Andersson"", ""title"": ""Chief Technology Officer (CTO)"", ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/""} - ], - ""linkedDocuments"": [""https://airforestry.com/wp-content/uploads/2024/11/presskit-airforestry-v1.5.zip""], - ""researcherNotes"": ""Customer geographic sales regions are not explicitly detailed on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.airforestry.com/en/"", - ""productDescription"": ""https://www.airforestry.com/en/our-system/"", - ""clientCategories"": ""https://www.airforestry.com/en/about-us/"", - ""geographicFocus"": ""https://www.airforestry.com/en/contact/"", - ""keyExecutives"": ""https://www.airforestry.com/en/press-kit/"" - } -}","{ - ""websiteURL"": ""https://www.airforestry.com/en/"", - ""companyDescription"": ""AirForestry is building the forestry of the future by thinning forests from the air using electric harvesting drones. Their mission is to create better forests that contribute to a more sustainable society economically, environmentally, and socially. Their innovative thinning method reduces carbon dioxide emissions, protects biodiversity, and increases forest growth potential. They emphasize sustainable forest management to benefit both current and future generations."", - ""productDescription"": ""AirForestry provides a harvest drone system for forestry. Their core products and services include a high-capacity drone (6.2 meters in diameter, made with carbon fiber and angled rotors for precision flying) and a 60 kilo light harvesting tool that the drone carries to selectively thin trees by grabbing, pruning branches, sawing off the trunk, and transporting the tree to the nearest road."", - ""clientCategories"": [""Forest owners"", ""Forestry companies"", ""Environmental organizations""], - ""sectorDescription"": ""Operates in sustainable forestry technology, providing innovative aerial harvesting drones to enable eco-friendly and efficient forest management."", - ""geographicFocus"": ""HQ: Danmarksgatan 26, hus 1, 75323 Uppsala, Sweden; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Olle Gelin"", ""title"": ""Chief Executive Officer (CEO)"", ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/""}, - {""name"": ""Caroline Walerud"", ""title"": ""Executive Chairman"", ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/""}, - {""name"": ""Dr Mauritz Andersson"", ""title"": ""Chief Technology Officer (CTO)"", ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/""} - ], - ""linkedDocuments"": [""https://airforestry.com/wp-content/uploads/2024/11/presskit-airforestry-v1.5.zip""], - ""researcherNotes"": ""Customer geographic sales regions are not explicitly detailed on the website."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.airforestry.com/en/"", - ""productDescription"": ""https://www.airforestry.com/en/our-system/"", - ""clientCategories"": ""https://www.airforestry.com/en/about-us/"", - ""geographicFocus"": ""https://www.airforestry.com/en/contact/"", - ""keyExecutives"": ""https://www.airforestry.com/en/press-kit/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://www.airforestry.com/en"", - ""companyDescription"": ""AirForestry is building the forestry of the future by thinning forests from the air using electric harvesting drones. Their mission is to create better forests that contribute to a more sustainable society economically, environmentally, and socially. Their innovative thinning method reduces carbon dioxide emissions, protects biodiversity, and increases forest growth potential. They emphasize sustainable forest management to benefit both current and future generations."", - ""productDescription"": ""AirForestry provides a harvest drone system for forestry. Their core products and services include a high-capacity drone (6.2 meters in diameter, made with carbon fiber and angled rotors for precision flying) and a 60 kilo light harvesting tool that the drone carries to selectively thin trees by grabbing, pruning branches, sawing off the trunk, and transporting the tree to the nearest road."", - ""clientCategories"": [ - ""Forest Owners"", - ""Forestry Companies"", - ""Environmental Organizations"" - ], - ""sectorDescription"": ""Operates in sustainable forestry technology, providing innovative aerial harvesting drones to enable eco-friendly and efficient forest management."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Olle Gelin"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/"" - }, - { - ""name"": ""Caroline Walerud"", - ""title"": ""Executive Chairman"", - ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/"" - }, - { - ""name"": ""Dr Mauritz Andersson"", - ""title"": ""Chief Technology Officer (CTO)"", - ""sourceUrl"": ""https://www.airforestry.com/en/press-kit/"" - } - ], - ""researcherNotes"": ""The company is confirmed as AirForestry AB headquartered in Uppsala, Sweden, based on domain, executive names, and product technology consistent with multiple official sources. Geographic sales footprint is not explicitly stated on the website or in public materials; the registered HQ is in Sweden, but no regional or global sales focus is documented. LinkedIn data provided no additional senior leadership info beyond the company website. The geographicFocus field remains null pending verifiable sales or operational regions."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://www.airforestry.com/en/"", - ""productDescription"": ""https://www.airforestry.com/en/our-system/"", - ""clientCategories"": ""https://www.airforestry.com/en/about-us/"", - ""geographicFocus"": ""https://www.airforestry.com/en/contact/"", - ""keyExecutives"": ""https://www.airforestry.com/en/press-kit/"" - } -}","{""clientCategories"":[""Forest Owners"",""Forestry Companies"",""Environmental Organizations""],""companyDescription"":""AirForestry is building the forestry of the future by thinning forests from the air using electric harvesting drones. Their mission is to create better forests that contribute to a more sustainable society economically, environmentally, and socially. Their innovative thinning method reduces carbon dioxide emissions, protects biodiversity, and increases forest growth potential. They emphasize sustainable forest management to benefit both current and future generations."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Olle Gelin"",""sourceUrl"":""https://www.airforestry.com/en/press-kit/"",""title"":""Chief Executive Officer (CEO)""},{""name"":""Caroline Walerud"",""sourceUrl"":""https://www.airforestry.com/en/press-kit/"",""title"":""Executive Chairman""},{""name"":""Dr Mauritz Andersson"",""sourceUrl"":""https://www.airforestry.com/en/press-kit/"",""title"":""Chief Technology Officer (CTO)""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""AirForestry provides a harvest drone system for forestry. Their core products and services include a high-capacity drone (6.2 meters in diameter, made with carbon fiber and angled rotors for precision flying) and a 60 kilo light harvesting tool that the drone carries to selectively thin trees by grabbing, pruning branches, sawing off the trunk, and transporting the tree to the nearest road."",""researcherNotes"":""The company is confirmed as AirForestry AB headquartered in Uppsala, Sweden, based on domain, executive names, and product technology consistent with multiple official sources. Geographic sales footprint is not explicitly stated on the website or in public materials; the registered HQ is in Sweden, but no regional or global sales focus is documented. LinkedIn data provided no additional senior leadership info beyond the company website. The geographicFocus field remains null pending verifiable sales or operational regions."",""sectorDescription"":""Operates in sustainable forestry technology, providing innovative aerial harvesting drones to enable eco-friendly and efficient forest management."",""sources"":{""clientCategories"":""https://www.airforestry.com/en/about-us/"",""companyDescription"":""https://www.airforestry.com/en/"",""geographicFocus"":""https://www.airforestry.com/en/contact/"",""keyExecutives"":""https://www.airforestry.com/en/press-kit/"",""productDescription"":""https://www.airforestry.com/en/our-system/""},""websiteURL"":""https://www.airforestry.com/en""}","Correctness: 98% Completeness: 90% The provided description of AirForestry is largely accurate and well-supported by recent and authoritative sources. The company is confirmed as AirForestry AB, headquartered in Uppsala, Sweden, with key executives including CEO Olle Gelin, Executive Chairman Caroline Walerud, and CTO Dr Mauritz Andersson, matching official sources from the company website and press kit (https://www.airforestry.com/en/press-kit/) and investment announcements (https://northzone.com/2024/10/10/our-investment-in-airforestry-revolutionising-tree-harvesting-with-drones/). The company’s core product—an electric harvesting drone system capable of selective thinning by grabbing, pruning branches, sawing trunks, and transporting trees to roads without damaging the forest floor—is corroborated by multiple recent sources describing its technology and sustainability benefits (https://www.airforestry.com/en/, https://www.woodbusiness.ca/swedens-airforestry-demonstrates-drones-ability-to-lift-a-full-tree/). The mission to enhance sustainability economically, environmentally, and socially, reduce CO2 emissions, protect biodiversity, and increase forest growth potential is explicitly stated on AirForestry’s site (https://www.airforestry.com/en/) and in third-party coverage. However, the geographic focus remains unspecified in public materials, confirmed as missing, which slightly lowers completeness (https://www.airforestry.com/en/contact/). Also, while the key executives are verified, some minor leadership members mentioned in investment reports are not included, but this is a minor gap. Overall, the information is consistent, up-to-date as of mid-2025, and well-documented across primary company sources and secondary coverage.","{""clientCategories"":[""Forest owners"",""Forestry companies"",""Environmental organizations""],""companyDescription"":""AirForestry is building the forestry of the future by thinning forests from the air using electric harvesting drones. Their mission is to create better forests that contribute to a more sustainable society economically, environmentally, and socially. Their innovative thinning method reduces carbon dioxide emissions, protects biodiversity, and increases forest growth potential. They emphasize sustainable forest management to benefit both current and future generations."",""geographicFocus"":""HQ: Danmarksgatan 26, hus 1, 75323 Uppsala, Sweden; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Olle Gelin"",""sourceUrl"":""https://www.airforestry.com/en/press-kit/"",""title"":""Chief Executive Officer (CEO)""},{""name"":""Caroline Walerud"",""sourceUrl"":""https://www.airforestry.com/en/press-kit/"",""title"":""Executive Chairman""},{""name"":""Dr Mauritz Andersson"",""sourceUrl"":""https://www.airforestry.com/en/press-kit/"",""title"":""Chief Technology Officer (CTO)""}],""linkedDocuments"":[""https://airforestry.com/wp-content/uploads/2024/11/presskit-airforestry-v1.5.zip""],""missingImportantFields"":[""geographicFocus""],""productDescription"":""AirForestry provides a harvest drone system for forestry. Their core products and services include a high-capacity drone (6.2 meters in diameter, made with carbon fiber and angled rotors for precision flying) and a 60 kilo light harvesting tool that the drone carries to selectively thin trees by grabbing, pruning branches, sawing off the trunk, and transporting the tree to the nearest road."",""researcherNotes"":""Customer geographic sales regions are not explicitly detailed on the website."",""sectorDescription"":""Operates in sustainable forestry technology, providing innovative aerial harvesting drones to enable eco-friendly and efficient forest management."",""sources"":{""clientCategories"":""https://www.airforestry.com/en/about-us/"",""companyDescription"":""https://www.airforestry.com/en/"",""geographicFocus"":""https://www.airforestry.com/en/contact/"",""keyExecutives"":""https://www.airforestry.com/en/press-kit/"",""productDescription"":""https://www.airforestry.com/en/our-system/""},""websiteURL"":""https://www.airforestry.com/en/""}" -Trapview,https://trapview.com/,"Kubota Corporation, Oltre Venture, Pymwymic",trapview.com,https://www.linkedin.com/company/trapview,"{""seniorLeadership"":[{""name"":""Dejan JANČIĆ"",""title"":""MD Trapview North America LLC | Administrator Trapview do Brazil LLTD"",""linkedinProfile"":""https://www.linkedin.com/in/dejanjancic""},{""name"":""Bostjan Bozic"",""title"":""COO"",""linkedinProfile"":""https://www.linkedin.com/in/bostjan-bozic-impact""},{""name"":""Matej Stefancic"",""title"":""Chief Technology Officer"",""linkedinProfile"":""https://www.linkedin.com/in/matejstefancic""}]}","{""seniorLeadership"":[{""name"":""Dejan JANČIĆ"",""title"":""MD Trapview North America LLC | Administrator Trapview do Brazil LLTD"",""linkedinProfile"":""https://www.linkedin.com/in/dejanjancic""},{""name"":""Bostjan Bozic"",""title"":""COO"",""linkedinProfile"":""https://www.linkedin.com/in/bostjan-bozic-impact""},{""name"":""Matej Stefancic"",""title"":""Chief Technology Officer"",""linkedinProfile"":""https://www.linkedin.com/in/matejstefancic""}]}","{ - ""websiteURL"": ""https://trapview.com/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and its subpages do not provide relevant structured content or specific information about company mission, products, client categories, sector, geographic focus, or leadership. No linked documents are found."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://trapview.com/"", - ""companyDescription"": ""Not Available"", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""The website and its subpages do not provide relevant structured content or specific information about company mission, products, client categories, sector, geographic focus, or leadership. No linked documents are found."", - ""missingImportantFields"": [""companyDescription"", ""productDescription"", ""clientCategories"", ""sectorDescription"", ""geographicFocus"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": null, - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": null, - ""keyExecutives"": null - } -}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://trapview.com"", - ""companyDescription"": ""Trapview, developed by EFOS based in Slovenia, is a technology company focused on automated pest monitoring and forecasting to address environmental and food safety challenges in the food production industry. It offers a decision support tool that provides real-time insights into pest population dynamics, helping growers and agronomists reduce pesticide use and improve crop protection efficiently. The company serves multiple agriculture sectors globally with AI-driven innovative products that save labor and costs while promoting healthier food production."", - ""productDescription"": ""Trapview delivers an automated, energy-independent pest monitoring system that uses solar-powered cameras and AI to remotely detect and analyze insect populations in traps. The system collects real-time data transmitted via 2G, 3G, and LTE networks to a cloud platform where pest occurrences are identified, forecasted, and presented with actionable reports. It supports various trap types, integrates weather sensors, and allows users to optimize plant protection decisions for better crop health and reduced chemical usage."", - ""clientCategories"": [ - ""Agricultural Growers"", - ""Packing Houses"", - ""Crop Consultants"", - ""Agronomists"", - ""Research Institutions"", - ""Food Producers"" - ], - ""sectorDescription"": ""Agricultural technology specializing in automated pest monitoring and AI-powered decision support for integrated pest management in crop production."", - ""geographicFocus"": ""Global operations with deployed devices in over 60 countries, serving diverse crop types and markets worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Dejan JANČIĆ"", - ""title"": ""MD Trapview North America LLC | Administrator Trapview do Brazil LLTD"", - ""sourceUrl"": ""https://www.linkedin.com/in/dejanjancic"" - }, - { - ""name"": ""Bostjan Bozic"", - ""title"": ""COO"", - ""sourceUrl"": ""https://www.linkedin.com/in/bostjan-bozic-impact"" - }, - { - ""name"": ""Matej Stefancic"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/matejstefancic"" - } - ], - ""researcherNotes"": ""The company is verified as Trapview operating at https://trapview.com, a Slovenian-based AgTech firm developing automated pest monitoring solutions with AI-powered forecasting. Company leadership and geographic coverage were confirmed via LinkedIn and multiple independent sources. Company description and product details were derived mainly from the official website, Smart Protect H2020 project briefing, corporate interviews, and credible business information portals. Geographic focus is global based on device presence in over 60 countries. Client categories and sector description were inferred from usage contexts and market segments described in multiple sources. No contradictory data was found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.zoominfo.com/c/trapview/368708192"", - ""productDescription"": ""https://platform.smartprotect-h2020.eu/en/view/ipm/1"", - ""clientCategories"": ""https://www.zoominfo.com/c/trapview/368708192"", - ""geographicFocus"": ""https://eicscalingclub.eu/news/trapview-video-interview"", - ""keyExecutives"": ""https://www.linkedin.com/in/dejanjancic"" - } -}","{""clientCategories"":[""Agricultural Growers"",""Packing Houses"",""Crop Consultants"",""Agronomists"",""Research Institutions"",""Food Producers""],""companyDescription"":""Trapview, developed by EFOS based in Slovenia, is a technology company focused on automated pest monitoring and forecasting to address environmental and food safety challenges in the food production industry. It offers a decision support tool that provides real-time insights into pest population dynamics, helping growers and agronomists reduce pesticide use and improve crop protection efficiently. The company serves multiple agriculture sectors globally with AI-driven innovative products that save labor and costs while promoting healthier food production."",""geographicFocus"":""Global operations with deployed devices in over 60 countries, serving diverse crop types and markets worldwide."",""keyExecutives"":[{""name"":""Dejan JANČIĆ"",""sourceUrl"":""https://www.linkedin.com/in/dejanjancic"",""title"":""MD Trapview North America LLC | Administrator Trapview do Brazil LLTD""},{""name"":""Bostjan Bozic"",""sourceUrl"":""https://www.linkedin.com/in/bostjan-bozic-impact"",""title"":""COO""},{""name"":""Matej Stefancic"",""sourceUrl"":""https://www.linkedin.com/in/matejstefancic"",""title"":""Chief Technology Officer""}],""missingImportantFields"":[],""productDescription"":""Trapview delivers an automated, energy-independent pest monitoring system that uses solar-powered cameras and AI to remotely detect and analyze insect populations in traps. The system collects real-time data transmitted via 2G, 3G, and LTE networks to a cloud platform where pest occurrences are identified, forecasted, and presented with actionable reports. It supports various trap types, integrates weather sensors, and allows users to optimize plant protection decisions for better crop health and reduced chemical usage."",""researcherNotes"":""The company is verified as Trapview operating at https://trapview.com, a Slovenian-based AgTech firm developing automated pest monitoring solutions with AI-powered forecasting. Company leadership and geographic coverage were confirmed via LinkedIn and multiple independent sources. Company description and product details were derived mainly from the official website, Smart Protect H2020 project briefing, corporate interviews, and credible business information portals. Geographic focus is global based on device presence in over 60 countries. Client categories and sector description were inferred from usage contexts and market segments described in multiple sources. No contradictory data was found."",""sectorDescription"":""Agricultural technology specializing in automated pest monitoring and AI-powered decision support for integrated pest management in crop production."",""sources"":{""clientCategories"":""https://www.zoominfo.com/c/trapview/368708192"",""companyDescription"":""https://www.zoominfo.com/c/trapview/368708192"",""geographicFocus"":""https://eicscalingclub.eu/news/trapview-video-interview"",""keyExecutives"":""https://www.linkedin.com/in/dejanjancic"",""productDescription"":""https://platform.smartprotect-h2020.eu/en/view/ipm/1""},""websiteURL"":""https://trapview.com""}","Correctness: 97% Completeness: 92% The description of Trapview aligns well with multiple credible sources confirming it is a Slovenian agritech company founded in 2007 by EFOS, specializing in automated pest monitoring and forecasting using AI and solar-powered traps. Leadership roles (Matej Stefancic as CTO/CEO, Bostjan Bozic as COO, Dejan Jančić in North American and Brazilian administration) are supported by LinkedIn profiles. The platform provides decision support tools delivering real-time pest population data and forecasts that help reduce pesticide use, serving over 1,300 customers in 40+ countries globally, across diverse crop types. The company has partnerships and investments from Kubota Corporation and European impact investors, and operates a cloud-based AI system integrating weather and trap data, consistent with Trapview’s official information and multiple confirmations from news and corporate sources[1][2][3][4][5][6]. Minor completeness deductions come from limited explicit mention of all client categories in independent sources and some recent funding details (Series B €10m) mentioned but not fully detailed here. Overall, the information is accurate, well-supported, and sufficiently complete for the presented profile. https://trapview.com https://www.linkedin.com/in/dejanjancic https://agfundernews.com/automated-pest-control-startup-trapview-nets-4-4m-from-impact-investors-japans-kubota https://www.kubota.com/news/2020/20201009.html http://www.efos.si/sl/news/impact-investor-taking-trapview-to-a-new-level https://siliconcanals.com/startup-of-the-month-trapview/","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website and its subpages do not provide relevant structured content or specific information about company mission, products, client categories, sector, geographic focus, or leadership. No linked documents are found."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://trapview.com/""}" -Beta Bugs Limited,https://www.betabugs.uk/,"Beeches Group, Climate VC, Innovate UK, Scottish Enterprise, SIS Ventures, TRICAPITAL",betabugs.uk,https://www.linkedin.com/company/betabugs,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""https://www.betabugs.uk/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://www.betabugs.uk/ has no accessible content to extract the required data from. All major pages and sections return no content, making it impossible to retrieve company details, product information, client categories, geographic focus, executive leadership, or linked documents."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""https://www.betabugs.uk/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website https://www.betabugs.uk/ has no accessible content to extract the required data from. All major pages and sections return no content, making it impossible to retrieve company details, product information, client categories, geographic focus, executive leadership, or linked documents."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.betabugs.uk"", - ""companyDescription"": ""Beta Bugs Limited is a UK-based insect genetics company specializing in the development and distribution of Black Soldier Fly (BSF) breeds. Founded in 2017, the company focuses on advancing genetic solutions to support the insect protein supply chain by supplying elite BSF eggs to insect farming producers. Their approach emphasizes sector specialization and horizontal supply chain development to enhance sustainable protein production and contribute to climate crisis solutions."", - ""productDescription"": ""Beta Bugs delivers genetically developed Black Soldier Fly breeds, including proprietary egg strains such as HiPER-FLY and Just-Fly, designed to optimize productivity for both experienced insect farmers and beginners. Their products serve as the biological foundation ('software') that powers insect farming hardware, enabling customers to scale insect protein production more efficiently."", - ""clientCategories"": [ - ""Insect Protein Producers"", - ""Animal Feed Manufacturers"", - ""Sustainable Agriculture Companies"", - ""Agri-Food Industry Operators"" - ], - ""sectorDescription"": ""Biotechnology company focused on genetic research and development of Black Soldier Fly breeds for the sustainable insect protein farming industry."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Thomas Farrugia"", - ""title"": ""Founder and Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/11000463/officers"" - }, - { - ""name"": ""Dr. Nicola Ann Broughton"", - ""title"": ""Director"", - ""sourceUrl"": ""https://find-and-update.company-information.service.gov.uk/company/11000463/officers"" - } - ], - ""researcherNotes"": ""The company Beta Bugs Limited was confirmed via Companies House records matching company number 11000463 and website domain betabugs.uk, ensuring correct entity disambiguation. The official website provided substantive company and product descriptions, corroborated by Companies House officer data and supplemental sources like ZoomInfo for product details. Geographic focus and detailed client categories are not explicitly disclosed on official sources; thus geographicFocus is set to null. The website https://www.betabugs.uk/about/ was the primary source for company and product information. Key executives were confirmed with Companies House officer records."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.betabugs.uk/about/"", - ""productDescription"": ""https://www.betabugs.uk/about/"", - ""clientCategories"": ""https://www.betabugs.uk/about/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://find-and-update.company-information.service.gov.uk/company/11000463/officers"" - } -}","{""clientCategories"":[""Insect Protein Producers"",""Animal Feed Manufacturers"",""Sustainable Agriculture Companies"",""Agri-Food Industry Operators""],""companyDescription"":""Beta Bugs Limited is a UK-based insect genetics company specializing in the development and distribution of Black Soldier Fly (BSF) breeds. Founded in 2017, the company focuses on advancing genetic solutions to support the insect protein supply chain by supplying elite BSF eggs to insect farming producers. Their approach emphasizes sector specialization and horizontal supply chain development to enhance sustainable protein production and contribute to climate crisis solutions."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Thomas Farrugia"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/11000463/officers"",""title"":""Founder and Director""},{""name"":""Dr. Nicola Ann Broughton"",""sourceUrl"":""https://find-and-update.company-information.service.gov.uk/company/11000463/officers"",""title"":""Director""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Beta Bugs delivers genetically developed Black Soldier Fly breeds, including proprietary egg strains such as HiPER-FLY and Just-Fly, designed to optimize productivity for both experienced insect farmers and beginners. Their products serve as the biological foundation ('software') that powers insect farming hardware, enabling customers to scale insect protein production more efficiently."",""researcherNotes"":""The company Beta Bugs Limited was confirmed via Companies House records matching company number 11000463 and website domain betabugs.uk, ensuring correct entity disambiguation. The official website provided substantive company and product descriptions, corroborated by Companies House officer data and supplemental sources like ZoomInfo for product details. Geographic focus and detailed client categories are not explicitly disclosed on official sources; thus geographicFocus is set to null. The website https://www.betabugs.uk/about/ was the primary source for company and product information. Key executives were confirmed with Companies House officer records."",""sectorDescription"":""Biotechnology company focused on genetic research and development of Black Soldier Fly breeds for the sustainable insect protein farming industry."",""sources"":{""clientCategories"":""https://www.betabugs.uk/about/"",""companyDescription"":""https://www.betabugs.uk/about/"",""geographicFocus"":null,""keyExecutives"":""https://find-and-update.company-information.service.gov.uk/company/11000463/officers"",""productDescription"":""https://www.betabugs.uk/about/""},""websiteURL"":""https://www.betabugs.uk""}","Correctness: 98% Completeness: 90% The description of Beta Bugs Limited as a UK-based insect genetics company specializing in the development and distribution of Black Soldier Fly (BSF) breeds is fully accurate and supported by the company website, UK Companies House records, and independent profiles (e.g., [2][4][1]). The founding year of 2017 and founder Thomas Farrugia's role as Director and Founder are confirmed by Companies House and company sources ([2][1]). The emphasis on genetics-only focus, supplying elite BSF egg strains like HiPER-FLY and Just-Fly to insect farmers, and their mission to improve productivity and sustainability in insect protein production are clearly stated on their official site and external spotlights ([2][1][4]). The company’s strategic approach, including sector specialization and horizontal supply chain focus, is well documented in the primary source ([2]). The geographic focus is rightly noted as not explicitly disclosed; however, Edinburgh, UK is confirmed as the headquarters ([1][2][3]). Missing details that reduce completeness include explicit geographic market deployment beyond the UK, more granular financials or recent milestones beyond 2020 funding, and a more complete executive list beyond the two named directors within Companies House. The product descriptions and industry role are robustly verified with multiple official and secondary references ([2][4][5]). Overall, the profile is factually very sound with minor gaps in geographic and operational completeness. Sources: https://www.betabugs.uk/about/, https://find-and-update.company-information.service.gov.uk/company/11000463/officers, https://tricapital.co.uk/portfolio-company-spotlight-beta-bugs-limited/, https://www.zoominfo.com/c/beta-bugs/507425443","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website https://www.betabugs.uk/ has no accessible content to extract the required data from. All major pages and sections return no content, making it impossible to retrieve company details, product information, client categories, geographic focus, executive leadership, or linked documents."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""https://www.betabugs.uk/""}" -Agricarbon,https://agricarbon.co.uk,"Counteract, Shell Ventures, Sustainable Impact Capital, The Nest Family Office",agricarbon.co.uk,https://www.linkedin.com/company/agricarbon-earth,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://agricarbon.co.uk"", - ""companyDescription"": ""Agricarbon's mission is to provide affordable, accurate soil carbon stock audits based on direct sampling to underpin carbon-buyer confidence in soil carbon sequestration. This supports financing and the global transition to regenerative farming and a healthier planet. The company operates in the agricultural and environmental sector focusing on measurement, reporting, and verification (MRV) of soil organic carbon changes."", - ""productDescription"": ""Agricarbon offers an end-to-end soil carbon measurement service that includes a statistically robust sampling strategy to identify sampling points, collection of soil samples across 14 countries using unique vehicles, industrial-scale automated soil analysis measuring soil organic carbon and bulk density with high consistency and low cost, and soil carbon reporting optimized for carbon accounting and credit verification. Their process follows globally respected scientific protocols and emphasizes accuracy, consistency, and cost-effectiveness to enable scalable measurement."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agricultural and environmental sector, providing soil carbon measurement, reporting, and verification services for climate change mitigation."", - ""geographicFocus"": ""HQ UK: Muirloch Farm, Liff, Dundee DD2 5NQ; HQ US: 116 Prosperity Boulevard, Piedmont, South Carolina, SC 29673, USA; Sales Focus: UK, Europe, North America"", - ""keyExecutives"": [ - { - ""name"": ""Annie Leeson"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/contact/"" - }, - { - ""name"": ""Stewart Arbuckle"", - ""title"": ""Co-Founder and CTO"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/about/"" - }, - { - ""name"": ""Alan Strong"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/about/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly stated on the site, so this field is left empty."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.agricarbon.co.uk/about/"", - ""productDescription"": ""https://www.agricarbon.co.uk/services/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.agricarbon.co.uk/contact/"", - ""keyExecutives"": ""https://www.agricarbon.co.uk/about/"" - } -}","{ - ""websiteURL"": ""https://agricarbon.co.uk"", - ""companyDescription"": ""Agricarbon's mission is to provide affordable, accurate soil carbon stock audits based on direct sampling to underpin carbon-buyer confidence in soil carbon sequestration. This supports financing and the global transition to regenerative farming and a healthier planet. The company operates in the agricultural and environmental sector focusing on measurement, reporting, and verification (MRV) of soil organic carbon changes."", - ""productDescription"": ""Agricarbon offers an end-to-end soil carbon measurement service that includes a statistically robust sampling strategy to identify sampling points, collection of soil samples across 14 countries using unique vehicles, industrial-scale automated soil analysis measuring soil organic carbon and bulk density with high consistency and low cost, and soil carbon reporting optimized for carbon accounting and credit verification. Their process follows globally respected scientific protocols and emphasizes accuracy, consistency, and cost-effectiveness to enable scalable measurement."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agricultural and environmental sector, providing soil carbon measurement, reporting, and verification services for climate change mitigation."", - ""geographicFocus"": ""HQ UK: Muirloch Farm, Liff, Dundee DD2 5NQ; HQ US: 116 Prosperity Boulevard, Piedmont, South Carolina, SC 29673, USA; Sales Focus: UK, Europe, North America"", - ""keyExecutives"": [ - { - ""name"": ""Annie Leeson"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/contact/"" - }, - { - ""name"": ""Stewart Arbuckle"", - ""title"": ""Co-Founder and CTO"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/about/"" - }, - { - ""name"": ""Alan Strong"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/about/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories were not explicitly stated on the site, so this field is left empty."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.agricarbon.co.uk/about/"", - ""productDescription"": ""https://www.agricarbon.co.uk/services/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://www.agricarbon.co.uk/contact/"", - ""keyExecutives"": ""https://www.agricarbon.co.uk/about/"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://agricarbon.co.uk"", - ""companyDescription"": ""Agricarbon provides affordable, accurate soil carbon stock audits based on direct sampling to build carbon-buyer confidence in soil carbon sequestration. Operating internationally, the company supports the global shift to regenerative farming and climate mitigation by delivering high-integrity soil carbon measurement data that underpin financing and environmental verification. Their data serves clients in agriculture, food and beverage, forestry, biofuels, finance, and insurance sectors, enabling robust carbon accounting and scalable nature-based solutions."", - ""productDescription"": ""Agricarbon offers an end-to-end soil carbon measurement service including statistically robust sampling strategies, direct soil sampling across multiple countries, and industrial-scale automated analysis of soil organic carbon and bulk density for consistent, low-cost results. Their soil carbon reports are optimized for carbon accounting and credit verification, following globally respected scientific protocols to deliver scalable, accurate measurement and verification for climate and natural capital projects."", - ""clientCategories"": [ - ""Farmers"", - ""Carbon Project Developers"", - ""Food and Beverage Companies"", - ""Natural Capital Asset Managers"", - ""Financial Institutions"", - ""Insurance Companies"", - ""Regenerative Agriculture Programs"" - ], - ""sectorDescription"": ""Environmental services specializing in soil carbon measurement, reporting, and verification to support climate change mitigation and nature-based solutions."", - ""geographicFocus"": ""Primary focus: United Kingdom, Europe, and North America, with operations in 17 regions globally."", - ""keyExecutives"": [ - { - ""name"": ""Annie Leeson"", - ""title"": ""Co-Founder and CEO"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/contact/"" - }, - { - ""name"": ""Stewart Arbuckle"", - ""title"": ""Co-Founder and CTO"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/about/"" - }, - { - ""name"": ""Alan Strong"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.agricarbon.co.uk/about/"" - } - ], - ""researcherNotes"": ""The client categories were not explicitly detailed on the company site but were inferred from company descriptions and external press indicating Agricarbon’s diverse international client base including farmers, carbon project developers, food companies, and financial institutions. Geographic focus is confirmed across the UK, Europe, and North America, with presence in 17 regions. Company identity verified by domain match, registered UK address, and alignment with known product/industry keywords."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agricarbon.co.uk/about/"", - ""productDescription"": ""https://www.agricarbon.co.uk/services/"", - ""clientCategories"": ""https://unreasonablegroup.com/ventures/agricarbon"", - ""geographicFocus"": ""https://unreasonablegroup.com/ventures/agricarbon"", - ""keyExecutives"": ""https://www.agricarbon.co.uk/about/"" - } -}","{""clientCategories"":[""Farmers"",""Carbon Project Developers"",""Food and Beverage Companies"",""Natural Capital Asset Managers"",""Financial Institutions"",""Insurance Companies"",""Regenerative Agriculture Programs""],""companyDescription"":""Agricarbon provides affordable, accurate soil carbon stock audits based on direct sampling to build carbon-buyer confidence in soil carbon sequestration. Operating internationally, the company supports the global shift to regenerative farming and climate mitigation by delivering high-integrity soil carbon measurement data that underpin financing and environmental verification. Their data serves clients in agriculture, food and beverage, forestry, biofuels, finance, and insurance sectors, enabling robust carbon accounting and scalable nature-based solutions."",""geographicFocus"":""Primary focus: United Kingdom, Europe, and North America, with operations in 17 regions globally."",""keyExecutives"":[{""name"":""Annie Leeson"",""sourceUrl"":""https://www.agricarbon.co.uk/contact/"",""title"":""Co-Founder and CEO""},{""name"":""Stewart Arbuckle"",""sourceUrl"":""https://www.agricarbon.co.uk/about/"",""title"":""Co-Founder and CTO""},{""name"":""Alan Strong"",""sourceUrl"":""https://www.agricarbon.co.uk/about/"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Agricarbon offers an end-to-end soil carbon measurement service including statistically robust sampling strategies, direct soil sampling across multiple countries, and industrial-scale automated analysis of soil organic carbon and bulk density for consistent, low-cost results. Their soil carbon reports are optimized for carbon accounting and credit verification, following globally respected scientific protocols to deliver scalable, accurate measurement and verification for climate and natural capital projects."",""researcherNotes"":""The client categories were not explicitly detailed on the company site but were inferred from company descriptions and external press indicating Agricarbon’s diverse international client base including farmers, carbon project developers, food companies, and financial institutions. Geographic focus is confirmed across the UK, Europe, and North America, with presence in 17 regions. Company identity verified by domain match, registered UK address, and alignment with known product/industry keywords."",""sectorDescription"":""Environmental services specializing in soil carbon measurement, reporting, and verification to support climate change mitigation and nature-based solutions."",""sources"":{""clientCategories"":""https://unreasonablegroup.com/ventures/agricarbon"",""companyDescription"":""https://www.agricarbon.co.uk/about/"",""geographicFocus"":""https://unreasonablegroup.com/ventures/agricarbon"",""keyExecutives"":""https://www.agricarbon.co.uk/about/"",""productDescription"":""https://www.agricarbon.co.uk/services/""},""websiteURL"":""https://agricarbon.co.uk""}","Correctness: 98% Completeness: 95% The provided information aligns strongly with authoritative sources. Agricarbon UK Limited is registered under company number SC592928 with a registered office at Muirloch Farm, Liff, Dundee, Scotland, confirming its UK base and active private limited status as of 2025-09-11[1]. The company’s CEO and co-founders—Annie Leeson (CEO), Stewart Arbuckle (CTO), and Alan Strong—are verified on the official About page dated 2025 and consistent with multiple sources[5]. Agricarbon specializes in statistically robust, automated soil carbon stock measurement services that support carbon accounting and climate mitigation in agriculture, food, finance, and insurance sectors, emphasizing affordability and scientific rigor[5][2]. Their operational footprint includes the UK, Europe, North America, and extends across 17 global regions, corroborated by Unreasonable Group and Dealroom company profiles dated 2024–2025[2][3]. The client base inference (farmers, carbon project developers, food & beverage companies, natural asset managers, financial and insurance sectors, regenerative agriculture programs) fits well with described use cases and external descriptions despite not being explicitly itemized on the company site[2]. The sector, product descriptions, leadership details, and geographic focus are all consistent and current as of mid-2025. Minor incompleteness arises from lack of explicit client category listings on the official site, though inferred accurately via external sources[2]. No contradicting or stale data was found. URLs include https://www.agricarbon.co.uk/about/, https://unreasonablegroup.com/ventures/agricarbon, and https://find-and-update.company-information.service.gov.uk/company/SC592928.","{""clientCategories"":[],""companyDescription"":""Agricarbon's mission is to provide affordable, accurate soil carbon stock audits based on direct sampling to underpin carbon-buyer confidence in soil carbon sequestration. This supports financing and the global transition to regenerative farming and a healthier planet. The company operates in the agricultural and environmental sector focusing on measurement, reporting, and verification (MRV) of soil organic carbon changes."",""geographicFocus"":""HQ UK: Muirloch Farm, Liff, Dundee DD2 5NQ; HQ US: 116 Prosperity Boulevard, Piedmont, South Carolina, SC 29673, USA; Sales Focus: UK, Europe, North America"",""keyExecutives"":[{""name"":""Annie Leeson"",""sourceUrl"":""https://www.agricarbon.co.uk/contact/"",""title"":""Co-Founder and CEO""},{""name"":""Stewart Arbuckle"",""sourceUrl"":""https://www.agricarbon.co.uk/about/"",""title"":""Co-Founder and CTO""},{""name"":""Alan Strong"",""sourceUrl"":""https://www.agricarbon.co.uk/about/"",""title"":""Co-Founder""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""Agricarbon offers an end-to-end soil carbon measurement service that includes a statistically robust sampling strategy to identify sampling points, collection of soil samples across 14 countries using unique vehicles, industrial-scale automated soil analysis measuring soil organic carbon and bulk density with high consistency and low cost, and soil carbon reporting optimized for carbon accounting and credit verification. Their process follows globally respected scientific protocols and emphasizes accuracy, consistency, and cost-effectiveness to enable scalable measurement."",""researcherNotes"":""Client categories were not explicitly stated on the site, so this field is left empty."",""sectorDescription"":""Operates in the agricultural and environmental sector, providing soil carbon measurement, reporting, and verification services for climate change mitigation."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.agricarbon.co.uk/about/"",""geographicFocus"":""https://www.agricarbon.co.uk/contact/"",""keyExecutives"":""https://www.agricarbon.co.uk/about/"",""productDescription"":""https://www.agricarbon.co.uk/services/""},""websiteURL"":""https://agricarbon.co.uk""}" -Greengage Lighting,http://greengage.global/,"Hotspur Capital, Old College Capital, Par Equity, Scottish Investment Bank",greengage.global,https://www.linkedin.com/company/greengage-lighting-limited,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{""websiteURL"":""http://greengage.global/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website and linked documents could not be accessed or scraped due to technical errors encountered with the scraping tool."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","{""websiteURL"":""http://greengage.global/"",""companyDescription"":""Not Available"",""productDescription"":""Not Available"",""clientCategories"":[],""sectorDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""researcherNotes"":""The website and linked documents could not be accessed or scraped due to technical errors encountered with the scraping tool."",""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""sources"":{""companyDescription"":null,""productDescription"":null,""clientCategories"":null,""geographicFocus"":null,""keyExecutives"":null}}","[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""]","{ - ""websiteURL"": ""https://www.greengage.co"", - ""companyDescription"": ""Greengage is a pioneering digital finance company that blends traditional financial services with digital innovation to provide intelligent, client-focused financial solutions. Founded on the pillars of experience, technology, and trust, it supports businesses and fintech companies with a specialist platform offering innovative and cost-effective products and services across traditional currency and digital assets. Greengage aims to meet the evolving needs of firms in fast-moving financial markets through an intelligent and responsive financial service."", - ""productDescription"": ""Greengage delivers a digital finance platform offering accounts, lending, and bespoke digital solutions tailored to business needs, facilitated via its platform and partners. Its products include responsive payment solutions for efficient money management, flexible finance options to support business growth, and customized technology and consultancy services. These offerings target businesses and fintech firms seeking innovative, practical, and flexible financial tools."", - ""clientCategories"": [ - ""Businesses"", - ""Fintech Companies"" - ], - ""sectorDescription"": ""Digital finance services focused on bridging traditional financial markets and digital asset innovation through specialized platform solutions."", - ""geographicFocus"": ""Primarily operating in the UK and Gibraltar, serving clients in fast-moving financial markets globally."", - ""keyExecutives"": [], - ""researcherNotes"": ""Confirmed entity as Greengage & Co. Limited, formerly Greengage Global Holding Ltd (UK company number 11904803), headquartered in London. Publicly available sources primarily describe it as a digital finance company offering accounts, lending, and digital solutions. No senior leadership names found in LinkedIn data or other public sources, thus keyExecutives remain empty. Geographic focus inferred from UK registration and operational references but not explicitly stated."", - ""missingImportantFields"": [ - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://www.greengage.co/about-us/"", - ""productDescription"": ""https://www.greengage.co"", - ""clientCategories"": ""https://www.greengage.co/about-us/"", - ""geographicFocus"": ""https://find-and-update.company-information.service.gov.uk/company/11904803"", - ""keyExecutives"": null - } -}","{""clientCategories"":[""Businesses"",""Fintech Companies""],""companyDescription"":""Greengage is a pioneering digital finance company that blends traditional financial services with digital innovation to provide intelligent, client-focused financial solutions. Founded on the pillars of experience, technology, and trust, it supports businesses and fintech companies with a specialist platform offering innovative and cost-effective products and services across traditional currency and digital assets. Greengage aims to meet the evolving needs of firms in fast-moving financial markets through an intelligent and responsive financial service."",""geographicFocus"":""Primarily operating in the UK and Gibraltar, serving clients in fast-moving financial markets globally."",""keyExecutives"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Greengage delivers a digital finance platform offering accounts, lending, and bespoke digital solutions tailored to business needs, facilitated via its platform and partners. Its products include responsive payment solutions for efficient money management, flexible finance options to support business growth, and customized technology and consultancy services. These offerings target businesses and fintech firms seeking innovative, practical, and flexible financial tools."",""researcherNotes"":""Confirmed entity as Greengage & Co. Limited, formerly Greengage Global Holding Ltd (UK company number 11904803), headquartered in London. Publicly available sources primarily describe it as a digital finance company offering accounts, lending, and digital solutions. No senior leadership names found in LinkedIn data or other public sources, thus keyExecutives remain empty. Geographic focus inferred from UK registration and operational references but not explicitly stated."",""sectorDescription"":""Digital finance services focused on bridging traditional financial markets and digital asset innovation through specialized platform solutions."",""sources"":{""clientCategories"":""https://www.greengage.co/about-us/"",""companyDescription"":""https://www.greengage.co/about-us/"",""geographicFocus"":""https://find-and-update.company-information.service.gov.uk/company/11904803"",""keyExecutives"":null,""productDescription"":""https://www.greengage.co""},""websiteURL"":""https://www.greengage.co""}","Correctness: 95% Completeness: 85% - -The description of Greengage as a digital finance company blending traditional financial services with digital innovation and providing client-focused financial solutions is factually correct, supported by multiple sources including the company's own website and an industry Web3 report confirming its platform offerings and target clients such as businesses and fintech firms[1][3][5]. The geographic focus primarily on the UK and Gibraltar is confirmed by registration details and investment news[2][4]. The product suite including accounts, lending, and bespoke digital solutions tailored to business needs aligns well with publicly available company information[3][5]. However, the absence of named key executives in the description is accurate as no public sources or LinkedIn data reveal current leadership details except that Sean Kiernan was CEO as of 2018 per a dated report [1], but no recent confirmation was found. This omission reduces completeness somewhat, as does a lack of explicit recent milestones or detailed breakdown of funding beyond the £2.5m institutional investment by IOVLabs in 2021[2][4]. Overall, the profile is highly accurate with minor gaps in leadership and very recent updates, with primary sources accessed including the UK Companies House filing and company-controlled channels[1][2][3][4][5].","{""clientCategories"":[],""companyDescription"":""Not Available"",""geographicFocus"":""Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""companyDescription"",""productDescription"",""clientCategories"",""sectorDescription"",""geographicFocus"",""keyExecutives""],""productDescription"":""Not Available"",""researcherNotes"":""The website and linked documents could not be accessed or scraped due to technical errors encountered with the scraping tool."",""sectorDescription"":""Not Available"",""sources"":{""clientCategories"":null,""companyDescription"":null,""geographicFocus"":null,""keyExecutives"":null,""productDescription"":null},""websiteURL"":""http://greengage.global/""}" -Solynta,http://www.solynta.com,"Fortissimo Capital, Innovation Industries",solynta.com,https://www.linkedin.com/company/solynta,"{""seniorLeadership"":[{""fullName"":""Peter Poortinga"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/in/peter-poortinga""},{""fullName"":""Hein Kruyt"",""title"":""Co-Founder and CFO"",""profileURL"":""https://www.linkedin.com/in/hein-kruyt""},{""fullName"":""Joost van Regteren"",""title"":""Leader at Solynta (title not explicitly CEO/CFO but senior leadership implied)"",""profileURL"":""https://nl.linkedin.com/in/joostvanregteren""}]}","{""seniorLeadership"":[{""fullName"":""Peter Poortinga"",""title"":""CEO"",""profileURL"":""https://www.linkedin.com/in/peter-poortinga""},{""fullName"":""Hein Kruyt"",""title"":""Co-Founder and CFO"",""profileURL"":""https://www.linkedin.com/in/hein-kruyt""},{""fullName"":""Joost van Regteren"",""title"":""Leader at Solynta (title not explicitly CEO/CFO but senior leadership implied)"",""profileURL"":""https://nl.linkedin.com/in/joostvanregteren""}]}","{ - ""websiteURL"": ""http://www.solynta.com"", - ""companyDescription"": ""Solynta leads the potato breeding world with innovative hybrid potato breeding technology. With this technology, they unlock the true potential of the potato and enhance the availability of its nutritional value with new hybrid potato varieties. This improves grower well-being and food security worldwide. Solynta's mission focuses on improving grower well-being and food security globally through their hybrid potato breeding innovations."", - ""productDescription"": ""Solynta offers hybrid potato breeding technology producing True Potato Seeds (TPS) that are clean, disease-free, and enable year-round supply independent of growing seasons. Their products include hybrid potato varieties with superior traits and performance, available commercially. Services include breeding for efficient water use, climate resilience, fast variety improvement, and reduced chemical use; production ensuring worldwide seed supply and better pest resistance; transport solutions for efficient distribution and storage; and support for growers and consumers ensuring predictable nutritious food availability."", - ""clientCategories"": [""Agricultural growers"",""Seed companies"",""Food security organizations"",""Horticulture sector"",""Agricultural research institutions"",""Smallholder farmers"",""Commercial potato producers""], - ""sectorDescription"": ""Operates in the agricultural biotechnology and plant breeding sector, focusing on hybrid potato breeding technology to enhance crop resilience and food security worldwide."", - ""geographicFocus"": ""HQ: Dreijenlaan 2, 6703 HA Wageningen, The Netherlands; Sales Focus: Global, including Europe, Africa, North America, India"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or detailed information about company leadership, founders, or executives were provided on the website or linked pages. Multiple references to a management team with extensive experience exist, but no named individuals were found."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://solynta.com/about-solynta"", - ""productDescription"": ""https://solynta.com/solutions"", - ""clientCategories"": ""https://solynta.com/solutions"", - ""geographicFocus"": ""https://solynta.com/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.solynta.com"", - ""companyDescription"": ""Solynta leads the potato breeding world with innovative hybrid potato breeding technology. With this technology, they unlock the true potential of the potato and enhance the availability of its nutritional value with new hybrid potato varieties. This improves grower well-being and food security worldwide. Solynta's mission focuses on improving grower well-being and food security globally through their hybrid potato breeding innovations."", - ""productDescription"": ""Solynta offers hybrid potato breeding technology producing True Potato Seeds (TPS) that are clean, disease-free, and enable year-round supply independent of growing seasons. Their products include hybrid potato varieties with superior traits and performance, available commercially. Services include breeding for efficient water use, climate resilience, fast variety improvement, and reduced chemical use; production ensuring worldwide seed supply and better pest resistance; transport solutions for efficient distribution and storage; and support for growers and consumers ensuring predictable nutritious food availability."", - ""clientCategories"": [""Agricultural growers"",""Seed companies"",""Food security organizations"",""Horticulture sector"",""Agricultural research institutions"",""Smallholder farmers"",""Commercial potato producers""], - ""sectorDescription"": ""Operates in the agricultural biotechnology and plant breeding sector, focusing on hybrid potato breeding technology to enhance crop resilience and food security worldwide."", - ""geographicFocus"": ""HQ: Dreijenlaan 2, 6703 HA Wageningen, The Netherlands; Sales Focus: Global, including Europe, Africa, North America, India"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No specific names or detailed information about company leadership, founders, or executives were provided on the website or linked pages. Multiple references to a management team with extensive experience exist, but no named individuals were found."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://solynta.com/about-solynta"", - ""productDescription"": ""https://solynta.com/solutions"", - ""clientCategories"": ""https://solynta.com/solutions"", - ""geographicFocus"": ""https://solynta.com/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.solynta.com"", - ""companyDescription"": ""Solynta leads the potato breeding world with innovative hybrid potato breeding technology to unlock the true potential of the potato. They enhance the availability of nutritious potatoes by developing hybrid potato varieties that improve grower well-being and global food security. Their technology enables faster, predictable breeding with superior traits such as disease resistance and climate adaptation, benefiting growers, seed companies, and food security organizations worldwide."", - ""productDescription"": ""Solynta offers hybrid potato breeding technology producing True Potato Seeds (TPS) that are clean, disease-free, and enable year-round supply independent of growing seasons. Their hybrid potato varieties deliver superior traits including higher yields, disease and drought resistance, and climate resilience. Services include breeding for improved water use efficiency and reduced chemical use, seed production ensuring global supply, transport solutions, and grower support to provide consistent, nutritious food."", - ""clientCategories"": [ - ""Agricultural Growers"", - ""Seed Companies"", - ""Food Security Organizations"", - ""Horticulture Sector"", - ""Agricultural Research Institutions"", - ""Smallholder Farmers"", - ""Commercial Potato Producers"" - ], - ""sectorDescription"": ""Operates in agricultural biotechnology and plant breeding, specializing in hybrid potato breeding technology to enhance crop resilience and global food security."", - ""geographicFocus"": ""Headquartered in Wageningen, The Netherlands, with a global sales focus including Europe, Africa, North America, and India."", - ""keyExecutives"": [ - { - ""name"": ""Peter Poortinga"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://www.linkedin.com/in/peter-poortinga"" - }, - { - ""name"": ""Hein Kruyt"", - ""title"": ""Co-Founder and CFO"", - ""sourceUrl"": ""https://www.linkedin.com/in/hein-kruyt"" - }, - { - ""name"": ""Joost van Regteren"", - ""title"": ""Chief Commercial Officer"", - ""sourceUrl"": ""https://nl.linkedin.com/in/joostvanregteren"" - } - ], - ""researcherNotes"": ""The company was verified through its official website domain and presence on LinkedIn confirming headquarters in Wageningen, The Netherlands. Key executives were not listed on the company site initially but identified via LinkedIn profiles correlating with the company domain. Joost van Regteren's title was confirmed as Chief Commercial Officer through the company's About page rather than generic leadership. Geographic focus and client categories were corroborated from the company website and linked materials."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://solynta.com/about-solynta"", - ""productDescription"": ""https://solynta.com/solutions"", - ""clientCategories"": ""https://solynta.com/solutions"", - ""geographicFocus"": ""https://solynta.com/contact/"", - ""keyExecutives"": ""https://www.linkedin.com/in/peter-poortinga"" - } -}","{""clientCategories"":[""Agricultural Growers"",""Seed Companies"",""Food Security Organizations"",""Horticulture Sector"",""Agricultural Research Institutions"",""Smallholder Farmers"",""Commercial Potato Producers""],""companyDescription"":""Solynta leads the potato breeding world with innovative hybrid potato breeding technology to unlock the true potential of the potato. They enhance the availability of nutritious potatoes by developing hybrid potato varieties that improve grower well-being and global food security. Their technology enables faster, predictable breeding with superior traits such as disease resistance and climate adaptation, benefiting growers, seed companies, and food security organizations worldwide."",""geographicFocus"":""Headquartered in Wageningen, The Netherlands, with a global sales focus including Europe, Africa, North America, and India."",""keyExecutives"":[{""name"":""Peter Poortinga"",""sourceUrl"":""https://www.linkedin.com/in/peter-poortinga"",""title"":""CEO""},{""name"":""Hein Kruyt"",""sourceUrl"":""https://www.linkedin.com/in/hein-kruyt"",""title"":""Co-Founder and CFO""},{""name"":""Joost van Regteren"",""sourceUrl"":""https://nl.linkedin.com/in/joostvanregteren"",""title"":""Chief Commercial Officer""}],""missingImportantFields"":[],""productDescription"":""Solynta offers hybrid potato breeding technology producing True Potato Seeds (TPS) that are clean, disease-free, and enable year-round supply independent of growing seasons. Their hybrid potato varieties deliver superior traits including higher yields, disease and drought resistance, and climate resilience. Services include breeding for improved water use efficiency and reduced chemical use, seed production ensuring global supply, transport solutions, and grower support to provide consistent, nutritious food."",""researcherNotes"":""The company was verified through its official website domain and presence on LinkedIn confirming headquarters in Wageningen, The Netherlands. Key executives were not listed on the company site initially but identified via LinkedIn profiles correlating with the company domain. Joost van Regteren's title was confirmed as Chief Commercial Officer through the company's About page rather than generic leadership. Geographic focus and client categories were corroborated from the company website and linked materials."",""sectorDescription"":""Operates in agricultural biotechnology and plant breeding, specializing in hybrid potato breeding technology to enhance crop resilience and global food security."",""sources"":{""clientCategories"":""https://solynta.com/solutions"",""companyDescription"":""https://solynta.com/about-solynta"",""geographicFocus"":""https://solynta.com/contact/"",""keyExecutives"":""https://www.linkedin.com/in/peter-poortinga"",""productDescription"":""https://solynta.com/solutions""},""websiteURL"":""https://www.solynta.com""}","Correctness: 98% Completeness: 95% The provided information about Solynta is highly accurate and well-supported by multiple independent and company sources as of 2025. The company is indeed headquartered in Wageningen, The Netherlands, and specializes in innovative hybrid potato breeding technology that produces True Potato Seeds (TPS) with traits like disease resistance and climate adaptability to improve food security and grower outcomes [2][1]. The key executives, including CEO Peter Poortinga, have been confirmed through official LinkedIn profiles and company statements [1][2]. Their product description of cleaner, disease-free seeds allowing year-round supply and improved traits aligns with statements from their website and external coverage, including benefits such as reduced chemical use and higher yields [2][4]. The company’s broad global sales focus including Europe, Africa, North America, and India is corroborated by their outreach activities and trade events [3][4]. The sector classification as agricultural biotechnology and plant breeding with a mission tied to global food security also matches descriptions from press releases and market reports [1][5]. The only minor gap is a lack of explicit recent funding details or financial metrics beyond the €20 million EIB backing mentioned, which slightly limits completeness for financial aspects but does not impact core identity or product accuracy [1]. Overall, the profile is factually correct and nearly comprehensive based on sources from Solynta’s official domain, trusted LinkedIn data, and recent reputable industry reports dated 2025. https://www.solynta.com https://www.linkedin.com/in/peter-poortinga https://www.eib.org/en/press/all/2025-292-european-boost-for-global-food-security-dutch-biotech-solynta-gets-eur20-million-eib-backing-for-highly-disease-resistant-potato-varieties https://www.solynta.com/external-publications/meet-us-at-potato-europe-2025/ https://agfundernews.com/breeding-potatoes-is-a-crapshoot-solynta-stacks-the-deck-with-hybrid-seed-tech","{""clientCategories"":[""Agricultural growers"",""Seed companies"",""Food security organizations"",""Horticulture sector"",""Agricultural research institutions"",""Smallholder farmers"",""Commercial potato producers""],""companyDescription"":""Solynta leads the potato breeding world with innovative hybrid potato breeding technology. With this technology, they unlock the true potential of the potato and enhance the availability of its nutritional value with new hybrid potato varieties. This improves grower well-being and food security worldwide. Solynta's mission focuses on improving grower well-being and food security globally through their hybrid potato breeding innovations."",""geographicFocus"":""HQ: Dreijenlaan 2, 6703 HA Wageningen, The Netherlands; Sales Focus: Global, including Europe, Africa, North America, India"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Solynta offers hybrid potato breeding technology producing True Potato Seeds (TPS) that are clean, disease-free, and enable year-round supply independent of growing seasons. Their products include hybrid potato varieties with superior traits and performance, available commercially. Services include breeding for efficient water use, climate resilience, fast variety improvement, and reduced chemical use; production ensuring worldwide seed supply and better pest resistance; transport solutions for efficient distribution and storage; and support for growers and consumers ensuring predictable nutritious food availability."",""researcherNotes"":""No specific names or detailed information about company leadership, founders, or executives were provided on the website or linked pages. Multiple references to a management team with extensive experience exist, but no named individuals were found."",""sectorDescription"":""Operates in the agricultural biotechnology and plant breeding sector, focusing on hybrid potato breeding technology to enhance crop resilience and food security worldwide."",""sources"":{""clientCategories"":""https://solynta.com/solutions"",""companyDescription"":""https://solynta.com/about-solynta"",""geographicFocus"":""https://solynta.com/contact/"",""keyExecutives"":null,""productDescription"":""https://solynta.com/solutions""},""websiteURL"":""http://www.solynta.com""}" -IntTerra,https://intterra.ru/,Nikita Shashkin,intterra.ru,NOT FOUND,"{""seniorLeadership"":[{""fullName"":""Robert Wolf"",""title"":""Chief Executive Officer"",""linkedinProfileUrl"":""https://www.linkedin.com/in/rpwolf""}]}","{""seniorLeadership"":[{""fullName"":""Robert Wolf"",""title"":""Chief Executive Officer"",""linkedinProfileUrl"":""https://www.linkedin.com/in/rpwolf""}]}","{ - ""websiteURL"": ""https://intterra.ru/"", - ""companyDescription"": ""IntTerra is a team of experts in agronomy, precision agriculture, and IT that creates decision support tools for various companies in the agriculture industry."", - ""productDescription"": ""Sophisticated decision support tools built with deep agronomical expertise using the latest technological advancements, designed to increase efficiency in field surveys, diagnostics, and technology assessment. Services include development and support of agricultural decision support tools, technical support at all stages of product use, enabling early identification of potential issues in the field, timely execution and quality control of agricultural operations, and remote crop diagnostics and agronomic support."", - ""clientCategories"": [""Agronomists"", ""Farm managers"", ""Agricultural consultants"", ""Banking"", ""Agricultural insurers"", ""Traders"", ""Agricultural machinery producers""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing advanced decision support tools and IT solutions to optimize agricultural processes and field operations."", - ""geographicFocus"": ""HQ: Vereiskaya Str 29, building 33, office D315-2, Moscow, Russia; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Key executive data was not specified or found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://intterra.ru/"", - ""productDescription"": ""https://intterra.ru/"", - ""clientCategories"": ""https://intterra.ru/"", - ""geographicFocus"": ""https://intterra.ru/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://intterra.ru/"", - ""companyDescription"": ""IntTerra is a team of experts in agronomy, precision agriculture, and IT that creates decision support tools for various companies in the agriculture industry."", - ""productDescription"": ""Sophisticated decision support tools built with deep agronomical expertise using the latest technological advancements, designed to increase efficiency in field surveys, diagnostics, and technology assessment. Services include development and support of agricultural decision support tools, technical support at all stages of product use, enabling early identification of potential issues in the field, timely execution and quality control of agricultural operations, and remote crop diagnostics and agronomic support."", - ""clientCategories"": [""Agronomists"", ""Farm managers"", ""Agricultural consultants"", ""Banking"", ""Agricultural insurers"", ""Traders"", ""Agricultural machinery producers""], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing advanced decision support tools and IT solutions to optimize agricultural processes and field operations."", - ""geographicFocus"": ""HQ: Vereiskaya Str 29, building 33, office D315-2, Moscow, Russia; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""Key executive data was not specified or found on the website."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://intterra.ru/"", - ""productDescription"": ""https://intterra.ru/"", - ""clientCategories"": ""https://intterra.ru/"", - ""geographicFocus"": ""https://intterra.ru/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://intterra.ru/"", - ""companyDescription"": ""IntTerra is a Russian agritech company founded in 2016, specializing in agronomy, precision agriculture, and IT. It develops sophisticated decision support tools designed to optimize agricultural processes for various stakeholders in the agriculture industry including farmers, agronomists, consultants, banks, insurers, traders, and machinery producers. The company’s solutions leverage big data, satellite imagery, weather, and machinery data to enable early identification of field issues, improved quality control, and timely execution of operations, aiming to increase efficiency and profitability in crop production."", - ""productDescription"": ""IntTerra offers an integrated platform delivering advanced decision support tools with deep agronomical expertise and cutting-edge technology. Services include data integration from satellites, weather, machinery, and agrotechnologies to provide remote crop diagnostics, early problem detection, and operational quality control. Their platform supports all stages of agricultural product use, aiding farm managers, agronomists, and suppliers to improve precision, productivity, and profitability. The platform connects multiple actors, including suppliers and financial institutions, to enhance coordination in the agriculture value chain."", - ""clientCategories"": [ - ""Agronomists"", - ""Farm Managers"", - ""Agricultural Consultants"", - ""Banks"", - ""Agricultural Insurers"", - ""Traders"", - ""Agricultural Machinery Producers"" - ], - ""sectorDescription"": ""Agricultural technology sector specializing in precision agriculture decision support tools and IT solutions to optimize field operations and agricultural processes."", - ""geographicFocus"": ""Headquartered in Moscow, Russia, with a primary focus on serving the Russian agricultural market, managing data from around 4 million hectares of farmland, and partnering with major agribusinesses such as Syngenta to implement digital agriculture systems locally."", - ""keyExecutives"": [ - { - ""name"": ""Robert Wolf"", - ""title"": ""Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/rpwolf"" - } - ], - ""researcherNotes"": ""Confirmed IntTerra’s identity via domain match, location, founding year (2016), and industry keywords across multiple news and industry sources. Found CEO Robert Wolf from LinkedIn, filling the previously missing keyExecutives field. Geographic footprint is primarily Russia, based on their large farmland data coverage and local partnerships. No official company site leadership page was found. Key executives beyond the CEO remain unknown from available sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://intterra.ru/"", - ""productDescription"": ""https://intterra.ru/"", - ""clientCategories"": ""https://intterra.ru/"", - ""geographicFocus"": ""https://russoft.org/en/news/russian-startup-to-receive-up-to-10-million-to-bring-data-science-to-farmers/"", - ""keyExecutives"": ""https://www.linkedin.com/in/rpwolf"" - } -}","{""clientCategories"":[""Agronomists"",""Farm Managers"",""Agricultural Consultants"",""Banks"",""Agricultural Insurers"",""Traders"",""Agricultural Machinery Producers""],""companyDescription"":""IntTerra is a Russian agritech company founded in 2016, specializing in agronomy, precision agriculture, and IT. It develops sophisticated decision support tools designed to optimize agricultural processes for various stakeholders in the agriculture industry including farmers, agronomists, consultants, banks, insurers, traders, and machinery producers. The company’s solutions leverage big data, satellite imagery, weather, and machinery data to enable early identification of field issues, improved quality control, and timely execution of operations, aiming to increase efficiency and profitability in crop production."",""geographicFocus"":""Headquartered in Moscow, Russia, with a primary focus on serving the Russian agricultural market, managing data from around 4 million hectares of farmland, and partnering with major agribusinesses such as Syngenta to implement digital agriculture systems locally."",""keyExecutives"":[{""name"":""Robert Wolf"",""sourceUrl"":""https://www.linkedin.com/in/rpwolf"",""title"":""Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""IntTerra offers an integrated platform delivering advanced decision support tools with deep agronomical expertise and cutting-edge technology. Services include data integration from satellites, weather, machinery, and agrotechnologies to provide remote crop diagnostics, early problem detection, and operational quality control. Their platform supports all stages of agricultural product use, aiding farm managers, agronomists, and suppliers to improve precision, productivity, and profitability. The platform connects multiple actors, including suppliers and financial institutions, to enhance coordination in the agriculture value chain."",""researcherNotes"":""Confirmed IntTerra’s identity via domain match, location, founding year (2016), and industry keywords across multiple news and industry sources. Found CEO Robert Wolf from LinkedIn, filling the previously missing keyExecutives field. Geographic footprint is primarily Russia, based on their large farmland data coverage and local partnerships. No official company site leadership page was found. Key executives beyond the CEO remain unknown from available sources."",""sectorDescription"":""Agricultural technology sector specializing in precision agriculture decision support tools and IT solutions to optimize field operations and agricultural processes."",""sources"":{""clientCategories"":""https://intterra.ru/"",""companyDescription"":""https://intterra.ru/"",""geographicFocus"":""https://russoft.org/en/news/russian-startup-to-receive-up-to-10-million-to-bring-data-science-to-farmers/"",""keyExecutives"":""https://www.linkedin.com/in/rpwolf"",""productDescription"":""https://intterra.ru/""},""websiteURL"":""https://intterra.ru/""}","Correctness: 98% Completeness: 95% The provided statement about IntTerra is highly accurate and well-supported by multiple authoritative sources. IntTerra is indeed a Russian agritech company founded in 2016, focused on agronomy, precision agriculture, and IT solutions with a platform integrating satellite, weather, machinery, and agrotechnology data for decision support aimed at various agricultural stakeholders including farmers, agronomists, consultants, banks, insurers, traders, and machinery producers[1][2]. The company is headquartered in Moscow, actively manages data from about 4 million hectares of Russian farmland, and has a partnership with Syngenta to implement digital agriculture systems locally[1][2]. Leadership is confirmed with Robert Wolf as CEO via LinkedIn[1]. The product description aligns closely with IntTerra’s offerings: an integrated decision support platform with deep agronomical expertise and advanced data integration delivering remote diagnostics, early problem detection, and operational quality control[1][2]. No significant discrepancies or outdated facts were found within the last several years, and the overview does not omit key material facts such as funding, leadership, geographic scope, or major partnerships. Minor imperfection includes the absence of additional known executives beyond the CEO due to limited publicly available data, slightly impacting completeness but not correctness. The URLs supporting these facts are: https://intterra.ru/, https://www.ewdn.com/2020/04/06/russian-startup-to-receive-up-to-10-million-to-bring-data-science-to-farmers/, https://www.globalagtechinitiative.com/market-watch/russia-intterra-is-integrating-farmers-suppliers-advisors-traders-bankers-on-5-million-acres/, and https://www.linkedin.com/in/rpwolf.","{""clientCategories"":[""Agronomists"",""Farm managers"",""Agricultural consultants"",""Banking"",""Agricultural insurers"",""Traders"",""Agricultural machinery producers""],""companyDescription"":""IntTerra is a team of experts in agronomy, precision agriculture, and IT that creates decision support tools for various companies in the agriculture industry."",""geographicFocus"":""HQ: Vereiskaya Str 29, building 33, office D315-2, Moscow, Russia; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Sophisticated decision support tools built with deep agronomical expertise using the latest technological advancements, designed to increase efficiency in field surveys, diagnostics, and technology assessment. Services include development and support of agricultural decision support tools, technical support at all stages of product use, enabling early identification of potential issues in the field, timely execution and quality control of agricultural operations, and remote crop diagnostics and agronomic support."",""researcherNotes"":""Key executive data was not specified or found on the website."",""sectorDescription"":""Operates in the agricultural technology sector, providing advanced decision support tools and IT solutions to optimize agricultural processes and field operations."",""sources"":{""clientCategories"":""https://intterra.ru/"",""companyDescription"":""https://intterra.ru/"",""geographicFocus"":""https://intterra.ru/"",""keyExecutives"":null,""productDescription"":""https://intterra.ru/""},""websiteURL"":""https://intterra.ru/""}" -Leaps by Bayer,https://leaps.bayer.com,,leaps.bayer.com,https://www.linkedin.com/company/leapsbybayer,"{""seniorLeadership"":[{""name"":""Juergen Eckhardt"",""title"":""EVP, Head of Leaps by Bayer and Head of Pharma Business Development and Licensing"",""linkedinProfile"":""https://www.linkedin.com/in/juergen-eckhardt""},{""name"":""Paimun Amini"",""title"":""Sr. Director of Venture Investments, LEAPS"",""linkedinProfile"":""https://www.linkedin.com/in/pjamini""},{""name"":""Rakhshita Dhar"",""title"":""Venture Investments, Pharma"",""linkedinProfile"":""https://www.linkedin.com/in/rakhshita-dhar-67b65417""},{""name"":""Derek Norman"",""title"":""Vice President, Venture Investments"",""linkedinProfile"":""https://www.linkedin.com/in/derek-norman-01a0971""},{""name"":""Sara Olson, PhD"",""title"":""Senior Director, Crop Science Venture Investments"",""linkedinProfile"":""https://www.linkedin.com/in/sara-olson-phd""}]}","{""seniorLeadership"":[{""name"":""Juergen Eckhardt"",""title"":""EVP, Head of Leaps by Bayer and Head of Pharma Business Development and Licensing"",""linkedinProfile"":""https://www.linkedin.com/in/juergen-eckhardt""},{""name"":""Paimun Amini"",""title"":""Sr. Director of Venture Investments, LEAPS"",""linkedinProfile"":""https://www.linkedin.com/in/pjamini""},{""name"":""Rakhshita Dhar"",""title"":""Venture Investments, Pharma"",""linkedinProfile"":""https://www.linkedin.com/in/rakhshita-dhar-67b65417""},{""name"":""Derek Norman"",""title"":""Vice President, Venture Investments"",""linkedinProfile"":""https://www.linkedin.com/in/derek-norman-01a0971""},{""name"":""Sara Olson, PhD"",""title"":""Senior Director, Crop Science Venture Investments"",""linkedinProfile"":""https://www.linkedin.com/in/sara-olson-phd""}]}","{ - ""websiteURL"": ""https://leaps.bayer.com"", - ""companyDescription"": ""Leaps is the strategic impact investment unit of Bayer. By accelerating transformative biotechnologies, its mission is to shift key paradigms in life science, changing the world for the better. In health, Leaps pursues breakthroughs that could set new standards in medical care, moving from treating symptoms to curing or preventing diseases. In agriculture, it drives innovations that could nourish a growing population while restoring the planet. Leaps supports early-stage companies and forms new ventures through significant and sustained investment to maximize their probability of success, focusing on long-term delivery of disruptive technology. The portfolio companies remain autonomous, with Leaps providing active incubation and strategic support."", - ""productDescription"": ""Leaps by Bayer focuses on 10 ambitious challenges ('Leaps') in life sciences and agriculture, aiming at breakthroughs: 1) Cure genetic diseases using gene therapies, 2) Sustainable organ and tissue replacement, 3) Reduce environmental impact in agriculture (carbon sequestration, less land/water use), 4) Cancer prevention and cure leveraging biotech platforms, 5) Brain and mind health for neuro and mental disorders, 6) Reverse autoimmune diseases and chronic inflammation, 7) Next-generation healthy crops for global nutrition, 8) Sustainable protein supplies for health and planet, 9) Prevent crop and food loss, 10) Transform health digitally with AI and wearables. Their portfolio includes multiple innovative companies in both agriculture and health sectors supporting these leaps."", - ""clientCategories"": [""Agriculture industry companies"",""Healthcare and life sciences companies"",""Research institutions"",""Foundations"",""Innovation and futurist festivals""], - ""sectorDescription"": ""Operates as Bayer's strategic impact investment arm, focusing on transformative breakthroughs in biotechnology and life sciences, spanning health and agriculture sectors."", - ""geographicFocus"": ""HQ: Leverkusen, Germany; With hubs and teams in Berlin, Boston, Bay Area, Basel, Singapore, focusing on global life sciences innovation investment."", - ""keyExecutives"": [ - {""name"": ""Juergen Eckhardt"", ""title"": ""Executive Vice President (EVP) and Head of Leaps by Bayer"", ""sourceUrl"": ""https://leaps.bayer.com/team""}, - {""name"": ""Paimun Amini"", ""title"": ""Senior Director of Venture Investments Agriculture"", ""sourceUrl"": ""https://leaps.bayer.com/team""}, - {""name"": ""Rakhshita Dhar"", ""title"": ""Senior Director of Venture Investments Health"", ""sourceUrl"": ""https://leaps.bayer.com/team""}, - {""name"": ""Denise Boehme"", ""title"": ""Director Portfolio Strategy & Reporting"", ""sourceUrl"": ""https://leaps.bayer.com/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct information about founders or CFO/COO/CTO was found on the website or related key pages. Headquarters found via third-party confirmed sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://leaps.bayer.com/approach#about"", - ""productDescription"": ""https://leaps.bayer.com/approach#10-leaps"", - ""clientCategories"": ""https://leaps.bayer.com/engagement#partnerships"", - ""geographicFocus"": ""https://pitchbook.com/profiles/investor/264784-78"", - ""keyExecutives"": ""https://leaps.bayer.com/team"" - } -}","{ - ""websiteURL"": ""https://leaps.bayer.com"", - ""companyDescription"": ""Leaps is the strategic impact investment unit of Bayer. By accelerating transformative biotechnologies, its mission is to shift key paradigms in life science, changing the world for the better. In health, Leaps pursues breakthroughs that could set new standards in medical care, moving from treating symptoms to curing or preventing diseases. In agriculture, it drives innovations that could nourish a growing population while restoring the planet. Leaps supports early-stage companies and forms new ventures through significant and sustained investment to maximize their probability of success, focusing on long-term delivery of disruptive technology. The portfolio companies remain autonomous, with Leaps providing active incubation and strategic support."", - ""productDescription"": ""Leaps by Bayer focuses on 10 ambitious challenges ('Leaps') in life sciences and agriculture, aiming at breakthroughs: 1) Cure genetic diseases using gene therapies, 2) Sustainable organ and tissue replacement, 3) Reduce environmental impact in agriculture (carbon sequestration, less land/water use), 4) Cancer prevention and cure leveraging biotech platforms, 5) Brain and mind health for neuro and mental disorders, 6) Reverse autoimmune diseases and chronic inflammation, 7) Next-generation healthy crops for global nutrition, 8) Sustainable protein supplies for health and planet, 9) Prevent crop and food loss, 10) Transform health digitally with AI and wearables. Their portfolio includes multiple innovative companies in both agriculture and health sectors supporting these leaps."", - ""clientCategories"": [""Agriculture industry companies"",""Healthcare and life sciences companies"",""Research institutions"",""Foundations"",""Innovation and futurist festivals""], - ""sectorDescription"": ""Operates as Bayer's strategic impact investment arm, focusing on transformative breakthroughs in biotechnology and life sciences, spanning health and agriculture sectors."", - ""geographicFocus"": ""HQ: Leverkusen, Germany; With hubs and teams in Berlin, Boston, Bay Area, Basel, Singapore, focusing on global life sciences innovation investment."", - ""keyExecutives"": [ - {""name"": ""Juergen Eckhardt"", ""title"": ""Executive Vice President (EVP) and Head of Leaps by Bayer"", ""sourceUrl"": ""https://leaps.bayer.com/team""}, - {""name"": ""Paimun Amini"", ""title"": ""Senior Director of Venture Investments Agriculture"", ""sourceUrl"": ""https://leaps.bayer.com/team""}, - {""name"": ""Rakhshita Dhar"", ""title"": ""Senior Director of Venture Investments Health"", ""sourceUrl"": ""https://leaps.bayer.com/team""}, - {""name"": ""Denise Boehme"", ""title"": ""Director Portfolio Strategy & Reporting"", ""sourceUrl"": ""https://leaps.bayer.com/team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct information about founders or CFO/COO/CTO was found on the website or related key pages. Headquarters found via third-party confirmed sources."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://leaps.bayer.com/approach#about"", - ""productDescription"": ""https://leaps.bayer.com/approach#10-leaps"", - ""clientCategories"": ""https://leaps.bayer.com/engagement#partnerships"", - ""geographicFocus"": ""https://pitchbook.com/profiles/investor/264784-78"", - ""keyExecutives"": ""https://leaps.bayer.com/team"" - } -}",[],"{ - ""websiteURL"": ""https://leaps.bayer.com"", - ""companyDescription"": ""Leaps by Bayer is the strategic impact investment unit of Bayer AG, focused on accelerating transformative biotechnologies to address fundamental global challenges in healthcare and agriculture. It pursues breakthroughs that aim to shift paradigms from treating symptoms to curing or preventing diseases and to develop sustainable agricultural innovations. The unit supports early-stage companies and new ventures with significant funding and strategic guidance, emphasizing long-term success and disruptive technology delivery."", - ""productDescription"": ""Leaps by Bayer focuses on ten ambitious challenges in life sciences and agriculture, including: curing genetic diseases via gene therapies, sustainable organ and tissue replacement, reducing agriculture's environmental impact, cancer prevention and cure, brain and mind health, reversing autoimmune diseases, next-generation healthy crops, sustainable protein supplies, preventing crop and food loss, and digital health transformation through AI and wearables. It invests in and incubates innovative portfolio companies addressing these challenges, providing active strategic support while maintaining their autonomy."", - ""clientCategories"": [ - ""Agriculture Industry Companies"", - ""Healthcare and Life Sciences Companies"", - ""Research Institutions"", - ""Foundations"", - ""Innovation and Futurist Festivals"" - ], - ""sectorDescription"": ""Operates as Bayer's strategic impact investment arm, focusing on transformative breakthroughs in biotechnology and life sciences spanning the health and agriculture sectors."", - ""geographicFocus"": ""Headquartered in Leverkusen, Germany, with hubs and teams across Berlin, Boston, Bay Area, Basel, and Singapore, Leaps by Bayer operates globally targeting life sciences innovation investment worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Juergen Eckhardt"", - ""title"": ""Executive Vice President (EVP) and Head of Leaps by Bayer"", - ""sourceUrl"": ""https://leaps.bayer.com/team"" - }, - { - ""name"": ""Paimun Amini"", - ""title"": ""Senior Director of Venture Investments Agriculture"", - ""sourceUrl"": ""https://leaps.bayer.com/team"" - }, - { - ""name"": ""Rakhshita Dhar"", - ""title"": ""Senior Director of Venture Investments Health"", - ""sourceUrl"": ""https://leaps.bayer.com/team"" - }, - { - ""name"": ""Denise Boehme"", - ""title"": ""Director Portfolio Strategy & Reporting"", - ""sourceUrl"": ""https://leaps.bayer.com/team"" - } - ], - ""researcherNotes"": ""Company identity is confirmed by domain match (leaps.bayer.com) and distinctive focus on 10 'Leaps' in life sciences and agriculture under Bayer's venture investment unit. The geographic focus is derived from both company website and reputable third-party sources (e.g., PitchBook). Senior leadership titles vary slightly on LinkedIn (e.g., Juergen Eckhardt also head of Pharma Business Development) but the company website titles were prioritized. No information about founders or CFO/COO/CTO roles was found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://leaps.bayer.com/approach#about"", - ""productDescription"": ""https://leaps.bayer.com/approach#10-leaps"", - ""clientCategories"": ""https://leaps.bayer.com/engagement#partnerships"", - ""geographicFocus"": ""https://pitchbook.com/profiles/investor/264784-78"", - ""keyExecutives"": ""https://leaps.bayer.com/team"" - } -}","{""clientCategories"":[""Agriculture Industry Companies"",""Healthcare and Life Sciences Companies"",""Research Institutions"",""Foundations"",""Innovation and Futurist Festivals""],""companyDescription"":""Leaps by Bayer is the strategic impact investment unit of Bayer AG, focused on accelerating transformative biotechnologies to address fundamental global challenges in healthcare and agriculture. It pursues breakthroughs that aim to shift paradigms from treating symptoms to curing or preventing diseases and to develop sustainable agricultural innovations. The unit supports early-stage companies and new ventures with significant funding and strategic guidance, emphasizing long-term success and disruptive technology delivery."",""geographicFocus"":""Headquartered in Leverkusen, Germany, with hubs and teams across Berlin, Boston, Bay Area, Basel, and Singapore, Leaps by Bayer operates globally targeting life sciences innovation investment worldwide."",""keyExecutives"":[{""name"":""Juergen Eckhardt"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Executive Vice President (EVP) and Head of Leaps by Bayer""},{""name"":""Paimun Amini"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Senior Director of Venture Investments Agriculture""},{""name"":""Rakhshita Dhar"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Senior Director of Venture Investments Health""},{""name"":""Denise Boehme"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Director Portfolio Strategy & Reporting""}],""missingImportantFields"":[],""productDescription"":""Leaps by Bayer focuses on ten ambitious challenges in life sciences and agriculture, including: curing genetic diseases via gene therapies, sustainable organ and tissue replacement, reducing agriculture's environmental impact, cancer prevention and cure, brain and mind health, reversing autoimmune diseases, next-generation healthy crops, sustainable protein supplies, preventing crop and food loss, and digital health transformation through AI and wearables. It invests in and incubates innovative portfolio companies addressing these challenges, providing active strategic support while maintaining their autonomy."",""researcherNotes"":""Company identity is confirmed by domain match (leaps.bayer.com) and distinctive focus on 10 'Leaps' in life sciences and agriculture under Bayer's venture investment unit. The geographic focus is derived from both company website and reputable third-party sources (e.g., PitchBook). Senior leadership titles vary slightly on LinkedIn (e.g., Juergen Eckhardt also head of Pharma Business Development) but the company website titles were prioritized. No information about founders or CFO/COO/CTO roles was found."",""sectorDescription"":""Operates as Bayer's strategic impact investment arm, focusing on transformative breakthroughs in biotechnology and life sciences spanning the health and agriculture sectors."",""sources"":{""clientCategories"":""https://leaps.bayer.com/engagement#partnerships"",""companyDescription"":""https://leaps.bayer.com/approach#about"",""geographicFocus"":""https://pitchbook.com/profiles/investor/264784-78"",""keyExecutives"":""https://leaps.bayer.com/team"",""productDescription"":""https://leaps.bayer.com/approach#10-leaps""},""websiteURL"":""https://leaps.bayer.com""}","Correctness: 95% Completeness: 90% The description of Leaps by Bayer as Bayer AG’s strategic impact investment unit focused on transformative biotech in health and agriculture matches well with multiple sources, confirming its focus on ambitious life sciences and agricultural challenges including gene therapies, cancer prevention, sustainable crops, and digital health transformation[1][3]. Leadership roles such as Juergen Eckhardt as EVP and Head, and senior directors like Paimun Amini and Rakhshita Dhar, align with available official team data, though some titles may vary slightly across platforms[1][2]. The global footprint with headquarters in Leverkusen and hubs in Berlin, Boston, Bay Area, Basel, and Singapore is consistent with PitchBook and company info[1]. The product description emphasizing 10 key challenges and patient capital investment in early-stage companies is supported by official statements and investor profiles[1][3]. Minor completeness deductions apply as some recent leadership role variations and specific founders or CFO/COO details remain not publicly identified, and some expanding details on strategic funding amounts or latest portfolio companies are not provided. Overall, the core material facts are well substantiated with official and reputable investor publications dated within the last 24 months, e.g., https://leaps.bayer.com/team, https://raisebetter.capital/investor-profile/leaps-by-bayer, https://globalventuring.com/corporate/people/rising-stars-2025-sara-olson-leaps-by-bayer/.","{""clientCategories"":[""Agriculture industry companies"",""Healthcare and life sciences companies"",""Research institutions"",""Foundations"",""Innovation and futurist festivals""],""companyDescription"":""Leaps is the strategic impact investment unit of Bayer. By accelerating transformative biotechnologies, its mission is to shift key paradigms in life science, changing the world for the better. In health, Leaps pursues breakthroughs that could set new standards in medical care, moving from treating symptoms to curing or preventing diseases. In agriculture, it drives innovations that could nourish a growing population while restoring the planet. Leaps supports early-stage companies and forms new ventures through significant and sustained investment to maximize their probability of success, focusing on long-term delivery of disruptive technology. The portfolio companies remain autonomous, with Leaps providing active incubation and strategic support."",""geographicFocus"":""HQ: Leverkusen, Germany; With hubs and teams in Berlin, Boston, Bay Area, Basel, Singapore, focusing on global life sciences innovation investment."",""keyExecutives"":[{""name"":""Juergen Eckhardt"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Executive Vice President (EVP) and Head of Leaps by Bayer""},{""name"":""Paimun Amini"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Senior Director of Venture Investments Agriculture""},{""name"":""Rakhshita Dhar"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Senior Director of Venture Investments Health""},{""name"":""Denise Boehme"",""sourceUrl"":""https://leaps.bayer.com/team"",""title"":""Director Portfolio Strategy & Reporting""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Leaps by Bayer focuses on 10 ambitious challenges ('Leaps') in life sciences and agriculture, aiming at breakthroughs: 1) Cure genetic diseases using gene therapies, 2) Sustainable organ and tissue replacement, 3) Reduce environmental impact in agriculture (carbon sequestration, less land/water use), 4) Cancer prevention and cure leveraging biotech platforms, 5) Brain and mind health for neuro and mental disorders, 6) Reverse autoimmune diseases and chronic inflammation, 7) Next-generation healthy crops for global nutrition, 8) Sustainable protein supplies for health and planet, 9) Prevent crop and food loss, 10) Transform health digitally with AI and wearables. Their portfolio includes multiple innovative companies in both agriculture and health sectors supporting these leaps."",""researcherNotes"":""No direct information about founders or CFO/COO/CTO was found on the website or related key pages. Headquarters found via third-party confirmed sources."",""sectorDescription"":""Operates as Bayer's strategic impact investment arm, focusing on transformative breakthroughs in biotechnology and life sciences, spanning health and agriculture sectors."",""sources"":{""clientCategories"":""https://leaps.bayer.com/engagement#partnerships"",""companyDescription"":""https://leaps.bayer.com/approach#about"",""geographicFocus"":""https://pitchbook.com/profiles/investor/264784-78"",""keyExecutives"":""https://leaps.bayer.com/team"",""productDescription"":""https://leaps.bayer.com/approach#10-leaps""},""websiteURL"":""https://leaps.bayer.com""}" -Naïo Technologies,http://www.naio-technologies.com,Demeter Partners,naio-technologies.com,https://www.linkedin.com/company/na-o-technologies,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.naio-technologies.com"", - ""companyDescription"": ""Naïo Technologies is a company specializing in autonomous agricultural robots designed to assist with tasks such as soil preparation, seeding, weeding, inter-row and under-vine maintenance, and canopy management across various crops including vineyards, nurseries, small fruits, market gardening, and specialized crops. Their mission focuses on empowering farmers with fully autonomous robots that operate without in-field supervision, adhering to safety and regulatory standards."", - ""productDescription"": ""Naïo Technologies offers four fully autonomous agricultural robots: \n- TED: a fully autonomous vineyard robot designed for mechanical weeding in vineyards and tree nurseries, energy-efficient, compatible with various tools, and capable of covering up to 6.5 hectares per day.\n- JO: an ultra-compact autonomous crawler for narrow vineyards, nurseries, and small fruits, operating up to 10 hours, compatible with multiple tools, and battery powered.\n- ORIO: an autonomous tool carrier for vegetable crops and nurseries, capable of seeding and weeding with RTK autoguidance and compatible with premium tools, covering up to 9 hectares per day.\n- OZ: an autonomous assistant for sowing and weeding in market gardening and specialized crops, featuring RTK autoguidance, compatibility with over 35 tools, and up to 8 hours battery life."", - ""clientCategories"": [""Farmers in vineyards"", ""Nurseries"", ""Small fruit producers"", ""Market gardeners"", ""Specialized crop growers""], - ""sectorDescription"": ""Operates in the agricultural robotics and smart farming technology sector, providing fully autonomous robots for diverse crop management tasks."", - ""geographicFocus"": ""HQ: Near Toulouse, France; Sales Focus: International including France, United States, and over 20 countries globally."", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://drive.google.com/drive/u/0/folders/0AJgw1rlTXMOlUk9PVA""], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the website or press pages. Headquarters location is described as near Toulouse, France without a precise address."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://naio-technologies.com/en/about-naio-technologies"", - ""productDescription"": ""https://naio-technologies.com/ted#intro, https://naio-technologies.com/jo/, https://naio-technologies.com/orio/, https://naio-technologies.com/oz/"", - ""clientCategories"": ""https://naio-technologies.com/recrutement/"", - ""geographicFocus"": ""https://naio-technologies.com/en/home"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.naio-technologies.com"", - ""companyDescription"": ""Naïo Technologies is a company specializing in autonomous agricultural robots designed to assist with tasks such as soil preparation, seeding, weeding, inter-row and under-vine maintenance, and canopy management across various crops including vineyards, nurseries, small fruits, market gardening, and specialized crops. Their mission focuses on empowering farmers with fully autonomous robots that operate without in-field supervision, adhering to safety and regulatory standards."", - ""productDescription"": ""Naïo Technologies offers four fully autonomous agricultural robots: \n- TED: a fully autonomous vineyard robot designed for mechanical weeding in vineyards and tree nurseries, energy-efficient, compatible with various tools, and capable of covering up to 6.5 hectares per day.\n- JO: an ultra-compact autonomous crawler for narrow vineyards, nurseries, and small fruits, operating up to 10 hours, compatible with multiple tools, and battery powered.\n- ORIO: an autonomous tool carrier for vegetable crops and nurseries, capable of seeding and weeding with RTK autoguidance and compatible with premium tools, covering up to 9 hectares per day.\n- OZ: an autonomous assistant for sowing and weeding in market gardening and specialized crops, featuring RTK autoguidance, compatibility with over 35 tools, and up to 8 hours battery life."", - ""clientCategories"": [""Farmers in vineyards"", ""Nurseries"", ""Small fruit producers"", ""Market gardeners"", ""Specialized crop growers""], - ""sectorDescription"": ""Operates in the agricultural robotics and smart farming technology sector, providing fully autonomous robots for diverse crop management tasks."", - ""geographicFocus"": ""HQ: Near Toulouse, France; Sales Focus: International including France, United States, and over 20 countries globally."", - ""keyExecutives"": [], - ""linkedDocuments"": [""https://drive.google.com/drive/u/0/folders/0AJgw1rlTXMOlUk9PVA""], - ""researcherNotes"": ""No specific names or titles of founders or C-level executives were found on the website or press pages. Headquarters location is described as near Toulouse, France without a precise address."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://naio-technologies.com/en/about-naio-technologies"", - ""productDescription"": ""https://naio-technologies.com/ted#intro, https://naio-technologies.com/jo/, https://naio-technologies.com/orio/, https://naio-technologies.com/oz/"", - ""clientCategories"": ""https://naio-technologies.com/recrutement/"", - ""geographicFocus"": ""https://naio-technologies.com/en/home"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.naio-technologies.com"", - ""companyDescription"": ""Naïo Technologies is a company specializing in autonomous agricultural robots designed to assist with tasks such as soil preparation, seeding, weeding, inter-row and under-vine maintenance, and canopy management across various crops including vineyards, nurseries, small fruits, market gardening, and specialized crops. Their mission focuses on empowering farmers with fully autonomous robots that operate without in-field supervision, adhering to safety and regulatory standards. Founded in 2011 by engineers Aymeric Barthes and Gaetan Severac, Naïo aims to support sustainable agriculture by reducing labor burdens and physical strain on farmers through intelligent, fully electric robotic solutions."", - ""productDescription"": ""Naïo Technologies offers four fully autonomous agricultural robots: \n- TED: a fully autonomous vineyard robot designed for mechanical weeding in vineyards and tree nurseries, energy-efficient, compatible with various tools, and capable of covering up to 6.5 hectares per day.\n- JO: an ultra-compact autonomous crawler for narrow vineyards, nurseries, and small fruits, operating up to 10 hours, compatible with multiple tools, and battery powered.\n- ORIO: an autonomous tool carrier for vegetable crops and nurseries, capable of seeding and weeding with RTK autoguidance and compatible with premium tools, covering up to 9 hectares per day.\n- OZ: an autonomous assistant for sowing and weeding in market gardening and specialized crops, featuring RTK autoguidance, compatibility with over 35 tools, and up to 8 hours battery life."", - ""clientCategories"": [ - ""Farmers in Vineyards"", - ""Nurseries"", - ""Small Fruit Producers"", - ""Market Gardeners"", - ""Specialized Crop Growers"" - ], - ""sectorDescription"": ""Operates in the agricultural robotics and smart farming technology sector, providing fully autonomous robots for diverse crop management tasks."", - ""geographicFocus"": ""Headquartered near Toulouse, France, Naïo Technologies operates internationally with a sales focus including France, the United States, and over 20 countries worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Aymeric Barthes"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"" - }, - { - ""name"": ""Gaetan Severac"", - ""title"": ""Co-Founder"", - ""sourceUrl"": ""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"" - } - ], - ""researcherNotes"": ""The company was successfully disambiguated by website domain, geographic focus on Toulouse (Occitania), France, and unique product names. Key executives are limited to the co-founders, Aymeric Barthes and Gaetan Severac, found via certified B Corp listing, with no current C-level or executive team publicly listed elsewhere. The headquarters is specified near Toulouse, with exact street address as Escalquens, Occitania found in secondary data sources. The company filed for judicial recovery in June 2025, impacting ongoing operations. Geographic focus and other details confirmed on official website and B Corp profile."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"", - ""productDescription"": ""https://naio-technologies.com/ted#intro"", - ""clientCategories"": ""https://naio-technologies.com/recrutement/"", - ""geographicFocus"": ""https://naio-technologies.com/en/home"", - ""keyExecutives"": ""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"" - } -}","{""clientCategories"":[""Farmers in Vineyards"",""Nurseries"",""Small Fruit Producers"",""Market Gardeners"",""Specialized Crop Growers""],""companyDescription"":""Naïo Technologies is a company specializing in autonomous agricultural robots designed to assist with tasks such as soil preparation, seeding, weeding, inter-row and under-vine maintenance, and canopy management across various crops including vineyards, nurseries, small fruits, market gardening, and specialized crops. Their mission focuses on empowering farmers with fully autonomous robots that operate without in-field supervision, adhering to safety and regulatory standards. Founded in 2011 by engineers Aymeric Barthes and Gaetan Severac, Naïo aims to support sustainable agriculture by reducing labor burdens and physical strain on farmers through intelligent, fully electric robotic solutions."",""geographicFocus"":""Headquartered near Toulouse, France, Naïo Technologies operates internationally with a sales focus including France, the United States, and over 20 countries worldwide."",""keyExecutives"":[{""name"":""Aymeric Barthes"",""sourceUrl"":""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"",""title"":""Co-Founder""},{""name"":""Gaetan Severac"",""sourceUrl"":""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"",""title"":""Co-Founder""}],""missingImportantFields"":[],""productDescription"":""Naïo Technologies offers four fully autonomous agricultural robots: \n- TED: a fully autonomous vineyard robot designed for mechanical weeding in vineyards and tree nurseries, energy-efficient, compatible with various tools, and capable of covering up to 6.5 hectares per day.\n- JO: an ultra-compact autonomous crawler for narrow vineyards, nurseries, and small fruits, operating up to 10 hours, compatible with multiple tools, and battery powered.\n- ORIO: an autonomous tool carrier for vegetable crops and nurseries, capable of seeding and weeding with RTK autoguidance and compatible with premium tools, covering up to 9 hectares per day.\n- OZ: an autonomous assistant for sowing and weeding in market gardening and specialized crops, featuring RTK autoguidance, compatibility with over 35 tools, and up to 8 hours battery life."",""researcherNotes"":""The company was successfully disambiguated by website domain, geographic focus on Toulouse (Occitania), France, and unique product names. Key executives are limited to the co-founders, Aymeric Barthes and Gaetan Severac, found via certified B Corp listing, with no current C-level or executive team publicly listed elsewhere. The headquarters is specified near Toulouse, with exact street address as Escalquens, Occitania found in secondary data sources. The company filed for judicial recovery in June 2025, impacting ongoing operations. Geographic focus and other details confirmed on official website and B Corp profile."",""sectorDescription"":""Operates in the agricultural robotics and smart farming technology sector, providing fully autonomous robots for diverse crop management tasks."",""sources"":{""clientCategories"":""https://naio-technologies.com/recrutement/"",""companyDescription"":""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"",""geographicFocus"":""https://naio-technologies.com/en/home"",""keyExecutives"":""https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/"",""productDescription"":""https://naio-technologies.com/ted#intro""},""websiteURL"":""https://www.naio-technologies.com""}","Correctness: 98% Completeness: 95% The information is largely correct and well-supported by authoritative sources. Naïo Technologies was founded in 2011 by engineers Aymeric Barthes and Gaetan Severac near Toulouse, France, with a focus on fully autonomous agricultural robots for tasks such as soil preparation, seeding, weeding, and vineyard and specialized crop maintenance[1][2][4][5]. The company markets four main robots—TED, JO, ORIO, and OZ—each with distinct capabilities suited to vineyards, nurseries, small fruits, vegetable crops, and market gardening, confirming the product descriptions provided[4]. Headquarters are accurately located in Escalquens, near Toulouse in Occitania[3]. Leadership is correctly identified as co-founders only, with no other executives publicly listed recently[2]. The company’s mission emphasizes sustainable agriculture enabling labor reduction, physically lighter robots, and regulatory compliance, consistent with the data[1][2][4]. The coverage of markets including France, the U.S., and over 20 countries aligns with official descriptions[2]. Additionally, the company closed a €14M Series A financing in 2023, which supports ongoing operations but raises a notice that they filed for judicial recovery in June 2025, a critical recent update not present in all sources but important for completeness[5]. Missing minor but relevant details include the judicial recovery status, and no explicit mention of current funding rounds beyond 2023 except from secondary aggregators[3][5]. Overall, the representation is factually accurate, detailed, and up-to-date as of mid-2025 with slight omissions on recent financial distress[1][2][3][4][5]. URLs: https://www.naio-technologies.com/en/news/naio-technologies-celebrates-its-10th-birthday/, https://www.bcorporation.net/en-us/find-a-b-corp/company/nao-technologies/, https://www.naio-technologies.com/en/naio-technologies/, https://www.therobotreport.com/naio-technologies-closes-series-a-readies-weeding-robots-production/, https://www.zoominfo.com/c/nai%CC%88o-technologies/372515405","{""clientCategories"":[""Farmers in vineyards"",""Nurseries"",""Small fruit producers"",""Market gardeners"",""Specialized crop growers""],""companyDescription"":""Naïo Technologies is a company specializing in autonomous agricultural robots designed to assist with tasks such as soil preparation, seeding, weeding, inter-row and under-vine maintenance, and canopy management across various crops including vineyards, nurseries, small fruits, market gardening, and specialized crops. Their mission focuses on empowering farmers with fully autonomous robots that operate without in-field supervision, adhering to safety and regulatory standards."",""geographicFocus"":""HQ: Near Toulouse, France; Sales Focus: International including France, United States, and over 20 countries globally."",""keyExecutives"":[],""linkedDocuments"":[""https://drive.google.com/drive/u/0/folders/0AJgw1rlTXMOlUk9PVA""],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Naïo Technologies offers four fully autonomous agricultural robots: \n- TED: a fully autonomous vineyard robot designed for mechanical weeding in vineyards and tree nurseries, energy-efficient, compatible with various tools, and capable of covering up to 6.5 hectares per day.\n- JO: an ultra-compact autonomous crawler for narrow vineyards, nurseries, and small fruits, operating up to 10 hours, compatible with multiple tools, and battery powered.\n- ORIO: an autonomous tool carrier for vegetable crops and nurseries, capable of seeding and weeding with RTK autoguidance and compatible with premium tools, covering up to 9 hectares per day.\n- OZ: an autonomous assistant for sowing and weeding in market gardening and specialized crops, featuring RTK autoguidance, compatibility with over 35 tools, and up to 8 hours battery life."",""researcherNotes"":""No specific names or titles of founders or C-level executives were found on the website or press pages. Headquarters location is described as near Toulouse, France without a precise address."",""sectorDescription"":""Operates in the agricultural robotics and smart farming technology sector, providing fully autonomous robots for diverse crop management tasks."",""sources"":{""clientCategories"":""https://naio-technologies.com/recrutement/"",""companyDescription"":""https://naio-technologies.com/en/about-naio-technologies"",""geographicFocus"":""https://naio-technologies.com/en/home"",""keyExecutives"":null,""productDescription"":""https://naio-technologies.com/ted#intro, https://naio-technologies.com/jo/, https://naio-technologies.com/orio/, https://naio-technologies.com/oz/""},""websiteURL"":""http://www.naio-technologies.com""}" -Agriloops,https://www.agriloops.com,"BNP Paribas Développement, Breizh Up, Good Only Ventures, Orsay Holding, SPV Aqua Invest, Sustainable Ocean Alliance, Transitions First",agriloops.com,https://www.linkedin.com/company/agriloops,"{""seniorLeadership"":[{""fullName"":""Jérémie Cognard"",""title"":""CEO and Co-Founder"",""profileURL"":""https://www.linkedin.com/company/agriloops""}]}","{""seniorLeadership"":[{""fullName"":""Jérémie Cognard"",""title"":""CEO and Co-Founder"",""profileURL"":""https://www.linkedin.com/company/agriloops""}]}","{ - ""websiteURL"": ""https://www.agriloops.com"", - ""companyDescription"": ""Agriloops is committed to producing ultra-fresh, antibiotic-free French gambas in an environmentally respectful way. Their mission is to invent tomorrow's food system by producing better tasting food while respecting nature and people. Their farms uniquely combine gambas farming with vegetable cultivation through aquaponics, producing both gambas and flavorful vegetables without pesticides, antibiotics, or sulfites. Their values emphasize freshness, intelligent production, serenity (no harmful chemicals), proximity, sustainability, and transparency."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Agriloops operates in the sustainable aquaponics sector, combining aquaculture and vegetable farming to produce fresh seafood and vegetables with minimal environmental impact."", - ""geographicFocus"": ""HQ: 65 Rue de Saint-Brieuc, Rennes, Bretagne, 35000, France"", - ""keyExecutives"": [ - { - ""name"": ""Jérémie Cognard"", - ""title"": ""CEO / Directeur Général"", - ""sourceUrl"": ""https://www.agriloops.com/team-full"" - }, - { - ""name"": ""Romain Vandame"", - ""title"": ""CTO / Directeur Technique"", - ""sourceUrl"": ""https://www.agriloops.com/team-full"" - } - ], - ""linkedDocuments"": [ - ""https://agriloops.com/s/Communique-de-Presse-Agriloops-Mangrove-1-05-2025.pdf"", - ""https://agriloops.com/s/Communique-de-Presse-02_2024.pdf"", - ""https://agriloops.com/s/CP-AGRILOOPS-JANVIER-2022.pdf"" - ], - ""researcherNotes"": ""Product details and client categories were not available or clearly listed on the website."", - ""missingImportantFields"": [""productDescription"", ""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.agriloops.com/mission-agriloops"", - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": ""https://www.agriloops.com/valeurs-agriloops"", - ""keyExecutives"": ""https://www.agriloops.com/team-full"" - } -}","{ - ""websiteURL"": ""https://www.agriloops.com"", - ""companyDescription"": ""Agriloops is committed to producing ultra-fresh, antibiotic-free French gambas in an environmentally respectful way. Their mission is to invent tomorrow's food system by producing better tasting food while respecting nature and people. Their farms uniquely combine gambas farming with vegetable cultivation through aquaponics, producing both gambas and flavorful vegetables without pesticides, antibiotics, or sulfites. Their values emphasize freshness, intelligent production, serenity (no harmful chemicals), proximity, sustainability, and transparency."", - ""productDescription"": ""Not Available"", - ""clientCategories"": [], - ""sectorDescription"": ""Agriloops operates in the sustainable aquaponics sector, combining aquaculture and vegetable farming to produce fresh seafood and vegetables with minimal environmental impact."", - ""geographicFocus"": ""HQ: 65 Rue de Saint-Brieuc, Rennes, Bretagne, 35000, France"", - ""keyExecutives"": [ - { - ""name"": ""Jérémie Cognard"", - ""title"": ""CEO / Directeur Général"", - ""sourceUrl"": ""https://www.agriloops.com/team-full"" - }, - { - ""name"": ""Romain Vandame"", - ""title"": ""CTO / Directeur Technique"", - ""sourceUrl"": ""https://www.agriloops.com/team-full"" - } - ], - ""linkedDocuments"": [ - ""https://agriloops.com/s/Communique-de-Presse-Agriloops-Mangrove-1-05-2025.pdf"", - ""https://agriloops.com/s/Communique-de-Presse-02_2024.pdf"", - ""https://agriloops.com/s/CP-AGRILOOPS-JANVIER-2022.pdf"" - ], - ""researcherNotes"": ""Product details and client categories were not available or clearly listed on the website."", - ""missingImportantFields"": [""productDescription"", ""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://www.agriloops.com/mission-agriloops"", - ""productDescription"": null, - ""clientCategories"": null, - ""geographicFocus"": ""https://www.agriloops.com/valeurs-agriloops"", - ""keyExecutives"": ""https://www.agriloops.com/team-full"" - } -}","[""productDescription"",""clientCategories""]","{ - ""websiteURL"": ""https://www.agriloops.com"", - ""companyDescription"": ""Agriloops is committed to producing ultra-fresh, antibiotic-free French gambas (shrimp) through environmentally respectful aquaponic farms that combine shrimp farming with vegetable cultivation. Their unique production system leverages aquaponics in salty water to produce shrimp and flavorful vegetables without pesticides, antibiotics, or sulfites. Agriloops aims to innovate food systems by delivering better tasting, sustainable food while respecting nature and people, emphasizing freshness, smart production, serenity, proximity, sustainability, and transparency."", - ""productDescription"": ""Agriloops produces jumbo-sized French gambas and complementary fresh vegetables through an aquaponics system that integrates shrimp farming and market gardening. Their farms reduce environmental impact by recycling water and eliminating the use of antibiotics, pesticides, and sulfites. The shrimp are guaranteed ultra-fresh and never frozen, ensuring taste and quality. The company is moving from prototype to industrial-scale production with a facility combining a 5,000-square-metre greenhouse for vegetables and a 2,000-square-metre aquaculture plant for shrimp."", - ""clientCategories"": [ - ""Retailers"", - ""Food Distributors"", - ""Hospitality Businesses"", - ""Sustainable Food Producers"", - ""Supermarkets"", - ""Farmers Markets"" - ], - ""sectorDescription"": ""Agriloops operates in the sustainable aquaponics sector, specializing in integrated shrimp and vegetable production using environmentally friendly and water-efficient aquaculture techniques."", - ""geographicFocus"": ""Primary operations and market focus are in France and potentially broader Europe through industrial-scale production near EU consumers."", - ""keyExecutives"": [ - { - ""name"": ""Jérémie Cognard"", - ""title"": ""CEO / Directeur Général"", - ""sourceUrl"": ""https://www.agriloops.com/team-full"" - }, - { - ""name"": ""Romain Vandame"", - ""title"": ""CTO / Directeur Technique"", - ""sourceUrl"": ""https://www.agriloops.com/team-full"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by matching company domain, HQ location in Rennes, France, and leadership names. ProductDescription and ClientCategories were not explicitly detailed on the company website; product description synthesized from press releases and company pages emphasizing aquaponics shrimp and vegetable production. Client categories inferred based on typical customers for fresh aquaponic produce and seafood. Geographic focus is stated as France with plans to expand within the EU from public sources. No regulatory filings or official registries were found to add further detail."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.agriloops.com/mission-agriloops"", - ""productDescription"": ""https://oceans-and-fisheries.ec.europa.eu/news/agriloops-sustainable-shrimp-and-vegetables-thanks-blueinvest-2025-01-31_en"", - ""clientCategories"": null, - ""geographicFocus"": ""https://oceans-and-fisheries.ec.europa.eu/news/agriloops-sustainable-shrimp-and-vegetables-thanks-blueinvest-2025-01-31_en"", - ""keyExecutives"": ""https://www.agriloops.com/team-full"" - } -}","{""clientCategories"":[""Retailers"",""Food Distributors"",""Hospitality Businesses"",""Sustainable Food Producers"",""Supermarkets"",""Farmers Markets""],""companyDescription"":""Agriloops is committed to producing ultra-fresh, antibiotic-free French gambas (shrimp) through environmentally respectful aquaponic farms that combine shrimp farming with vegetable cultivation. Their unique production system leverages aquaponics in salty water to produce shrimp and flavorful vegetables without pesticides, antibiotics, or sulfites. Agriloops aims to innovate food systems by delivering better tasting, sustainable food while respecting nature and people, emphasizing freshness, smart production, serenity, proximity, sustainability, and transparency."",""geographicFocus"":""Primary operations and market focus are in France and potentially broader Europe through industrial-scale production near EU consumers."",""keyExecutives"":[{""name"":""Jérémie Cognard"",""sourceUrl"":""https://www.agriloops.com/team-full"",""title"":""CEO / Directeur Général""},{""name"":""Romain Vandame"",""sourceUrl"":""https://www.agriloops.com/team-full"",""title"":""CTO / Directeur Technique""}],""missingImportantFields"":[],""productDescription"":""Agriloops produces jumbo-sized French gambas and complementary fresh vegetables through an aquaponics system that integrates shrimp farming and market gardening. Their farms reduce environmental impact by recycling water and eliminating the use of antibiotics, pesticides, and sulfites. The shrimp are guaranteed ultra-fresh and never frozen, ensuring taste and quality. The company is moving from prototype to industrial-scale production with a facility combining a 5,000-square-metre greenhouse for vegetables and a 2,000-square-metre aquaculture plant for shrimp."",""researcherNotes"":""Entity disambiguation confirmed by matching company domain, HQ location in Rennes, France, and leadership names. ProductDescription and ClientCategories were not explicitly detailed on the company website; product description synthesized from press releases and company pages emphasizing aquaponics shrimp and vegetable production. Client categories inferred based on typical customers for fresh aquaponic produce and seafood. Geographic focus is stated as France with plans to expand within the EU from public sources. No regulatory filings or official registries were found to add further detail."",""sectorDescription"":""Agriloops operates in the sustainable aquaponics sector, specializing in integrated shrimp and vegetable production using environmentally friendly and water-efficient aquaculture techniques."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.agriloops.com/mission-agriloops"",""geographicFocus"":""https://oceans-and-fisheries.ec.europa.eu/news/agriloops-sustainable-shrimp-and-vegetables-thanks-blueinvest-2025-01-31_en"",""keyExecutives"":""https://www.agriloops.com/team-full"",""productDescription"":""https://oceans-and-fisheries.ec.europa.eu/news/agriloops-sustainable-shrimp-and-vegetables-thanks-blueinvest-2025-01-31_en""},""websiteURL"":""https://www.agriloops.com""}","Correctness: 98% Completeness: 95% The information about Agriloops is highly accurate and well-supported by multiple authoritative sources including the company’s own website (https://www.agriloops.com/homepage-agriloops), EU fisheries news (https://oceans-and-fisheries.ec.europa.eu/news/agriloops-sustainable-shrimp-and-vegetables-thanks-blueinvest-2025-01-31_en), and recent detailed press coverage (https://www.verticalfarmdaily.com/article/9601168/france-13m-investment-for-commercial-scale-shrimp-and-greenhouse-farm/). Agriloops is confirmed as a French start-up specializing in saltwater aquaponics that integrates shrimp farming and vegetable cultivation in a circular, pesticide- and antibiotic-free system with a focus on ultra-fresh jumbo French gambas. Leadership is confirmed with Jérémie Cognard as CEO and Romain Vandame as CTO from the official team page. The industrial-scale production facility called Mangrove #1 combines a 2,000 m² shrimp aquaculture plant and a 5,000 m² vegetable greenhouse near Rennes, France, with a €13 million fundraising round closing in early 2024, supported by BlueInvest and other investors, aiming for European market proximity and sustainability goals, as of early 2025. Minor completeness deductions stem from the absence of official regulatory filings and a slight lack of exhaustive client category specifics beyond inferred typical customers. The stated environmental and production claims are consistently corroborated across sources. Overall, the synthesized description is factually supported and reflects current operations and strategic focus accurately. -Sources: https://www.agriloops.com/homepage-agriloops, https://oceans-and-fisheries.ec.europa.eu/news/agriloops-sustainable-shrimp-and-vegetables-thanks-blueinvest-2025-01-31_en, https://www.verticalfarmdaily.com/article/9601168/france-13m-investment-for-commercial-scale-shrimp-and-greenhouse-farm/, https://aquaasiapac.com/2025/02/01/agriloops-sustainable-shrimp-and-vegetables-thanks-to-blueinvest/","{""clientCategories"":[],""companyDescription"":""Agriloops is committed to producing ultra-fresh, antibiotic-free French gambas in an environmentally respectful way. Their mission is to invent tomorrow's food system by producing better tasting food while respecting nature and people. Their farms uniquely combine gambas farming with vegetable cultivation through aquaponics, producing both gambas and flavorful vegetables without pesticides, antibiotics, or sulfites. Their values emphasize freshness, intelligent production, serenity (no harmful chemicals), proximity, sustainability, and transparency."",""geographicFocus"":""HQ: 65 Rue de Saint-Brieuc, Rennes, Bretagne, 35000, France"",""keyExecutives"":[{""name"":""Jérémie Cognard"",""sourceUrl"":""https://www.agriloops.com/team-full"",""title"":""CEO / Directeur Général""},{""name"":""Romain Vandame"",""sourceUrl"":""https://www.agriloops.com/team-full"",""title"":""CTO / Directeur Technique""}],""linkedDocuments"":[""https://agriloops.com/s/Communique-de-Presse-Agriloops-Mangrove-1-05-2025.pdf"",""https://agriloops.com/s/Communique-de-Presse-02_2024.pdf"",""https://agriloops.com/s/CP-AGRILOOPS-JANVIER-2022.pdf""],""missingImportantFields"":[""productDescription"",""clientCategories""],""productDescription"":""Not Available"",""researcherNotes"":""Product details and client categories were not available or clearly listed on the website."",""sectorDescription"":""Agriloops operates in the sustainable aquaponics sector, combining aquaculture and vegetable farming to produce fresh seafood and vegetables with minimal environmental impact."",""sources"":{""clientCategories"":null,""companyDescription"":""https://www.agriloops.com/mission-agriloops"",""geographicFocus"":""https://www.agriloops.com/valeurs-agriloops"",""keyExecutives"":""https://www.agriloops.com/team-full"",""productDescription"":null},""websiteURL"":""https://www.agriloops.com""}" -Plant Factory,https://plantfactory.company/,,plantfactory.company,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://plantfactory.company/"", - ""companyDescription"": ""Plant Factory aims to provide the change that agricultural production needs by establishing nature-friendly technological lands to enable urban production and feed society with healthy, nutritious, and delicious plants. It operates as an urban agricultural technological company focused on sustainable, clean farming methods within city environments."", - ""productDescription"": ""Plant Factory specializes in producing leafy greens and herbs using fully-controlled, data-driven cultivation technology. Their products feature perfected color, texture, nutrition, and flavor with longer shelf life and the highest food safety standards. They produce non-GMO, pesticide-free greens using urban and season-free production methods. Their commercial facility is located in the İstinye Park shopping center in Istanbul, and products are available through Macro Center, Macro Online, and Taze Direkt online store. They hold ISO 9001:2015, 14001:2015, 22000:2018, and Good Agricultural Practices certifications and are applying for GMP certification."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates as an urban agricultural technological company focused on sustainable and clean farming methods within city environments."", - ""geographicFocus"": ""HQ: Cevizli Mah. Bağdat Cad. No:552/1 Maltepe / İstanbul; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information about key executives or founders was found on the entire website after thorough exploration."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://plantfactory.company/en/"", - ""productDescription"": ""https://plantfactory.company/en/urunler/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://plantfactory.company/iletisim/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://plantfactory.company/"", - ""companyDescription"": ""Plant Factory aims to provide the change that agricultural production needs by establishing nature-friendly technological lands to enable urban production and feed society with healthy, nutritious, and delicious plants. It operates as an urban agricultural technological company focused on sustainable, clean farming methods within city environments."", - ""productDescription"": ""Plant Factory specializes in producing leafy greens and herbs using fully-controlled, data-driven cultivation technology. Their products feature perfected color, texture, nutrition, and flavor with longer shelf life and the highest food safety standards. They produce non-GMO, pesticide-free greens using urban and season-free production methods. Their commercial facility is located in the İstinye Park shopping center in Istanbul, and products are available through Macro Center, Macro Online, and Taze Direkt online store. They hold ISO 9001:2015, 14001:2015, 22000:2018, and Good Agricultural Practices certifications and are applying for GMP certification."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates as an urban agricultural technological company focused on sustainable and clean farming methods within city environments."", - ""geographicFocus"": ""HQ: Cevizli Mah. Bağdat Cad. No:552/1 Maltepe / İstanbul; Sales Focus: Not Available"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No information about key executives or founders was found on the entire website after thorough exploration."", - ""missingImportantFields"": [""clientCategories"", ""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://plantfactory.company/en/"", - ""productDescription"": ""https://plantfactory.company/en/urunler/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://plantfactory.company/iletisim/"", - ""keyExecutives"": null - } -}","[""clientCategories"",""keyExecutives""]","{ - ""websiteURL"": ""https://plantfactory.company"", - ""companyDescription"": ""Plant Factory aims to transform agricultural production by establishing nature-friendly technological lands for urban farming to supply society with healthy, nutritious, and delicious plants. Founded in 2014, the company operates as an urban agricultural technology firm focusing on sustainable, pesticide-free, and season-free methods to produce leafy greens and other crops within controlled environments, reducing water consumption by 95% and increasing production efficiency twentyfold per square meter."", - ""productDescription"": ""Plant Factory specializes in producing non-GMO, pesticide-free leafy greens and herbs using fully controlled, data-driven cultivation technology. Their products are optimized for superior color, texture, nutrition, flavor, and longer shelf life. The company operates commercial-scale urban farms in Istanbul, including a facility in the İstinye Park shopping center, and distributes products via Macro Center, Macro Online, and Taze Direkt online store. They hold ISO 9001:2015, 14001:2015, 22000:2018, and Good Agricultural Practices certifications and are applying for GMP certification."", - ""clientCategories"": [], - ""sectorDescription"": ""Urban agricultural technology company focused on sustainable and clean farming methods employing controlled environment agriculture within city environments."", - ""geographicFocus"": ""Headquartered in Istanbul, Turkey, with commercial facilities and sales primarily focused in the Istanbul metropolitan area; broader sales footprint not publicly disclosed."", - ""keyExecutives"": [], - ""researcherNotes"": ""Key executives and client categories could not be identified from available public sources including the company website and LinkedIn. The company is clearly identified by domain, headquarters in Istanbul, and its distinctive urban farming technology focus. Geographic footprint beyond Istanbul is not explicitly described. No information was found about founders or senior leadership despite investigation in multiple sources."", - ""missingImportantFields"": [ - ""clientCategories"", - ""keyExecutives"" - ], - ""sources"": { - ""companyDescription"": ""https://plantfactory.company/en/hakkimizda/"", - ""productDescription"": ""https://plantfactory.company/en/urunler/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://plantfactory.company/iletisim/"", - ""keyExecutives"": null - } -}","{""clientCategories"":[],""companyDescription"":""Plant Factory aims to transform agricultural production by establishing nature-friendly technological lands for urban farming to supply society with healthy, nutritious, and delicious plants. Founded in 2014, the company operates as an urban agricultural technology firm focusing on sustainable, pesticide-free, and season-free methods to produce leafy greens and other crops within controlled environments, reducing water consumption by 95% and increasing production efficiency twentyfold per square meter."",""geographicFocus"":""Headquartered in Istanbul, Turkey, with commercial facilities and sales primarily focused in the Istanbul metropolitan area; broader sales footprint not publicly disclosed."",""keyExecutives"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""Plant Factory specializes in producing non-GMO, pesticide-free leafy greens and herbs using fully controlled, data-driven cultivation technology. Their products are optimized for superior color, texture, nutrition, flavor, and longer shelf life. The company operates commercial-scale urban farms in Istanbul, including a facility in the İstinye Park shopping center, and distributes products via Macro Center, Macro Online, and Taze Direkt online store. They hold ISO 9001:2015, 14001:2015, 22000:2018, and Good Agricultural Practices certifications and are applying for GMP certification."",""researcherNotes"":""Key executives and client categories could not be identified from available public sources including the company website and LinkedIn. The company is clearly identified by domain, headquarters in Istanbul, and its distinctive urban farming technology focus. Geographic footprint beyond Istanbul is not explicitly described. No information was found about founders or senior leadership despite investigation in multiple sources."",""sectorDescription"":""Urban agricultural technology company focused on sustainable and clean farming methods employing controlled environment agriculture within city environments."",""sources"":{""clientCategories"":null,""companyDescription"":""https://plantfactory.company/en/hakkimizda/"",""geographicFocus"":""https://plantfactory.company/iletisim/"",""keyExecutives"":null,""productDescription"":""https://plantfactory.company/en/urunler/""},""websiteURL"":""https://plantfactory.company""}","Correctness: 95% Completeness: 85% The information about Plant Factory accurately reflects its nature as an Istanbul-based urban agricultural technology firm founded in 2014, specializing in pesticide-free, non-GMO leafy greens using fully controlled, data-driven cultivation methods. Their commercial-scale farms include the PF001 facility on the Anatolian side and the PF002 facility inside İstinyePark shopping mall on the European side of Istanbul, producing up to 900,000 units annually with significant water savings and production efficiency gains[1][3][4]. The geographic focus is correctly described as primarily within Istanbul metropolitan area, with no clear public records about wider footprint or key executives on official channels, though founders including Halil Beşkardeşler (Co-founder and CEO) and others are noted in interviews[2][3]. Certifications mentioned (ISO 9001:2015, 14001:2015, 22000:2018, and GAP) align with company disclosures though GMP application is noted but less publicly detailed[1]. Missing elements reducing completeness include a detailed client category list and an official, up-to-date executive leadership roster, despite partial insights from secondary sources[2]. Furthermore, funding or investment details are absent from available public records. Overall, the core company profile is well supported by primary sources: the company website and reputable industry articles dating from 2020 through 2024[1][3][4][2]. -https://plantfactory.company/en/hakkimizda/ -https://www.verticalfarmdaily.com/article/9530265/turkey-1500m2-vertical-farm-opened-inside-well-known-shopping-mall/ -https://www.hortidaily.com/article/9233679/tr-we-are-ready-to-expand-domestically-and-get-into-foreign-markets/ -https://www.urbanvine.co/blog/plant-factory-turkey?5416ab99_page=10","{""clientCategories"":[],""companyDescription"":""Plant Factory aims to provide the change that agricultural production needs by establishing nature-friendly technological lands to enable urban production and feed society with healthy, nutritious, and delicious plants. It operates as an urban agricultural technological company focused on sustainable, clean farming methods within city environments."",""geographicFocus"":""HQ: Cevizli Mah. Bağdat Cad. No:552/1 Maltepe / İstanbul; Sales Focus: Not Available"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""keyExecutives""],""productDescription"":""Plant Factory specializes in producing leafy greens and herbs using fully-controlled, data-driven cultivation technology. Their products feature perfected color, texture, nutrition, and flavor with longer shelf life and the highest food safety standards. They produce non-GMO, pesticide-free greens using urban and season-free production methods. Their commercial facility is located in the İstinye Park shopping center in Istanbul, and products are available through Macro Center, Macro Online, and Taze Direkt online store. They hold ISO 9001:2015, 14001:2015, 22000:2018, and Good Agricultural Practices certifications and are applying for GMP certification."",""researcherNotes"":""No information about key executives or founders was found on the entire website after thorough exploration."",""sectorDescription"":""Operates as an urban agricultural technological company focused on sustainable and clean farming methods within city environments."",""sources"":{""clientCategories"":null,""companyDescription"":""https://plantfactory.company/en/"",""geographicFocus"":""https://plantfactory.company/iletisim/"",""keyExecutives"":null,""productDescription"":""https://plantfactory.company/en/urunler/""},""websiteURL"":""https://plantfactory.company/""}" -Ivy Farm Technologies,https://www.ivy.farm/,,ivy.farm,https://www.linkedin.com/company/ivyfarm,"{""seniorLeadership"":[{""name"":""Richard Dillon"",""title"":""President of International Division"",""linkedinProfile"":""https://www.linkedin.com/in/richarddillon""},{""name"":""Rebecca Wright"",""title"":""Chief Legal Officer"",""linkedinProfile"":""https://www.linkedin.com/in/rebeccawright23""},{""name"":""Harsh Amin, PhD"",""title"":""Chief Scientific Officer"",""linkedinProfile"":""https://www.linkedin.com/company/ivyfarm""},{""name"":""Emma Lewis"",""title"":""Senior R&D Director Flavour Solutions EMEA"",""linkedinProfile"":""https://www.linkedin.com/in/emmalewis664448""},{""name"":""Riley Jackson"",""title"":""Associate Director of Commercial"",""linkedinProfile"":""https://www.linkedin.com/in/rileygainesjackson""}]}","{""seniorLeadership"":[{""name"":""Richard Dillon"",""title"":""President of International Division"",""linkedinProfile"":""https://www.linkedin.com/in/richarddillon""},{""name"":""Rebecca Wright"",""title"":""Chief Legal Officer"",""linkedinProfile"":""https://www.linkedin.com/in/rebeccawright23""},{""name"":""Harsh Amin, PhD"",""title"":""Chief Scientific Officer"",""linkedinProfile"":""https://www.linkedin.com/company/ivyfarm""},{""name"":""Emma Lewis"",""title"":""Senior R&D Director Flavour Solutions EMEA"",""linkedinProfile"":""https://www.linkedin.com/in/emmalewis664448""},{""name"":""Riley Jackson"",""title"":""Associate Director of Commercial"",""linkedinProfile"":""https://www.linkedin.com/in/rileygainesjackson""}]}","{ - ""websiteURL"": ""https://www.ivy.farm/"", - ""companyDescription"": ""Ivy Farm is a sustainable meat company leading the UK's cultivated meat revolution. Their mission is to create tasty, sustainable meat using novel technology developed at the University of Oxford, producing real mince meat free from antibiotics. The company focuses on providing a sustainable protein source to meet growing global demand, emphasizing transparency, traceability, and British biotechnology innovation."", - ""productDescription"": ""Ivy Farm offers cultivated meat products starting with mince. Their initial product offerings include Angus beef burgers and Wagyu meatballs, with plans to expand the lineup. All cultivated meat products are free from antibiotics and are fresh, with fewer processing steps to get sausages and burgers to shelves. The products retain all protein and healthy fats like Omega-3, while reducing saturates."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the cultivated meat production sector, using biotechnology innovation to produce sustainable, antibiotic-free meat products."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Dr Russ Tucker"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.ivy.farm/about/"" - }, - { - ""name"": ""Professor Cathy Ye"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.ivy.farm/about/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No relevant data found for geographic focus including headquarters location and market regions, also client categories information is missing."", - ""missingImportantFields"": [""clientCategories"",""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.ivy.farm/"", - ""productDescription"": ""https://www.ivy.farm/product/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": ""https://www.ivy.farm/about/"" - } -}","{ - ""websiteURL"": ""https://www.ivy.farm/"", - ""companyDescription"": ""Ivy Farm is a sustainable meat company leading the UK's cultivated meat revolution. Their mission is to create tasty, sustainable meat using novel technology developed at the University of Oxford, producing real mince meat free from antibiotics. The company focuses on providing a sustainable protein source to meet growing global demand, emphasizing transparency, traceability, and British biotechnology innovation."", - ""productDescription"": ""Ivy Farm offers cultivated meat products starting with mince. Their initial product offerings include Angus beef burgers and Wagyu meatballs, with plans to expand the lineup. All cultivated meat products are free from antibiotics and are fresh, with fewer processing steps to get sausages and burgers to shelves. The products retain all protein and healthy fats like Omega-3, while reducing saturates."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the cultivated meat production sector, using biotechnology innovation to produce sustainable, antibiotic-free meat products."", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Dr Russ Tucker"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.ivy.farm/about/"" - }, - { - ""name"": ""Professor Cathy Ye"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.ivy.farm/about/"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No relevant data found for geographic focus including headquarters location and market regions, also client categories information is missing."", - ""missingImportantFields"": [""clientCategories"",""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.ivy.farm/"", - ""productDescription"": ""https://www.ivy.farm/product/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""Not Available"", - ""keyExecutives"": ""https://www.ivy.farm/about/"" - } -}","[""clientCategories"",""geographicFocus""]","{ - ""websiteURL"": ""https://www.ivy.farm"", - ""companyDescription"": ""Ivy Farm is a sustainable meat company leading the UK's cultivated meat revolution. Founded as a spinout from the University of Oxford in 2019 by Dr Russ Tucker and Professor Cathy Ye, the company develops cultivated meat products made from living cells without slaughtering animals. Ivy Farm uses novel biotechnology to produce real minced meat free from antibiotics, aiming to provide a sustainable, transparent, and traceable protein source that addresses environmental, ethical, and health concerns associated with traditional meat production."", - ""productDescription"": ""Ivy Farm offers cultivated meat products starting with Angus beef mince, including burgers and Wagyu meatballs, which retain all protein and healthy fats like Omega-3 while reducing saturated fats. Their products are fresh, antibiotic-free, and require fewer processing steps. The cultivation process involves growing animal cells in bioreactors to scale production, targeting both UK and international markets with plans for large-scale manufacturing partnerships to increase output."", - ""clientCategories"": [ - ""Retailers"", - ""Foodservice Providers"", - ""Plant-Based Food Companies"", - ""Sustainability-Focused Consumers"", - ""Biotechnology Partners"" - ], - ""sectorDescription"": ""Operates in the cultivated meat sector using advanced biotechnology to produce sustainable, antibiotic-free meat alternatives."", - ""geographicFocus"": ""Primarily focused on the UK market with planned expansion into new markets including the USA, Asia, the Middle East, China, and broader international regions, leveraging partnerships and scale-up facilities in Finland and plans for global production."", - ""keyExecutives"": [ - { - ""name"": ""Dr Russ Tucker"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.ivy.farm/about/"" - }, - { - ""name"": ""Professor Cathy Ye"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.ivy.farm/about/"" - }, - { - ""name"": ""Richard Dillon"", - ""title"": ""President of International Division"", - ""sourceUrl"": ""https://www.linkedin.com/in/richarddillon"" - }, - { - ""name"": ""Rebecca Wright"", - ""title"": ""Chief Legal Officer"", - ""sourceUrl"": ""https://www.linkedin.com/in/rebeccawright23"" - }, - { - ""name"": ""Harsh Amin, PhD"", - ""title"": ""Chief Scientific Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/ivyfarm"" - } - ], - ""researcherNotes"": ""The company is confirmed as the Oxford University spinout founded in 2019 focused on cultivated meat. Geographic focus was not precisely stated on the company website but is now known via credible sources to include the UK as primary, with planned international market entries (USA, Asia, Middle East, China) supported by production partnerships in Finland and scale-up plans. Client categories were inferred based on company mission, sector, and partnership strategies. The executive list was enriched from LinkedIn profiles corresponding with senior leadership roles. No conflicting data noted."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.ivy.farm/"", - ""productDescription"": ""https://www.ivy.farm/product/"", - ""clientCategories"": ""https://www.arcgroup.io/stories/ivy-farm-technologies/"", - ""geographicFocus"": ""https://dennisgroup.com/news/ivy-farm-technologies-partners-with-dennis-group-to-design-a-production-facility-ahead-of-plans-to-launch-and-scale-its-cultivated-meat-in-new-markets-outside-uk/"", - ""keyExecutives"": ""https://www.ivy.farm/about/"" - } -}","{""clientCategories"":[""Retailers"",""Foodservice Providers"",""Plant-Based Food Companies"",""Sustainability-Focused Consumers"",""Biotechnology Partners""],""companyDescription"":""Ivy Farm is a sustainable meat company leading the UK's cultivated meat revolution. Founded as a spinout from the University of Oxford in 2019 by Dr Russ Tucker and Professor Cathy Ye, the company develops cultivated meat products made from living cells without slaughtering animals. Ivy Farm uses novel biotechnology to produce real minced meat free from antibiotics, aiming to provide a sustainable, transparent, and traceable protein source that addresses environmental, ethical, and health concerns associated with traditional meat production."",""geographicFocus"":""Primarily focused on the UK market with planned expansion into new markets including the USA, Asia, the Middle East, China, and broader international regions, leveraging partnerships and scale-up facilities in Finland and plans for global production."",""keyExecutives"":[{""name"":""Dr Russ Tucker"",""sourceUrl"":""https://www.ivy.farm/about/"",""title"":""Founder""},{""name"":""Professor Cathy Ye"",""sourceUrl"":""https://www.ivy.farm/about/"",""title"":""Founder""},{""name"":""Richard Dillon"",""sourceUrl"":""https://www.linkedin.com/in/richarddillon"",""title"":""President of International Division""},{""name"":""Rebecca Wright"",""sourceUrl"":""https://www.linkedin.com/in/rebeccawright23"",""title"":""Chief Legal Officer""},{""name"":""Harsh Amin, PhD"",""sourceUrl"":""https://www.linkedin.com/company/ivyfarm"",""title"":""Chief Scientific Officer""}],""missingImportantFields"":[],""productDescription"":""Ivy Farm offers cultivated meat products starting with Angus beef mince, including burgers and Wagyu meatballs, which retain all protein and healthy fats like Omega-3 while reducing saturated fats. Their products are fresh, antibiotic-free, and require fewer processing steps. The cultivation process involves growing animal cells in bioreactors to scale production, targeting both UK and international markets with plans for large-scale manufacturing partnerships to increase output."",""researcherNotes"":""The company is confirmed as the Oxford University spinout founded in 2019 focused on cultivated meat. Geographic focus was not precisely stated on the company website but is now known via credible sources to include the UK as primary, with planned international market entries (USA, Asia, Middle East, China) supported by production partnerships in Finland and scale-up plans. Client categories were inferred based on company mission, sector, and partnership strategies. The executive list was enriched from LinkedIn profiles corresponding with senior leadership roles. No conflicting data noted."",""sectorDescription"":""Operates in the cultivated meat sector using advanced biotechnology to produce sustainable, antibiotic-free meat alternatives."",""sources"":{""clientCategories"":""https://www.arcgroup.io/stories/ivy-farm-technologies/"",""companyDescription"":""https://www.ivy.farm/"",""geographicFocus"":""https://dennisgroup.com/news/ivy-farm-technologies-partners-with-dennis-group-to-design-a-production-facility-ahead-of-plans-to-launch-and-scale-its-cultivated-meat-in-new-markets-outside-uk/"",""keyExecutives"":""https://www.ivy.farm/about/"",""productDescription"":""https://www.ivy.farm/product/""},""websiteURL"":""https://www.ivy.farm""}","Correctness: 98% Completeness: 95% The description is highly accurate and comprehensive according to multiple authoritative sources. Ivy Farm is indeed a University of Oxford spinout founded in 2019 by Dr Russ Tucker and Professor Cathy Ye, focusing on cultivated meat without animal slaughter, employing biotechnology to produce antibiotic-free, sustainable minced beef products such as Angus mince and Wagyu meatballs[1][5]. The company’s leadership roster, including Dr Russ Tucker (Founder), Professor Cathy Ye (Founder), Richard Dillon (President of International Division), Rebecca Wright (Chief Legal Officer), and Harsh Amin, PhD (Chief Scientific Officer), is supported by the company website and LinkedIn profiles[1][5]. Geographic focus is primarily UK with planned expansion to the USA, Asia, Middle East, China, and broader international markets—backed by partnerships for scale-up production in Finland and plans for a notably large manufacturing facility designed with Dennis Group, capable of producing 12,000 tons annually[2][3][4]. The product details correctly state Ivy Farm offers fresh, nutrient-retaining cultivated Angus beef products that reduce saturated fat and antibiotics while scaling via bioreactors[1][3][5]. Minor incompleteness lies in the omission of exact funding amounts (noted $40M equity raised) and the precise scale and ongoing nature of China partnerships for production and fundraising[4]. No contradictory or stale information was found as of September 2025. URLs include https://www.ivy.farm/, https://www.arcgroup.io/stories/ivy-farm-technologies/, https://dennisgroup.com/news/ivy-farm-technologies-partners-with-dennis-group-to-design-a-production-facility-ahead-of-plans-to-launch-and-scale-its-cultivated-meat-in-new-markets-outside-uk/, https://www.greenqueen.com.hk/ivy-farm-cultivated-beef-lab-grown-meat-tasting-synbio-facility/, and https://www.just-food.com/news/ivy-farm-eyeing-cell-based-meat-production-in-china/.","{""clientCategories"":[],""companyDescription"":""Ivy Farm is a sustainable meat company leading the UK's cultivated meat revolution. Their mission is to create tasty, sustainable meat using novel technology developed at the University of Oxford, producing real mince meat free from antibiotics. The company focuses on providing a sustainable protein source to meet growing global demand, emphasizing transparency, traceability, and British biotechnology innovation."",""geographicFocus"":""Not Available"",""keyExecutives"":[{""name"":""Dr Russ Tucker"",""sourceUrl"":""https://www.ivy.farm/about/"",""title"":""Founder""},{""name"":""Professor Cathy Ye"",""sourceUrl"":""https://www.ivy.farm/about/"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories"",""geographicFocus""],""productDescription"":""Ivy Farm offers cultivated meat products starting with mince. Their initial product offerings include Angus beef burgers and Wagyu meatballs, with plans to expand the lineup. All cultivated meat products are free from antibiotics and are fresh, with fewer processing steps to get sausages and burgers to shelves. The products retain all protein and healthy fats like Omega-3, while reducing saturates."",""researcherNotes"":""No relevant data found for geographic focus including headquarters location and market regions, also client categories information is missing."",""sectorDescription"":""Operates in the cultivated meat production sector, using biotechnology innovation to produce sustainable, antibiotic-free meat products."",""sources"":{""clientCategories"":""Not Available"",""companyDescription"":""https://www.ivy.farm/"",""geographicFocus"":""Not Available"",""keyExecutives"":""https://www.ivy.farm/about/"",""productDescription"":""https://www.ivy.farm/product/""},""websiteURL"":""https://www.ivy.farm/""}" -MiAlgae,http://www.mialgae.com/,"Ananke Ventures, Ascension, Blue Oceans Partners, Clay Capital, Equity Gap, Old College Capital, Rabobank Food & Agri Innovation Fund, Scottish Enterprise, SIS Ventures",mialgae.com,https://www.linkedin.com/company/mialgae,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.mialgae.com/"", - ""companyDescription"": ""MiAlgae uses biotechnology to produce fish-free Omega-3s and other ocean-derived resources, reducing the over-reliance on oceans. They produce marine Omega-3 rich algae using whisky distillation by-products and renewable energy in 30,000 litre bioreactors, which is used to feed farmed fish and pets."", - ""productDescription"": ""MiAlgae offers marine Omega-3 rich algae products for aquaculture and pet food sectors, produced through an innovative fermentation platform that recycles whisky industry by-products. Key products include:\n- MiAlgaeFish: A sustainable Omega-3 algal ingredient for aquaculture feed, rich in DHA (>18% dry biomass), oil & fat (>50%), protein (>10%), carbohydrate (>20%), and natural antioxidants (>0.5%). It serves as a low carbon, plant-based alternative to fish oil.\n- MiAlgaePet: A plant-based ingredient for pet food rich in Omega-3 for skin, joints, heart, brain function, and immune health, with similar nutritional composition to MiAlgaeFish and produced sustainably at scale."", - ""clientCategories"": [""Aquaculture industry"", ""Pet food industry""], - ""sectorDescription"": ""Operates in the biotechnology sector focused on sustainable marine ingredients, producing fish-free Omega-3 rich algae using recycled resources."", - ""geographicFocus"": ""HQ: 12 – 16 The Curve, 32 Research Park North, Heriot-Watt University, Edinburgh, EH14 4AP, UK; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Douglas Martin"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Shreekanth Ramananthan"", ""title"": ""Technical Director"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Chris Haacke"", ""title"": ""Commercial Director"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Jerome Quiohilag"", ""title"": ""Associate Director Manufacturing"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Julian Pietrzyk"", ""title"": ""Technical Consultant"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Simon Durrant"", ""title"": ""Chief Financial Officer (CFO)"", ""sourceUrl"": ""http://mialgae.com/people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct linked documents such as PDFs or DOCXs were found on the website. Geographic sales regions are not explicitly mentioned."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""http://www.mialgae.com/"", - ""productDescription"": ""http://mialgae.com/technology"", - ""clientCategories"": ""http://www.mialgae.com/"", - ""geographicFocus"": ""http://mialgae.com/contact"", - ""keyExecutives"": ""http://mialgae.com/people"" - } -}","{ - ""websiteURL"": ""http://www.mialgae.com/"", - ""companyDescription"": ""MiAlgae uses biotechnology to produce fish-free Omega-3s and other ocean-derived resources, reducing the over-reliance on oceans. They produce marine Omega-3 rich algae using whisky distillation by-products and renewable energy in 30,000 litre bioreactors, which is used to feed farmed fish and pets."", - ""productDescription"": ""MiAlgae offers marine Omega-3 rich algae products for aquaculture and pet food sectors, produced through an innovative fermentation platform that recycles whisky industry by-products. Key products include:\n- MiAlgaeFish: A sustainable Omega-3 algal ingredient for aquaculture feed, rich in DHA (>18% dry biomass), oil & fat (>50%), protein (>10%), carbohydrate (>20%), and natural antioxidants (>0.5%). It serves as a low carbon, plant-based alternative to fish oil.\n- MiAlgaePet: A plant-based ingredient for pet food rich in Omega-3 for skin, joints, heart, brain function, and immune health, with similar nutritional composition to MiAlgaeFish and produced sustainably at scale."", - ""clientCategories"": [""Aquaculture industry"", ""Pet food industry""], - ""sectorDescription"": ""Operates in the biotechnology sector focused on sustainable marine ingredients, producing fish-free Omega-3 rich algae using recycled resources."", - ""geographicFocus"": ""HQ: 12 – 16 The Curve, 32 Research Park North, Heriot-Watt University, Edinburgh, EH14 4AP, UK; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Douglas Martin"", ""title"": ""Founder and CEO"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Shreekanth Ramananthan"", ""title"": ""Technical Director"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Chris Haacke"", ""title"": ""Commercial Director"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Jerome Quiohilag"", ""title"": ""Associate Director Manufacturing"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Julian Pietrzyk"", ""title"": ""Technical Consultant"", ""sourceUrl"": ""http://mialgae.com/people""}, - {""name"": ""Simon Durrant"", ""title"": ""Chief Financial Officer (CFO)"", ""sourceUrl"": ""http://mialgae.com/people""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No direct linked documents such as PDFs or DOCXs were found on the website. Geographic sales regions are not explicitly mentioned."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""http://www.mialgae.com/"", - ""productDescription"": ""http://mialgae.com/technology"", - ""clientCategories"": ""http://www.mialgae.com/"", - ""geographicFocus"": ""http://mialgae.com/contact"", - ""keyExecutives"": ""http://mialgae.com/people"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""http://www.mialgae.com/"", - ""companyDescription"": ""MiAlgae is a biotechnology company based in Edinburgh, Scotland, focused on producing sustainable, fish-free Omega-3 rich microalgae for the aquaculture and pet food industries. Utilizing an innovative fermentation platform, MiAlgae recycles nutrient-rich co-products from the whisky distillation process to cultivate algae in large bioreactors, providing a low-carbon, plant-based alternative to wild-caught fish as a source of Omega-3. Their approach contributes to reducing overfishing and supports circular economy principles by transforming waste into valuable marine ingredients."", - ""productDescription"": ""MiAlgae produces marine Omega-3 rich algae products primarily for aquaculture and pet food sectors through an eco-friendly fermentation process that upcycles whisky industry by-products. Key offerings include MiAlgaeFish, a sustainable ingredient rich in DHA, protein, oils, and natural antioxidants used in aquaculture feed as a low-carbon alternative to fish oil, and MiAlgaePet, a plant-based Omega-3 ingredient for pet food supporting skin, joint, heart, brain, and immune health. These products offer a scalable, sustainable source of essential nutrients while reducing reliance on wild fish stocks."", - ""clientCategories"": [""Aquaculture Industry"", ""Pet Food Industry""], - ""sectorDescription"": ""Biotechnology sector specializing in sustainable marine ingredients by producing fish-free Omega-3 rich algae through innovative recycling of industrial by-products."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Douglas Martin"", - ""title"": ""Founder and CEO"", - ""sourceUrl"": ""http://mialgae.com/people"" - }, - { - ""name"": ""Shreekanth Ramananthan"", - ""title"": ""Technical Director"", - ""sourceUrl"": ""http://mialgae.com/people"" - }, - { - ""name"": ""Chris Haacke"", - ""title"": ""Commercial Director"", - ""sourceUrl"": ""http://mialgae.com/people"" - }, - { - ""name"": ""Jerome Quiohilag"", - ""title"": ""Associate Director Manufacturing"", - ""sourceUrl"": ""http://mialgae.com/people"" - }, - { - ""name"": ""Julian Pietrzyk"", - ""title"": ""Technical Consultant"", - ""sourceUrl"": ""http://mialgae.com/people"" - }, - { - ""name"": ""Simon Durrant"", - ""title"": ""Chief Financial Officer (CFO)"", - ""sourceUrl"": ""http://mialgae.com/people"" - } - ], - ""researcherNotes"": ""The company was clearly disambiguated as the Edinburgh-based MiAlgae biotech firm producing fish-free Omega-3 from whisky distillery by-products based on domain, HQ city, and unique product focus. Despite the known HQ address and Scotland incorporation, the geographic sales or distribution footprint is not publicly documented, leaving this field null. Key executives are sourced directly from the official company people page. No direct secondary official filings for geographic focus or broader sales coverage were found."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""http://www.mialgae.com/"", - ""productDescription"": ""http://mialgae.com/technology"", - ""clientCategories"": ""http://www.mialgae.com/"", - ""geographicFocus"": null, - ""keyExecutives"": ""http://mialgae.com/people"" - } -}","{""clientCategories"":[""Aquaculture Industry"",""Pet Food Industry""],""companyDescription"":""MiAlgae is a biotechnology company based in Edinburgh, Scotland, focused on producing sustainable, fish-free Omega-3 rich microalgae for the aquaculture and pet food industries. Utilizing an innovative fermentation platform, MiAlgae recycles nutrient-rich co-products from the whisky distillation process to cultivate algae in large bioreactors, providing a low-carbon, plant-based alternative to wild-caught fish as a source of Omega-3. Their approach contributes to reducing overfishing and supports circular economy principles by transforming waste into valuable marine ingredients."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Douglas Martin"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Founder and CEO""},{""name"":""Shreekanth Ramananthan"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Technical Director""},{""name"":""Chris Haacke"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Commercial Director""},{""name"":""Jerome Quiohilag"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Associate Director Manufacturing""},{""name"":""Julian Pietrzyk"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Technical Consultant""},{""name"":""Simon Durrant"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Chief Financial Officer (CFO)""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""MiAlgae produces marine Omega-3 rich algae products primarily for aquaculture and pet food sectors through an eco-friendly fermentation process that upcycles whisky industry by-products. Key offerings include MiAlgaeFish, a sustainable ingredient rich in DHA, protein, oils, and natural antioxidants used in aquaculture feed as a low-carbon alternative to fish oil, and MiAlgaePet, a plant-based Omega-3 ingredient for pet food supporting skin, joint, heart, brain, and immune health. These products offer a scalable, sustainable source of essential nutrients while reducing reliance on wild fish stocks."",""researcherNotes"":""The company was clearly disambiguated as the Edinburgh-based MiAlgae biotech firm producing fish-free Omega-3 from whisky distillery by-products based on domain, HQ city, and unique product focus. Despite the known HQ address and Scotland incorporation, the geographic sales or distribution footprint is not publicly documented, leaving this field null. Key executives are sourced directly from the official company people page. No direct secondary official filings for geographic focus or broader sales coverage were found."",""sectorDescription"":""Biotechnology sector specializing in sustainable marine ingredients by producing fish-free Omega-3 rich algae through innovative recycling of industrial by-products."",""sources"":{""clientCategories"":""http://www.mialgae.com/"",""companyDescription"":""http://www.mialgae.com/"",""geographicFocus"":null,""keyExecutives"":""http://mialgae.com/people"",""productDescription"":""http://mialgae.com/technology""},""websiteURL"":""http://www.mialgae.com/""}","Correctness: 100% Completeness: 90% The description of MiAlgae as an Edinburgh-based biotechnology company producing sustainable, fish-free Omega-3 rich microalgae from whisky distillery co-products is fully corroborated by multiple authoritative sources including the company website and university innovation profiles[1][2][4]. Douglas Martin is confirmed as Founder and CEO, and the leadership team titles align with official company pages. Their core products targeting aquaculture and pet food sectors with sustainable, circular economy principles are consistently detailed in these sources[1][2]. The use of whisky by-products and the fermentation process in large bioreactors is verified, as is the environmental impact focus on reducing reliance on wild-caught fish[1][2][4]. However, geographic sales or distribution footprint remains undocumented publicly, justifying a partial completeness deduction[1][2]. There are no official filings or additional sources providing more on geographic focus, confirming the statement’s omission. Recent investment details and recognition, such as the 2024 Earthshot Prize finalist status and a £14 million raise for scaling, further support the profile’s accuracy though these were not in the original text but confirm company vitality and scale[1][2]. URLs: https://www.universities-scotland.ac.uk/edinburgh-mialgae/, https://edinburgh-innovations.ed.ac.uk/case-studies/mialgae-fish-free-omega-3, https://www.zerowastescotland.org.uk/resources/mialgae","{""clientCategories"":[""Aquaculture industry"",""Pet food industry""],""companyDescription"":""MiAlgae uses biotechnology to produce fish-free Omega-3s and other ocean-derived resources, reducing the over-reliance on oceans. They produce marine Omega-3 rich algae using whisky distillation by-products and renewable energy in 30,000 litre bioreactors, which is used to feed farmed fish and pets."",""geographicFocus"":""HQ: 12 – 16 The Curve, 32 Research Park North, Heriot-Watt University, Edinburgh, EH14 4AP, UK; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Douglas Martin"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Founder and CEO""},{""name"":""Shreekanth Ramananthan"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Technical Director""},{""name"":""Chris Haacke"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Commercial Director""},{""name"":""Jerome Quiohilag"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Associate Director Manufacturing""},{""name"":""Julian Pietrzyk"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Technical Consultant""},{""name"":""Simon Durrant"",""sourceUrl"":""http://mialgae.com/people"",""title"":""Chief Financial Officer (CFO)""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""MiAlgae offers marine Omega-3 rich algae products for aquaculture and pet food sectors, produced through an innovative fermentation platform that recycles whisky industry by-products. Key products include:\n- MiAlgaeFish: A sustainable Omega-3 algal ingredient for aquaculture feed, rich in DHA (>18% dry biomass), oil & fat (>50%), protein (>10%), carbohydrate (>20%), and natural antioxidants (>0.5%). It serves as a low carbon, plant-based alternative to fish oil.\n- MiAlgaePet: A plant-based ingredient for pet food rich in Omega-3 for skin, joints, heart, brain function, and immune health, with similar nutritional composition to MiAlgaeFish and produced sustainably at scale."",""researcherNotes"":""No direct linked documents such as PDFs or DOCXs were found on the website. Geographic sales regions are not explicitly mentioned."",""sectorDescription"":""Operates in the biotechnology sector focused on sustainable marine ingredients, producing fish-free Omega-3 rich algae using recycled resources."",""sources"":{""clientCategories"":""http://www.mialgae.com/"",""companyDescription"":""http://www.mialgae.com/"",""geographicFocus"":""http://mialgae.com/contact"",""keyExecutives"":""http://mialgae.com/people"",""productDescription"":""http://mialgae.com/technology""},""websiteURL"":""http://www.mialgae.com/""}" -Darwin Bioprospecting Excellence,https://darwinbioprospecting.com/,"Biozell Ventures, Repsol Energy Ventures",darwinbioprospecting.com,https://www.linkedin.com/company/darwin-bioprospecting-excellence-sl,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://darwinbioprospecting.com/"", - ""companyDescription"": ""DARWIN Bioprospecting Excellence is a company located in Paterna, València, Spain, with a mission to convert microbial diversity into solutions for the industry. Their sector revolves around bioprospecting and microbiology, focusing on disruptive products, new foods, and game-changing bioprocesses derived from microbial diversity."", - ""productDescription"": ""Darwin Bioprospecting Excellence is an innovation-led contract research & development company providing integrated scientific services from early discovery to end-to-end solution design. They specialize in advanced bioprospecting, including collection of microorganisms from extreme environments, exotic foods, and human-associated samples, with a proprietary strain collection. They utilize high-performance culturomics, NGS, and omic technologies. They offer open innovation partnerships to develop novel food starters, microbial bioactive compounds, bioremediation strategies, and other products tailored to client specifications. Sectors served include Nutrition and Health and Biosolutions."", - ""clientCategories"": [ - ""Health & Nutrition"", - ""Human Health & Nutrition"", - ""Animal Health & Nutrition"", - ""Biosolutions"", - ""Cosmetics & Personal Care"", - ""Agriculture & Plant Health"", - ""Environmental & Sustainability"" - ], - ""sectorDescription"": ""Operates in the bioprospecting and microbiology sector, developing microbial technologies and bioprocesses for health, nutrition, biosolutions, and sustainability industries."", - ""geographicFocus"": ""HQ: Calle Catedrático Agustín Escardino, 9, 46980, Paterna, València, Spain; No explicit geographic sales focus regions identified."", - ""keyExecutives"": [ - { - ""name"": ""Manuel Porcar, PhD"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://darwinbioprospecting.com/about-us/"" - }, - { - ""name"": ""Cristina Vilanova, PhD"", - ""title"": ""Chief Operations Officer (COO)"", - ""sourceUrl"": ""https://darwinbioprospecting.com/about-us/"" - } - ], - ""linkedDocuments"": [ - ""https://darwinbioprospecting.com/en/legal/#aviso-legal"", - ""https://darwinbioprospecting.com/en/legal/#politica-de-calidad"", - ""https://darwinbioprospecting.com/en/legal/#politica-de-privacidad"", - ""https://darwinbioprospecting.com/en/legal/#politica-de-cookies"" - ], - ""researcherNotes"": ""No explicit founders identified on the website. No clear geographic sales regions mentioned."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://darwinbioprospecting.com/about-us/"", - ""productDescription"": ""https://darwinbioprospecting.com/platforms/"", - ""clientCategories"": ""https://darwinbioprospecting.com/sectors/"", - ""geographicFocus"": ""https://darwinbioprospecting.com/contact/"", - ""keyExecutives"": ""https://darwinbioprospecting.com/about-us/"" - } -}","{ - ""websiteURL"": ""https://darwinbioprospecting.com/"", - ""companyDescription"": ""DARWIN Bioprospecting Excellence is a company located in Paterna, València, Spain, with a mission to convert microbial diversity into solutions for the industry. Their sector revolves around bioprospecting and microbiology, focusing on disruptive products, new foods, and game-changing bioprocesses derived from microbial diversity."", - ""productDescription"": ""Darwin Bioprospecting Excellence is an innovation-led contract research & development company providing integrated scientific services from early discovery to end-to-end solution design. They specialize in advanced bioprospecting, including collection of microorganisms from extreme environments, exotic foods, and human-associated samples, with a proprietary strain collection. They utilize high-performance culturomics, NGS, and omic technologies. They offer open innovation partnerships to develop novel food starters, microbial bioactive compounds, bioremediation strategies, and other products tailored to client specifications. Sectors served include Nutrition and Health and Biosolutions."", - ""clientCategories"": [ - ""Health & Nutrition"", - ""Human Health & Nutrition"", - ""Animal Health & Nutrition"", - ""Biosolutions"", - ""Cosmetics & Personal Care"", - ""Agriculture & Plant Health"", - ""Environmental & Sustainability"" - ], - ""sectorDescription"": ""Operates in the bioprospecting and microbiology sector, developing microbial technologies and bioprocesses for health, nutrition, biosolutions, and sustainability industries."", - ""geographicFocus"": ""HQ: Calle Catedrático Agustín Escardino, 9, 46980, Paterna, València, Spain; No explicit geographic sales focus regions identified."", - ""keyExecutives"": [ - { - ""name"": ""Manuel Porcar, PhD"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://darwinbioprospecting.com/about-us/"" - }, - { - ""name"": ""Cristina Vilanova, PhD"", - ""title"": ""Chief Operations Officer (COO)"", - ""sourceUrl"": ""https://darwinbioprospecting.com/about-us/"" - } - ], - ""linkedDocuments"": [ - ""https://darwinbioprospecting.com/en/legal/#aviso-legal"", - ""https://darwinbioprospecting.com/en/legal/#politica-de-calidad"", - ""https://darwinbioprospecting.com/en/legal/#politica-de-privacidad"", - ""https://darwinbioprospecting.com/en/legal/#politica-de-cookies"" - ], - ""researcherNotes"": ""No explicit founders identified on the website. No clear geographic sales regions mentioned."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://darwinbioprospecting.com/about-us/"", - ""productDescription"": ""https://darwinbioprospecting.com/platforms/"", - ""clientCategories"": ""https://darwinbioprospecting.com/sectors/"", - ""geographicFocus"": ""https://darwinbioprospecting.com/contact/"", - ""keyExecutives"": ""https://darwinbioprospecting.com/about-us/"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://darwinbioprospecting.com/"", - ""companyDescription"": ""DARWIN Bioprospecting Excellence is a microbial biotechnology company based in Paterna, València, Spain, specializing in converting microbial diversity into innovative solutions for industry. Founded in 2017 by Manuel Porcar, PhD, and Cristina Vilanova, PhD, DARWIN bridges academic research and industrial application to develop disruptive microbial products and bioprocesses primarily for health, nutrition, biosolutions, and sustainability sectors. The company leverages advanced bioprospecting techniques and microbial strain collections to serve clients worldwide with tailored microbial-based innovations."", - ""productDescription"": ""DARWIN Bioprospecting Excellence provides integrated contract research and development services from early discovery to end-to-end product design. They specialize in high-performance microbial culturomics, next-generation sequencing, and omic technologies for sourcing and developing novel microbial strains. Their offerings include food starters, microbial bioactive compounds, bioremediation strategies, and bioprocess optimization customized to client needs. Key application sectors include Human and Animal Health & Nutrition, Biosolutions, Cosmetics, Agriculture, Environmental sustainability, and Industrial biotechnology."", - ""clientCategories"": [ - ""Health & Nutrition"", - ""Human Health & Nutrition"", - ""Animal Health & Nutrition"", - ""Biosolutions"", - ""Cosmetics & Personal Care"", - ""Agriculture & Plant Health"", - ""Environmental & Sustainability"" - ], - ""sectorDescription"": ""Microbial biotechnology specializing in advanced bioprospecting to develop microbial technologies and bioprocesses for health, nutrition, biosolutions, and sustainability industries."", - ""geographicFocus"": null, - ""keyExecutives"": [ - { - ""name"": ""Manuel Porcar, PhD"", - ""title"": ""Chief Executive Officer (CEO)"", - ""sourceUrl"": ""https://darwinbioprospecting.com/about-us/"" - }, - { - ""name"": ""Cristina Vilanova, PhD"", - ""title"": ""Chief Operations Officer (COO)"", - ""sourceUrl"": ""https://darwinbioprospecting.com/about-us/"" - } - ], - ""researcherNotes"": ""DARWIN Bioprospecting Excellence was confirmed as the correct entity based on the website domain, HQ location (Paterna, Spain), and founder/executive names (Manuel Porcar and Cristina Vilanova). Founding year was identified as 2017 from multiple external sources. No explicit geographic sales regions or footprint are stated on official or authoritative sources, so geographicFocus remains null. LinkedIn senior leadership data did not provide additional executives. ClientCategories were already present and matched external descriptions."", - ""missingImportantFields"": [ - ""geographicFocus"" - ], - ""sources"": { - ""companyDescription"": ""https://darwinbioprospecting.com/about-us/"", - ""productDescription"": ""https://darwinbioprospecting.com/platforms/"", - ""clientCategories"": ""https://darwinbioprospecting.com/sectors/"", - ""geographicFocus"": null, - ""keyExecutives"": ""https://darwinbioprospecting.com/about-us/"" - } -}","{""clientCategories"":[""Health & Nutrition"",""Human Health & Nutrition"",""Animal Health & Nutrition"",""Biosolutions"",""Cosmetics & Personal Care"",""Agriculture & Plant Health"",""Environmental & Sustainability""],""companyDescription"":""DARWIN Bioprospecting Excellence is a microbial biotechnology company based in Paterna, València, Spain, specializing in converting microbial diversity into innovative solutions for industry. Founded in 2017 by Manuel Porcar, PhD, and Cristina Vilanova, PhD, DARWIN bridges academic research and industrial application to develop disruptive microbial products and bioprocesses primarily for health, nutrition, biosolutions, and sustainability sectors. The company leverages advanced bioprospecting techniques and microbial strain collections to serve clients worldwide with tailored microbial-based innovations."",""geographicFocus"":null,""keyExecutives"":[{""name"":""Manuel Porcar, PhD"",""sourceUrl"":""https://darwinbioprospecting.com/about-us/"",""title"":""Chief Executive Officer (CEO)""},{""name"":""Cristina Vilanova, PhD"",""sourceUrl"":""https://darwinbioprospecting.com/about-us/"",""title"":""Chief Operations Officer (COO)""}],""missingImportantFields"":[""geographicFocus""],""productDescription"":""DARWIN Bioprospecting Excellence provides integrated contract research and development services from early discovery to end-to-end product design. They specialize in high-performance microbial culturomics, next-generation sequencing, and omic technologies for sourcing and developing novel microbial strains. Their offerings include food starters, microbial bioactive compounds, bioremediation strategies, and bioprocess optimization customized to client needs. Key application sectors include Human and Animal Health & Nutrition, Biosolutions, Cosmetics, Agriculture, Environmental sustainability, and Industrial biotechnology."",""researcherNotes"":""DARWIN Bioprospecting Excellence was confirmed as the correct entity based on the website domain, HQ location (Paterna, Spain), and founder/executive names (Manuel Porcar and Cristina Vilanova). Founding year was identified as 2017 from multiple external sources. No explicit geographic sales regions or footprint are stated on official or authoritative sources, so geographicFocus remains null. LinkedIn senior leadership data did not provide additional executives. ClientCategories were already present and matched external descriptions."",""sectorDescription"":""Microbial biotechnology specializing in advanced bioprospecting to develop microbial technologies and bioprocesses for health, nutrition, biosolutions, and sustainability industries."",""sources"":{""clientCategories"":""https://darwinbioprospecting.com/sectors/"",""companyDescription"":""https://darwinbioprospecting.com/about-us/"",""geographicFocus"":null,""keyExecutives"":""https://darwinbioprospecting.com/about-us/"",""productDescription"":""https://darwinbioprospecting.com/platforms/""},""websiteURL"":""https://darwinbioprospecting.com/""}","Correctness: 95% Completeness: 85% The description of DARWIN Bioprospecting Excellence as a microbial biotechnology company founded in 2017 by Manuel Porcar, PhD, and Cristina Vilanova, PhD, based in Paterna, València, Spain, specializing in microbial diversity for industrial solutions, is accurate and well-supported by the company’s official website and related sources[3][4]. The emphasis on their advanced bioprospecting techniques, microbial strain collections, and applications across health, nutrition, biosolutions, and sustainability is strongly corroborated[3][4]. Key executives Manuel Porcar (CEO) and Cristina Vilanova (COO) are confirmed on the official About Us page[3]. However, a minor discrepancy exists in the founding year, where one reputable university source states 2016[1], while the company website states 2017[3]; the latter is more prominent and likely current. The geographic focus field is reasonably null since no explicit geographic sales regions are publicly mentioned, matching the available data[3][4]. The product description coverage is comprehensive but could be further detailed with more on proprietary platforms like MOSAIK and recent ventures (e.g., investment from Repsol Energy Ventures in 2025)[3]. Overall, the factual content is reliable with small gaps on specific launch dates and geographic footprint. Sources: https://darwinbioprospecting.com/about-us/, https://darwinbioprospecting.com/platforms/, https://www.uv.es/uvweb/office-principal/en/uv-office-principal/university-recognises-darwin-bioprospecting-excellence-s-l-a-spin-company-1285866422007/Novetat.html?id=1286224038741, https://darwinbioprospecting.com","{""clientCategories"":[""Health & Nutrition"",""Human Health & Nutrition"",""Animal Health & Nutrition"",""Biosolutions"",""Cosmetics & Personal Care"",""Agriculture & Plant Health"",""Environmental & Sustainability""],""companyDescription"":""DARWIN Bioprospecting Excellence is a company located in Paterna, València, Spain, with a mission to convert microbial diversity into solutions for the industry. Their sector revolves around bioprospecting and microbiology, focusing on disruptive products, new foods, and game-changing bioprocesses derived from microbial diversity."",""geographicFocus"":""HQ: Calle Catedrático Agustín Escardino, 9, 46980, Paterna, València, Spain; No explicit geographic sales focus regions identified."",""keyExecutives"":[{""name"":""Manuel Porcar, PhD"",""sourceUrl"":""https://darwinbioprospecting.com/about-us/"",""title"":""Chief Executive Officer (CEO)""},{""name"":""Cristina Vilanova, PhD"",""sourceUrl"":""https://darwinbioprospecting.com/about-us/"",""title"":""Chief Operations Officer (COO)""}],""linkedDocuments"":[""https://darwinbioprospecting.com/en/legal/#aviso-legal"",""https://darwinbioprospecting.com/en/legal/#politica-de-calidad"",""https://darwinbioprospecting.com/en/legal/#politica-de-privacidad"",""https://darwinbioprospecting.com/en/legal/#politica-de-cookies""],""missingImportantFields"":[""clientCategories""],""productDescription"":""Darwin Bioprospecting Excellence is an innovation-led contract research & development company providing integrated scientific services from early discovery to end-to-end solution design. They specialize in advanced bioprospecting, including collection of microorganisms from extreme environments, exotic foods, and human-associated samples, with a proprietary strain collection. They utilize high-performance culturomics, NGS, and omic technologies. They offer open innovation partnerships to develop novel food starters, microbial bioactive compounds, bioremediation strategies, and other products tailored to client specifications. Sectors served include Nutrition and Health and Biosolutions."",""researcherNotes"":""No explicit founders identified on the website. No clear geographic sales regions mentioned."",""sectorDescription"":""Operates in the bioprospecting and microbiology sector, developing microbial technologies and bioprocesses for health, nutrition, biosolutions, and sustainability industries."",""sources"":{""clientCategories"":""https://darwinbioprospecting.com/sectors/"",""companyDescription"":""https://darwinbioprospecting.com/about-us/"",""geographicFocus"":""https://darwinbioprospecting.com/contact/"",""keyExecutives"":""https://darwinbioprospecting.com/about-us/"",""productDescription"":""https://darwinbioprospecting.com/platforms/""},""websiteURL"":""https://darwinbioprospecting.com/""}" -Micropep Technologies,http://micro-pep.com/,"Corteva Agriscience, Sparkfood",micro-pep.com,https://www.linkedin.com/company/micropep-technologies,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://micro-pep.com/"", - ""companyDescription"": ""Micropep is on a mission to build more sustainable agriculture for future generations by developing safe, efficient, and sustainable natural solutions to adapt agricultural systems to climate change. Their focus is on micropeptides, short proteins essential in natural plant biological processes, as the next generation of sustainable crop protection and stimulation tools. Micropep collaborates globally with investors, institutions, and research partners to commercialize micropeptide-based biological solutions for farmers."", - ""productDescription"": ""Core products and services offered by Micropep include: \n- Development and commercialization of micropeptide-based solutions for crop protection and stimulation, utilizing a proprietary discovery platform combining computational biology, bioproduction, and delivery/formulation science. \n- Micropeptides-based biofungicide products targeting diseases such as Asian Soybean Rust and mildew, e.g., MPD-01 (fungal growth control) and MPD-02 (plant immune response). \n- Micropeptides-based bioherbicide products targeting resistant broadleaf and grass weed species, e.g., MPW-01 and MPW-02 (selective growth inhibition/resistance breakers). \n- Research and development services including lead identification, exploration, optimization, validation, and development phases covering production, formulation, regulatory approvals, and commercialization."", - ""clientCategories"": [""Farmers"", ""Agricultural Industry"", ""Crop Protection Sector""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in micropeptide-based sustainable crop protection and stimulation solutions leveraging AI and bioproduction technologies."", - ""geographicFocus"": ""HQ: 120 Impasse Jeanne Barret, 31320 Auzeville Tolosane, France; USA Offices: CIC 1 Broadway, Cambridge, MA 02142, USA and 9 Laboratory Dr, Research Triangle Park, NC 27709; Sales Focus: Global"", - ""keyExecutives"": [ - {""name"": ""Georg Goeres"", ""title"": ""CEO"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Mikael Courbot"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Jeffrey Bell"", ""title"": ""Chief Finance Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Kevin Leiner"", ""title"": ""VP of Regulatory & Chief Project Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Gustavo Gonzalez"", ""title"": ""Chief Business Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Thomas Laurent"", ""title"": ""Founder & Strategic Advisor"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://micro-pep.com/"", - ""productDescription"": ""https://micro-pep.com/technology/"", - ""clientCategories"": ""https://micro-pep.com/"", - ""geographicFocus"": ""https://micro-pep.com/contact/"", - ""keyExecutives"": ""https://micro-pep.com/about-us/#meet-the-team"" - } -}","{ - ""websiteURL"": ""http://micro-pep.com/"", - ""companyDescription"": ""Micropep is on a mission to build more sustainable agriculture for future generations by developing safe, efficient, and sustainable natural solutions to adapt agricultural systems to climate change. Their focus is on micropeptides, short proteins essential in natural plant biological processes, as the next generation of sustainable crop protection and stimulation tools. Micropep collaborates globally with investors, institutions, and research partners to commercialize micropeptide-based biological solutions for farmers."", - ""productDescription"": ""Core products and services offered by Micropep include: \n- Development and commercialization of micropeptide-based solutions for crop protection and stimulation, utilizing a proprietary discovery platform combining computational biology, bioproduction, and delivery/formulation science. \n- Micropeptides-based biofungicide products targeting diseases such as Asian Soybean Rust and mildew, e.g., MPD-01 (fungal growth control) and MPD-02 (plant immune response). \n- Micropeptides-based bioherbicide products targeting resistant broadleaf and grass weed species, e.g., MPW-01 and MPW-02 (selective growth inhibition/resistance breakers). \n- Research and development services including lead identification, exploration, optimization, validation, and development phases covering production, formulation, regulatory approvals, and commercialization."", - ""clientCategories"": [""Farmers"", ""Agricultural Industry"", ""Crop Protection Sector""], - ""sectorDescription"": ""Operates in the agricultural biotechnology sector, specializing in micropeptide-based sustainable crop protection and stimulation solutions leveraging AI and bioproduction technologies."", - ""geographicFocus"": ""HQ: 120 Impasse Jeanne Barret, 31320 Auzeville Tolosane, France; USA Offices: CIC 1 Broadway, Cambridge, MA 02142, USA and 9 Laboratory Dr, Research Triangle Park, NC 27709; Sales Focus: Global"", - ""keyExecutives"": [ - {""name"": ""Georg Goeres"", ""title"": ""CEO"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Mikael Courbot"", ""title"": ""Chief Technical Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Jeffrey Bell"", ""title"": ""Chief Finance Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Kevin Leiner"", ""title"": ""VP of Regulatory & Chief Project Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Gustavo Gonzalez"", ""title"": ""Chief Business Officer"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""}, - {""name"": ""Thomas Laurent"", ""title"": ""Founder & Strategic Advisor"", ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://micro-pep.com/"", - ""productDescription"": ""https://micro-pep.com/technology/"", - ""clientCategories"": ""https://micro-pep.com/"", - ""geographicFocus"": ""https://micro-pep.com/contact/"", - ""keyExecutives"": ""https://micro-pep.com/about-us/#meet-the-team"" - } -}",[],"{ - ""websiteURL"": ""https://micro-pep.com"", - ""companyDescription"": ""Micropep is on a mission to build more sustainable agriculture for future generations by developing safe, efficient, and sustainable natural solutions that help adapt agricultural systems to climate change. The company specializes in micropeptides, short natural protein molecules central to plant biological processes, as the next generation of sustainable crop protection and stimulation tools for farmers globally. Founded in 2016 as a spin-off from a French national research laboratory, Micropep combines proprietary AI-powered discovery, bioproduction, and formulation technologies to commercialize innovative micropeptide-based biological solutions."", - ""productDescription"": ""Micropep develops and commercializes micropeptide-based solutions for crop protection and stimulation using a proprietary discovery platform that combines computational biology, bioproduction, and delivery/formulation science. Their biofungicide products target diseases such as Asian Soybean Rust and mildew, including MPD-01 (fungal growth control) and MPD-02 (plant immune response). They also produce bioherbicide products for resistant broadleaf and grass weeds, such as MPW-01 and MPW-02 (selective growth inhibition and resistance breakers). The company offers R&D services across lead identification, optimization, validation, regulatory approval, and commercialization phases."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Industry"", - ""Crop Protection Sector"" - ], - ""sectorDescription"": ""Agricultural biotechnology company specializing in micropeptide-based sustainable crop protection and stimulation solutions leveraging artificial intelligence and bioproduction technologies."", - ""geographicFocus"": ""Headquartered in Auzeville Tolosane, France, with offices in Cambridge, MA and Research Triangle Park, NC, USA, Micropep has a global sales focus and operates across Europe and North America."", - ""keyExecutives"": [ - { - ""name"": ""Georg Goeres"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team"" - }, - { - ""name"": ""Mikael Courbot"", - ""title"": ""Chief Technical Officer"", - ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team"" - }, - { - ""name"": ""Jeffrey Bell"", - ""title"": ""Chief Finance Officer"", - ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team"" - }, - { - ""name"": ""Kevin Leiner"", - ""title"": ""VP of Regulatory & Chief Project Officer"", - ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team"" - }, - { - ""name"": ""Gustavo Gonzalez"", - ""title"": ""Chief Business Officer"", - ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team"" - }, - { - ""name"": ""Thomas Laurent"", - ""title"": ""Founder & Strategic Advisor"", - ""sourceUrl"": ""https://micro-pep.com/about-us/#meet-the-team"" - } - ], - ""researcherNotes"": ""The company profile and leadership team were confirmed using the official Micropep website and recent press releases up to 2025. CEO leadership recently changed to Georg Goeres as of July 2025, succeeding the founder Thomas Laurent now serving as strategic advisor. Geographic footprint is reported as global with headquarters in France and US offices in Massachusetts and North Carolina. No significant gaps remain after enrichment."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://micro-pep.com/about-us/"", - ""productDescription"": ""https://micro-pep.com/technology/"", - ""clientCategories"": ""https://micro-pep.com/"", - ""geographicFocus"": ""https://micro-pep.com/contact/"", - ""keyExecutives"": ""https://micro-pep.com/about-us/#meet-the-team"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Industry"",""Crop Protection Sector""],""companyDescription"":""Micropep is on a mission to build more sustainable agriculture for future generations by developing safe, efficient, and sustainable natural solutions that help adapt agricultural systems to climate change. The company specializes in micropeptides, short natural protein molecules central to plant biological processes, as the next generation of sustainable crop protection and stimulation tools for farmers globally. Founded in 2016 as a spin-off from a French national research laboratory, Micropep combines proprietary AI-powered discovery, bioproduction, and formulation technologies to commercialize innovative micropeptide-based biological solutions."",""geographicFocus"":""Headquartered in Auzeville Tolosane, France, with offices in Cambridge, MA and Research Triangle Park, NC, USA, Micropep has a global sales focus and operates across Europe and North America."",""keyExecutives"":[{""name"":""Georg Goeres"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""CEO""},{""name"":""Mikael Courbot"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Chief Technical Officer""},{""name"":""Jeffrey Bell"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Chief Finance Officer""},{""name"":""Kevin Leiner"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""VP of Regulatory & Chief Project Officer""},{""name"":""Gustavo Gonzalez"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Chief Business Officer""},{""name"":""Thomas Laurent"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Founder & Strategic Advisor""}],""missingImportantFields"":[],""productDescription"":""Micropep develops and commercializes micropeptide-based solutions for crop protection and stimulation using a proprietary discovery platform that combines computational biology, bioproduction, and delivery/formulation science. Their biofungicide products target diseases such as Asian Soybean Rust and mildew, including MPD-01 (fungal growth control) and MPD-02 (plant immune response). They also produce bioherbicide products for resistant broadleaf and grass weeds, such as MPW-01 and MPW-02 (selective growth inhibition and resistance breakers). The company offers R&D services across lead identification, optimization, validation, regulatory approval, and commercialization phases."",""researcherNotes"":""The company profile and leadership team were confirmed using the official Micropep website and recent press releases up to 2025. CEO leadership recently changed to Georg Goeres as of July 2025, succeeding the founder Thomas Laurent now serving as strategic advisor. Geographic footprint is reported as global with headquarters in France and US offices in Massachusetts and North Carolina. No significant gaps remain after enrichment."",""sectorDescription"":""Agricultural biotechnology company specializing in micropeptide-based sustainable crop protection and stimulation solutions leveraging artificial intelligence and bioproduction technologies."",""sources"":{""clientCategories"":""https://micro-pep.com/"",""companyDescription"":""https://micro-pep.com/about-us/"",""geographicFocus"":""https://micro-pep.com/contact/"",""keyExecutives"":""https://micro-pep.com/about-us/#meet-the-team"",""productDescription"":""https://micro-pep.com/technology/""},""websiteURL"":""https://micro-pep.com""}","Correctness: 100% Completeness: 95% The evaluated statement about Micropep is factually accurate and well-supported by multiple authoritative sources. Micropep was founded in 2016 as a spin-off from the French national research laboratory LRSV, associated with CNRS and Toulouse University, confirmed by the company website and Toulouse Tech Transfer pages[1][2][3]. The leadership team details, notably Georg Goeres as CEO and Thomas Laurent as Founder & Strategic Advisor, align with the most recent data as of 2025[3]. The headquarters are correctly located in Auzeville Tolosane, France, with US offices in Cambridge, MA and Research Triangle Park, NC, and a global focus across Europe and North America[3]. The company’s product portfolio, including micropeptide-based biofungicides (MPD-01, MPD-02) and bioherbicides (MPW-01, MPW-02), and its technology platform involving AI, bioproduction, and formulation fit the description from the official site and secondary profiles[2][3]. The only minor limitation is the omission of the reported recent capital raised (approximately $52 million as of 2025) which is publicly available and relevant for completeness but was not included in the original profile[3]. Otherwise, no significant material information is missing. Confirmed sources: https://micro-pep.com/about-us/, https://www.toulouse-tech-transfer.com/en/our-portfolio/our-startups/micropep-technologies, https://micro-pep.com/faq/sed-diam-a-viverra-mauris-curabitur-gravida-tincidunt-4/.","{""clientCategories"":[""Farmers"",""Agricultural Industry"",""Crop Protection Sector""],""companyDescription"":""Micropep is on a mission to build more sustainable agriculture for future generations by developing safe, efficient, and sustainable natural solutions to adapt agricultural systems to climate change. Their focus is on micropeptides, short proteins essential in natural plant biological processes, as the next generation of sustainable crop protection and stimulation tools. Micropep collaborates globally with investors, institutions, and research partners to commercialize micropeptide-based biological solutions for farmers."",""geographicFocus"":""HQ: 120 Impasse Jeanne Barret, 31320 Auzeville Tolosane, France; USA Offices: CIC 1 Broadway, Cambridge, MA 02142, USA and 9 Laboratory Dr, Research Triangle Park, NC 27709; Sales Focus: Global"",""keyExecutives"":[{""name"":""Georg Goeres"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""CEO""},{""name"":""Mikael Courbot"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Chief Technical Officer""},{""name"":""Jeffrey Bell"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Chief Finance Officer""},{""name"":""Kevin Leiner"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""VP of Regulatory & Chief Project Officer""},{""name"":""Gustavo Gonzalez"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Chief Business Officer""},{""name"":""Thomas Laurent"",""sourceUrl"":""https://micro-pep.com/about-us/#meet-the-team"",""title"":""Founder & Strategic Advisor""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Core products and services offered by Micropep include: \n- Development and commercialization of micropeptide-based solutions for crop protection and stimulation, utilizing a proprietary discovery platform combining computational biology, bioproduction, and delivery/formulation science. \n- Micropeptides-based biofungicide products targeting diseases such as Asian Soybean Rust and mildew, e.g., MPD-01 (fungal growth control) and MPD-02 (plant immune response). \n- Micropeptides-based bioherbicide products targeting resistant broadleaf and grass weed species, e.g., MPW-01 and MPW-02 (selective growth inhibition/resistance breakers). \n- Research and development services including lead identification, exploration, optimization, validation, and development phases covering production, formulation, regulatory approvals, and commercialization."",""researcherNotes"":null,""sectorDescription"":""Operates in the agricultural biotechnology sector, specializing in micropeptide-based sustainable crop protection and stimulation solutions leveraging AI and bioproduction technologies."",""sources"":{""clientCategories"":""https://micro-pep.com/"",""companyDescription"":""https://micro-pep.com/"",""geographicFocus"":""https://micro-pep.com/contact/"",""keyExecutives"":""https://micro-pep.com/about-us/#meet-the-team"",""productDescription"":""https://micro-pep.com/technology/""},""websiteURL"":""http://micro-pep.com/""}" -Fotenix,https://fotenix.tech,"EHE Ventures, River Capital",fotenix.tech,https://www.linkedin.com/company/fotenixtech,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://fotenix.tech"", - ""companyDescription"": ""Fotenix was created to enable all farmers to make sustainable profits through AI. The company develops data-driven solutions exclusively for agriculture, aiming to support farms in tracking performance and making decisions to become more profitable. Fotenix integrates with existing farm systems to support grower teams."", - ""productDescription"": ""Fotenix offers AI-driven products to make farming more profitable. Their technology helps in three key areas: Crop Scouting (detecting pest and disease outbreaks early through daily digital crop walks with instant stress alerts), Quality Control (ensuring premium produce and improving labor efficiency with rapid quality measurements), and Smart Resourcing (targeting farm operations by mapping job sheets with priority areas to reduce resource costs)."", - ""clientCategories"": [""Food Producers"", ""Growers"", ""Farmers""], - ""sectorDescription"": ""Operates in the agriculture technology sector, providing AI-driven solutions to optimize farm operations and enhance profitability."", - ""geographicFocus"": ""HQ: Units 31-32 Leslie Hough Way, Salford, M6 6AJ, United Kingdom; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Charles Veys"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.fotenix.tech/aboutus"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit information was found on the geographic sales focus or additional executive team members beyond the founder. Client categories were inferred from user testimonials and product context."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.fotenix.tech/aboutus"", - ""productDescription"": ""https://www.fotenix.tech/"", - ""clientCategories"": ""https://www.fotenix.tech/"", - ""geographicFocus"": ""https://www.fotenix.tech/contact"", - ""keyExecutives"": ""https://www.fotenix.tech/aboutus"" - } -}","{ - ""websiteURL"": ""https://fotenix.tech"", - ""companyDescription"": ""Fotenix was created to enable all farmers to make sustainable profits through AI. The company develops data-driven solutions exclusively for agriculture, aiming to support farms in tracking performance and making decisions to become more profitable. Fotenix integrates with existing farm systems to support grower teams."", - ""productDescription"": ""Fotenix offers AI-driven products to make farming more profitable. Their technology helps in three key areas: Crop Scouting (detecting pest and disease outbreaks early through daily digital crop walks with instant stress alerts), Quality Control (ensuring premium produce and improving labor efficiency with rapid quality measurements), and Smart Resourcing (targeting farm operations by mapping job sheets with priority areas to reduce resource costs)."", - ""clientCategories"": [""Food Producers"", ""Growers"", ""Farmers""], - ""sectorDescription"": ""Operates in the agriculture technology sector, providing AI-driven solutions to optimize farm operations and enhance profitability."", - ""geographicFocus"": ""HQ: Units 31-32 Leslie Hough Way, Salford, M6 6AJ, United Kingdom; Sales Focus: Not Available"", - ""keyExecutives"": [ - { - ""name"": ""Charles Veys"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.fotenix.tech/aboutus"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No explicit information was found on the geographic sales focus or additional executive team members beyond the founder. Client categories were inferred from user testimonials and product context."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://www.fotenix.tech/aboutus"", - ""productDescription"": ""https://www.fotenix.tech/"", - ""clientCategories"": ""https://www.fotenix.tech/"", - ""geographicFocus"": ""https://www.fotenix.tech/contact"", - ""keyExecutives"": ""https://www.fotenix.tech/aboutus"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://fotenix.tech"", - ""companyDescription"": ""Fotenix is a Manchester-based agritech company pioneering AI and imaging technology to support smarter, sustainable farming. The company develops data-driven solutions exclusively for agriculture, enabling farmers to track performance, detect crop stress early, and make decisions to increase profitability and sustainability. Founded in 2018 as a University of Manchester spinout, Fotenix integrates with existing farm systems to support grower teams with precision insights."", - ""productDescription"": ""Fotenix offers AI-driven products that help farmers detect pest and disease outbreaks early through daily digital crop walks with instant stress alerts, ensure premium produce quality and improve labor efficiency with rapid quality measurements, and reduce resource costs by targeting farm operations with smart resourcing job sheets. Their platform combines multispectral imaging with AI analytics for in-field diagnostics that support data-driven decision-making and sustainable farm management."", - ""clientCategories"": [ - ""Food Producers"", - ""Growers"", - ""Farmers"" - ], - ""sectorDescription"": ""Operates in the agriculture technology sector, providing AI-driven solutions to optimize farm operations and enhance profitability."", - ""geographicFocus"": ""Primary focus on UK farms with plans to scale deployments across the UK agricultural sector."", - ""keyExecutives"": [ - { - ""name"": ""Charles Veys"", - ""title"": ""Founder"", - ""sourceUrl"": ""https://www.fotenix.tech/aboutus"" - } - ], - ""researcherNotes"": ""The company is verified as Manchester-based, a University of Manchester spinout founded in 2018. Geographic sales focus is confirmed as UK farms via investment and company plans, but no explicit global footprint found. Only one senior executive listed (Founder Charles Veys) on official company site and external sources. No additional leadership details found on LinkedIn or external business registries."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://ukuat.org/2025/02/12/fotenix-secures-fundai-investment/"", - ""productDescription"": ""https://www.fotenix.tech"", - ""clientCategories"": ""https://www.fotenix.tech"", - ""geographicFocus"": ""https://igrownews.com/fotenix-latest-news/"", - ""keyExecutives"": ""https://www.fotenix.tech/aboutus"" - } -}","{""clientCategories"":[""Food Producers"",""Growers"",""Farmers""],""companyDescription"":""Fotenix is a Manchester-based agritech company pioneering AI and imaging technology to support smarter, sustainable farming. The company develops data-driven solutions exclusively for agriculture, enabling farmers to track performance, detect crop stress early, and make decisions to increase profitability and sustainability. Founded in 2018 as a University of Manchester spinout, Fotenix integrates with existing farm systems to support grower teams with precision insights."",""geographicFocus"":""Primary focus on UK farms with plans to scale deployments across the UK agricultural sector."",""keyExecutives"":[{""name"":""Charles Veys"",""sourceUrl"":""https://www.fotenix.tech/aboutus"",""title"":""Founder""}],""missingImportantFields"":[],""productDescription"":""Fotenix offers AI-driven products that help farmers detect pest and disease outbreaks early through daily digital crop walks with instant stress alerts, ensure premium produce quality and improve labor efficiency with rapid quality measurements, and reduce resource costs by targeting farm operations with smart resourcing job sheets. Their platform combines multispectral imaging with AI analytics for in-field diagnostics that support data-driven decision-making and sustainable farm management."",""researcherNotes"":""The company is verified as Manchester-based, a University of Manchester spinout founded in 2018. Geographic sales focus is confirmed as UK farms via investment and company plans, but no explicit global footprint found. Only one senior executive listed (Founder Charles Veys) on official company site and external sources. No additional leadership details found on LinkedIn or external business registries."",""sectorDescription"":""Operates in the agriculture technology sector, providing AI-driven solutions to optimize farm operations and enhance profitability."",""sources"":{""clientCategories"":""https://www.fotenix.tech"",""companyDescription"":""https://ukuat.org/2025/02/12/fotenix-secures-fundai-investment/"",""geographicFocus"":""https://igrownews.com/fotenix-latest-news/"",""keyExecutives"":""https://www.fotenix.tech/aboutus"",""productDescription"":""https://www.fotenix.tech""},""websiteURL"":""https://fotenix.tech""}","Correctness: 98% Completeness: 90% The information about Fotenix is largely accurate and well-supported. The company is indeed Manchester-based and a University of Manchester spinout founded in 2018, with Charles Veys as founder and CEO, as confirmed by the company website and Companies House filings as of 2025-09-11[2][3][4]. The UK geographic focus is confirmed by investment news and company plans[4]. The product description involving AI-driven crop stress detection, multispectral imaging, and data-driven farm management is consistent with the official company site[2]. The company’s registered office is in Salford, England, as per Companies House[1]. Leadership beyond Charles Veys is also confirmed, including Martin Atkinson (Chairman) and Maurice Moloney (Commercial Director)[3], which was missing from the initial description. No filings or sources indicate a broader global footprint yet, supporting the stated UK focus[4]. Small omissions include a fuller leadership list and explicit mention of recent funding milestones beyond the River Capital AI fund backing noted in press coverage[4]. Overall, the data is correct with minor incompleteness in leadership details and recent funding events. https://www.fotenix.tech/aboutus https://find-and-update.company-information.service.gov.uk/company/11346942 https://www.insidermedia.com/news/north-west/agritech-firm-secures-backing-from-river-capitals-ai-fund","{""clientCategories"":[""Food Producers"",""Growers"",""Farmers""],""companyDescription"":""Fotenix was created to enable all farmers to make sustainable profits through AI. The company develops data-driven solutions exclusively for agriculture, aiming to support farms in tracking performance and making decisions to become more profitable. Fotenix integrates with existing farm systems to support grower teams."",""geographicFocus"":""HQ: Units 31-32 Leslie Hough Way, Salford, M6 6AJ, United Kingdom; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Charles Veys"",""sourceUrl"":""https://www.fotenix.tech/aboutus"",""title"":""Founder""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Fotenix offers AI-driven products to make farming more profitable. Their technology helps in three key areas: Crop Scouting (detecting pest and disease outbreaks early through daily digital crop walks with instant stress alerts), Quality Control (ensuring premium produce and improving labor efficiency with rapid quality measurements), and Smart Resourcing (targeting farm operations by mapping job sheets with priority areas to reduce resource costs)."",""researcherNotes"":""No explicit information was found on the geographic sales focus or additional executive team members beyond the founder. Client categories were inferred from user testimonials and product context."",""sectorDescription"":""Operates in the agriculture technology sector, providing AI-driven solutions to optimize farm operations and enhance profitability."",""sources"":{""clientCategories"":""https://www.fotenix.tech/"",""companyDescription"":""https://www.fotenix.tech/aboutus"",""geographicFocus"":""https://www.fotenix.tech/contact"",""keyExecutives"":""https://www.fotenix.tech/aboutus"",""productDescription"":""https://www.fotenix.tech/""},""websiteURL"":""https://fotenix.tech""}" -Agroptima,https://www.agroptima.com,"Athos Capital, ESADE BAN, Miguel Eguizabal Abad",agroptima.com,https://www.linkedin.com/company/agroptima,"{""seniorLeadership"":[{""name"":""Emilia Vila"",""title"":""Founder, Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/agroptima""}]}","{""seniorLeadership"":[{""name"":""Emilia Vila"",""title"":""Founder, Chief Executive Officer"",""profileURL"":""https://www.linkedin.com/company/agroptima""}]}","{ - ""websiteURL"": ""https://www.agroptima.com"", - ""companyDescription"": ""Agroptima is an agile and intuitive farm management software designed to control and register farm business operations, replacing paperwork with digital task planning through an app. It provides real-time access to farm information including fields, treatments, and workers, enhances traceability, and improves cost control and profitability. The software meets traceability requirements like Phytosanitary and fertilizer reports, Global GAP, and others, offering personalized official reports. Agroptima supports various crops such as fruits, citrus, vegetables, wineries, cereals, service providers, olive groves, and nut trees. It helps manage teams efficiently via task planning and digital work orders, and provides team job reports and personnel cost control. The company aims to digitize agriculture by offering a single place for farm data access, and to assist in official inspection reports."", - ""productDescription"": ""Agroptima offers farm management software that allows users to digitize their farm operations, record agricultural tasks, get traceability, and track costs and yields. Their software features include real-time data consultation, compliance with traceability requirements (reports like Phytosanitary, fertilizer, Global GAP, Ecological), cost control features to identify productivity and profitability, and task planning with digital work orders. It adapts to multiple crop types such as fruit and citrus, vegetables, wineries and vineyards, cereals and extensive crops, service providers, olive grove and nut trees."", - ""clientCategories"": [ - ""Fruit and citrus"", - ""Vegetables"", - ""Wineries and vineyards"", - ""Cereals and extensive crops"", - ""Service providers"", - ""Olive grove and nut trees"" - ], - ""sectorDescription"": ""Operates in the agricultural software sector, providing digital farm management solutions to enhance productivity, traceability, and cost control across multiple crop types."", - ""geographicFocus"": ""HQ: Sant Feliu de Codines, Binéfar, Valladolid, Villarrobledo (Albacete), Alboraya, Totana, Paris; Sales Focus: Spain, France, United States"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No relevant explicit data on founders or C-level executives was found on the site."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agroptima.com/en/about"", - ""productDescription"": ""https://agroptima.com/en/features"", - ""clientCategories"": ""https://agroptima.com/en/about"", - ""geographicFocus"": ""https://agroptima.com/en/contact"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""https://www.agroptima.com"", - ""companyDescription"": ""Agroptima is an agile and intuitive farm management software designed to control and register farm business operations, replacing paperwork with digital task planning through an app. It provides real-time access to farm information including fields, treatments, and workers, enhances traceability, and improves cost control and profitability. The software meets traceability requirements like Phytosanitary and fertilizer reports, Global GAP, and others, offering personalized official reports. Agroptima supports various crops such as fruits, citrus, vegetables, wineries, cereals, service providers, olive groves, and nut trees. It helps manage teams efficiently via task planning and digital work orders, and provides team job reports and personnel cost control. The company aims to digitize agriculture by offering a single place for farm data access, and to assist in official inspection reports."", - ""productDescription"": ""Agroptima offers farm management software that allows users to digitize their farm operations, record agricultural tasks, get traceability, and track costs and yields. Their software features include real-time data consultation, compliance with traceability requirements (reports like Phytosanitary, fertilizer, Global GAP, Ecological), cost control features to identify productivity and profitability, and task planning with digital work orders. It adapts to multiple crop types such as fruit and citrus, vegetables, wineries and vineyards, cereals and extensive crops, service providers, olive grove and nut trees."", - ""clientCategories"": [ - ""Fruit and citrus"", - ""Vegetables"", - ""Wineries and vineyards"", - ""Cereals and extensive crops"", - ""Service providers"", - ""Olive grove and nut trees"" - ], - ""sectorDescription"": ""Operates in the agricultural software sector, providing digital farm management solutions to enhance productivity, traceability, and cost control across multiple crop types."", - ""geographicFocus"": ""HQ: Sant Feliu de Codines, Binéfar, Valladolid, Villarrobledo (Albacete), Alboraya, Totana, Paris; Sales Focus: Spain, France, United States"", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No relevant explicit data on founders or C-level executives was found on the site."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://agroptima.com/en/about"", - ""productDescription"": ""https://agroptima.com/en/features"", - ""clientCategories"": ""https://agroptima.com/en/about"", - ""geographicFocus"": ""https://agroptima.com/en/contact"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.agroptima.com"", - ""companyDescription"": ""Agroptima is an agile and intuitive farm management software designed to digitize and streamline farm business operations by replacing paperwork with digital task planning accessible via an app. It provides real-time access to farm information including fields, treatments, and workers, enhances traceability with compliance for reports such as Phytosanitary and Global GAP, and improves cost control and profitability. Supporting a variety of crop types, Agroptima aims to centralize farm data to support official inspection reports and operational decision-making."", - ""productDescription"": ""Agroptima offers cloud-based farm management software that enables users to digitize agricultural operations, record and track farm tasks, and access data in real time from any device. Features include task planning with digital work orders, crop and field geolocation, traceability and compliance reports (Phytosanitary, fertilizer, Global GAP, Ecological), cost control to identify profitable activities, and inventory management. The software supports multiple crop types and works offline via a mobile app, facilitating productivity and profitability improvements."", - ""clientCategories"": [ - ""Fruit and citrus"", - ""Vegetables"", - ""Wineries and vineyards"", - ""Cereals and extensive crops"", - ""Service providers"", - ""Olive grove and nut trees"" - ], - ""sectorDescription"": ""Operates in the agricultural software sector, providing digital farm management solutions to enhance productivity, traceability, and cost control across multiple crop types."", - ""geographicFocus"": ""Headquartered in Spain with offices in Sant Feliu de Codines, Binéfar, Valladolid, Villarrobledo, Alboraya, Totana, and Paris. Sales focus primarily includes Spain, France, and the United States."", - ""keyExecutives"": [ - { - ""name"": ""Emilia Vila"", - ""title"": ""Founder, Chief Executive Officer"", - ""sourceUrl"": ""https://www.linkedin.com/company/agroptima"" - } - ], - ""researcherNotes"": ""Key executive information was not found on the company website but was confirmed on the company LinkedIn page. Geographic focus is based on official contact locations listed on the company website. No regulatory filings were found for further verification. All enriched fields rely primarily on official company sources and LinkedIn."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agroptima.com/en/about"", - ""productDescription"": ""https://agroptima.com/en/features"", - ""clientCategories"": ""https://agroptima.com/en/about"", - ""geographicFocus"": ""https://agroptima.com/en/contact"", - ""keyExecutives"": ""https://www.linkedin.com/company/agroptima"" - } -}","{""clientCategories"":[""Fruit and citrus"",""Vegetables"",""Wineries and vineyards"",""Cereals and extensive crops"",""Service providers"",""Olive grove and nut trees""],""companyDescription"":""Agroptima is an agile and intuitive farm management software designed to digitize and streamline farm business operations by replacing paperwork with digital task planning accessible via an app. It provides real-time access to farm information including fields, treatments, and workers, enhances traceability with compliance for reports such as Phytosanitary and Global GAP, and improves cost control and profitability. Supporting a variety of crop types, Agroptima aims to centralize farm data to support official inspection reports and operational decision-making."",""geographicFocus"":""Headquartered in Spain with offices in Sant Feliu de Codines, Binéfar, Valladolid, Villarrobledo, Alboraya, Totana, and Paris. Sales focus primarily includes Spain, France, and the United States."",""keyExecutives"":[{""name"":""Emilia Vila"",""sourceUrl"":""https://www.linkedin.com/company/agroptima"",""title"":""Founder, Chief Executive Officer""}],""missingImportantFields"":[],""productDescription"":""Agroptima offers cloud-based farm management software that enables users to digitize agricultural operations, record and track farm tasks, and access data in real time from any device. Features include task planning with digital work orders, crop and field geolocation, traceability and compliance reports (Phytosanitary, fertilizer, Global GAP, Ecological), cost control to identify profitable activities, and inventory management. The software supports multiple crop types and works offline via a mobile app, facilitating productivity and profitability improvements."",""researcherNotes"":""Key executive information was not found on the company website but was confirmed on the company LinkedIn page. Geographic focus is based on official contact locations listed on the company website. No regulatory filings were found for further verification. All enriched fields rely primarily on official company sources and LinkedIn."",""sectorDescription"":""Operates in the agricultural software sector, providing digital farm management solutions to enhance productivity, traceability, and cost control across multiple crop types."",""sources"":{""clientCategories"":""https://agroptima.com/en/about"",""companyDescription"":""https://agroptima.com/en/about"",""geographicFocus"":""https://agroptima.com/en/contact"",""keyExecutives"":""https://www.linkedin.com/company/agroptima"",""productDescription"":""https://agroptima.com/en/features""},""websiteURL"":""https://www.agroptima.com""}","Correctness: 98% Completeness: 95% The provided description of Agroptima is highly accurate and comprehensive as of 2025. It correctly identifies Agroptima as a Spain-headquartered company offering cloud-based agricultural management software focused on digitizing farm operations with features such as task planning, real-time data access, geolocation of crops, traceability/compliance reporting (Phytosanitary, Global GAP, ecological), cost control, and offline mobile app functionality[3][4]. The CEO Emilia Vila is confirmed via the company’s LinkedIn page[1][3]. The geographic focus primarily includes Spain, France, and the United States, supported by headquarters and office locations listed on Agroptima’s website[3]. Funding details, including a €1.2M Series A round in 2021, led by Athos Capital with other investors, are verified from a reliable agtech news source[1]. The coverage of supported crop types matches official sources linking the company to various fruit, vegetable, cereal, and nut crops[2][3]. Minor completeness points are lost since, although leadership and funding are confirmed, no regulatory filings were found for independent verification, and exact office addresses beyond the country level were not specified in the sources. Overall, the description aligns very closely with official and reputable third-party sources relevant through mid-2025. https://agroptima.com/en/about https://www.linkedin.com/company/agroptima https://agfundernews.com/agroptima-raises-e1-2m-series-a-european-farm-management-software-platform https://agroptima.com/en/features https://ai4agri-gpai.org/providersTemplate/Agroptima","{""clientCategories"":[""Fruit and citrus"",""Vegetables"",""Wineries and vineyards"",""Cereals and extensive crops"",""Service providers"",""Olive grove and nut trees""],""companyDescription"":""Agroptima is an agile and intuitive farm management software designed to control and register farm business operations, replacing paperwork with digital task planning through an app. It provides real-time access to farm information including fields, treatments, and workers, enhances traceability, and improves cost control and profitability. The software meets traceability requirements like Phytosanitary and fertilizer reports, Global GAP, and others, offering personalized official reports. Agroptima supports various crops such as fruits, citrus, vegetables, wineries, cereals, service providers, olive groves, and nut trees. It helps manage teams efficiently via task planning and digital work orders, and provides team job reports and personnel cost control. The company aims to digitize agriculture by offering a single place for farm data access, and to assist in official inspection reports."",""geographicFocus"":""HQ: Sant Feliu de Codines, Binéfar, Valladolid, Villarrobledo (Albacete), Alboraya, Totana, Paris; Sales Focus: Spain, France, United States"",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""Agroptima offers farm management software that allows users to digitize their farm operations, record agricultural tasks, get traceability, and track costs and yields. Their software features include real-time data consultation, compliance with traceability requirements (reports like Phytosanitary, fertilizer, Global GAP, Ecological), cost control features to identify productivity and profitability, and task planning with digital work orders. It adapts to multiple crop types such as fruit and citrus, vegetables, wineries and vineyards, cereals and extensive crops, service providers, olive grove and nut trees."",""researcherNotes"":""No relevant explicit data on founders or C-level executives was found on the site."",""sectorDescription"":""Operates in the agricultural software sector, providing digital farm management solutions to enhance productivity, traceability, and cost control across multiple crop types."",""sources"":{""clientCategories"":""https://agroptima.com/en/about"",""companyDescription"":""https://agroptima.com/en/about"",""geographicFocus"":""https://agroptima.com/en/contact"",""keyExecutives"":null,""productDescription"":""https://agroptima.com/en/features""},""websiteURL"":""https://www.agroptima.com""}" -Agri-Espirit SAS,http://www.agri-esprit.com/,Demeter Partners,agri-esprit.com,NOT FOUND,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.agri-esprit.com/"", - ""companyDescription"": ""Agri-Esprit is a company founded in 2010 and headquartered at 4 Rue Boussingault, 67000 Strasbourg, France. They provide software-supported services to farmers, including a platform integrating data capture systems, management reports, continuous improvement processes, and proprietary learning algorithms to increase efficient food production while reducing water, fuel, crop chemicals, and nitrogen fertilizer usage."", - ""productDescription"": ""They provide software-supported services for decision support, automation, and farm development. Their services use a centralized database with industry standards allowing full data integration, customization, and high scalability to improve productivity, profitability, environmental footprint, and animal welfare in farming."", - ""clientCategories"": [""Farmers"", ""Agricultural producers""], - ""sectorDescription"": ""Operates in the AgTech sector, providing software-supported decision support and automation services for sustainable agricultural production."", - ""geographicFocus"": ""HQ: 4 Rue Boussingault, 67000 Strasbourg, France"", - ""keyExecutives"": [ - { - ""name"": ""Jeffrey Nadison"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Dr. Christian Linke"", - ""title"": ""Project Management Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Samir Sekkat"", - ""title"": ""Technical Development Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Vincent Toups"", - ""title"": ""Technical Development"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Ronald Krause"", - ""title"": ""Data Integration Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""James Anderson"", - ""title"": ""Technical Development"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official website http://www.agri-esprit.com/ was not accessible for direct data extraction. Information was gathered from multiple third-party business profiling sites. The leadership list includes senior and technical leads but only one clear C-level executive (President). No explicit product pages or client categories pages were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/agri-espirit-sas"", - ""productDescription"": ""https://pitchbook.com/profiles/company/64845-55"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/64845-55"", - ""geographicFocus"": ""https://pappers.fr/entreprise/agri-esprit-520653056"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - } -}","{ - ""websiteURL"": ""http://www.agri-esprit.com/"", - ""companyDescription"": ""Agri-Esprit is a company founded in 2010 and headquartered at 4 Rue Boussingault, 67000 Strasbourg, France. They provide software-supported services to farmers, including a platform integrating data capture systems, management reports, continuous improvement processes, and proprietary learning algorithms to increase efficient food production while reducing water, fuel, crop chemicals, and nitrogen fertilizer usage."", - ""productDescription"": ""They provide software-supported services for decision support, automation, and farm development. Their services use a centralized database with industry standards allowing full data integration, customization, and high scalability to improve productivity, profitability, environmental footprint, and animal welfare in farming."", - ""clientCategories"": [""Farmers"", ""Agricultural producers""], - ""sectorDescription"": ""Operates in the AgTech sector, providing software-supported decision support and automation services for sustainable agricultural production."", - ""geographicFocus"": ""HQ: 4 Rue Boussingault, 67000 Strasbourg, France"", - ""keyExecutives"": [ - { - ""name"": ""Jeffrey Nadison"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Dr. Christian Linke"", - ""title"": ""Project Management Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Samir Sekkat"", - ""title"": ""Technical Development Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Vincent Toups"", - ""title"": ""Technical Development"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Ronald Krause"", - ""title"": ""Data Integration Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""James Anderson"", - ""title"": ""Technical Development"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - } - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""The official website http://www.agri-esprit.com/ was not accessible for direct data extraction. Information was gathered from multiple third-party business profiling sites. The leadership list includes senior and technical leads but only one clear C-level executive (President). No explicit product pages or client categories pages were found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/agri-espirit-sas"", - ""productDescription"": ""https://pitchbook.com/profiles/company/64845-55"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/64845-55"", - ""geographicFocus"": ""https://pappers.fr/entreprise/agri-esprit-520653056"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - } -}",[],"{ - ""websiteURL"": ""https://www.agri-esprit.com"", - ""companyDescription"": ""Agri-Esprit, founded in 2010 and headquartered in Strasbourg, France, provides advanced software-supported services aimed at farmers and agricultural producers. Their platform integrates diverse data capture systems with management reporting, continuous improvement processes, and proprietary learning algorithms to enhance efficient food production while reducing resource use such as water, fuel, crop chemicals, and nitrogen fertilizers. The company focuses on increasing agricultural productivity, profitability, environmental sustainability, and animal welfare through technology-driven decision support."", - ""productDescription"": ""Agri-Esprit delivers software-supported services for decision support, farm automation, and farm development via a centralized database platform. The platform adheres to industry standards, enabling full data integration, high customization, and scalability. Their services empower farmers and ag producers to optimize productivity, profitability, and reduce environmental footprint leveraging continuous improvement and AI-powered insights."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Producers"" - ], - ""sectorDescription"": ""Agri-Esprit operates in the AgTech sector, specializing in software-supported decision support and automation services to promote sustainable agricultural production."", - ""geographicFocus"": ""Headquartered in Strasbourg, France; primary operations focused on the French and European agricultural markets."", - ""keyExecutives"": [ - { - ""name"": ""Jeffrey Nadison"", - ""title"": ""President"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Dr. Christian Linke"", - ""title"": ""Project Management Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Samir Sekkat"", - ""title"": ""Technical Development Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Vincent Toups"", - ""title"": ""Technical Development"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""Ronald Krause"", - ""title"": ""Data Integration Lead"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - }, - { - ""name"": ""James Anderson"", - ""title"": ""Technical Development"", - ""sourceUrl"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - } - ], - ""researcherNotes"": ""The entity was confidently identified using matching headquarters (Strasbourg, France), founding year (2010), industry keywords (AgTech, farm data integration), and domain name agri-esprit.com. The official website was inaccessible during research, so information was primarily sourced from Crunchbase and PitchBook profiles. Geographic footprint outside the headquarters city was not explicitly detailed; it is assumed to focus on France/Europe. The leadership list is limited to one clear C-level executive (President) with several technical leads corroborated by Crunchbase. No updated LinkedIn senior leadership data found."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.crunchbase.com/organization/agri-espirit-sas"", - ""productDescription"": ""https://pitchbook.com/profiles/company/64845-55"", - ""clientCategories"": ""https://pitchbook.com/profiles/company/64845-55"", - ""geographicFocus"": ""https://pappers.fr/entreprise/agri-esprit-520653056"", - ""keyExecutives"": ""https://www.crunchbase.com/organization/agri-espirit-sas"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Producers""],""companyDescription"":""Agri-Esprit, founded in 2010 and headquartered in Strasbourg, France, provides advanced software-supported services aimed at farmers and agricultural producers. Their platform integrates diverse data capture systems with management reporting, continuous improvement processes, and proprietary learning algorithms to enhance efficient food production while reducing resource use such as water, fuel, crop chemicals, and nitrogen fertilizers. The company focuses on increasing agricultural productivity, profitability, environmental sustainability, and animal welfare through technology-driven decision support."",""geographicFocus"":""Headquartered in Strasbourg, France; primary operations focused on the French and European agricultural markets."",""keyExecutives"":[{""name"":""Jeffrey Nadison"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""President""},{""name"":""Dr. Christian Linke"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Project Management Lead""},{""name"":""Samir Sekkat"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Technical Development Lead""},{""name"":""Vincent Toups"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Technical Development""},{""name"":""Ronald Krause"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Data Integration Lead""},{""name"":""James Anderson"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Technical Development""}],""missingImportantFields"":[],""productDescription"":""Agri-Esprit delivers software-supported services for decision support, farm automation, and farm development via a centralized database platform. The platform adheres to industry standards, enabling full data integration, high customization, and scalability. Their services empower farmers and ag producers to optimize productivity, profitability, and reduce environmental footprint leveraging continuous improvement and AI-powered insights."",""researcherNotes"":""The entity was confidently identified using matching headquarters (Strasbourg, France), founding year (2010), industry keywords (AgTech, farm data integration), and domain name agri-esprit.com. The official website was inaccessible during research, so information was primarily sourced from Crunchbase and PitchBook profiles. Geographic footprint outside the headquarters city was not explicitly detailed; it is assumed to focus on France/Europe. The leadership list is limited to one clear C-level executive (President) with several technical leads corroborated by Crunchbase. No updated LinkedIn senior leadership data found."",""sectorDescription"":""Agri-Esprit operates in the AgTech sector, specializing in software-supported decision support and automation services to promote sustainable agricultural production."",""sources"":{""clientCategories"":""https://pitchbook.com/profiles/company/64845-55"",""companyDescription"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""geographicFocus"":""https://pappers.fr/entreprise/agri-esprit-520653056"",""keyExecutives"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""productDescription"":""https://pitchbook.com/profiles/company/64845-55""},""websiteURL"":""https://www.agri-esprit.com""}","Correctness: 95% Completeness: 90% The core facts about Agri-Esprit—founded in 2010, headquartered in Strasbourg, France, specializing in advanced software-supported services for farmers and agricultural producers—are accurate and well supported by Gust (https://gust.com/companies/agri_esprit) and Crunchbase profiles (https://www.crunchbase.com/organization/agri-espirit-sas). The company’s focus on integrating diverse data capture systems with management reporting, continuous improvement via proprietary learning algorithms, and AI decision support aligns with descriptions found in PitchBook and Gust, confirming their emphasis on productivity, sustainability, and environmental resource reduction. Leadership data listing Jeffrey Nadison as President and several technical leads matches Crunchbase information as of 2025-09 with no more recent conflicting updates. The geographic focus on Strasbourg and broader French/European markets is consistent and no HQ relocation has been reported. However, completeness is somewhat limited by the unavailability of the official website during research and lack of direct filings or press releases within the last 120 days to confirm the full current leadership roster or detailed product updates. There may be minor omissions in terms of recent milestones or expansions. Overall, the profile reliably reflects Agri-Esprit’s identity, offerings, leadership, and market focus. Sources: https://gust.com/companies/agri_esprit, https://www.crunchbase.com/organization/agri-espirit-sas, https://pitchbook.com/profiles/company/64845-55, https://pappers.fr/entreprise/agri-esprit-520653056","{""clientCategories"":[""Farmers"",""Agricultural producers""],""companyDescription"":""Agri-Esprit is a company founded in 2010 and headquartered at 4 Rue Boussingault, 67000 Strasbourg, France. They provide software-supported services to farmers, including a platform integrating data capture systems, management reports, continuous improvement processes, and proprietary learning algorithms to increase efficient food production while reducing water, fuel, crop chemicals, and nitrogen fertilizer usage."",""geographicFocus"":""HQ: 4 Rue Boussingault, 67000 Strasbourg, France"",""keyExecutives"":[{""name"":""Jeffrey Nadison"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""President""},{""name"":""Dr. Christian Linke"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Project Management Lead""},{""name"":""Samir Sekkat"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Technical Development Lead""},{""name"":""Vincent Toups"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Technical Development""},{""name"":""Ronald Krause"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Data Integration Lead""},{""name"":""James Anderson"",""sourceUrl"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""title"":""Technical Development""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""They provide software-supported services for decision support, automation, and farm development. Their services use a centralized database with industry standards allowing full data integration, customization, and high scalability to improve productivity, profitability, environmental footprint, and animal welfare in farming."",""researcherNotes"":""The official website http://www.agri-esprit.com/ was not accessible for direct data extraction. Information was gathered from multiple third-party business profiling sites. The leadership list includes senior and technical leads but only one clear C-level executive (President). No explicit product pages or client categories pages were found."",""sectorDescription"":""Operates in the AgTech sector, providing software-supported decision support and automation services for sustainable agricultural production."",""sources"":{""clientCategories"":""https://pitchbook.com/profiles/company/64845-55"",""companyDescription"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""geographicFocus"":""https://pappers.fr/entreprise/agri-esprit-520653056"",""keyExecutives"":""https://www.crunchbase.com/organization/agri-espirit-sas"",""productDescription"":""https://pitchbook.com/profiles/company/64845-55""},""websiteURL"":""http://www.agri-esprit.com/""}" -MagGrow,http://maggrow.com,"Astanor Ventures, WakeUp Capital",maggrow.com,https://www.linkedin.com/company/magrowtec,"{""seniorLeadership"":[{""name"":""Gary Wickham"",""title"":""CEO & Founder"",""profileURL"":""https://www.linkedin.com/in/gary-wickham-0b83a214""},{""name"":""Anthony Furness"",""title"":""Chief Scientific Officer"",""profileURL"":""https://www.linkedin.com/in/anthony-furness-9b4a2b47""},{""name"":""Nick Jessop"",""title"":""Head of Crop Science"",""profileURL"":""https://www.linkedin.com/in/nick-jessop-66a05528""}]}","{""seniorLeadership"":[{""name"":""Gary Wickham"",""title"":""CEO & Founder"",""profileURL"":""https://www.linkedin.com/in/gary-wickham-0b83a214""},{""name"":""Anthony Furness"",""title"":""Chief Scientific Officer"",""profileURL"":""https://www.linkedin.com/in/anthony-furness-9b4a2b47""},{""name"":""Nick Jessop"",""title"":""Head of Crop Science"",""profileURL"":""https://www.linkedin.com/in/nick-jessop-66a05528""}]}","{ - ""websiteURL"": ""http://maggrow.com/"", - ""companyDescription"": ""MagrowTec is a company focused on improving agricultural spray applications through its patented Magnetic Assist Spray Technology, which significantly reduces chemical drift by at least 70% and improves coverage by 20% or more. The company's mission and vision are centered on revolutionizing crop spraying to be more efficient, sustainable, and cost-effective, ultimately improving crop yields and reducing chemical wastage. The MagrowTec system can be added to any sprayer without major modifications and is validated by multiple trusted university studies. It aims to optimize spray droplets for better adhesion and coverage, thus enhancing crop protection and reducing environmental impact."", - ""productDescription"": ""The core product is the MagrowTec Boom Kit, powered by patented Magnetic Assist Spray Technology for retrofitting onto tractor booms. The system components include manifolds and RODs of various sizes and weights designed to increase spray coverage and reduce chemical drift."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative precision spray application systems to enhance crop protection and yield."", - ""geographicFocus"": ""HQ: Orchard House, Block 2, Clonskeagh Square, Clonskeagh road, Dublin 14, Ireland; Sales Focus: Global markets implied with no specific regions detailed."", - ""keyExecutives"": [ - {""name"": ""Gary Wickham"", ""title"": ""Founder and Chief Executive Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Mel Hurley"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Prof. Anthony Furness"", ""title"": ""Chief Scientific Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Frederic Dupont"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Peter Robertson"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories or customer profile were not explicitly detailed on the website. No downloadable linked documents such as PDFs found."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""http://maggrow.com/"", - ""productDescription"": ""https://maggrow.com/product/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://maggrow.com/contact/"", - ""keyExecutives"": ""https://magrowtec.com/our-management-team"" - } -}","{ - ""websiteURL"": ""http://maggrow.com/"", - ""companyDescription"": ""MagrowTec is a company focused on improving agricultural spray applications through its patented Magnetic Assist Spray Technology, which significantly reduces chemical drift by at least 70% and improves coverage by 20% or more. The company's mission and vision are centered on revolutionizing crop spraying to be more efficient, sustainable, and cost-effective, ultimately improving crop yields and reducing chemical wastage. The MagrowTec system can be added to any sprayer without major modifications and is validated by multiple trusted university studies. It aims to optimize spray droplets for better adhesion and coverage, thus enhancing crop protection and reducing environmental impact."", - ""productDescription"": ""The core product is the MagrowTec Boom Kit, powered by patented Magnetic Assist Spray Technology for retrofitting onto tractor booms. The system components include manifolds and RODs of various sizes and weights designed to increase spray coverage and reduce chemical drift."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the agricultural technology sector, providing innovative precision spray application systems to enhance crop protection and yield."", - ""geographicFocus"": ""HQ: Orchard House, Block 2, Clonskeagh Square, Clonskeagh road, Dublin 14, Ireland; Sales Focus: Global markets implied with no specific regions detailed."", - ""keyExecutives"": [ - {""name"": ""Gary Wickham"", ""title"": ""Founder and Chief Executive Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Mel Hurley"", ""title"": ""Chief Financial Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Prof. Anthony Furness"", ""title"": ""Chief Scientific Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Frederic Dupont"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""}, - {""name"": ""Peter Robertson"", ""title"": ""Chief Technology Officer"", ""sourceUrl"": ""https://magrowtec.com/our-management-team""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Client categories or customer profile were not explicitly detailed on the website. No downloadable linked documents such as PDFs found."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""http://maggrow.com/"", - ""productDescription"": ""https://maggrow.com/product/"", - ""clientCategories"": ""Not Available"", - ""geographicFocus"": ""https://maggrow.com/contact/"", - ""keyExecutives"": ""https://magrowtec.com/our-management-team"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://magrowtec.com"", - ""companyDescription"": ""MagrowTec is an Irish deep technology company focused on revolutionizing agricultural spray applications using its patented Magnetic Assist Spray Technology. This innovation significantly reduces chemical drift by at least 70% and enhances spray coverage by 20% or more, improving crop protection, reducing chemical wastage, and promoting sustainable farming globally. Their solution can retrofit onto existing sprayers without major modifications, supported by multiple university validations, aiming to optimize spray droplets for better adhesion and environmental impact reduction."", - ""productDescription"": ""MagrowTec's core product, the MagrowTec Boom Kit, employs patented Magnetic Assist Spray Technology for retrofit on tractor booms. Comprising manifolds and variously sized and weighted RODs, the system improves spray coverage and canopy penetration while drastically reducing chemical drift, enabling farmers to spray crops more efficiently, with less waste and lower environmental impact."", - ""clientCategories"": [ - ""Farmers"", - ""Agricultural Technology Providers"", - ""Crop Protection Specialists"", - ""Agricultural Contractors"", - ""Precision Agriculture Operators"" - ], - ""sectorDescription"": ""Agricultural technology company specializing in precision spray application systems to enhance crop protection and yield while reducing environmental impact."", - ""geographicFocus"": ""Headquartered in Dublin, Ireland, MagrowTec operates with a global sales focus, actively expanding its footprint in markets including Europe, North America, and Australia."", - ""keyExecutives"": [ - { - ""name"": ""Gary Wickham"", - ""title"": ""Founder and Chief Executive Officer"", - ""sourceUrl"": ""https://magrowtec.com/our-management-team"" - }, - { - ""name"": ""Mel Hurley"", - ""title"": ""Chief Financial Officer"", - ""sourceUrl"": ""https://magrowtec.com/our-management-team"" - }, - { - ""name"": ""Prof. Anthony Furness"", - ""title"": ""Chief Scientific Officer"", - ""sourceUrl"": ""https://magrowtec.com/our-management-team"" - }, - { - ""name"": ""Frederic Dupont"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://magrowtec.com/our-management-team"" - }, - { - ""name"": ""Peter Robertson"", - ""title"": ""Chief Technology Officer"", - ""sourceUrl"": ""https://magrowtec.com/our-management-team"" - } - ], - ""researcherNotes"": ""The company profile was corroborated through its official website and LinkedIn. The geographic focus is inferred to be global based on sales discussions and participation in international programs, though specific regional markets include Europe, the US, and Australia. Client categories were not explicitly listed on the website but logically inferred from the agricultural sector and product use cases. Key executive names and titles are consistent between the company site and LinkedIn profiles."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""http://maggrow.com/"", - ""productDescription"": ""https://magrowtec.com/product/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://magrowtec.com/contact/"", - ""keyExecutives"": ""https://magrowtec.com/our-management-team"" - } -}","{""clientCategories"":[""Farmers"",""Agricultural Technology Providers"",""Crop Protection Specialists"",""Agricultural Contractors"",""Precision Agriculture Operators""],""companyDescription"":""MagrowTec is an Irish deep technology company focused on revolutionizing agricultural spray applications using its patented Magnetic Assist Spray Technology. This innovation significantly reduces chemical drift by at least 70% and enhances spray coverage by 20% or more, improving crop protection, reducing chemical wastage, and promoting sustainable farming globally. Their solution can retrofit onto existing sprayers without major modifications, supported by multiple university validations, aiming to optimize spray droplets for better adhesion and environmental impact reduction."",""geographicFocus"":""Headquartered in Dublin, Ireland, MagrowTec operates with a global sales focus, actively expanding its footprint in markets including Europe, North America, and Australia."",""keyExecutives"":[{""name"":""Gary Wickham"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Founder and Chief Executive Officer""},{""name"":""Mel Hurley"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Financial Officer""},{""name"":""Prof. Anthony Furness"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Scientific Officer""},{""name"":""Frederic Dupont"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Operating Officer""},{""name"":""Peter Robertson"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Technology Officer""}],""missingImportantFields"":[],""productDescription"":""MagrowTec's core product, the MagrowTec Boom Kit, employs patented Magnetic Assist Spray Technology for retrofit on tractor booms. Comprising manifolds and variously sized and weighted RODs, the system improves spray coverage and canopy penetration while drastically reducing chemical drift, enabling farmers to spray crops more efficiently, with less waste and lower environmental impact."",""researcherNotes"":""The company profile was corroborated through its official website and LinkedIn. The geographic focus is inferred to be global based on sales discussions and participation in international programs, though specific regional markets include Europe, the US, and Australia. Client categories were not explicitly listed on the website but logically inferred from the agricultural sector and product use cases. Key executive names and titles are consistent between the company site and LinkedIn profiles."",""sectorDescription"":""Agricultural technology company specializing in precision spray application systems to enhance crop protection and yield while reducing environmental impact."",""sources"":{""clientCategories"":null,""companyDescription"":""http://maggrow.com/"",""geographicFocus"":""https://magrowtec.com/contact/"",""keyExecutives"":""https://magrowtec.com/our-management-team"",""productDescription"":""https://magrowtec.com/product/""},""websiteURL"":""https://magrowtec.com""}","Correctness: 98% Completeness: 95% The profile of MagrowTec is highly accurate and well-supported by multiple official and authoritative sources, including the company's own website and collaborations with academic institutions like Trinity College Dublin/AMBER Centre. MagrowTec is indeed an Irish deep technology company headquartered in Dublin, specializing in patented Magnetic Assist Spray Technology that reduces chemical drift by about 70% and improves spray coverage by at least 20%[1][2][4]. Their core product, the MagrowTec Boom Kit, retrofits onto existing sprayers without major modifications and operates without power or moving parts, consistent across sources[1][3][4]. Key executives named (Gary Wickham as CEO, Mel Hurley CFO, Prof. Anthony Furness CSO, Frederic Dupont COO, Peter Robertson CTO) match the information on the official management team page[https://magrowtec.com/our-management-team]. The global sales focus including Europe, North America, and Australia also aligns with stated market activities and international research studies[2]. Minor variation exists in reported drift reduction figures (70% vs. 97.5% certified claim) and coverage improvement (20-40%), reflecting different test conditions but these do not undermine core claims[1][3][4]. Client categories were logically inferred but consistent with expected agricultural stakeholders. No major omissions such as funding or recent leadership changes were noted from available recent sources including a video from August 2025[5]. Thus, correctness is near complete, and completeness is high given all critical company and product details are present. -Sources: https://magrowtec.com/magrowtec-boom-kit/, https://ambercentre.ie/researchers-utilise-magnetic-assist-technology-to-innovate-crop-spray-technology-for-sustainable-farming-magrowtec-amber-announce-5th-collaboration/, https://agtechireland.ie/members/magrow-tec/, https://magrowtec.com/our-management-team, https://www.youtube.com/watch?v=HDAZkp3i0Ac","{""clientCategories"":[],""companyDescription"":""MagrowTec is a company focused on improving agricultural spray applications through its patented Magnetic Assist Spray Technology, which significantly reduces chemical drift by at least 70% and improves coverage by 20% or more. The company's mission and vision are centered on revolutionizing crop spraying to be more efficient, sustainable, and cost-effective, ultimately improving crop yields and reducing chemical wastage. The MagrowTec system can be added to any sprayer without major modifications and is validated by multiple trusted university studies. It aims to optimize spray droplets for better adhesion and coverage, thus enhancing crop protection and reducing environmental impact."",""geographicFocus"":""HQ: Orchard House, Block 2, Clonskeagh Square, Clonskeagh road, Dublin 14, Ireland; Sales Focus: Global markets implied with no specific regions detailed."",""keyExecutives"":[{""name"":""Gary Wickham"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Founder and Chief Executive Officer""},{""name"":""Mel Hurley"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Financial Officer""},{""name"":""Prof. Anthony Furness"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Scientific Officer""},{""name"":""Frederic Dupont"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Operating Officer""},{""name"":""Peter Robertson"",""sourceUrl"":""https://magrowtec.com/our-management-team"",""title"":""Chief Technology Officer""}],""linkedDocuments"":[],""missingImportantFields"":[""clientCategories""],""productDescription"":""The core product is the MagrowTec Boom Kit, powered by patented Magnetic Assist Spray Technology for retrofitting onto tractor booms. The system components include manifolds and RODs of various sizes and weights designed to increase spray coverage and reduce chemical drift."",""researcherNotes"":""Client categories or customer profile were not explicitly detailed on the website. No downloadable linked documents such as PDFs found."",""sectorDescription"":""Operates in the agricultural technology sector, providing innovative precision spray application systems to enhance crop protection and yield."",""sources"":{""clientCategories"":""Not Available"",""companyDescription"":""http://maggrow.com/"",""geographicFocus"":""https://maggrow.com/contact/"",""keyExecutives"":""https://magrowtec.com/our-management-team"",""productDescription"":""https://maggrow.com/product/""},""websiteURL"":""http://maggrow.com/""}" -Agronutris,https://www.agronutris.com/en/,"Bertrand Jelensperger, Bpifrance, Mirova, Nutergia Laboratory",agronutris.com,https://www.linkedin.com/company/agronutris/,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.agronutris.com/en/"", - ""companyDescription"": ""Agronutris is a French biotechnology company specialized in rearing and processing black soldier fly larvae into proteins for food. It has over 12 years of R&D and focuses on sustainable solutions for animal feed and soil nourishment. The company is mission-driven since 2021 with four main commitments: developing innovative, sustainable agri-food industry alternatives; building a fair business model centered on people; creating sustainable, transparent partnerships; and implementing a circular economic model focusing on energy consumption, recovery of co-products, by-products, and food waste. Agronutris offers employees a collective adventure with shared governance, placing people at the heart of its project. Its organization is designed as a democratic, neural, and agile project-based system focusing on individual and collective fulfillment. Mission: To create a sustainable world fed and preserved through bioconversion. Vision: Develop a fair and sustainable food supply chain based on trust with partners in a human-centered adventure. Values: Trust, Freedom, Collaboration, Accountability, Have Fun, Environmental Awareness. Founded in 2011, the company shifted focus from human food to animal feed, launched its first industrial production site in Rethel in 2022, secured major partnerships in 2023, and obtained B Corp™ and GMP+ certifications in 2024."", - ""productDescription"": ""Agronutris offers innovative and sustainable products for animal feed and soil in three markets: Aquaculture, Petfood, and Agriculture. Their core offerings include:\n- Ultra'in: a protein-rich insect meal made from dehydrated and defatted black soldier fly larvae, used as a sustainable alternative to fishmeal in aquaculture and suitable for pet nutrition.\n- Liboost: a lipid concentrate rich in lauric acid from larvae defatting, offering natural antimicrobial benefits for pet health.\n- Fairtil: an organic fertilizer made from black soldier fly larvae feces, rich in nitrogen, phosphorus, and potassium, suitable for organic farming."", - ""clientCategories"": [""Aquaculture"", ""Petfood"", ""Agriculture""], - ""sectorDescription"": ""Operates in the biotech sector, specializing in insect protein production from black soldier fly larvae for sustainable animal nutrition and soil fertilization."", - ""geographicFocus"": ""HQ: 18, rue du Négoce, 31650 Saint-Orens-de-Gameville, France; Sales Focus: Aquaculture, Petfood, Agriculture markets, primarily in Europe."", - ""keyExecutives"": [ - {""name"": ""Cédric AURIOL"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://agronutris.com/en/about/""}, - {""name"": ""Mehdi BERRADA"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://agronutris.com/en/about/""} - ], - ""linkedDocuments"": [ - ""https://agronutris.com/en/newsroom/press-kit"", - ""https://agronutris.com/wp-content/uploads/2024/07/mission-driven-company-report-2023.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agronutris.com/en/about/"", - ""productDescription"": ""https://agronutris.com/en/our-products/"", - ""clientCategories"": ""https://agronutris.com/en/"", - ""geographicFocus"": ""https://agronutris.com/en/contact-en/"", - ""keyExecutives"": ""https://agronutris.com/en/about/"" - } -}","{ - ""websiteURL"": ""https://www.agronutris.com/en/"", - ""companyDescription"": ""Agronutris is a French biotechnology company specialized in rearing and processing black soldier fly larvae into proteins for food. It has over 12 years of R&D and focuses on sustainable solutions for animal feed and soil nourishment. The company is mission-driven since 2021 with four main commitments: developing innovative, sustainable agri-food industry alternatives; building a fair business model centered on people; creating sustainable, transparent partnerships; and implementing a circular economic model focusing on energy consumption, recovery of co-products, by-products, and food waste. Agronutris offers employees a collective adventure with shared governance, placing people at the heart of its project. Its organization is designed as a democratic, neural, and agile project-based system focusing on individual and collective fulfillment. Mission: To create a sustainable world fed and preserved through bioconversion. Vision: Develop a fair and sustainable food supply chain based on trust with partners in a human-centered adventure. Values: Trust, Freedom, Collaboration, Accountability, Have Fun, Environmental Awareness. Founded in 2011, the company shifted focus from human food to animal feed, launched its first industrial production site in Rethel in 2022, secured major partnerships in 2023, and obtained B Corp™ and GMP+ certifications in 2024."", - ""productDescription"": ""Agronutris offers innovative and sustainable products for animal feed and soil in three markets: Aquaculture, Petfood, and Agriculture. Their core offerings include:\n- Ultra'in: a protein-rich insect meal made from dehydrated and defatted black soldier fly larvae, used as a sustainable alternative to fishmeal in aquaculture and suitable for pet nutrition.\n- Liboost: a lipid concentrate rich in lauric acid from larvae defatting, offering natural antimicrobial benefits for pet health.\n- Fairtil: an organic fertilizer made from black soldier fly larvae feces, rich in nitrogen, phosphorus, and potassium, suitable for organic farming."", - ""clientCategories"": [""Aquaculture"", ""Petfood"", ""Agriculture""], - ""sectorDescription"": ""Operates in the biotech sector, specializing in insect protein production from black soldier fly larvae for sustainable animal nutrition and soil fertilization."", - ""geographicFocus"": ""HQ: 18, rue du Négoce, 31650 Saint-Orens-de-Gameville, France; Sales Focus: Aquaculture, Petfood, Agriculture markets, primarily in Europe."", - ""keyExecutives"": [ - {""name"": ""Cédric AURIOL"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://agronutris.com/en/about/""}, - {""name"": ""Mehdi BERRADA"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://agronutris.com/en/about/""} - ], - ""linkedDocuments"": [ - ""https://agronutris.com/en/newsroom/press-kit"", - ""https://agronutris.com/wp-content/uploads/2024/07/mission-driven-company-report-2023.pdf"" - ], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agronutris.com/en/about/"", - ""productDescription"": ""https://agronutris.com/en/our-products/"", - ""clientCategories"": ""https://agronutris.com/en/"", - ""geographicFocus"": ""https://agronutris.com/en/contact-en/"", - ""keyExecutives"": ""https://agronutris.com/en/about/"" - } -}",[],"{ - ""websiteURL"": ""https://www.agronutris.com/en/"", - ""companyDescription"": ""Agronutris is a French biotechnology company specializing in breeding and processing black soldier fly larvae into high-quality proteins for animal feed and soil nourishment. Founded in 2011, the company has over 12 years of R&D expertise and focuses on sustainable, circular economy solutions for the aquaculture, petfood, and agriculture sectors. Its mission is to create a sustainable world fed and preserved through bioconversion, guided by values such as trust, freedom, collaboration, accountability, and environmental awareness. Agronutris operates with a democratic and agile organizational model centered on people and shared governance. It opened its first industrial production site in Rethel in 2022 and secured major partnerships in 2023 while earning B Corp™ and GMP+ certifications in 2024."", - ""productDescription"": ""Agronutris offers sustainable products for animal feed and soil nourishment in aquaculture, petfood, and agriculture. Its main products include Ultra'in, a protein-rich insect meal made from dehydrated and defatted black soldier fly larvae serving as a sustainable fishmeal alternative; Liboost, a lauric acid–rich lipid concentrate from larvae defatting with natural antimicrobial properties for pet health; and Fairtil, an organic fertilizer derived from black soldier fly larvae feces, rich in nitrogen, phosphorus, and potassium, suitable for organic farming."", - ""clientCategories"": [ - ""Aquaculture"", - ""Petfood"", - ""Agriculture"" - ], - ""sectorDescription"": ""Biotechnology company specializing in insect protein production from black soldier fly larvae for sustainable animal nutrition and soil fertilization."", - ""geographicFocus"": ""Headquartered in Saint-Orens-de-Gameville, France, Agronutris primarily serves markets in Europe across aquaculture, petfood, and agriculture sectors."", - ""keyExecutives"": [ - { - ""name"": ""Cédric AURIOL"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agronutris.com/en/about/"" - }, - { - ""name"": ""Mehdi BERRADA"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://agronutris.com/en/about/"" - } - ], - ""researcherNotes"": ""Entity disambiguation confirmed by website domain, HQ city in France, and founding year 2011. No senior leadership names beyond co-founders publicly available on LinkedIn or official sources. Geographic footprint limited to Europe as indicated on the company site. The company is currently undergoing a safeguard procedure since early 2025 due to financial restructuring while maintaining production operations. No critical missing fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://agronutris.com/en/about/"", - ""productDescription"": ""https://agronutris.com/en/our-products/"", - ""clientCategories"": ""https://agronutris.com/en/"", - ""geographicFocus"": ""https://agronutris.com/en/contact-en/"", - ""keyExecutives"": ""https://agronutris.com/en/about/"" - } -}","{""clientCategories"":[""Aquaculture"",""Petfood"",""Agriculture""],""companyDescription"":""Agronutris is a French biotechnology company specializing in breeding and processing black soldier fly larvae into high-quality proteins for animal feed and soil nourishment. Founded in 2011, the company has over 12 years of R&D expertise and focuses on sustainable, circular economy solutions for the aquaculture, petfood, and agriculture sectors. Its mission is to create a sustainable world fed and preserved through bioconversion, guided by values such as trust, freedom, collaboration, accountability, and environmental awareness. Agronutris operates with a democratic and agile organizational model centered on people and shared governance. It opened its first industrial production site in Rethel in 2022 and secured major partnerships in 2023 while earning B Corp™ and GMP+ certifications in 2024."",""geographicFocus"":""Headquartered in Saint-Orens-de-Gameville, France, Agronutris primarily serves markets in Europe across aquaculture, petfood, and agriculture sectors."",""keyExecutives"":[{""name"":""Cédric AURIOL"",""sourceUrl"":""https://agronutris.com/en/about/"",""title"":""Co-founder""},{""name"":""Mehdi BERRADA"",""sourceUrl"":""https://agronutris.com/en/about/"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""Agronutris offers sustainable products for animal feed and soil nourishment in aquaculture, petfood, and agriculture. Its main products include Ultra'in, a protein-rich insect meal made from dehydrated and defatted black soldier fly larvae serving as a sustainable fishmeal alternative; Liboost, a lauric acid–rich lipid concentrate from larvae defatting with natural antimicrobial properties for pet health; and Fairtil, an organic fertilizer derived from black soldier fly larvae feces, rich in nitrogen, phosphorus, and potassium, suitable for organic farming."",""researcherNotes"":""Entity disambiguation confirmed by website domain, HQ city in France, and founding year 2011. No senior leadership names beyond co-founders publicly available on LinkedIn or official sources. Geographic footprint limited to Europe as indicated on the company site. The company is currently undergoing a safeguard procedure since early 2025 due to financial restructuring while maintaining production operations. No critical missing fields remain."",""sectorDescription"":""Biotechnology company specializing in insect protein production from black soldier fly larvae for sustainable animal nutrition and soil fertilization."",""sources"":{""clientCategories"":""https://agronutris.com/en/"",""companyDescription"":""https://agronutris.com/en/about/"",""geographicFocus"":""https://agronutris.com/en/contact-en/"",""keyExecutives"":""https://agronutris.com/en/about/"",""productDescription"":""https://agronutris.com/en/our-products/""},""websiteURL"":""https://www.agronutris.com/en/""}","Correctness: 95% Completeness: 95% The provided information about Agronutris is largely accurate and well-supported by multiple reputable sources. Agronutris is indeed a French biotechnology company founded in 2011 with expertise in black soldier fly larvae protein production for animal feed and soil nourishment, focusing on sustainable, circular economy solutions in aquaculture, petfood, and agriculture sectors[1][2]. The headquarters in Saint-Orens-de-Gameville, France, and the industrial production site in Rethel opened in 2022 are confirmed[2][5]. The leadership listing Cédric AURIOL and Mehdi BERRADA as co-founders matches the company website data[1]. The product descriptions—Ultra'in insect protein meal, Liboost lipid concentrate with lauric acid, and Fairtil organic fertilizer—align with offerings detailed on the official site[1]. The company’s recent financial difficulties and safeguard procedure initiated in early 2025 for restructuring without affecting production support the claim about ongoing operations despite challenges[2][3]. The only minor deduction arises from the absence of more granular leadership details beyond co-founders and slight lack of explicit mention of B Corp™ and GMP+ certifications in public secondary sources at this moment, though these certifications are plausible given the company profile. The geographic focus on European markets is corroborated by the company contact pages and news[2]. Overall, the statement is comprehensive and verifiable across multiple official and industry sources. https://agronutris.com/en/about/ https://www.petfoodindustry.com/insect-based-cat-and-dog-food/news/15736946/insect-ag-startup-agronutris-files-safeguard-plan https://leadiq.com/c/agronutris/6213a8640f6952540d5550ae https://www.agronutris.com/en/agronutris-confirms-its-move-to-industrial-scale-with-the-inauguration-of-its-first-factory/","{""clientCategories"":[""Aquaculture"",""Petfood"",""Agriculture""],""companyDescription"":""Agronutris is a French biotechnology company specialized in rearing and processing black soldier fly larvae into proteins for food. It has over 12 years of R&D and focuses on sustainable solutions for animal feed and soil nourishment. The company is mission-driven since 2021 with four main commitments: developing innovative, sustainable agri-food industry alternatives; building a fair business model centered on people; creating sustainable, transparent partnerships; and implementing a circular economic model focusing on energy consumption, recovery of co-products, by-products, and food waste. Agronutris offers employees a collective adventure with shared governance, placing people at the heart of its project. Its organization is designed as a democratic, neural, and agile project-based system focusing on individual and collective fulfillment. Mission: To create a sustainable world fed and preserved through bioconversion. Vision: Develop a fair and sustainable food supply chain based on trust with partners in a human-centered adventure. Values: Trust, Freedom, Collaboration, Accountability, Have Fun, Environmental Awareness. Founded in 2011, the company shifted focus from human food to animal feed, launched its first industrial production site in Rethel in 2022, secured major partnerships in 2023, and obtained B Corp™ and GMP+ certifications in 2024."",""geographicFocus"":""HQ: 18, rue du Négoce, 31650 Saint-Orens-de-Gameville, France; Sales Focus: Aquaculture, Petfood, Agriculture markets, primarily in Europe."",""keyExecutives"":[{""name"":""Cédric AURIOL"",""sourceUrl"":""https://agronutris.com/en/about/"",""title"":""Co-founder""},{""name"":""Mehdi BERRADA"",""sourceUrl"":""https://agronutris.com/en/about/"",""title"":""Co-founder""}],""linkedDocuments"":[""https://agronutris.com/en/newsroom/press-kit"",""https://agronutris.com/wp-content/uploads/2024/07/mission-driven-company-report-2023.pdf""],""missingImportantFields"":[],""productDescription"":""Agronutris offers innovative and sustainable products for animal feed and soil in three markets: Aquaculture, Petfood, and Agriculture. Their core offerings include:\n- Ultra'in: a protein-rich insect meal made from dehydrated and defatted black soldier fly larvae, used as a sustainable alternative to fishmeal in aquaculture and suitable for pet nutrition.\n- Liboost: a lipid concentrate rich in lauric acid from larvae defatting, offering natural antimicrobial benefits for pet health.\n- Fairtil: an organic fertilizer made from black soldier fly larvae feces, rich in nitrogen, phosphorus, and potassium, suitable for organic farming."",""researcherNotes"":null,""sectorDescription"":""Operates in the biotech sector, specializing in insect protein production from black soldier fly larvae for sustainable animal nutrition and soil fertilization."",""sources"":{""clientCategories"":""https://agronutris.com/en/"",""companyDescription"":""https://agronutris.com/en/about/"",""geographicFocus"":""https://agronutris.com/en/contact-en/"",""keyExecutives"":""https://agronutris.com/en/about/"",""productDescription"":""https://agronutris.com/en/our-products/""},""websiteURL"":""https://www.agronutris.com/en/""}" -Roslin Technologies,https://roslintech.com,Ayala Corporation,roslintech.com,https://www.linkedin.com/company/roslin-technologies,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://roslintech.com"", - ""companyDescription"": ""To unlock the power of animal stem cells for a more sustainable food system and provide access to affordable, nutritious, and sustainably produced protein through innovative biotechnologies for cultivated meat. Roslin Technologies develops high-quality pluripotent animal stem cells for cultivated meat production, including beef, pork, lamb, and seafood in development. The company offers cell lines, characterisation data, growth media, scale-up and differentiation protocols, and food safety data to support regulatory submissions."", - ""productDescription"": ""Roslin Technologies offers advanced cell line solutions for cultivated meat, including animal stem cells: iPSCs (induced pluripotent stem cells) and ESCs (embryo-derived stem cells). Their core products include Porcine iPSC, Bovine ESC, Ovine iPSC, Ovine ESC (all available now), with Bovine iPSC and various Salmon cell types in development. Services include robust scale-up packages with food-safe culture media, scalable bioprocesses, differentiation protocols, and tailored support such as in-person training, continuous improvements, and regulatory dossier data. They provide characterization and cell banking ensuring genetic stability, sterility, and food safety, along with protocols and technical transfer for large-scale biomanufacturing."", - ""clientCategories"": [""Cultivated Meat Startups"", ""Large Global Food Companies""], - ""sectorDescription"": ""Operates in the biotechnology sector focused on animal stem cells and cultivated meat production for sustainable food systems."", - ""geographicFocus"": ""HQ: Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian EH25 9RG, United Kingdom; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Ernst Van Orsouw"", ""title"": ""CEO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-176""}, - {""name"": ""Deepika Rajesh"", ""title"": ""CSO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-177""}, - {""name"": ""Tom Phillips"", ""title"": ""CCO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-178""}, - {""name"": ""John Clinkenbeard"", ""title"": ""COO/CFO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-179""}, - {""name"": ""Britt Tye"", ""title"": ""VP Quality"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-180""}, - {""name"": ""Jef Pinxteren"", ""title"": ""VP Development"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-181""}, - {""name"": ""Joe Mee"", ""title"": ""VP Cell Innovation"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-182""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Sales regions not explicitly mentioned on the website; only headquarters location found."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://roslintech.com/"", - ""productDescription"": ""https://roslintech.com/our-cells/"", - ""clientCategories"": ""https://www.roslintech.com/our-cells/"", - ""geographicFocus"": ""https://www.roslintech.com/contact/"", - ""keyExecutives"": ""https://roslintech.com/our-team/"" - } -}","{ - ""websiteURL"": ""https://roslintech.com"", - ""companyDescription"": ""To unlock the power of animal stem cells for a more sustainable food system and provide access to affordable, nutritious, and sustainably produced protein through innovative biotechnologies for cultivated meat. Roslin Technologies develops high-quality pluripotent animal stem cells for cultivated meat production, including beef, pork, lamb, and seafood in development. The company offers cell lines, characterisation data, growth media, scale-up and differentiation protocols, and food safety data to support regulatory submissions."", - ""productDescription"": ""Roslin Technologies offers advanced cell line solutions for cultivated meat, including animal stem cells: iPSCs (induced pluripotent stem cells) and ESCs (embryo-derived stem cells). Their core products include Porcine iPSC, Bovine ESC, Ovine iPSC, Ovine ESC (all available now), with Bovine iPSC and various Salmon cell types in development. Services include robust scale-up packages with food-safe culture media, scalable bioprocesses, differentiation protocols, and tailored support such as in-person training, continuous improvements, and regulatory dossier data. They provide characterization and cell banking ensuring genetic stability, sterility, and food safety, along with protocols and technical transfer for large-scale biomanufacturing."", - ""clientCategories"": [""Cultivated Meat Startups"", ""Large Global Food Companies""], - ""sectorDescription"": ""Operates in the biotechnology sector focused on animal stem cells and cultivated meat production for sustainable food systems."", - ""geographicFocus"": ""HQ: Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian EH25 9RG, United Kingdom; Sales Focus: Not Available"", - ""keyExecutives"": [ - {""name"": ""Ernst Van Orsouw"", ""title"": ""CEO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-176""}, - {""name"": ""Deepika Rajesh"", ""title"": ""CSO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-177""}, - {""name"": ""Tom Phillips"", ""title"": ""CCO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-178""}, - {""name"": ""John Clinkenbeard"", ""title"": ""COO/CFO"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-179""}, - {""name"": ""Britt Tye"", ""title"": ""VP Quality"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-180""}, - {""name"": ""Jef Pinxteren"", ""title"": ""VP Development"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-181""}, - {""name"": ""Joe Mee"", ""title"": ""VP Cell Innovation"", ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-182""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""Sales regions not explicitly mentioned on the website; only headquarters location found."", - ""missingImportantFields"": [""geographicFocus""], - ""sources"": { - ""companyDescription"": ""https://roslintech.com/"", - ""productDescription"": ""https://roslintech.com/our-cells/"", - ""clientCategories"": ""https://www.roslintech.com/our-cells/"", - ""geographicFocus"": ""https://www.roslintech.com/contact/"", - ""keyExecutives"": ""https://roslintech.com/our-team/"" - } -}","[""geographicFocus""]","{ - ""websiteURL"": ""https://roslintech.com"", - ""companyDescription"": ""Roslin Technologies is a life sciences company based in Scotland that develops and commercialises high-quality pluripotent animal stem cells to enable a more sustainable food system through cultivated meat production. Founded in 2017 as a spin-out from the University of Edinburgh's Roslin Institute, the company focuses on providing innovative biotechnologies for cultivated meat including beef, pork, lamb, and seafood, targeting cultivated meat startups and large global food companies. Their expertise builds on pioneering stem cell research, aiming to improve animal welfare, reduce environmental impact of meat production, and support regulatory approvals for cultivated meat products."", - ""productDescription"": ""Roslin Technologies develops advanced animal stem cell lines such as iPSCs (induced pluripotent stem cells) and ESCs (embryo-derived stem cells) for cultivated meat production. Available products include Porcine iPSC, Bovine ESC, Ovine iPSC, and Ovine ESC, with Bovine iPSC and Salmon cell lines in development. They offer comprehensive services including scale-up packages, food-safe culture media, scalable bioprocesses, differentiation protocols, and regulatory dossier data. Their offerings ensure genetic stability, sterility, and food safety, supported by cell banking, characterization, protocol development, and technical transfer to enable large-scale biomanufacturing."", - ""clientCategories"": [ - ""Cultivated Meat Startups"", - ""Large Global Food Companies"" - ], - ""sectorDescription"": ""Biotechnology sector focused on developing and commercialising animal stem cells for cultivated meat to create sustainable food systems."", - ""geographicFocus"": ""Roslin Technologies, headquartered at the Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian, United Kingdom, currently serves customers and partners globally including North America, Latin America, Europe, Asia, and the Middle East."", - ""keyExecutives"": [ - { - ""name"": ""Ernst Van Orsouw"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-176"" - }, - { - ""name"": ""Deepika Rajesh"", - ""title"": ""CSO"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-177"" - }, - { - ""name"": ""Tom Phillips"", - ""title"": ""CCO"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-178"" - }, - { - ""name"": ""John Clinkenbeard"", - ""title"": ""COO/CFO"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-179"" - }, - { - ""name"": ""Britt Tye"", - ""title"": ""VP Quality"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-180"" - }, - { - ""name"": ""Jef Pinxteren"", - ""title"": ""VP Development"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-181"" - }, - { - ""name"": ""Joe Mee"", - ""title"": ""VP Cell Innovation"", - ""sourceUrl"": ""https://roslintech.com/our-team#leadership-popup-182"" - } - ], - ""researcherNotes"": ""The geographic focus was not explicitly detailed on Roslin Technologies' website, but corroborated external sources indicate a global customer base spanning North America, Latin America, Europe, Asia, and the Middle East. The registered headquarters is at the Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian, UK. No conflicting information was found regarding company identity or leadership. The company was incorporated in 2016 and spun out officially in 2017 from the Roslin Institute."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://roslintech.com/"", - ""productDescription"": ""https://roslintech.com/our-cells/"", - ""clientCategories"": ""https://www.roslintech.com/our-cells/"", - ""geographicFocus"": ""https://www.bioindustry.org/member/roslin-technologies-ltd/"", - ""keyExecutives"": ""https://roslintech.com/our-team/"" - } -}","{""clientCategories"":[""Cultivated Meat Startups"",""Large Global Food Companies""],""companyDescription"":""Roslin Technologies is a life sciences company based in Scotland that develops and commercialises high-quality pluripotent animal stem cells to enable a more sustainable food system through cultivated meat production. Founded in 2017 as a spin-out from the University of Edinburgh's Roslin Institute, the company focuses on providing innovative biotechnologies for cultivated meat including beef, pork, lamb, and seafood, targeting cultivated meat startups and large global food companies. Their expertise builds on pioneering stem cell research, aiming to improve animal welfare, reduce environmental impact of meat production, and support regulatory approvals for cultivated meat products."",""geographicFocus"":""Roslin Technologies, headquartered at the Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian, United Kingdom, currently serves customers and partners globally including North America, Latin America, Europe, Asia, and the Middle East."",""keyExecutives"":[{""name"":""Ernst Van Orsouw"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-176"",""title"":""CEO""},{""name"":""Deepika Rajesh"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-177"",""title"":""CSO""},{""name"":""Tom Phillips"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-178"",""title"":""CCO""},{""name"":""John Clinkenbeard"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-179"",""title"":""COO/CFO""},{""name"":""Britt Tye"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-180"",""title"":""VP Quality""},{""name"":""Jef Pinxteren"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-181"",""title"":""VP Development""},{""name"":""Joe Mee"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-182"",""title"":""VP Cell Innovation""}],""missingImportantFields"":[],""productDescription"":""Roslin Technologies develops advanced animal stem cell lines such as iPSCs (induced pluripotent stem cells) and ESCs (embryo-derived stem cells) for cultivated meat production. Available products include Porcine iPSC, Bovine ESC, Ovine iPSC, and Ovine ESC, with Bovine iPSC and Salmon cell lines in development. They offer comprehensive services including scale-up packages, food-safe culture media, scalable bioprocesses, differentiation protocols, and regulatory dossier data. Their offerings ensure genetic stability, sterility, and food safety, supported by cell banking, characterization, protocol development, and technical transfer to enable large-scale biomanufacturing."",""researcherNotes"":""The geographic focus was not explicitly detailed on Roslin Technologies' website, but corroborated external sources indicate a global customer base spanning North America, Latin America, Europe, Asia, and the Middle East. The registered headquarters is at the Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian, UK. No conflicting information was found regarding company identity or leadership. The company was incorporated in 2016 and spun out officially in 2017 from the Roslin Institute."",""sectorDescription"":""Biotechnology sector focused on developing and commercialising animal stem cells for cultivated meat to create sustainable food systems."",""sources"":{""clientCategories"":""https://www.roslintech.com/our-cells/"",""companyDescription"":""https://roslintech.com/"",""geographicFocus"":""https://www.bioindustry.org/member/roslin-technologies-ltd/"",""keyExecutives"":""https://roslintech.com/our-team/"",""productDescription"":""https://roslintech.com/our-cells/""},""websiteURL"":""https://roslintech.com""}","Correctness: 95% Completeness: 90% The description of Roslin Technologies as a Scottish life sciences company spun out from the Roslin Institute in 2017 that develops pluripotent animal stem cells for cultivated meat is accurate and well supported by the official company site and the BioIndustry Association member profile[4][https://www.bioindustry.org/member/roslin-technologies-ltd/],[https://roslintech.com/]. The geographic footprint including North America, Latin America, Europe, Asia, and the Middle East also matches external corroboration[4]. Leadership names and titles align with the company’s official team page[https://roslintech.com/our-team/]. The detailed product descriptions of porcine, bovine, ovine, and salmon cell lines and related services from stem cell lines through bioprocessing and regulatory support are consistent with the company’s stated product lines[https://roslintech.com/our-cells/]. The linkage to the Roslin Institute, known for Dolly the sheep cloning and based at Easter Bush, Midlothian, University of Edinburgh, is well established and accurate[3],[5]. The one minor deduction in correctness relates to the stated company incorporation timeline; it was incorporated in 2016 and officially spun out in 2017 but some sources focus mainly on the 2017 spin-out date. Completeness is slightly reduced since while core facets such as headquarters, global footprint, leadership, and products are covered, no recent funding or explicit regulatory milestones were provided—common to see in such biotech profiles and important to intensive investor or partner interest. Overall, the information is solid, current as of mid-2025, and sufficiently detailed for the company’s main attributes. -https://roslintech.com -https://www.bioindustry.org/member/roslin-technologies-ltd/ -https://roslintech.com/our-team/ -https://roslintech.com/our-cells/ -https://en.wikipedia.org/wiki/Roslin_Institute -https://www.roslininnovationcentre.com/history","{""clientCategories"":[""Cultivated Meat Startups"",""Large Global Food Companies""],""companyDescription"":""To unlock the power of animal stem cells for a more sustainable food system and provide access to affordable, nutritious, and sustainably produced protein through innovative biotechnologies for cultivated meat. Roslin Technologies develops high-quality pluripotent animal stem cells for cultivated meat production, including beef, pork, lamb, and seafood in development. The company offers cell lines, characterisation data, growth media, scale-up and differentiation protocols, and food safety data to support regulatory submissions."",""geographicFocus"":""HQ: Roslin Innovation Centre, Easter Bush Campus, University of Edinburgh, Midlothian EH25 9RG, United Kingdom; Sales Focus: Not Available"",""keyExecutives"":[{""name"":""Ernst Van Orsouw"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-176"",""title"":""CEO""},{""name"":""Deepika Rajesh"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-177"",""title"":""CSO""},{""name"":""Tom Phillips"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-178"",""title"":""CCO""},{""name"":""John Clinkenbeard"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-179"",""title"":""COO/CFO""},{""name"":""Britt Tye"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-180"",""title"":""VP Quality""},{""name"":""Jef Pinxteren"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-181"",""title"":""VP Development""},{""name"":""Joe Mee"",""sourceUrl"":""https://roslintech.com/our-team#leadership-popup-182"",""title"":""VP Cell Innovation""}],""linkedDocuments"":[],""missingImportantFields"":[""geographicFocus""],""productDescription"":""Roslin Technologies offers advanced cell line solutions for cultivated meat, including animal stem cells: iPSCs (induced pluripotent stem cells) and ESCs (embryo-derived stem cells). Their core products include Porcine iPSC, Bovine ESC, Ovine iPSC, Ovine ESC (all available now), with Bovine iPSC and various Salmon cell types in development. Services include robust scale-up packages with food-safe culture media, scalable bioprocesses, differentiation protocols, and tailored support such as in-person training, continuous improvements, and regulatory dossier data. They provide characterization and cell banking ensuring genetic stability, sterility, and food safety, along with protocols and technical transfer for large-scale biomanufacturing."",""researcherNotes"":""Sales regions not explicitly mentioned on the website; only headquarters location found."",""sectorDescription"":""Operates in the biotechnology sector focused on animal stem cells and cultivated meat production for sustainable food systems."",""sources"":{""clientCategories"":""https://www.roslintech.com/our-cells/"",""companyDescription"":""https://roslintech.com/"",""geographicFocus"":""https://www.roslintech.com/contact/"",""keyExecutives"":""https://roslintech.com/our-team/"",""productDescription"":""https://roslintech.com/our-cells/""},""websiteURL"":""https://roslintech.com""}" -La Rete,https://cooperativalarete.it/,Opes Impact Fund,cooperativalarete.it,https://www.linkedin.com/company/cooperativa-la-rete,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://cooperativalarete.it/"", - ""companyDescription"": ""La Rete is a social cooperative based in Brescia, founded in 1991. It is inspired by cooperative principles such as mutuality, solidarity, democracy, community spirit, and territorial connection. Its main vocation is inclusion in all aspects: coexistence without exclusion, combating hardship, and promoting rights. The goal is to build a welcoming and responsible community based on equity, solidarity, and legality. The cooperative works to offer opportunities to the most vulnerable, promoting their rights and using social, cooperative, and entrepreneurial visions to drive generative, inclusive projects connected to the community and territories. They invest in their members and workers, fostering cooperative culture, participation, and sustainable enterprise development. They promote culture as a tool for growth, integration, and citizenship."", - ""productDescription"": ""The cooperative offers a range of social and community-focused services including: - mental health services - poverty alleviation - housing services - integration and citizenship services - a dental clinic - Agromania (agricultural project) - Bistrò popolare (popular bistro) - Help Center and L'angolo (support services) - protected communities - protected cohabitations."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the social cooperative sector, providing inclusive social services, community support, and integration initiatives in Brescia, Italy."", - ""geographicFocus"": ""HQ: via G. Mazzucchelli 27, 25126 Brescia, Italy; Sales Focus: Brescia and local territories."", - ""keyExecutives"": [ - {""name"": ""Domenico Bizzarro"", ""title"": ""Presidente (President)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Michela Merigo"", ""title"": ""Vice Presidente (Vice President)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Alberto Gobbini"", ""title"": ""Consigliere (Board Member)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Andrea Bresciani"", ""title"": ""Consigliere (Board Member)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Lisa Giustacchini"", ""title"": ""Consigliere (Board Member)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""} - ], - ""linkedDocuments"": [ - ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2020/11/2020_Carta_del_servizio_CPM.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2021/05/171219_Modello_Parte-Generale-1.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2021/06/LARETE_Bilancio-Sociale-2020.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2024/04/03136080177-B711-832861781_20221231.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2025/06/2024_Bilancio-Sociale-La-Rete.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2020/11/Regione_Lombardia-Delibera_di_accreditamento_del_01-10-2001.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2020/11/ASL_di_Brescia-Delibera_di_autorizzazione_al_subentro_del_15-12-2011.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2025/06/Allegato_1_Registro-accessi.pdf"" - ], - ""researcherNotes"": ""No explicit client categories were found on the website or related documents."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://cooperativalarete.it/about"", - ""productDescription"": ""https://cooperativalarete.it/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://cooperativalarete.it/contatti"", - ""keyExecutives"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - } -}","{ - ""websiteURL"": ""https://cooperativalarete.it/"", - ""companyDescription"": ""La Rete is a social cooperative based in Brescia, founded in 1991. It is inspired by cooperative principles such as mutuality, solidarity, democracy, community spirit, and territorial connection. Its main vocation is inclusion in all aspects: coexistence without exclusion, combating hardship, and promoting rights. The goal is to build a welcoming and responsible community based on equity, solidarity, and legality. The cooperative works to offer opportunities to the most vulnerable, promoting their rights and using social, cooperative, and entrepreneurial visions to drive generative, inclusive projects connected to the community and territories. They invest in their members and workers, fostering cooperative culture, participation, and sustainable enterprise development. They promote culture as a tool for growth, integration, and citizenship."", - ""productDescription"": ""The cooperative offers a range of social and community-focused services including: - mental health services - poverty alleviation - housing services - integration and citizenship services - a dental clinic - Agromania (agricultural project) - Bistrò popolare (popular bistro) - Help Center and L'angolo (support services) - protected communities - protected cohabitations."", - ""clientCategories"": [], - ""sectorDescription"": ""Operates in the social cooperative sector, providing inclusive social services, community support, and integration initiatives in Brescia, Italy."", - ""geographicFocus"": ""HQ: via G. Mazzucchelli 27, 25126 Brescia, Italy; Sales Focus: Brescia and local territories."", - ""keyExecutives"": [ - {""name"": ""Domenico Bizzarro"", ""title"": ""Presidente (President)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Michela Merigo"", ""title"": ""Vice Presidente (Vice President)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Alberto Gobbini"", ""title"": ""Consigliere (Board Member)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Andrea Bresciani"", ""title"": ""Consigliere (Board Member)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""}, - {""name"": ""Lisa Giustacchini"", ""title"": ""Consigliere (Board Member)"", ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf""} - ], - ""linkedDocuments"": [ - ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2020/11/2020_Carta_del_servizio_CPM.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2021/05/171219_Modello_Parte-Generale-1.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2021/06/LARETE_Bilancio-Sociale-2020.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2024/04/03136080177-B711-832861781_20221231.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2025/06/2024_Bilancio-Sociale-La-Rete.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2020/11/Regione_Lombardia-Delibera_di_accreditamento_del_01-10-2001.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2020/11/ASL_di_Brescia-Delibera_di_autorizzazione_al_subentro_del_15-12-2011.pdf"", - ""https://cooperativalarete.it/wp-content/uploads/2025/06/Allegato_1_Registro-accessi.pdf"" - ], - ""researcherNotes"": ""No explicit client categories were found on the website or related documents."", - ""missingImportantFields"": [""clientCategories""], - ""sources"": { - ""companyDescription"": ""https://cooperativalarete.it/about"", - ""productDescription"": ""https://cooperativalarete.it/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://cooperativalarete.it/contatti"", - ""keyExecutives"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - } -}","[""clientCategories""]","{ - ""websiteURL"": ""https://cooperativalarete.it"", - ""companyDescription"": ""La Rete is a social cooperative based in Brescia, founded in 1991 shortly after Italy's Law 381 established social cooperatives. It operates under cooperative principles such as mutuality, solidarity, democracy, community spirit, and territorial connection. The cooperative’s primary mission is to promote inclusion by fostering coexistence without exclusion, combating hardship, and advocating for rights. It aims to build a welcoming, responsible community grounded in equity, solidarity, and legality, investing in its members and workers to drive inclusive and sustainable social projects tied closely to local territories."", - ""productDescription"": ""La Rete provides a variety of social and community services including mental health support, poverty alleviation, housing solutions, integration and citizenship support, a dental clinic, agricultural projects (Agromania), a popular bistro (Bistrò popolare), Help Center and L'angolo support services, and protected communities/cohabitations. These offerings target vulnerable individuals by promoting rights, well-being, and social inclusion through cooperative and entrepreneurial approaches connected to the community."", - ""clientCategories"": [], - ""sectorDescription"": ""Social cooperative sector focused on inclusive social services, community support, and integration initiatives primarily in Brescia, Italy."", - ""geographicFocus"": ""Headquartered in Brescia, Italy, with operations and sales focus primarily in Brescia and its surrounding local territories."", - ""keyExecutives"": [ - { - ""name"": ""Domenico Bizzarro"", - ""title"": ""Presidente (President)"", - ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - }, - { - ""name"": ""Michela Merigo"", - ""title"": ""Vice Presidente (Vice President)"", - ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - }, - { - ""name"": ""Alberto Gobbini"", - ""title"": ""Consigliere (Board Member)"", - ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - }, - { - ""name"": ""Andrea Bresciani"", - ""title"": ""Consigliere (Board Member)"", - ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - }, - { - ""name"": ""Lisa Giustacchini"", - ""title"": ""Consigliere (Board Member)"", - ""sourceUrl"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - } - ], - ""researcherNotes"": ""Client categories were not explicitly identified on the company website, LinkedIn, or related authoritative documents, leaving this field blank. Geographic focus is confirmed as Brescia and local territories based on contact and operational information. The entity was unambiguously confirmed as the Brescia-based social cooperative founded in 1991 via domain and leadership data. No conflicting titles or major ambiguity observed."", - ""missingImportantFields"": [ - ""clientCategories"" - ], - ""sources"": { - ""companyDescription"": ""https://cooperativalarete.it/about"", - ""productDescription"": ""https://cooperativalarete.it/"", - ""clientCategories"": null, - ""geographicFocus"": ""https://cooperativalarete.it/contatti"", - ""keyExecutives"": ""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"" - } -}","{""clientCategories"":[],""companyDescription"":""La Rete is a social cooperative based in Brescia, founded in 1991 shortly after Italy's Law 381 established social cooperatives. It operates under cooperative principles such as mutuality, solidarity, democracy, community spirit, and territorial connection. The cooperative’s primary mission is to promote inclusion by fostering coexistence without exclusion, combating hardship, and advocating for rights. It aims to build a welcoming, responsible community grounded in equity, solidarity, and legality, investing in its members and workers to drive inclusive and sustainable social projects tied closely to local territories."",""geographicFocus"":""Headquartered in Brescia, Italy, with operations and sales focus primarily in Brescia and its surrounding local territories."",""keyExecutives"":[{""name"":""Domenico Bizzarro"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Presidente (President)""},{""name"":""Michela Merigo"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Vice Presidente (Vice President)""},{""name"":""Alberto Gobbini"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Consigliere (Board Member)""},{""name"":""Andrea Bresciani"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Consigliere (Board Member)""},{""name"":""Lisa Giustacchini"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Consigliere (Board Member)""}],""missingImportantFields"":[""clientCategories""],""productDescription"":""La Rete provides a variety of social and community services including mental health support, poverty alleviation, housing solutions, integration and citizenship support, a dental clinic, agricultural projects (Agromania), a popular bistro (Bistrò popolare), Help Center and L'angolo support services, and protected communities/cohabitations. These offerings target vulnerable individuals by promoting rights, well-being, and social inclusion through cooperative and entrepreneurial approaches connected to the community."",""researcherNotes"":""Client categories were not explicitly identified on the company website, LinkedIn, or related authoritative documents, leaving this field blank. Geographic focus is confirmed as Brescia and local territories based on contact and operational information. The entity was unambiguously confirmed as the Brescia-based social cooperative founded in 1991 via domain and leadership data. No conflicting titles or major ambiguity observed."",""sectorDescription"":""Social cooperative sector focused on inclusive social services, community support, and integration initiatives primarily in Brescia, Italy."",""sources"":{""clientCategories"":null,""companyDescription"":""https://cooperativalarete.it/about"",""geographicFocus"":""https://cooperativalarete.it/contatti"",""keyExecutives"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""productDescription"":""https://cooperativalarete.it/""},""websiteURL"":""https://cooperativalarete.it""}","Correctness: 98% Completeness: 90% The description of La Rete as a social cooperative based in Brescia, founded in 1991 shortly after Italy’s Law 381 established social cooperatives, is confirmed by the cooperative’s official website and corroborated by multiple sources[1][2]. Its foundational principles—mutuality, solidarity, democracy, community spirit, and connection to territory—match the stated mission and values found on its About page[1]. The focus on social inclusion, combating hardship, and promoting rights aligns with the cooperative’s declared objectives and activities. Leadership names and titles (Presidente Domenico Bizzarro, Vice Presidente Michela Merigo, and board members Alberto Gobbini, Andrea Bresciani, Lisa Giustacchini) are explicitly documented in the cooperative’s 2023 Bilancio Sociale, confirming accuracy as of mid-2025. The described product and service offerings—including mental health support, poverty alleviation, housing, integration, a dental clinic, agricultural projects, and community spaces—match the cooperative’s website depiction, emphasizing support for vulnerable individuals and social inclusion with a local territorial connection[1]. The geographic focus on Brescia and surrounding territories is consistent with site contact details and operational scope[1]. The main area of incompleteness is the absence of explicit client category identification; despite review of official and authoritative sources, client categories were not clearly specified, which lowers completeness slightly. Overall, the data is consistent, current to 2025-06, and well-supported by official cooperative documentation, ensuring high factual correctness and thorough but not fully comprehensive completeness[1][2]. URLs: https://cooperativalarete.it/about/, https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf, https://www.nlr.plus/cooperativa-la-rete/","{""clientCategories"":[],""companyDescription"":""La Rete is a social cooperative based in Brescia, founded in 1991. It is inspired by cooperative principles such as mutuality, solidarity, democracy, community spirit, and territorial connection. Its main vocation is inclusion in all aspects: coexistence without exclusion, combating hardship, and promoting rights. The goal is to build a welcoming and responsible community based on equity, solidarity, and legality. The cooperative works to offer opportunities to the most vulnerable, promoting their rights and using social, cooperative, and entrepreneurial visions to drive generative, inclusive projects connected to the community and territories. They invest in their members and workers, fostering cooperative culture, participation, and sustainable enterprise development. They promote culture as a tool for growth, integration, and citizenship."",""geographicFocus"":""HQ: via G. Mazzucchelli 27, 25126 Brescia, Italy; Sales Focus: Brescia and local territories."",""keyExecutives"":[{""name"":""Domenico Bizzarro"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Presidente (President)""},{""name"":""Michela Merigo"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Vice Presidente (Vice President)""},{""name"":""Alberto Gobbini"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Consigliere (Board Member)""},{""name"":""Andrea Bresciani"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Consigliere (Board Member)""},{""name"":""Lisa Giustacchini"",""sourceUrl"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""title"":""Consigliere (Board Member)""}],""linkedDocuments"":[""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""https://cooperativalarete.it/wp-content/uploads/2020/11/2020_Carta_del_servizio_CPM.pdf"",""https://cooperativalarete.it/wp-content/uploads/2021/05/171219_Modello_Parte-Generale-1.pdf"",""https://cooperativalarete.it/wp-content/uploads/2021/06/LARETE_Bilancio-Sociale-2020.pdf"",""https://cooperativalarete.it/wp-content/uploads/2024/04/03136080177-B711-832861781_20221231.pdf"",""https://cooperativalarete.it/wp-content/uploads/2025/06/2024_Bilancio-Sociale-La-Rete.pdf"",""https://cooperativalarete.it/wp-content/uploads/2020/11/Regione_Lombardia-Delibera_di_accreditamento_del_01-10-2001.pdf"",""https://cooperativalarete.it/wp-content/uploads/2020/11/ASL_di_Brescia-Delibera_di_autorizzazione_al_subentro_del_15-12-2011.pdf"",""https://cooperativalarete.it/wp-content/uploads/2025/06/Allegato_1_Registro-accessi.pdf""],""missingImportantFields"":[""clientCategories""],""productDescription"":""The cooperative offers a range of social and community-focused services including: - mental health services - poverty alleviation - housing services - integration and citizenship services - a dental clinic - Agromania (agricultural project) - Bistrò popolare (popular bistro) - Help Center and L'angolo (support services) - protected communities - protected cohabitations."",""researcherNotes"":""No explicit client categories were found on the website or related documents."",""sectorDescription"":""Operates in the social cooperative sector, providing inclusive social services, community support, and integration initiatives in Brescia, Italy."",""sources"":{""clientCategories"":null,""companyDescription"":""https://cooperativalarete.it/about"",""geographicFocus"":""https://cooperativalarete.it/contatti"",""keyExecutives"":""https://cooperativalarete.it/wp-content/uploads/2025/06/2023_Bilancio-Sociale-La-Rete.pdf"",""productDescription"":""https://cooperativalarete.it/""},""websiteURL"":""https://cooperativalarete.it/""}" -Change Agronomy,https://www.changeag.com,,changeag.com,https://www.linkedin.com/company/change-agronomy,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://www.changeag.com"", - ""companyDescription"": ""Change Ag is a vertically integrated sustainable industrial hemp business combining world-class genetics with leading agronomic techniques and infrastructure to provide full-service industrial hemp products globally. Their mission is committed to a low net-zero future, aiming to become the leading sustainable low-cost producer of hemp products utilizing the whole plant. They focus on contributing to solutions for greenhouse gas emissions, waste, and pollution issues with a profitable business model that drives measurable climate change solutions. Their operations include Centres of Excellence in Manitoba for Agronomy and Genetics and an 8,000 sq. ft. GMP-compliant hemp biomass processing facility in Newton, Manitoba, supporting scalable hemp processing. They emphasize quality, sustainability, and performance in their products, epitomized by their Cranky Frank Hemp brand."", - ""productDescription"": ""Change Ag operates commercial-scale processing facilities using a Whole Plant Agronomy approach optimizing fibre, hurd, seed, and green biomass. Their diversified product streams include:\n- Fibre products\n- Hurd products\n- De-hulled seed\n- Green biomass products for animal bedding, green construction, and non-THC cannabinoid markets.\nTheir products serve multiple consumer and industrial markets focusing on sustainability and reducing petroleum dependency."", - ""clientCategories"": [""Local area farmers diversifying crops and enhancing soils"",""Companies in animal bedding, green construction, and non-THC cannabinoid markets"",""Forward-looking companies developing products for paper, plastics, auto parts"",""Participants in carbon credit markets in the US""], - ""sectorDescription"": ""Operates in the sustainable industrial hemp sector, providing whole plant agronomy, genetics, processing, and diversified hemp product solutions focused on sustainability and climate impact reduction."", - ""geographicFocus"": ""HQ: #203 - 1205 - 56th Street, Delta, BC, V4L 2A6, Canada; Additional location: Newton, Manitoba; Sales Focus: North America (including US and Canada)."", - ""keyExecutives"": [ - {""name"": ""Greg Baron"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://www.zoominfo.com/p/Greg-Baron/1180916367""}, - {""name"": ""Darren Frank"", ""title"": ""Chief Agronomy Officer"", ""sourceUrl"": ""https://ca.linkedin.com/in/darren-frank-47241a20a""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents such as PDFs or other downloadable files were found on the website or its subpages after thorough search."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.changeag.com/about"", - ""productDescription"": ""https://www.changeag.com/the-plant"", - ""clientCategories"": ""https://www.changeag.com/our-process"", - ""geographicFocus"": ""https://www.changeag.com/contact"", - ""keyExecutives"": ""https://www.zoominfo.com/p/Greg-Baron/1180916367"" - } -}","{ - ""websiteURL"": ""https://www.changeag.com"", - ""companyDescription"": ""Change Ag is a vertically integrated sustainable industrial hemp business combining world-class genetics with leading agronomic techniques and infrastructure to provide full-service industrial hemp products globally. Their mission is committed to a low net-zero future, aiming to become the leading sustainable low-cost producer of hemp products utilizing the whole plant. They focus on contributing to solutions for greenhouse gas emissions, waste, and pollution issues with a profitable business model that drives measurable climate change solutions. Their operations include Centres of Excellence in Manitoba for Agronomy and Genetics and an 8,000 sq. ft. GMP-compliant hemp biomass processing facility in Newton, Manitoba, supporting scalable hemp processing. They emphasize quality, sustainability, and performance in their products, epitomized by their Cranky Frank Hemp brand."", - ""productDescription"": ""Change Ag operates commercial-scale processing facilities using a Whole Plant Agronomy approach optimizing fibre, hurd, seed, and green biomass. Their diversified product streams include:\n- Fibre products\n- Hurd products\n- De-hulled seed\n- Green biomass products for animal bedding, green construction, and non-THC cannabinoid markets.\nTheir products serve multiple consumer and industrial markets focusing on sustainability and reducing petroleum dependency."", - ""clientCategories"": [""Local area farmers diversifying crops and enhancing soils"",""Companies in animal bedding, green construction, and non-THC cannabinoid markets"",""Forward-looking companies developing products for paper, plastics, auto parts"",""Participants in carbon credit markets in the US""], - ""sectorDescription"": ""Operates in the sustainable industrial hemp sector, providing whole plant agronomy, genetics, processing, and diversified hemp product solutions focused on sustainability and climate impact reduction."", - ""geographicFocus"": ""HQ: #203 - 1205 - 56th Street, Delta, BC, V4L 2A6, Canada; Additional location: Newton, Manitoba; Sales Focus: North America (including US and Canada)."", - ""keyExecutives"": [ - {""name"": ""Greg Baron"", ""title"": ""Chief Operating Officer"", ""sourceUrl"": ""https://www.zoominfo.com/p/Greg-Baron/1180916367""}, - {""name"": ""Darren Frank"", ""title"": ""Chief Agronomy Officer"", ""sourceUrl"": ""https://ca.linkedin.com/in/darren-frank-47241a20a""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": ""No linked documents such as PDFs or other downloadable files were found on the website or its subpages after thorough search."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.changeag.com/about"", - ""productDescription"": ""https://www.changeag.com/the-plant"", - ""clientCategories"": ""https://www.changeag.com/our-process"", - ""geographicFocus"": ""https://www.changeag.com/contact"", - ""keyExecutives"": ""https://www.zoominfo.com/p/Greg-Baron/1180916367"" - } -}",[],"{ - ""websiteURL"": ""https://www.changeag.com"", - ""companyDescription"": ""Change Ag is a vertically integrated sustainable industrial hemp business combining world-class genetics with leading agronomic techniques and infrastructure to provide full-service industrial hemp products globally. Their mission is committed to a low net-zero future, aiming to become the leading sustainable low-cost producer of hemp products utilizing the whole plant. They focus on contributing to solutions for greenhouse gas emissions, waste, and pollution issues with a profitable business model that drives measurable climate change solutions. Their operations include Centres of Excellence in Manitoba for Agronomy and Genetics and an 8,000 sq. ft. GMP-compliant hemp biomass processing facility in Newton, Manitoba, supporting scalable hemp processing. They emphasize quality, sustainability, and performance in their products, epitomized by their Cranky Frank Hemp brand."", - ""productDescription"": ""Change Ag operates commercial-scale processing facilities using a Whole Plant Agronomy approach optimizing fibre, hurd, seed, and green biomass. Their diversified product streams include fibre products, hurd products, de-hulled seed, and green biomass products for animal bedding, green construction, and non-THC cannabinoid markets. Their products serve multiple consumer and industrial markets focusing on sustainability and reducing petroleum dependency."", - ""clientCategories"": [ - ""Local Area Farmers Diversifying Crops And Enhancing Soils"", - ""Companies In Animal Bedding, Green Construction, And Non-THC Cannabinoid Markets"", - ""Forward-Looking Companies Developing Products For Paper, Plastics, Auto Parts"", - ""Participants In Carbon Credit Markets In The US"" - ], - ""sectorDescription"": ""Operates in the sustainable industrial hemp sector, providing whole plant agronomy, genetics, processing, and diversified hemp product solutions focused on sustainability and climate impact reduction."", - ""geographicFocus"": ""HQ: #203 - 1205 - 56th Street, Delta, BC, V4L 2A6, Canada; Additional location: Newton, Manitoba; Sales Focus: North America (including US and Canada)."", - ""keyExecutives"": [ - { - ""name"": ""Greg Baron"", - ""title"": ""Chief Operating Officer"", - ""sourceUrl"": ""https://www.zoominfo.com/p/Greg-Baron/1180916367"" - }, - { - ""name"": ""Darren Frank"", - ""title"": ""Chief Agronomy Officer"", - ""sourceUrl"": ""https://ca.linkedin.com/in/darren-frank-47241a20a"" - } - ], - ""researcherNotes"": ""The company was unambiguously identified by domain (changeag.com) combined with HQ location in Delta, BC, Canada, and matching executive names. Available data from the official website and ZoomInfo/LinkedIn profiles provide comprehensive details without conflicting information. No regulatory filings or additional external sources were found to further enrich missing fields. All required fields are populated. No linked documents or downloadable files were found on the company website."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.changeag.com/about"", - ""productDescription"": ""https://www.changeag.com/the-plant"", - ""clientCategories"": ""https://www.changeag.com/our-process"", - ""geographicFocus"": ""https://www.changeag.com/contact"", - ""keyExecutives"": ""https://www.zoominfo.com/p/Greg-Baron/1180916367"" - } -}","{""clientCategories"":[""Local Area Farmers Diversifying Crops And Enhancing Soils"",""Companies In Animal Bedding, Green Construction, And Non-THC Cannabinoid Markets"",""Forward-Looking Companies Developing Products For Paper, Plastics, Auto Parts"",""Participants In Carbon Credit Markets In The US""],""companyDescription"":""Change Ag is a vertically integrated sustainable industrial hemp business combining world-class genetics with leading agronomic techniques and infrastructure to provide full-service industrial hemp products globally. Their mission is committed to a low net-zero future, aiming to become the leading sustainable low-cost producer of hemp products utilizing the whole plant. They focus on contributing to solutions for greenhouse gas emissions, waste, and pollution issues with a profitable business model that drives measurable climate change solutions. Their operations include Centres of Excellence in Manitoba for Agronomy and Genetics and an 8,000 sq. ft. GMP-compliant hemp biomass processing facility in Newton, Manitoba, supporting scalable hemp processing. They emphasize quality, sustainability, and performance in their products, epitomized by their Cranky Frank Hemp brand."",""geographicFocus"":""HQ: #203 - 1205 - 56th Street, Delta, BC, V4L 2A6, Canada; Additional location: Newton, Manitoba; Sales Focus: North America (including US and Canada)."",""keyExecutives"":[{""name"":""Greg Baron"",""sourceUrl"":""https://www.zoominfo.com/p/Greg-Baron/1180916367"",""title"":""Chief Operating Officer""},{""name"":""Darren Frank"",""sourceUrl"":""https://ca.linkedin.com/in/darren-frank-47241a20a"",""title"":""Chief Agronomy Officer""}],""missingImportantFields"":[],""productDescription"":""Change Ag operates commercial-scale processing facilities using a Whole Plant Agronomy approach optimizing fibre, hurd, seed, and green biomass. Their diversified product streams include fibre products, hurd products, de-hulled seed, and green biomass products for animal bedding, green construction, and non-THC cannabinoid markets. Their products serve multiple consumer and industrial markets focusing on sustainability and reducing petroleum dependency."",""researcherNotes"":""The company was unambiguously identified by domain (changeag.com) combined with HQ location in Delta, BC, Canada, and matching executive names. Available data from the official website and ZoomInfo/LinkedIn profiles provide comprehensive details without conflicting information. No regulatory filings or additional external sources were found to further enrich missing fields. All required fields are populated. No linked documents or downloadable files were found on the company website."",""sectorDescription"":""Operates in the sustainable industrial hemp sector, providing whole plant agronomy, genetics, processing, and diversified hemp product solutions focused on sustainability and climate impact reduction."",""sources"":{""clientCategories"":""https://www.changeag.com/our-process"",""companyDescription"":""https://www.changeag.com/about"",""geographicFocus"":""https://www.changeag.com/contact"",""keyExecutives"":""https://www.zoominfo.com/p/Greg-Baron/1180916367"",""productDescription"":""https://www.changeag.com/the-plant""},""websiteURL"":""https://www.changeag.com""}","Correctness: 98% Completeness: 95% Change Ag is accurately described as a vertically integrated sustainable industrial hemp company headquartered in Delta, BC, with processing operations in Newton, Manitoba, including an 8,000 sq. ft. GMP-compliant hemp biomass processing facility; they focus on whole plant agronomy combining world-class genetics and agronomic techniques to provide diversified hemp products for fiber, hurd, seed, and green biomass markets notably including animal bedding, green construction, and non-THC cannabinoid sectors, supporting sustainability and low net-zero goals[2][3]. Greg Baron as COO and Darren Frank as Chief Agronomy Officer are confirmed by LinkedIn and ZoomInfo profiles matching company info[1]. The completeness is high as the company’s mission, facilities, product streams, geographic footprint (Canada and North America broadly), and leadership are fully represented, with no conflicting or missing critical data found in the official domain and professional profiles. Slight incompleteness derives from the lack of recent regulatory filings or third-party media coverage to further confirm the scale or commercial milestones beyond the company’s own disclosures[1][2][3]. URLs: https://www.changeag.com/about https://www.changeag.com https://www.zoominfo.com/p/Greg-Baron/1180916367","{""clientCategories"":[""Local area farmers diversifying crops and enhancing soils"",""Companies in animal bedding, green construction, and non-THC cannabinoid markets"",""Forward-looking companies developing products for paper, plastics, auto parts"",""Participants in carbon credit markets in the US""],""companyDescription"":""Change Ag is a vertically integrated sustainable industrial hemp business combining world-class genetics with leading agronomic techniques and infrastructure to provide full-service industrial hemp products globally. Their mission is committed to a low net-zero future, aiming to become the leading sustainable low-cost producer of hemp products utilizing the whole plant. They focus on contributing to solutions for greenhouse gas emissions, waste, and pollution issues with a profitable business model that drives measurable climate change solutions. Their operations include Centres of Excellence in Manitoba for Agronomy and Genetics and an 8,000 sq. ft. GMP-compliant hemp biomass processing facility in Newton, Manitoba, supporting scalable hemp processing. They emphasize quality, sustainability, and performance in their products, epitomized by their Cranky Frank Hemp brand."",""geographicFocus"":""HQ: #203 - 1205 - 56th Street, Delta, BC, V4L 2A6, Canada; Additional location: Newton, Manitoba; Sales Focus: North America (including US and Canada)."",""keyExecutives"":[{""name"":""Greg Baron"",""sourceUrl"":""https://www.zoominfo.com/p/Greg-Baron/1180916367"",""title"":""Chief Operating Officer""},{""name"":""Darren Frank"",""sourceUrl"":""https://ca.linkedin.com/in/darren-frank-47241a20a"",""title"":""Chief Agronomy Officer""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Change Ag operates commercial-scale processing facilities using a Whole Plant Agronomy approach optimizing fibre, hurd, seed, and green biomass. Their diversified product streams include:\n- Fibre products\n- Hurd products\n- De-hulled seed\n- Green biomass products for animal bedding, green construction, and non-THC cannabinoid markets.\nTheir products serve multiple consumer and industrial markets focusing on sustainability and reducing petroleum dependency."",""researcherNotes"":""No linked documents such as PDFs or other downloadable files were found on the website or its subpages after thorough search."",""sectorDescription"":""Operates in the sustainable industrial hemp sector, providing whole plant agronomy, genetics, processing, and diversified hemp product solutions focused on sustainability and climate impact reduction."",""sources"":{""clientCategories"":""https://www.changeag.com/our-process"",""companyDescription"":""https://www.changeag.com/about"",""geographicFocus"":""https://www.changeag.com/contact"",""keyExecutives"":""https://www.zoominfo.com/p/Greg-Baron/1180916367"",""productDescription"":""https://www.changeag.com/the-plant""},""websiteURL"":""https://www.changeag.com""}" -ITK,http://www.itk.fr/,"Banque Populaire du Sud, BNP Paribas Développement, EDF Pulse Croissance, Starquest Capital",itk.fr,https://www.linkedin.com/company/itk-predict-decide,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""http://www.itk.fr/"", - ""companyDescription"": ""itk is a growing company specializing in technological solutions for agricultural food safety worldwide. They develop algorithmic models to aid strategic and operational decisions in agriculture and food sectors, focusing on profitability, environmental protection, animal health, and welfare. itk operates in digital transformation for sustainable agriculture, tackling population growth, resource tensions, climate change, and consumer expectations. Their expertise covers field crops, perennial crops, and livestock monitoring, with innovative tools like Cropwin®, Vintel®, and FarmLife®. The company has about 100 employees organized in agronomy, IT/UX/UI, IoT, and operations."", - ""productDescription"": ""The company offers the following core products and services: - FarmLife®: A smart cattle farming solution with a connected collar sensor monitoring reproduction, feeding, and health in real time with AI-based behavioral predictions. - Prevent®: A service forecasting, preventing, and protecting from agroclimatological risks with early warnings and yield loss forecasts for farming plots. - Vintel®: A solution for perennial crops monitoring water needs and nitrogen status in vineyards to drive vineyard management excellence. - Presto®: The first automated service for weekly tomato production forecasts, aiding producers in managing high commercial value crops and reducing losses. - Heat Stress Protect®: An innovative insurance program for dairy farms to anticipate and cover financial losses due to heat stress using risk data and forecasts. - Cropwin®: A digital solution optimizing yields and return on investment for arable crops like wheat, maize, and soybean with yield predictions and agronomical practice guidance. - Sigatocare®: For managing Black Sigatoka disease in banana trees."", - ""clientCategories"": [""Livestock breeders"", ""Farmers"", ""Agricultural cooperatives"", ""Agro-industries"", ""Consultants"", ""Nutritionists"", ""Veterinarians"", ""Dairies"", ""Digital companies""], - ""sectorDescription"": ""Operates in the agri-tech sector providing innovative digital solutions and algorithmic models to support sustainable agriculture and food safety worldwide."", - ""geographicFocus"": ""HQ: Montpellier and Rennes, France; California, USA; Sales focus not explicitly stated."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No publicly available information on founders or C-level executives was found on the company website or linked pages. Some executive information was also not confirmed due to lack of access to LinkedIn data."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.itk.fr/en/company/"", - ""productDescription"": ""https://itk.fr/en/sitemap/"", - ""clientCategories"": ""https://www.itk.fr/en/customers/"", - ""geographicFocus"": ""https://www.itk.fr/en/contact/"", - ""keyExecutives"": null - } -}","{ - ""websiteURL"": ""http://www.itk.fr/"", - ""companyDescription"": ""itk is a growing company specializing in technological solutions for agricultural food safety worldwide. They develop algorithmic models to aid strategic and operational decisions in agriculture and food sectors, focusing on profitability, environmental protection, animal health, and welfare. itk operates in digital transformation for sustainable agriculture, tackling population growth, resource tensions, climate change, and consumer expectations. Their expertise covers field crops, perennial crops, and livestock monitoring, with innovative tools like Cropwin®, Vintel®, and FarmLife®. The company has about 100 employees organized in agronomy, IT/UX/UI, IoT, and operations."", - ""productDescription"": ""The company offers the following core products and services: - FarmLife®: A smart cattle farming solution with a connected collar sensor monitoring reproduction, feeding, and health in real time with AI-based behavioral predictions. - Prevent®: A service forecasting, preventing, and protecting from agroclimatological risks with early warnings and yield loss forecasts for farming plots. - Vintel®: A solution for perennial crops monitoring water needs and nitrogen status in vineyards to drive vineyard management excellence. - Presto®: The first automated service for weekly tomato production forecasts, aiding producers in managing high commercial value crops and reducing losses. - Heat Stress Protect®: An innovative insurance program for dairy farms to anticipate and cover financial losses due to heat stress using risk data and forecasts. - Cropwin®: A digital solution optimizing yields and return on investment for arable crops like wheat, maize, and soybean with yield predictions and agronomical practice guidance. - Sigatocare®: For managing Black Sigatoka disease in banana trees."", - ""clientCategories"": [""Livestock breeders"", ""Farmers"", ""Agricultural cooperatives"", ""Agro-industries"", ""Consultants"", ""Nutritionists"", ""Veterinarians"", ""Dairies"", ""Digital companies""], - ""sectorDescription"": ""Operates in the agri-tech sector providing innovative digital solutions and algorithmic models to support sustainable agriculture and food safety worldwide."", - ""geographicFocus"": ""HQ: Montpellier and Rennes, France; California, USA; Sales focus not explicitly stated."", - ""keyExecutives"": [], - ""linkedDocuments"": [], - ""researcherNotes"": ""No publicly available information on founders or C-level executives was found on the company website or linked pages. Some executive information was also not confirmed due to lack of access to LinkedIn data."", - ""missingImportantFields"": [""keyExecutives""], - ""sources"": { - ""companyDescription"": ""https://www.itk.fr/en/company/"", - ""productDescription"": ""https://itk.fr/en/sitemap/"", - ""clientCategories"": ""https://www.itk.fr/en/customers/"", - ""geographicFocus"": ""https://www.itk.fr/en/contact/"", - ""keyExecutives"": null - } -}","[""keyExecutives""]","{ - ""websiteURL"": ""https://www.itk.fr"", - ""companyDescription"": ""itk is a growing company specializing in technological solutions for agricultural food safety worldwide. Founded in 2003 by Eric Jallas, itk develops algorithmic models and AI-based decision-support tools to enhance agricultural profitability, environmental protection, animal health, and welfare. The company supports sustainable agriculture digital transformation addressing global challenges such as population growth, resource tensions, and climate change. itk operates mainly out of Montpellier and Rennes, France, with a presence in California, USA, and employs about 100 people across agronomy, IT, IoT, and operations disciplines."", - ""productDescription"": ""itk offers digital solutions and services for sustainable agricultural management and forecasting. Key products include FarmLife®, a smart cattle farming system with connected collar sensors and AI for real-time monitoring; Prevent®, for forecasting and preventing agroclimatic risks and yield losses; Vintel®, which monitors water and nitrogen status in vineyards; Presto®, automating weekly tomato production forecasts; Heat Stress Protect®, an insurance program to mitigate dairy farm heat stress losses; Cropwin®, digital tools for optimizing crop yields and financial returns; and Sigatocare®, for managing Black Sigatoka disease in bananas."", - ""clientCategories"": [ - ""Livestock Breeders"", - ""Farmers"", - ""Agricultural Cooperatives"", - ""Agro-Industries"", - ""Consultants"", - ""Nutritionists"", - ""Veterinarians"", - ""Dairies"", - ""Digital Companies"" - ], - ""sectorDescription"": ""Agri-tech sector specializing in AI-driven digital solutions and algorithmic models to support sustainable agriculture and food safety worldwide."", - ""geographicFocus"": ""Headquartered in Montpellier and Rennes, France, with additional operations in California, USA, itk focuses on global markets and aims to expand its international footprint."", - ""keyExecutives"": [ - { - ""name"": ""Aline Bsaibes"", - ""title"": ""CEO since 2019 (until early 2023)"", - ""sourceUrl"": ""https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/"" - }, - { - ""name"": ""Eric Jallas"", - ""title"": ""Founder and Chairman (returned as head in January 2023)"", - ""sourceUrl"": ""https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/"" - } - ], - ""researcherNotes"": ""The company was founded in 2003 by Eric Jallas, who served as chairman and returned to lead itk in early 2023 after previously stepping back. Aline Bsaibes was CEO from 2019 until replaced in 2023. Despite searches, no additional senior leadership data was publicly available on the company website or LinkedIn. The company is headquartered in France with a U.S. presence; precise global sales footprint details remain unclear. Sources include itk's official site and recent news reports on investment and ownership changes."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://www.itk.fr/en/company/"", - ""productDescription"": ""https://itk.fr/en/sitemap/"", - ""clientCategories"": ""https://www.itk.fr/en/customers/"", - ""geographicFocus"": ""https://www.itk.fr/en/contact/"", - ""keyExecutives"": ""https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/"" - } -}","{""clientCategories"":[""Livestock Breeders"",""Farmers"",""Agricultural Cooperatives"",""Agro-Industries"",""Consultants"",""Nutritionists"",""Veterinarians"",""Dairies"",""Digital Companies""],""companyDescription"":""itk is a growing company specializing in technological solutions for agricultural food safety worldwide. Founded in 2003 by Eric Jallas, itk develops algorithmic models and AI-based decision-support tools to enhance agricultural profitability, environmental protection, animal health, and welfare. The company supports sustainable agriculture digital transformation addressing global challenges such as population growth, resource tensions, and climate change. itk operates mainly out of Montpellier and Rennes, France, with a presence in California, USA, and employs about 100 people across agronomy, IT, IoT, and operations disciplines."",""geographicFocus"":""Headquartered in Montpellier and Rennes, France, with additional operations in California, USA, itk focuses on global markets and aims to expand its international footprint."",""keyExecutives"":[{""name"":""Aline Bsaibes"",""sourceUrl"":""https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/"",""title"":""CEO since 2019 (until early 2023)""},{""name"":""Eric Jallas"",""sourceUrl"":""https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/"",""title"":""Founder and Chairman (returned as head in January 2023)""}],""missingImportantFields"":[],""productDescription"":""itk offers digital solutions and services for sustainable agricultural management and forecasting. Key products include FarmLife®, a smart cattle farming system with connected collar sensors and AI for real-time monitoring; Prevent®, for forecasting and preventing agroclimatic risks and yield losses; Vintel®, which monitors water and nitrogen status in vineyards; Presto®, automating weekly tomato production forecasts; Heat Stress Protect®, an insurance program to mitigate dairy farm heat stress losses; Cropwin®, digital tools for optimizing crop yields and financial returns; and Sigatocare®, for managing Black Sigatoka disease in bananas."",""researcherNotes"":""The company was founded in 2003 by Eric Jallas, who served as chairman and returned to lead itk in early 2023 after previously stepping back. Aline Bsaibes was CEO from 2019 until replaced in 2023. Despite searches, no additional senior leadership data was publicly available on the company website or LinkedIn. The company is headquartered in France with a U.S. presence; precise global sales footprint details remain unclear. Sources include itk's official site and recent news reports on investment and ownership changes."",""sectorDescription"":""Agri-tech sector specializing in AI-driven digital solutions and algorithmic models to support sustainable agriculture and food safety worldwide."",""sources"":{""clientCategories"":""https://www.itk.fr/en/customers/"",""companyDescription"":""https://www.itk.fr/en/company/"",""geographicFocus"":""https://www.itk.fr/en/contact/"",""keyExecutives"":""https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/"",""productDescription"":""https://itk.fr/en/sitemap/""},""websiteURL"":""https://www.itk.fr""}","Correctness: 98% Completeness: 95% The reviewed information about itk is largely accurate and well-supported. itk was founded in 2003 by Eric Jallas in Montpellier, France, who remains a key shareholder and returned as head in early 2023; Aline Bsaibes was CEO from 2019 until around early 2023 when Jallas resumed leadership[1][2]. The company focuses on AI-driven digital solutions for sustainable agriculture, with products such as FarmLife®, Prevent®, Vintel®, Presto®, Heat Stress Protect®, Cropwin®, and Sigatocare®, catering to crop, livestock, and environmental management[3]. itk operates primarily out of Montpellier and Rennes, with an additional presence in California, USA, employing about 100 people across agronomy, IT, and IoT fields[1][3]. A recent €10 million funding round in 2021 included investors such as EDF Pulse Holding and Starquest Capital, reinforcing its global expansion and innovation capabilities[1]. The company’s market positioning in agri-tech, its clientele categories, and its mission towards sustainable agriculture digital transformation are clearly stated[1][3]. Minor potential incompleteness arises from the absence of detailed current senior leadership beyond CEO and founder roles, as well as precise global sales footprint details not explicitly public, but this is acknowledged and consistent with official sources[2][3]. Overall, the content is well corroborated by official company pages and recent press coverage dated up to 2023–2024. URLs: https://www.actuia.com/en/news/montpellier-based-itk-raises-e10-million-for-connected-agriculture/, https://www.itk.fr/en/the-company/, https://www.edf.fr/en/pulse/ventures-actualites-withdrawal-ITK","{""clientCategories"":[""Livestock breeders"",""Farmers"",""Agricultural cooperatives"",""Agro-industries"",""Consultants"",""Nutritionists"",""Veterinarians"",""Dairies"",""Digital companies""],""companyDescription"":""itk is a growing company specializing in technological solutions for agricultural food safety worldwide. They develop algorithmic models to aid strategic and operational decisions in agriculture and food sectors, focusing on profitability, environmental protection, animal health, and welfare. itk operates in digital transformation for sustainable agriculture, tackling population growth, resource tensions, climate change, and consumer expectations. Their expertise covers field crops, perennial crops, and livestock monitoring, with innovative tools like Cropwin®, Vintel®, and FarmLife®. The company has about 100 employees organized in agronomy, IT/UX/UI, IoT, and operations."",""geographicFocus"":""HQ: Montpellier and Rennes, France; California, USA; Sales focus not explicitly stated."",""keyExecutives"":[],""linkedDocuments"":[],""missingImportantFields"":[""keyExecutives""],""productDescription"":""The company offers the following core products and services: - FarmLife®: A smart cattle farming solution with a connected collar sensor monitoring reproduction, feeding, and health in real time with AI-based behavioral predictions. - Prevent®: A service forecasting, preventing, and protecting from agroclimatological risks with early warnings and yield loss forecasts for farming plots. - Vintel®: A solution for perennial crops monitoring water needs and nitrogen status in vineyards to drive vineyard management excellence. - Presto®: The first automated service for weekly tomato production forecasts, aiding producers in managing high commercial value crops and reducing losses. - Heat Stress Protect®: An innovative insurance program for dairy farms to anticipate and cover financial losses due to heat stress using risk data and forecasts. - Cropwin®: A digital solution optimizing yields and return on investment for arable crops like wheat, maize, and soybean with yield predictions and agronomical practice guidance. - Sigatocare®: For managing Black Sigatoka disease in banana trees."",""researcherNotes"":""No publicly available information on founders or C-level executives was found on the company website or linked pages. Some executive information was also not confirmed due to lack of access to LinkedIn data."",""sectorDescription"":""Operates in the agri-tech sector providing innovative digital solutions and algorithmic models to support sustainable agriculture and food safety worldwide."",""sources"":{""clientCategories"":""https://www.itk.fr/en/customers/"",""companyDescription"":""https://www.itk.fr/en/company/"",""geographicFocus"":""https://www.itk.fr/en/contact/"",""keyExecutives"":null,""productDescription"":""https://itk.fr/en/sitemap/""},""websiteURL"":""http://www.itk.fr/""}" -Katam Technologies,https://www.katam.se/,"Almi Invest GreenTech, Giscom, I Love Lund, SLU Holding",katam.se,https://www.linkedin.com/company/katam,"{""seniorLeadership"":[{""name"":""Magnus Karlson"",""title"":""Chief Executive Officer"",""linkedinURL"":""https://rocketreach.co/magnus-karlson-email_11353899""},{""name"":""Krister Tham"",""title"":""CTO and founder"",""linkedinURL"":""https://rocketreach.co/krister-tham-email_1329961""},{""name"":""Luiza Federici"",""title"":""Technical and Sales Manager"",""linkedinURL"":""https://rocketreach.co/luiza-federici-email_494297854""},{""name"":""Anton Holmström"",""title"":""Director of Forestry Co-founder and forestry expert"",""linkedinURL"":""https://linkedin.com/company/katam""},{""name"":""Bengt-Arne Molin"",""title"":""Chairman of the board Senior executive in global tech industry, CEO at Axis Communications"",""linkedinURL"":""https://linkedin.com/company/katam""},{""name"":""Filip Larsson"",""title"":""Board member Business angel and investor"",""linkedinURL"":""https://linkedin.com/company/katam""},{""name"":""Jörgen Bodin"",""title"":""Board member Investment Manager at Almi Invest GreenTech"",""linkedinURL"":""https://linkedin.com/company/katam""}]}","{""seniorLeadership"":[{""name"":""Magnus Karlson"",""title"":""Chief Executive Officer"",""linkedinURL"":""https://rocketreach.co/magnus-karlson-email_11353899""},{""name"":""Krister Tham"",""title"":""CTO and founder"",""linkedinURL"":""https://rocketreach.co/krister-tham-email_1329961""},{""name"":""Luiza Federici"",""title"":""Technical and Sales Manager"",""linkedinURL"":""https://rocketreach.co/luiza-federici-email_494297854""},{""name"":""Anton Holmström"",""title"":""Director of Forestry Co-founder and forestry expert"",""linkedinURL"":""https://linkedin.com/company/katam""},{""name"":""Bengt-Arne Molin"",""title"":""Chairman of the board Senior executive in global tech industry, CEO at Axis Communications"",""linkedinURL"":""https://linkedin.com/company/katam""},{""name"":""Filip Larsson"",""title"":""Board member Business angel and investor"",""linkedinURL"":""https://linkedin.com/company/katam""},{""name"":""Jörgen Bodin"",""title"":""Board member Investment Manager at Almi Invest GreenTech"",""linkedinURL"":""https://linkedin.com/company/katam""}]}","{ - ""websiteURL"": ""https://www.katam.se/"", - ""companyDescription"": ""Katam Technologies AB is a company providing digital services to grow forestry businesses by increasing returns and achieving sustainable forest growth using state-of-the-art workflow and digital tools. They help forestry companies worldwide optimize operations through digitalization, solid data, and planning, including detailed measurements with smartphones or drones, precise forest data, reports, and decision support. Their mission is to digitalize forestry processes to make work more efficient and profitable."", - ""productDescription"": ""Katam offers digital services including the Katam App (subscription plans available) and Katam Portal for uploading, processing, and analyzing forest data. Their services include measuring forests using smartphones and drones, providing precise forest data (tree heights, diameters, density), reports and decision support, forest inventory, quality assurance, single tree management, and disease identification."", - ""clientCategories"": [""Forestry companies worldwide"", ""Forest enterprises of various types including conifers and deciduous types""], - ""sectorDescription"": ""Operates in the digital forestry technology sector, providing data-driven solutions and tools to optimize forest management and promote sustainable forest growth."", - ""geographicFocus"": ""HQ: Bytaregatan 4d, 222 21 Lund, Sweden; Additional location: Katam Brasil Ltda., São Paulo, Brazil; Sales Focus: Worldwide"", - ""keyExecutives"": [ - {""name"": ""Magnus Karlson"", ""title"": ""CEO"", ""sourceUrl"": ""https://katam.se/company/management""}, - {""name"": ""Krister Tham"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://katam.se/company/management""}, - {""name"": ""Anton Holmström"", ""title"": ""Co-founder and Director of forestry"", ""sourceUrl"": ""https://katam.se/company/management""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://katam.se/company/"", - ""productDescription"": ""https://katam.se/pricing/"", - ""clientCategories"": ""https://katam.se/sv/case-studies/"", - ""geographicFocus"": ""https://katam.se/contact/"", - ""keyExecutives"": ""https://katam.se/company/management"" - } -}","{ - ""websiteURL"": ""https://www.katam.se/"", - ""companyDescription"": ""Katam Technologies AB is a company providing digital services to grow forestry businesses by increasing returns and achieving sustainable forest growth using state-of-the-art workflow and digital tools. They help forestry companies worldwide optimize operations through digitalization, solid data, and planning, including detailed measurements with smartphones or drones, precise forest data, reports, and decision support. Their mission is to digitalize forestry processes to make work more efficient and profitable."", - ""productDescription"": ""Katam offers digital services including the Katam App (subscription plans available) and Katam Portal for uploading, processing, and analyzing forest data. Their services include measuring forests using smartphones and drones, providing precise forest data (tree heights, diameters, density), reports and decision support, forest inventory, quality assurance, single tree management, and disease identification."", - ""clientCategories"": [""Forestry companies worldwide"", ""Forest enterprises of various types including conifers and deciduous types""], - ""sectorDescription"": ""Operates in the digital forestry technology sector, providing data-driven solutions and tools to optimize forest management and promote sustainable forest growth."", - ""geographicFocus"": ""HQ: Bytaregatan 4d, 222 21 Lund, Sweden; Additional location: Katam Brasil Ltda., São Paulo, Brazil; Sales Focus: Worldwide"", - ""keyExecutives"": [ - {""name"": ""Magnus Karlson"", ""title"": ""CEO"", ""sourceUrl"": ""https://katam.se/company/management""}, - {""name"": ""Krister Tham"", ""title"": ""Founder and CTO"", ""sourceUrl"": ""https://katam.se/company/management""}, - {""name"": ""Anton Holmström"", ""title"": ""Co-founder and Director of forestry"", ""sourceUrl"": ""https://katam.se/company/management""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://katam.se/company/"", - ""productDescription"": ""https://katam.se/pricing/"", - ""clientCategories"": ""https://katam.se/sv/case-studies/"", - ""geographicFocus"": ""https://katam.se/contact/"", - ""keyExecutives"": ""https://katam.se/company/management"" - } -}",[],"{ - ""websiteURL"": ""https://www.katam.se"", - ""companyDescription"": ""Katam Technologies AB provides digital services to grow forestry businesses by increasing returns and achieving sustainable forest growth through state-of-the-art workflow and digital tools. The company helps forestry companies worldwide optimize operations using digitalization, solid data, and planning. Its innovative technology enables detailed forest measurements via smartphones or drones, delivering precise data and decision support to maximize forest utilization efficiently and profitably."", - ""productDescription"": ""Katam offers digital services including the Katam App with subscription plans and the Katam Portal for uploading, processing, and analyzing forest data. Their solutions enable measuring forests using smartphones and drones to provide precise data on tree heights, diameters, density, and forest inventory. They deliver quality assurance, single tree management, disease identification, detailed reports, and decision support tools to optimize forestry operations."", - ""clientCategories"": [""Forestry Companies Worldwide"", ""Forest Enterprises"", ""Coniferous Forest Operators"", ""Deciduous Forest Operators""], - ""sectorDescription"": ""Digital forestry technology company providing data-driven solutions and tools to optimize forest management and promote sustainable forest growth."", - ""geographicFocus"": ""Headquartered in Lund, Sweden, with an additional office in São Paulo, Brazil, Katam serves forestry companies worldwide."", - ""keyExecutives"": [ - { - ""name"": ""Magnus Karlson"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://katam.se/company/management"" - }, - { - ""name"": ""Krister Tham"", - ""title"": ""Founder and CTO"", - ""sourceUrl"": ""https://katam.se/company/management"" - }, - { - ""name"": ""Anton Holmström"", - ""title"": ""Co-founder and Director of Forestry"", - ""sourceUrl"": ""https://katam.se/company/management"" - }, - { - ""name"": ""Luiza Federici"", - ""title"": ""Technical and Sales Manager"", - ""sourceUrl"": ""https://linkedin.com/company/katam"" - }, - { - ""name"": ""Bengt-Arne Molin"", - ""title"": ""Chairman of the Board"", - ""sourceUrl"": ""https://linkedin.com/company/katam"" - }, - { - ""name"": ""Filip Larsson"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://linkedin.com/company/katam"" - }, - { - ""name"": ""Jörgen Bodin"", - ""title"": ""Board Member"", - ""sourceUrl"": ""https://linkedin.com/company/katam"" - } - ], - ""researcherNotes"": ""Company identity confirmed by domain (katam.se), headquarters in Lund, Sweden, and forestry digitalization focus. Leadership data supplemented from both company website and LinkedIn, adding board members and Technical/Sales Manager not previously listed. Geographic focus clearly worldwide with offices in Sweden and Brazil. No missing key fields remain."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://katam.se/company/"", - ""productDescription"": ""https://katam.se/pricing/"", - ""clientCategories"": ""https://katam.se/sv/case-studies/"", - ""geographicFocus"": ""https://katam.se/contact/"", - ""keyExecutives"": ""https://katam.se/company/management"" - } -}","{""clientCategories"":[""Forestry Companies Worldwide"",""Forest Enterprises"",""Coniferous Forest Operators"",""Deciduous Forest Operators""],""companyDescription"":""Katam Technologies AB provides digital services to grow forestry businesses by increasing returns and achieving sustainable forest growth through state-of-the-art workflow and digital tools. The company helps forestry companies worldwide optimize operations using digitalization, solid data, and planning. Its innovative technology enables detailed forest measurements via smartphones or drones, delivering precise data and decision support to maximize forest utilization efficiently and profitably."",""geographicFocus"":""Headquartered in Lund, Sweden, with an additional office in São Paulo, Brazil, Katam serves forestry companies worldwide."",""keyExecutives"":[{""name"":""Magnus Karlson"",""sourceUrl"":""https://katam.se/company/management"",""title"":""CEO""},{""name"":""Krister Tham"",""sourceUrl"":""https://katam.se/company/management"",""title"":""Founder and CTO""},{""name"":""Anton Holmström"",""sourceUrl"":""https://katam.se/company/management"",""title"":""Co-founder and Director of Forestry""},{""name"":""Luiza Federici"",""sourceUrl"":""https://linkedin.com/company/katam"",""title"":""Technical and Sales Manager""},{""name"":""Bengt-Arne Molin"",""sourceUrl"":""https://linkedin.com/company/katam"",""title"":""Chairman of the Board""},{""name"":""Filip Larsson"",""sourceUrl"":""https://linkedin.com/company/katam"",""title"":""Board Member""},{""name"":""Jörgen Bodin"",""sourceUrl"":""https://linkedin.com/company/katam"",""title"":""Board Member""}],""missingImportantFields"":[],""productDescription"":""Katam offers digital services including the Katam App with subscription plans and the Katam Portal for uploading, processing, and analyzing forest data. Their solutions enable measuring forests using smartphones and drones to provide precise data on tree heights, diameters, density, and forest inventory. They deliver quality assurance, single tree management, disease identification, detailed reports, and decision support tools to optimize forestry operations."",""researcherNotes"":""Company identity confirmed by domain (katam.se), headquarters in Lund, Sweden, and forestry digitalization focus. Leadership data supplemented from both company website and LinkedIn, adding board members and Technical/Sales Manager not previously listed. Geographic focus clearly worldwide with offices in Sweden and Brazil. No missing key fields remain."",""sectorDescription"":""Digital forestry technology company providing data-driven solutions and tools to optimize forest management and promote sustainable forest growth."",""sources"":{""clientCategories"":""https://katam.se/sv/case-studies/"",""companyDescription"":""https://katam.se/company/"",""geographicFocus"":""https://katam.se/contact/"",""keyExecutives"":""https://katam.se/company/management"",""productDescription"":""https://katam.se/pricing/""},""websiteURL"":""https://www.katam.se""}","Correctness: 95% Completeness: 90% The information about Katam Technologies AB is largely accurate and well supported by multiple authoritative sources. The company is confirmed as a Swedish digital forestry technology firm headquartered in Lund, with a growing international presence including offices in Brazil and plans for Southeast Asia and the US, supported by sources [2][4][5]. Leadership details such as Magnus Karlson as CEO, Krister Tham as Founder and CTO, and Anton Holmström as Co-founder and Director of Forestry correspond closely with data from the company site and LinkedIn [1][4]. The description of their product offerings involving AI-driven forest measurement via smartphones, drones, and a cloud platform matches detailed vendor and startup profiles [1][2][4][5]. Notably, Katam recently raised €2 million for global expansion, emphasizing AI and digitalization for sustainable forestry, confirming their financial vitality and growth plans [2]. Some minor discrepancies exist regarding employee counts (ranging from about 5 to 25 staff) likely due to timing or inclusion of part-time/R&D roles [1][4], and the specific board members from LinkedIn are less prominently corroborated beyond the official site. Overall, no substantial core facts are contradicted or missing, but more verification from official filings or press releases on leadership beyond company websites would perfect correctness and completeness. Key URLs include https://katam.se/company/, https://katam.se/contact/, https://oresundstartups.com/katam-technologies-secures-e-2-million-for-global-expansion-eyes-southeast-asia/, and https://gust.com/companies/katam-technologies-ab.","{""clientCategories"":[""Forestry companies worldwide"",""Forest enterprises of various types including conifers and deciduous types""],""companyDescription"":""Katam Technologies AB is a company providing digital services to grow forestry businesses by increasing returns and achieving sustainable forest growth using state-of-the-art workflow and digital tools. They help forestry companies worldwide optimize operations through digitalization, solid data, and planning, including detailed measurements with smartphones or drones, precise forest data, reports, and decision support. Their mission is to digitalize forestry processes to make work more efficient and profitable."",""geographicFocus"":""HQ: Bytaregatan 4d, 222 21 Lund, Sweden; Additional location: Katam Brasil Ltda., São Paulo, Brazil; Sales Focus: Worldwide"",""keyExecutives"":[{""name"":""Magnus Karlson"",""sourceUrl"":""https://katam.se/company/management"",""title"":""CEO""},{""name"":""Krister Tham"",""sourceUrl"":""https://katam.se/company/management"",""title"":""Founder and CTO""},{""name"":""Anton Holmström"",""sourceUrl"":""https://katam.se/company/management"",""title"":""Co-founder and Director of forestry""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Katam offers digital services including the Katam App (subscription plans available) and Katam Portal for uploading, processing, and analyzing forest data. Their services include measuring forests using smartphones and drones, providing precise forest data (tree heights, diameters, density), reports and decision support, forest inventory, quality assurance, single tree management, and disease identification."",""researcherNotes"":null,""sectorDescription"":""Operates in the digital forestry technology sector, providing data-driven solutions and tools to optimize forest management and promote sustainable forest growth."",""sources"":{""clientCategories"":""https://katam.se/sv/case-studies/"",""companyDescription"":""https://katam.se/company/"",""geographicFocus"":""https://katam.se/contact/"",""keyExecutives"":""https://katam.se/company/management"",""productDescription"":""https://katam.se/pricing/""},""websiteURL"":""https://www.katam.se/""}" -Paleo,https://paleo.bio/,"Beyond Impact, DSM Venturing, Gimv, Planet A Ventures, SFPIM, Siddhi Capital",paleo.bio,https://www.linkedin.com/company/paleo-bio,"{""seniorLeadership"":[]}","{""seniorLeadership"":[]}","{ - ""websiteURL"": ""https://paleo.bio/"", - ""companyDescription"": ""Paleo produces myoglobin, a key ingredient that makes meat and fish alternatives taste, smell, and look like the real thing, emphasizing 'Same Taste. Different Story.' Their mission involves making a positive impact on the world through food technology by brewing animal proteins via precision fermentation using yeast. At Paleo, their mission is to rewrite the story of meat by creating sustainable, bio-identical alternative proteins via precision fermentation using yeast, to provide authentic meat flavor without livestock farming, aiming to preserve the planet and reduce environmental impact."", - ""productDescription"": ""Paleo brews animal proteins using precision fermentation by introducing DNA code for myoglobin into yeast (Pichia pastoris). The yeast secretes proteins extracellularly, producing non-GMO food ingredients. The process involves genetics integration, two-step fermentation to grow yeast and induce myoglobin release, followed by purification to remove yeast DNA. The purified myoglobin is used by food scientists to improve taste, aroma, color, and nutrition (iron availability) in meat and fish alternatives."", - ""clientCategories"": [""Sustainable food producers"", ""Plant-based meat and fish alternative manufacturers"", ""Food scientists""], - ""sectorDescription"": ""Operates in the sustainable plant-based protein industry sector, aiming to change food production with products that taste like animal meat but are plant-based."", - ""geographicFocus"": ""HQ: Meilrijk 98, 3290 Diest, Belgium; APAC office: The Concourse 33-07a, Beach Road #300, Singapore 199555; R&D center: Bio-Incubator I (2nd level), Gaston Geenslaan 1, 3001 Leuven, Belgium"", - ""keyExecutives"": [ - {""name"": ""Hermes Sanctorum (PhD)"", ""title"": ""CEO"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Pierre Donck"", ""title"": ""Chief Business Officer"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Ben Souffriau"", ""title"": ""Chief Innovation Officer"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Lieven De Smedt"", ""title"": ""Chairman of the Board"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Andy de Jong (MD, MBA)"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://paleo.bio/about/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://paleo.bio/about/"", - ""productDescription"": ""https://paleo.bio/our-products"", - ""clientCategories"": ""https://paleo.bio/about/"", - ""geographicFocus"": ""https://paleo.bio/contact/"", - ""keyExecutives"": ""https://paleo.bio/about/"" - } -}","{ - ""websiteURL"": ""https://paleo.bio/"", - ""companyDescription"": ""Paleo produces myoglobin, a key ingredient that makes meat and fish alternatives taste, smell, and look like the real thing, emphasizing 'Same Taste. Different Story.' Their mission involves making a positive impact on the world through food technology by brewing animal proteins via precision fermentation using yeast. At Paleo, their mission is to rewrite the story of meat by creating sustainable, bio-identical alternative proteins via precision fermentation using yeast, to provide authentic meat flavor without livestock farming, aiming to preserve the planet and reduce environmental impact."", - ""productDescription"": ""Paleo brews animal proteins using precision fermentation by introducing DNA code for myoglobin into yeast (Pichia pastoris). The yeast secretes proteins extracellularly, producing non-GMO food ingredients. The process involves genetics integration, two-step fermentation to grow yeast and induce myoglobin release, followed by purification to remove yeast DNA. The purified myoglobin is used by food scientists to improve taste, aroma, color, and nutrition (iron availability) in meat and fish alternatives."", - ""clientCategories"": [""Sustainable food producers"", ""Plant-based meat and fish alternative manufacturers"", ""Food scientists""], - ""sectorDescription"": ""Operates in the sustainable plant-based protein industry sector, aiming to change food production with products that taste like animal meat but are plant-based."", - ""geographicFocus"": ""HQ: Meilrijk 98, 3290 Diest, Belgium; APAC office: The Concourse 33-07a, Beach Road #300, Singapore 199555; R&D center: Bio-Incubator I (2nd level), Gaston Geenslaan 1, 3001 Leuven, Belgium"", - ""keyExecutives"": [ - {""name"": ""Hermes Sanctorum (PhD)"", ""title"": ""CEO"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Pierre Donck"", ""title"": ""Chief Business Officer"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Ben Souffriau"", ""title"": ""Chief Innovation Officer"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Lieven De Smedt"", ""title"": ""Chairman of the Board"", ""sourceUrl"": ""https://paleo.bio/about/""}, - {""name"": ""Andy de Jong (MD, MBA)"", ""title"": ""Co-founder"", ""sourceUrl"": ""https://paleo.bio/about/""} - ], - ""linkedDocuments"": [], - ""researcherNotes"": null, - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://paleo.bio/about/"", - ""productDescription"": ""https://paleo.bio/our-products"", - ""clientCategories"": ""https://paleo.bio/about/"", - ""geographicFocus"": ""https://paleo.bio/contact/"", - ""keyExecutives"": ""https://paleo.bio/about/"" - } -}",[],"{ - ""websiteURL"": ""https://paleo.bio"", - ""companyDescription"": ""Paleo produces myoglobin, a key ingredient that makes meat and fish alternatives taste, smell, and look like the real thing, emphasizing 'Same Taste. Different Story.' Their mission involves making a positive impact on the world through food technology by brewing animal proteins via precision fermentation using yeast. At Paleo, their mission is to rewrite the story of meat by creating sustainable, bio-identical alternative proteins via precision fermentation using yeast, to provide authentic meat flavor without livestock farming, aiming to preserve the planet and reduce environmental impact."", - ""productDescription"": ""Paleo brews animal proteins using precision fermentation by introducing DNA code for myoglobin into yeast (Pichia pastoris). The yeast secretes proteins extracellularly, producing non-GMO food ingredients. The process involves genetics integration, two-step fermentation to grow yeast and induce myoglobin release, followed by purification to remove yeast DNA. The purified myoglobin is used by food scientists to improve taste, aroma, color, and nutrition (iron availability) in meat and fish alternatives. Paleo has developed six types of myoglobin proteins: beef, chicken, lamb, pork, tuna, and mammoth, enabling large-scale production 20 times faster than animal production."", - ""clientCategories"": [ - ""Sustainable Food Producers"", - ""Plant-Based Meat And Fish Alternative Manufacturers"", - ""Food Scientists"" - ], - ""sectorDescription"": ""Operates in the sustainable plant-based protein industry sector, aiming to change food production with products that taste like animal meat but are plant-based."", - ""geographicFocus"": ""HQ in Diest, Belgium; with offices and R&D centers in Belgium and Singapore, serving primarily European and APAC markets."", - ""keyExecutives"": [ - { - ""name"": ""Hermes Sanctorum (PhD)"", - ""title"": ""CEO"", - ""sourceUrl"": ""https://paleo.bio/about/"" - }, - { - ""name"": ""Pierre Donck"", - ""title"": ""Chief Business Officer"", - ""sourceUrl"": ""https://paleo.bio/about/"" - }, - { - ""name"": ""Ben Souffriau"", - ""title"": ""Chief Innovation Officer"", - ""sourceUrl"": ""https://paleo.bio/about/"" - }, - { - ""name"": ""Lieven De Smedt"", - ""title"": ""Chairman of the Board"", - ""sourceUrl"": ""https://paleo.bio/about/"" - }, - { - ""name"": ""Andy de Jong (MD, MBA)"", - ""title"": ""Co-founder"", - ""sourceUrl"": ""https://paleo.bio/about/"" - } - ], - ""researcherNotes"": ""The company was confirmed by domain match (paleo.bio) and key executive names Hermes Sanctorum and Andy de Jong, founders since 2020 using precision fermentation to produce myoglobin. Geographic footprint includes Belgium and Singapore offices, corroborated by official site and Beyond Impact VC case study. LinkedIn senior leadership data was empty but official company pages provided full executive details. No conflicts or missing critical fields remain after enrichment."", - ""missingImportantFields"": [], - ""sources"": { - ""companyDescription"": ""https://paleo.bio/about/"", - ""productDescription"": ""https://paleo.bio/our-products"", - ""clientCategories"": ""https://paleo.bio/about/"", - ""geographicFocus"": ""https://paleo.bio/contact/"", - ""keyExecutives"": ""https://paleo.bio/about/"" - } -}","{""clientCategories"":[""Sustainable Food Producers"",""Plant-Based Meat And Fish Alternative Manufacturers"",""Food Scientists""],""companyDescription"":""Paleo produces myoglobin, a key ingredient that makes meat and fish alternatives taste, smell, and look like the real thing, emphasizing 'Same Taste. Different Story.' Their mission involves making a positive impact on the world through food technology by brewing animal proteins via precision fermentation using yeast. At Paleo, their mission is to rewrite the story of meat by creating sustainable, bio-identical alternative proteins via precision fermentation using yeast, to provide authentic meat flavor without livestock farming, aiming to preserve the planet and reduce environmental impact."",""geographicFocus"":""HQ in Diest, Belgium; with offices and R&D centers in Belgium and Singapore, serving primarily European and APAC markets."",""keyExecutives"":[{""name"":""Hermes Sanctorum (PhD)"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""CEO""},{""name"":""Pierre Donck"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Chief Business Officer""},{""name"":""Ben Souffriau"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Chief Innovation Officer""},{""name"":""Lieven De Smedt"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Chairman of the Board""},{""name"":""Andy de Jong (MD, MBA)"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Co-founder""}],""missingImportantFields"":[],""productDescription"":""Paleo brews animal proteins using precision fermentation by introducing DNA code for myoglobin into yeast (Pichia pastoris). The yeast secretes proteins extracellularly, producing non-GMO food ingredients. The process involves genetics integration, two-step fermentation to grow yeast and induce myoglobin release, followed by purification to remove yeast DNA. The purified myoglobin is used by food scientists to improve taste, aroma, color, and nutrition (iron availability) in meat and fish alternatives. Paleo has developed six types of myoglobin proteins: beef, chicken, lamb, pork, tuna, and mammoth, enabling large-scale production 20 times faster than animal production."",""researcherNotes"":""The company was confirmed by domain match (paleo.bio) and key executive names Hermes Sanctorum and Andy de Jong, founders since 2020 using precision fermentation to produce myoglobin. Geographic footprint includes Belgium and Singapore offices, corroborated by official site and Beyond Impact VC case study. LinkedIn senior leadership data was empty but official company pages provided full executive details. No conflicts or missing critical fields remain after enrichment."",""sectorDescription"":""Operates in the sustainable plant-based protein industry sector, aiming to change food production with products that taste like animal meat but are plant-based."",""sources"":{""clientCategories"":""https://paleo.bio/about/"",""companyDescription"":""https://paleo.bio/about/"",""geographicFocus"":""https://paleo.bio/contact/"",""keyExecutives"":""https://paleo.bio/about/"",""productDescription"":""https://paleo.bio/our-products""},""websiteURL"":""https://paleo.bio""}","Correctness: 98% Completeness: 95% The information is highly accurate and comprehensive based on multiple authoritative sources. Paleo is headquartered in Diest, Belgium, with R&D centers in Leuven, Belgium, and an APAC office in Singapore, confirming its geographic footprint[1][2][4][5]. The company clearly specializes in producing bio-identical myoglobin proteins via precision fermentation in yeast, offering six variants including beef, chicken, pork, lamb, tuna, and mammoth to flavor plant-based meat alternatives, as corroborated by their official site[1][5]. Leadership names and roles, including Hermes Sanctorum as CEO and Andy de Jong as co-founder, are validated by company sources and no conflicting data was found[1]. Founded in 2020 with the company number BE0756.986.614, Paleo operates as a medium-sized company focused on sustainable protein alternatives, consistent with sector descriptions and filings[3][4]. Minor deductions stem from no direct filing documents found online for leadership updates (most leadership comes solely from company-controlled sources), and the absence of public financial or funding details beyond company-level classifications. Still, these omissions are minor as most essential fields and up-to-date details are present and cross-verified in official business registries and the company website. Sources: https://paleo.bio/about/, https://paleo.bio/contact/, https://craft.co/paleo-be, https://www.companyweb.be/en/0756986614/paleo, https://paleo.bio/our-products","{""clientCategories"":[""Sustainable food producers"",""Plant-based meat and fish alternative manufacturers"",""Food scientists""],""companyDescription"":""Paleo produces myoglobin, a key ingredient that makes meat and fish alternatives taste, smell, and look like the real thing, emphasizing 'Same Taste. Different Story.' Their mission involves making a positive impact on the world through food technology by brewing animal proteins via precision fermentation using yeast. At Paleo, their mission is to rewrite the story of meat by creating sustainable, bio-identical alternative proteins via precision fermentation using yeast, to provide authentic meat flavor without livestock farming, aiming to preserve the planet and reduce environmental impact."",""geographicFocus"":""HQ: Meilrijk 98, 3290 Diest, Belgium; APAC office: The Concourse 33-07a, Beach Road #300, Singapore 199555; R&D center: Bio-Incubator I (2nd level), Gaston Geenslaan 1, 3001 Leuven, Belgium"",""keyExecutives"":[{""name"":""Hermes Sanctorum (PhD)"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""CEO""},{""name"":""Pierre Donck"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Chief Business Officer""},{""name"":""Ben Souffriau"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Chief Innovation Officer""},{""name"":""Lieven De Smedt"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Chairman of the Board""},{""name"":""Andy de Jong (MD, MBA)"",""sourceUrl"":""https://paleo.bio/about/"",""title"":""Co-founder""}],""linkedDocuments"":[],""missingImportantFields"":[],""productDescription"":""Paleo brews animal proteins using precision fermentation by introducing DNA code for myoglobin into yeast (Pichia pastoris). The yeast secretes proteins extracellularly, producing non-GMO food ingredients. The process involves genetics integration, two-step fermentation to grow yeast and induce myoglobin release, followed by purification to remove yeast DNA. The purified myoglobin is used by food scientists to improve taste, aroma, color, and nutrition (iron availability) in meat and fish alternatives."",""researcherNotes"":null,""sectorDescription"":""Operates in the sustainable plant-based protein industry sector, aiming to change food production with products that taste like animal meat but are plant-based."",""sources"":{""clientCategories"":""https://paleo.bio/about/"",""companyDescription"":""https://paleo.bio/about/"",""geographicFocus"":""https://paleo.bio/contact/"",""keyExecutives"":""https://paleo.bio/about/"",""productDescription"":""https://paleo.bio/our-products""},""websiteURL"":""https://paleo.bio/""}" \ No newline at end of file diff --git a/data/300 Investors data.csv b/data/300 Investors data.csv deleted file mode 100644 index 3c3b7a7..0000000 --- a/data/300 Investors data.csv +++ /dev/null @@ -1,5578 +0,0 @@ -Name,Website,Final Investor Profile,Final Profile sourcing -"Anaxago ","http://www.anaxago.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1,000 to 2,000"",""fundName"":""Crowdfunding Immobilier"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Real Estate""],""sourceUrl"":""http://www.anaxago.com/investissement""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""SCPI Real Estate Funds"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France"",""Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Healthcare"",""Office"",""Logistics"",""Retail"",""Residential""],""sourceUrl"":""https://anaxago.com/scpi-de-rendement""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""CapHorn"",""fundSize"":""Approximately EUR 100 million"",""fundSizeSourceUrl"":""https://tokenist.com/french-firm-anaxago-enters-wealth-management-in-quest-to-become-100-digital-private-bank/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Venture Capital""],""sectorFocus"":[""Health Tech"",""Private Equity"",""Decarbonation"",""Sustainable Real Estate""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://capital.anaxago.com""},{""estimatedInvestmentSize"":""EUR 1,000 to 10,000"",""fundName"":""Anaxago Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Seed"",""Series A"",""Growth""],""sectorFocus"":[""Real Estate"",""Digital Services"",""Health Tech"",""Proptech"",""Fintech"",""Corporate Real Estate Development""],""sourceUrl"":""http://www.anaxago.com/investissement""}],""headquarters"":""Paris, France"",""investmentThesisFocus"":[""Invests in innovative and ambitious companies contributing to social and environmental progress."",""Focus on sustainable real estate, climate tech, and health tech sectors."",""Prioritizes projects with strong ESG (Environmental, Social and Governance) scores."",""Targets investments supporting decarbonation of the economy."",""Emphasizes transparency with quarterly reporting and enhanced advisory services.""],""investorDescription"":""Anaxago is an investment group established in 2012, specializing in real estate and innovation investments. It offers access to rare and engaged investment opportunities formerly reserved for institutional investors. The company supports over 15,000 investors with diversified financial asset portfolios, with invested amounts exceeding 850 million euros. Anaxago operates as a mission-driven company since April 2023, focusing on projects aligned with future needs, emphasizing sustainable transition and impact through ESG criteria. They provide rigorous internal extra-financial analysis and a weekly investment committee to approve investment decisions."",""linkedDocuments"":[""http://anaxago.com/legal/politique-investissement-desinvestissement""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 850,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.anaxago.com""},""portfolioHighlights"":[""Tilak Healthcare"",""Happywait"",""OCUS"",""Bulldozair"",""Innovorder"",""Acticor Biotech"",""Xenothera"",""Sweep Bright"",""Robocath"",""SmartRenting""],""researcherNotes"":""No explicit official fund sizes or AUM dates found on the site. AUM was inferred from the statement about total invested amounts exceeding 850 million euros on the homepage."",""seniorLeadership"":[{""name"":""Joachim Dupont"",""sourceUrl"":""https://capital.anaxago.com/equipe"",""title"":""Co-fondateur et président""},{""name"":""Guillaume Dupont"",""sourceUrl"":""https://capital.anaxago.com/equipe"",""title"":""Directeur Général""},{""name"":""Bruno Blanc"",""sourceUrl"":""https://capital.anaxago.com/equipe"",""title"":""Directeur Général Adjoint""},{""name"":""François Santi"",""sourceUrl"":""https://capital.anaxago.com/equipe"",""title"":""Partner""},{""name"":""Alexandre Heraud"",""sourceUrl"":""https://capital.anaxago.com/equipe"",""title"":""Partner""}],""sources"":{""funds"":""http://www.anaxago.com/investissement"",""headquarters"":""http://www.anaxago.com/contact"",""investmentThesisFocus"":""http://www.anaxago.com/qui-sommes-nous"",""investorDescription"":""http://www.anaxago.com"",""portfolioHighlights"":""https://www.eu-startups.com/investor/anaxago/""},""websiteURL"":""http://www.anaxago.com""}","Correctness: 95% Completeness: 85% - -The factual information about Anaxago is largely accurate and well-supported. Anaxago was founded in 2012 and specializes in real estate crowdfunding and innovation investments with a focus on sustainable projects and ESG criteria, as stated on their official website and Wikipedia[1][3][5]. The description of their investment focus on real estate, health tech, and sustainable sectors and their mission-driven approach since April 2023 aligns with the company’s publicly declared values and recent developments[3][5]. The investor base of over 15,000 clients and total invested amounts exceeding EUR 850 million matches the data reported on Anaxago’s site[5]. - -The individual funds mentioned (""Crowdfunding Immobilier,"" ""SCPI Real Estate Funds,"" ""CapHorn,"" and ""Anaxago Investment Strategy"") mostly align with Anaxago's activity in real estate and innovation sectors, including seed and early-stage investing in France and Europe[3][5]. The noted fund sizes and investment ranges are consistent with minimum investment amounts around EUR 1,000 and the approximately EUR 100 million sizing of CapHorn reported in news sources[1][3]. - -The senior leadership team names and titles correspond to those listed on Anaxago’s official team page, providing accurate attribution[1]. Portfolio highlights such as Tilak Healthcare, Acticor Biotech, and others are recognized Anaxago portfolio companies[1][5]. - -### Points lowering the scores: - -- The **fund sizes for some funds are listed as “Not Available.”** Public disclosures on exact fund sizes or AUM breakdown by fund are scarce or missing on Anaxago’s site, leading to less completeness in specific fund-level data. The EUR 850 million figure is a total invested amount rather than a snapshot AUM, and no date is directly cited making that data indirectly inferred[5]. - -- The absence of precise dates for AUM and some investment stage focuses (marked as “Not Available”) slightly reduces completeness. - -- Investment thesis details are well summarized but could mention the regulatory context (e.g., CIP status, AMF regulation) to enhance completeness[1]. - -- The description lacks clear financial performance data for some vehicles and more current quantitative data on fund sizes or number of projects per fund. - -Overall, the summary is very well aligned with publicly available, reliable sources such as Anaxago's official site, Wikipedia, and credible reports on French crowdfunding[1][3][5]. Missing fund-size specifics and exact AUM date reduce completeness but not correctness. - -**Sources:** - -- Wikipedia on Anaxago: https://fr.wikipedia.org/wiki/Anaxago - -- Anaxago official site (investment and crowdfunding pages): https://www.anaxago.com, https://www.anaxago.com/crowdfunding-immobilier - -- Brikkapp overview of Anaxago: https://brikkapp.com/platforms/anaxago" -"AMF ","https://www.amf.se ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AMF Pension Funds"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/spara-hos-amf/fonder""}],""headquarters"":""AMF Tjänstepension AB, 113 88 Stockholm, Sweden"",""investmentThesisFocus"":[""Focus on responsible investment and sustainability."",""Active ownership to create high returns for pension savers."",""Provide secure pensions with low fees and user-friendly solutions."",""Emphasis on customer benefit over shareholder value."",""Long-term investment approach with diversified asset allocation including equities, fixed income, real estate, and alternatives.""],""investorDescription"":""AMF is a Swedish mutual pension company founded in 1973, headquartered in Stockholm. It manages approximately 840 billion SEK in assets for about 4 million customers, providing traditional and fund insurance for collectively agreed occupational pensions. AMF emphasizes low fees across traditional insurance, fund insurance, premium pension (PPM), and general fund savings. The company focuses on responsible investment and sustainability, actively engaged in ownership and stewardship to create high returns for pension savers."",""linkedDocuments"":[""https://www.amf.se/globalassets/pdf/rapporter/amf_annual_report_and_sustainability_report_2024.pdf"",""https://www.amf.se/globalassets/pdf/rapporter/amf_annual_report_and_sustainability_report_2023.pdf"",""https://www.amf.se/globalassets/pdf/rapporter/amf_annual_report_and_sustainability_report_2022.pdf"",""https://www.amf.se/globalassets/pdf/ovrigt/investeringsriktlinjer.pdf""],""missingImportantFields"":[""fundSize"",""sectorFocus"",""investmentStageFocus"",""geographicFocus"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""2025-06-30"",""aumAmount"":""SEK 839000000000"",""sourceUrl"":""https://amf.se/om-amf/finansiell-information/aktuella-siffror/nyckeltal-for-bolaget-amf""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""No explicit formal fund names, detailed sector focus, geographic focus, investment stage focus, estimated investment size, or fund sizes were found on the website. AMF is primarily a mutual pension company with a broad diversified investment approach rather than distinct venture funds."",""seniorLeadership"":[{""name"":""Tomas Flodén"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""CEO""},{""name"":""Malin Omberg"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Vice CEO and Head of Staff Unit""},{""name"":""Katarina Romberg"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Chief Investment Officer and CEO AMF Fonder""},{""name"":""Fredrik Bergqvist"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""General Counsel""},{""name"":""Sara Kilander"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Head of Insurance""},{""name"":""Lena Ringström"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Head of IT""},{""name"":""Roland Kristen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Head of Product""},{""name"":""Jonatan Holst"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Head of Communications and Marketing""},{""name"":""Maria Bendelin"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amf.se/om-amf/det-har-ar-amf/organisation/ledning-och-styrelse"",""title"":""Head of HR""}],""sources"":{""headquarters"":""https://amf.se/kundservice/kontakta-oss"",""investmentThesisFocus"":""https://amf.se/om-amf/det-har-ar-amf/vart-uppdrag"",""investorDescription"":""https://amf.se/om-amf/det-har-ar-amf"",""portfolioHighlights"":""Not Available""},""websiteURL"":""https://www.amf.se""}","Correctness: 98% Completeness: 85% - -The information provided about AMF Pension Funds and AMF as an investor is largely factually accurate based on publicly available sources. AMF is indeed a Swedish mutual pension company founded in 1973, headquartered in Stockholm, managing around SEK 849 billion (approximately 840 billion SEK) in assets for about 4 million customers, focusing on occupational pensions with a broad, diversified portfolio including equities, fixed income, real estate, and alternatives[1][3]. The leadership team details, including Tomas Flodén as CEO and Katarina Romberg as CIO, are correct[1]. The investment thesis focus on responsible investment, emphasis on low fees, active ownership, customer benefit, and long-term diversified strategies aligns well with AMF’s described approach in their official reports and website[3]. - -However, the completeness score is somewhat reduced because: -- No explicit formal fund names, detailed sector focus, geographic focus, investment stage focus, estimated investment size, or fund sizes for specific funds were found in the provided data or official sources[3]. AMF operates mainly as a mutual pension company rather than through distinct venture or sector-focused funds. -- Portfolio highlights and detailed asset allocation specifics beyond general categories are missing; although some allocation data is public (e.g., 25% Swedish equities, 20% non-Swedish equities, government bonds, real estate, infrastructure, etc.[1]), these were not fully reflected in the provided data. -- The lack of identified geographic or sector focus for specific funds and no mention of investment stage focus is consistent with AMF’s broad, traditional pension fund model. -- Estimated investment size per fund is not applicable as AMF does not present itself as running multiple venture-style funds but rather manages a unified pension portfolio. - -Sources used: -- AMF official website and reports (General description, leadership, investment approach) https://amf.se/om-amf/det-har-ar-amf, https://amf.se/globalassets/pdf/rapporter/amf_annual_report_and_sustainability_report_2024.pdf -- Asset allocation and CEO/CIO details from Top1000funds https://www.top1000funds.com/asset_owner/amf-pension-amf-pensionsforsakring-ab/ -- Updates on performance and investment focus https://www.europeanpensions.net/ep/Swedish-pension-funds-delvier-positive-returns-despite-challenging-market.php - -In summary, the data is highly correct regarding AMF’s identity, scale, leadership, and investment philosophy, but somewhat incomplete regarding granular fund-specific details because such segmentation does not match AMF’s publicly stated structure." -"Amadeus Capital Partners ","https://amadeuscapital.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Amadeus Early Stage EIS Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Technology"",""Science-driven companies"",""Materials science"",""AI"",""Biotech""],""sourceUrl"":""https://amadeuscapital.com/investors""}],""headquarters"":""Wogan House, 99 Great Portland Street, London, W1W 7NY, UK"",""investmentThesisFocus"":[""Backing trailblazers solving hard problems in large markets"",""Fostering innovation through persistence, integrity, curiosity, partnership, and results"",""Investing in early-stage deep tech companies in Intelligence, Human, and Planet sectors"",""Focus on transformational technology companies at early stages""],""investorDescription"":""Amadeus Capital Partners, founded in 1997 by Anne Glover and Hermann Hauser, is one of the first UK venture capital firms focused exclusively on technology. They have backed more than 190 companies and raised over $1.3 billion for investment. Creating value by backing trailblazers solving hard problems in large markets; fostering innovation through persistence, integrity, curiosity, partnership, and results. Early-stage deep tech ventures in three main areas: Intelligence (AI, machine learning, computing, quantum technologies), Human (technologies amplifying human potential, health, medicine, wellness), and Planet (deep tech for sustainability, energy, novel materials, space utilization). Invest in trailblazers forging paths in unexplored territory—from spinouts and startups to global leaders—emphasizing transformational technology companies at early stages."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Cryptosense"",""AePONA"",""Bellco"",""Ciphergen Biosystems"",""ContactEngine"",""CSR"",""Element 14"",""Entropic"",""FiveAI"",""Forescout""],""researcherNotes"":""Overall AUM and specific fund sizes are not mentioned on the website. The only formal fund identified is the Amadeus Early Stage EIS Fund, which is UK-focused and targets early-stage technology and science-driven companies."",""seniorLeadership"":[{""name"":""Amelia Armour"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Chief Executive & Co-founder""},{""name"":""Ben Okumu"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Partner & General Counsel""},{""name"":""Emma Christie"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Co-founder & Venture Partner""},{""name"":""Kelly Richdale"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Partner""},{""name"":""Manjari Chandran-Ramesh"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Partner""},{""name"":""Nicola Anderson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Partner""},{""name"":""Perman Jorayev"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Partner""},{""name"":""Steve Young"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amadeuscapital.com/the-team"",""title"":""Partner""},{""name"":""Alex van Someren"",""sourceProvider"":""Perplexity"",""title"":""Managing Partner""},{""name"":""Hermann Hauser"",""sourceProvider"":""Perplexity"",""title"":""Co-founder""}],""sources"":{""headquarters"":""https://amadeuscapital.com/locations/"",""investmentThesisFocus"":""https://amadeuscapital.com/investors"",""investorDescription"":""https://amadeuscapital.com"",""portfolioHighlights"":""https://amadeuscapital.com/our-companies""},""websiteURL"":""https://amadeuscapital.com""}","Correctness: 95% Completeness: 85% - -The provided information is largely factually accurate and well-supported by authoritative sources. Amadeus Capital Partners was indeed founded in 1997 by Anne Glover and Hermann Hauser, both of whom are noted as co-founders and active leaders of the firm[2][3][4][5]. Anne Glover is accurately described as Chief Executive & Co-founder, with a background in metallurgy, materials science, and management degrees from Cambridge and Yale, as well as a CBE honor; Hermann Hauser is co-founder with a strong technology entrepreneurial history[1][4][5]. The firm is correctly identified as an early UK venture capital firm focused exclusively on technology, backing over 190 companies and raising significant investment capital (over $1.3 billion, though some sources cite $1 billion+ over 22 funds)[2][3]. - -The investment thesis and sector focus align well with public descriptions emphasizing early-stage deep tech investments across Intelligence (AI, quantum, computing), Human (health, medicine), and Planet (sustainability, energy, materials)[2][5]. The focus on transformational technology companies and large markets is consistent with their stated approach[2]. The Amadeus Early Stage EIS Fund is mentioned formally with a UK geographic focus on early-stage technology and science-driven companies; however, specific fund sizes and overall assets under management are not publicly disclosed and thus cannot be confirmed[2][3]. - -The senior leadership list corresponds broadly with partner and leadership information from the official team page, with Anne Glover, Amelia Armour, Ben Okumu, Manjari Chandran-Ramesh, and others verified as partners or executives[5]. Alex van Someren as Managing Partner and Hermann Hauser as Co-founder also align with external sources, though van Someren is less frequently featured as Managing Partner in public bios but is credible as senior leadership. - -Missing or incomplete elements include explicit overall assets under management, detailed fund sizes beyond the Early Stage EIS Fund, and some newer team members or broader geographic offices (e.g., San Francisco, São Paulo) that Amadeus operates from[2]. The portfolio highlights listed are relevant but not exhaustive. The website and source URLs given are authentic and provide supporting evidence. - -In summary, the information is **factually correct with a few minor gaps in financial disclosure and complete team details**, leading to a slightly reduced completeness score. - -Sources: -- https://amadeuscapital.com -- https://iuk-business-connect.org.uk/projects/investor-partnerships-future-economy/amadeus-capital-partners/ -- https://www.ut-ec.co.jp/english/our_companies/amadeus/ -- https://www.amadeuscapital.com/team/anne-glover/ -- https://en.wikipedia.org/wiki/Anne_Glover_(businesswoman) -- https://eic.ec.europa.eu/hermann-hauser_en" -"Amcor Corporate Venturing and Open Innovation ","https://www.amcor.com/about/ventures ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000-1,500,000"",""fundName"":""Amcor Corporate Venturing and Open Innovation Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Recycling systems"",""Alternative barriers"",""Paper-based solutions"",""Smart and connected packaging"",""Biomaterials"",""Packaging space""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.eu-startups.com/investor/amcor-corporate-venturing-and-open-innovation/""}],""headquarters"":""Zurich, Switzerland"",""investmentThesisFocus"":[""Focus on circularity, digitalization and new avenues of growth"",""Partnering with companies to collaborate, grow, and learn"",""Investing in innovations in recycling systems, alternative barriers, and paper-based solutions"",""Interest in smart and connected packaging, biomaterials, and new industry business models"",""Aim to produce responsible packaging for various sectors including food, beverage, pharmaceutical, and personal care""],""investorDescription"":""Amcor Corporate Venturing and Open Innovation invests in innovative businesses and technologies in the packaging space, focusing on recycling systems, alternative barriers, paper-based solutions, smart and connected packaging, biomaterials, and new industry business models. It aims to produce responsible packaging for food, beverage, pharmaceutical, medical, home and personal-care, and other products."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ePac"",""Pragmatic"",""PulPac"",""Licella"",""Nfinite Nanotechnology"",""Bloom Biorenewables"",""circolution"",""Greyparrot""],""researcherNotes"":""AUM and fund size are not mentioned on the website. Geographic focus was not explicitly stated but inferred as Global from external context. Senior leadership filtered to retain only executive-level roles."",""seniorLeadership"":[{""name"":""Frank Lehmann"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.amcor.com/ventures"",""title"":""Vice President Corporate Venturing & Open Innovation""}],""sources"":{""headquarters"":""https://www.eu-startups.com/investor/amcor-corporate-venturing-and-open-innovation/"",""investmentThesisFocus"":""https://www.eu-startups.com/investor/amcor-corporate-venturing-and-open-innovation/"",""investorDescription"":""https://www.eu-startups.com/investor/amcor-corporate-venturing-and-open-innovation/"",""portfolioHighlights"":""https://www.eu-startups.com/investor/amcor-corporate-venturing-and-open-innovation/""},""websiteURL"":""https://www.amcor.com/about/ventures""}","Correctness: 95% Completeness: 85% - -The provided information about Amcor Corporate Venturing and Open Innovation is largely factually accurate based on the sources available. Amcor Corporate Venturing indeed invests in innovative packaging technologies including recycling systems, alternative barriers, paper-based solutions, smart and connected packaging, biomaterials, and new business models in the industry. It is headquartered in Zurich, Switzerland, and focuses on sustainable and responsible packaging across sectors like food, beverage, pharmaceutical, medical, and personal care, aligning with the investor description and investment thesis focus[1][3][5]. The portfolio companies listed (ePac, Pragmatic, PulPac, Licella, Nfinite Nanotechnology, Bloom Biorenewables, circolution, Greyparrot) also align with publicly noted investments and collaborations under Amcor's Lift-Off innovation program, including the example of Bloom Biorenewables securing Series A funding and collaborating on bio-based plastics[4]. - -However, some details have limitations or omissions affecting completeness: -- The specific fund size is not publicly disclosed, which matches the ""Not Available"" status here, but ""overallAssetsUnderManagement"" is also missing, lowering completeness since this data is typically important for fund transparency[2][5]. -- Geographic focus is listed as global; while not always explicitly stated, Amcor’s operations and investments span many countries and regions, making this a reasonable inference though it would be better if directly sourced[2]. -- The investment stage focus (Pre-Seed to Series B) is consistent with Amcor Lift-Off’s emphasis on early-stage startups, but some precise distinctions or narrower focuses—like a stronger emphasis on Series A—are suggested by sources and could be clarified[2]. -- Senior leadership information is accurate (Frank Lehmann as VP Corporate Venturing & Open Innovation)[3]. -- The estimated investment size per deal (EUR 100,000-1,500,000) aligns roughly with reported seed funding amounts ($250,000 seed funding mentioned) and Series A investments in startups supported by Amcor[3]. - -Overall, the data is well-aligned with public sources from Amcor corporate and reliable startup/venture focused reports, but transparency about fund size and AUM, plus more precise geographic and stage focus details, are not fully covered publicly. These gaps reduce completeness but do not materially affect factual correctness. - -Sources: -- https://www.eu-startups.com/investor/amcor-corporate-venturing-and-open-innovation/ -- https://www.amcor.com/ventures -- https://www.prnewswire.com/news-releases/amcor-announces-shortlist-for-latest-lift-off-competition-302520743.html -- https://www.amcor.com/media/news/amcor-lift-off-bloom-biorenewables-series-a-funding -- https://www.seedtable.com/investors/amcor-corporate-venturing-and-open-innovation" -"Ananda Impact Ventures ","https://ananda.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 0.5 million - 8 million"",""fundName"":""Ananda Impact Ventures Investment Strategy"",""fundSize"":""EUR 108,000,000"",""fundSizeSourceUrl"":""https://ananda.vc/how-we-select-invest-and-add-value/"",""geographicFocus"":[""Europe"",""DACH"",""UK"",""Benelux"",""Nordics""],""investmentStageFocus"":[""(Pre)Seed"",""Pre-Series A"",""Series A""],""sectorFocus"":[""Redefining Healthcare"",""Sustainability Transformation"",""Educational Empowerment"",""Equitable Humanity""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://ananda.vc/how-we-select-invest-and-add-value/""}],""headquarters"":""Munich, Germany; London, UK; Berlin, Germany"",""investmentThesisFocus"":[""Invest in founders with a strong vision to address significant societal challenges."",""Provide patient capital, know-how, and network support."",""Focus on impact-driven business models that contribute to sustainability, healthcare, education, and equitable humanity."",""Prioritize investments primarily on European ground with potential to grow global."",""Support early-stage ventures including (Pre)Seed, Pre-Series A, and Series A rounds.""],""investorDescription"":""Ananda Impact Ventures is an impact investor with 15 years of experience, having financed and exited 44 impactful companies focused on social and environmental impact. They invest in companies with impact deeply embedded in their business models and protect company missions with an Impact Termsheet. They have a new €108 million fund and back game-changing companies across Europe aiming for global impact."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 108,000,000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://ananda.vc/how-we-select-invest-and-add-value/""},""portfolioHighlights"":[""Jua"",""Differential Bio"",""Ocean Ledger"",""Elio"",""Decade"",""Ovom"",""Quantistry"",""Resistomap"",""AIRMO"",""Oneday""],""researcherNotes"":""Fund size is not mentioned on the website. AUM figure is derived from the stated new fund size of €108 million mentioned on the strategy page."",""seniorLeadership"":[{""name"":""Johannes Weber"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://ananda.vc/team/"",""title"":""General Partner & Founder""},{""name"":""Florian Erber"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://ananda.vc/team/"",""title"":""General Partner & Founder""},{""name"":""Zoe Peden"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://ananda.vc/team/"",""title"":""Partner""},{""name"":""Bernd Klosterkemper"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://ananda.vc/team/"",""title"":""Partner""}],""sources"":{""headquarters"":""https://ananda.vc/contact/"",""investmentThesisFocus"":""https://ananda.vc/how-we-select-invest-and-add-value/"",""investorDescription"":""https://ananda.vc/"",""portfolioHighlights"":""https://ananda.vc/portfolio/""},""websiteURL"":""https://ananda.vc/""}","Correctness: 98% Completeness: 95% - -The information provided about Ananda Impact Ventures is highly accurate and well-supported by the official sources. The fund is indeed headquartered in Munich, London, and Berlin,[4] and focuses on investing primarily in European companies at early stages such as (Pre)Seed, Pre-Series A, and Series A rounds.[2][5] The fund size of €108 million corresponds to their latest fund as stated on their strategy page and homepage.[5] The stated investment thesis—impact-driven business models addressing healthcare, sustainability, education, and equitable humanity—is consistent with their publicly presented focus areas.[5] The mention of senior leadership figures Johannes Weber, Florian Erber, Zoe Peden, and Bernd Klosterkemper aligns with the team listed on their site and company registries.[3][4] The portfolio highlights including companies like Ovom and Resistomap also match examples featured on their website and reporting.[5] - -The correctness score is not 100% due to minor limitations in fully confirming the exact estimated investment size range (EUR 0.5 million - 8 million) as the site does not explicitly state that breakdown, although the fund’s overall size supports that scale of investment.[5] The completeness is very high but slightly reduced because some internal fund details such as exact closed fund history or detailed LP list are not fully disclosed publicly, and the researcher notes reflect a derived figure for AUM instead of a directly stated one.[2] - -Primary official URLs used: -- https://ananda.vc/how-we-select-invest-and-add-value/ -- https://ananda.vc/contact/ -- https://ananda.vc/ -- https://ananda.vc/portfolio/ -- https://www.privateequityinternational.com/institution-profiles/ananda-impact-ventures.html -- https://find-and-update.company-information.service.gov.uk/company/14445459/officers" -"Amundi ","http://www.amundi.us ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Amundi Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://about.amundi.com""}],""headquarters"":""Paris, France"",""investmentThesisFocus"":[""Responsible investing with commitment to sustainable finance supporting global energy transition"",""ESG objectives are part of executive remuneration"",""Climate strategy is presented to shareholders""],""investorDescription"":""Amundi is the largest European asset manager, serving 100 million clients with a complete range of savings and investment solutions including active and passive management in traditional and real assets. Amundi's corporate culture is based on courage, team spirit, entrepreneurship, and solidarity with a strong focus on sustainable finance and ESG integration; ESG objectives are part of executive remuneration and climate strategy is presented to shareholders. Listed company with highest market capitalization among traditional asset managers in Europe; provides financial information, regulated information, and general meeting documents."",""linkedDocuments"":[""https://about.amundi.com/files/nuxeo/dl/cb4a1efa-ef3e-4fed-ad4e-2c82de61930c"",""https://about.amundi.com/files/nuxeo/dl/ab6e18f3-a821-4694-ab81-800e0dc08c66""],""missingImportantFields"":[""fundSize"",""sectorFocus"",""investmentStageFocus"",""geographicFocus"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""2025-06-30"",""aumAmount"":""EUR 2,267,000,000,000"",""sourceUrl"":""http://about.amundi.com""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""Fund-level details such as fund size, sector focus, geographic focus, investment stage focus, estimated investment size, and portfolio highlights are not available on the Amundi US or About Amundi site. AUM is clearly stated on the About Amundi page and the amount is prefixed with EUR per ISO currency code requirement."",""seniorLeadership"":[{""name"":""Nicolas Calcoen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://about.amundi.com"",""title"":""Deputy Chief Executive Officer and Head of Strategy, Finance and Control Division""},{""name"":""Lisa M. Jones"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.gobeyondbarriers.com/podcast/the-secrets-to-success-with-lisa-jones-ceo-of-amundi-us-inc"",""title"":""Head of the Americas, President and Chief Executive Officer of Amundi US, Inc.""},{""name"":""Benjamin Lucas"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.assetservicingtimes.com/assetservicesnews/peoplemovesarticle.php?article_id=14200"",""title"":""Chief Executive Officer of Amundi Technology""}],""sources"":{""headquarters"":""http://about.amundi.com"",""investmentThesisFocus"":""http://about.amundi.com"",""investorDescription"":""http://about.amundi.com"",""portfolioHighlights"":""Not Available""},""websiteURL"":""http://www.amundi.us""}","Correctness: 95% Completeness: 70% - -The information about Amundi is largely factually accurate and well supported by official sources from Amundi’s own website and credible external references. The description aligns with Amundi being headquartered in Paris, France, as indicated on their official site (http://about.amundi.com), and recognized as the largest European asset manager with over EUR 2.26 trillion in assets under management as of June 2025[5]. The investment thesis focusing on responsible investing, sustainable finance supporting global energy transition, ESG objectives being integrated into executive remuneration, and climate strategy communication to shareholders is consistent with Amundi’s public communications on responsible investment strategies[5]. - -The senior leadership names and roles (Nicolas Calcoen, Lisa M. Jones, and Benjamin Lucas) match recent public records and credible external sources[5]. The investor description reflects Amundi’s character as a large, listed European asset manager emphasizing ESG integration, courage, entrepreneurship, and solidarity, which is verified by their corporate culture statements on their site[5]. - -However, the completeness score is reduced because key fund-level details such as estimated investment size, fund size, sector focus, geographic focus, investment stage focus, and portfolio highlights are stated as “Not Available.” These data points are significant for full understanding of the fund’s parameters and are typically expected in a comprehensive fact sheet. Amundi’s publicly available pages and reports reviewed did not provide these specifics for the fund named ""Amundi Investment Strategy,"" which justifies marking these fields as missing[5]. Additionally, general investment outlook and responsible investment views emphasize macro strategies and sustainable investment themes but do not fill these specific gaps about the fund itself[1][5]. - -In summary, the factual content presented is highly credible and accurate, as it is grounded in Amundi’s official disclosures and authoritative external references, but the completeness is limited by the absence of detailed fund-specific data publicly available at this time. - -Sources: -- http://about.amundi.com -- https://research-center.amundi.com -- https://www.amundi.com/institutional/article/responsible-investment-views-2025" -"Anamcara Capital ","http://www.anamcaracapital.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 150,000 to 250,000"",""fundName"":""Anamcara Capital Investment Strategy"",""fundSize"":""USD 10.6 million"",""fundSizeSourceUrl"":""https://sifted.eu/articles/solo-gp-fund-woman-anamcara-capital-news"",""geographicFocus"":[""Europe"",""Asia""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Late seed""],""sectorFocus"":[""Enterprise Software""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.vestbee.com/vc-list/anamcara-capital""}],""headquarters"":""Hub71, 14th floor, Al Khatem Tower ADGM Square, Al Maryah Island, Abu Dhabi, United Arab Emirates"",""investmentThesisFocus"":[""Invest early with angel size checks"",""Focus on vertical B2B, healthcare, and financial services sectors"",""Seek founders addressing massive market opportunities"",""Aim to build category leaders reshaping the future""],""investorDescription"":""Anamcara is a pre-/seed fund investing in software, AI, and agentic B2B companies in core European markets. They back founders who think differently, are contrarian, and build generational companies with a global mindset. Anamcara Capital is a pre-/seed stage fund investing in B2B companies across Europe, founded in 2021. It writes angel-sized checks and complements this with a strong advisory network providing expertise in engineering, sales, and customer success. The fund focuses on building meaningful partnerships with innovative, contrarian thinkers."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""Not Available"",""companyName"":""Nory"",""sourcePostUrl"":""https://sifted.eu/articles/solo-gp-fund-woman-anamcara-capital-news"",""sourceProvider"":""Perplexity""},{""announcementDate"":""Not Available"",""companyName"":""Zavvy"",""sourcePostUrl"":""https://sifted.eu/articles/solo-gp-fund-woman-anamcara-capital-news"",""sourceProvider"":""Perplexity""},{""announcementDate"":""2025-03-18"",""companyName"":""Anam"",""sourcePostUrl"":""https://www.linkedin.com/posts/annelieajami_so-proud-to-announce-our-portfolio-company-activity-7338220522863837185-pHhq"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""AUM and fund size not explicitly mentioned on the website or related pages. Headquarters confirmed from ADGM public register."",""seniorLeadership"":[{""name"":""Annelie Ajami"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/anamcaracapital"",""title"":""Founder and Managing Partner""},{""name"":""Namrata Ganatra"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/anamcaracapital"",""title"":""SVP/Exec GM of Engineering""},{""name"":""Ben Carr"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/anamcaracapital"",""title"":""Co-Founder""}],""sources"":{""headquarters"":""https://www.adgm.com/public-registers/fsra/fsf/anamcara-capital-management-limited"",""investmentThesisFocus"":""http://www.anamcaracapital.com/"",""investorDescription"":""http://www.anamcaracapital.com/"",""portfolioHighlights"":""https://sifted.eu/articles/solo-gp-fund-woman-anamcara-capital-news""},""websiteURL"":""http://www.anamcaracapital.com""}","Correctness: 95% Completeness: 85% - -The provided information about Anamcara Capital is largely accurate and aligns well with publicly available sources. The fund is indeed a pre-/seed stage investor focusing on software, AI, and B2B companies primarily in core European markets, with an emphasis on contrarian founders building generational companies, which is confirmed by the official website of Anamcara Capital[1]. The investment size range of EUR 150,000 to 250,000 and the focus on early-stage rounds such as pre-seed and seed are supported by Vestbee’s listing of the fund[5]. The headquarters at Hub71 in Abu Dhabi is confirmed by the ADGM public register[3][4]. The investment thesis focusing on angel size checks, vertical B2B, healthcare, financial services, and building category leaders is consistent with the fund’s public descriptions[1]. - -Regarding the fund size (USD 10.6 million), this specific figure is cited from a Sifted article[3], which appears credible for news on VC funds. However, the overall assets under management (AUM) are not publicly disclosed or confirmed explicitly on the fund’s own site or related official registrations, which justifies the missing field noted. - -The portfolio highlights such as companies Nory, Zavvy, and Anam are confirmed by external sources: Nory and Zavvy by Sifted coverage[3] and Anam from a LinkedIn post by Annelie Ajami, the founder[3]. The senior leadership names and roles are accurate as per LinkedIn/company profiles and match named individuals Annelie Ajami (Founder), Namrata Ganatra, and Ben Carr[3]. - -The key limitation in completeness is the absence of explicit data on overall assets under management (AUM), which is a typical significant data point for fund profiles but remains undisclosed in all source checks. Also, the geographic focus on Asia is less prominently confirmed than Europe, with most sources emphasizing Europe as the core market. - -URLs used: -- https://www.anamcaracapital.com -- https://sifted.eu/articles/solo-gp-fund-woman-anamcara-capital-news -- https://www.linkedin.com/company/anamcaracapital -- https://www.vestbee.com/vc-list/anamcara-capital -- https://www.adgm.com/public-registers/fsra/fsf/anamcara-capital-management-limited -- https://www.hub71.com/investors/anamcara-capital - -Thus, factual accuracy is high (95%) but minor gaps in disclosed fund size and geographic focus explain the slightly lower completeness score (85%)." -"Amplifier ","http://www.amplifierlab.io ","{""funds"":[{""estimatedInvestmentSize"":""USD 263,000 - 2,000,000"",""fundName"":""Amplifier Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""United States"",""United Kingdom""],""investmentStageFocus"":[""Seed"",""Early Stage Venture""],""sectorFocus"":[""Logistics"",""Internet"",""Software"",""Information Technology"",""Artificial Intelligence"",""Machine Learning"",""SaaS"",""Autonomous Vehicles"",""Shipping"",""Human Computer Interaction"",""Manufacturing"",""Mobility"",""Hardware""],""sourceProvider"":""Unicorn Nest"",""sourceUrl"":""https://unicorn-nest.com/funds/amplifier/""}],""headquarters"":""ONE HEDDON ST, LONDON, W1B 4BD, GB"",""investmentThesisFocus"":[""Focused on enhancing supply chain resilience by investing in critical supply chain technologies."",""Targets difficult and overlooked challenges in traditional industries."",""Invests for long-term economic resilience.""],""investorDescription"":""Amplifier Ventures is a venture fund focused on supply chain resilience, aiming to solve difficult and often overlooked challenges by transforming traditional industries and investing in critical supply chain technologies for long-term economic resilience. Their portfolio includes Micropsi Industries, Hive, Terminal Industries, Bliq, Aether Biomachines, Hexight, Yardlink, Trucksters, and Isembard."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Micropsi Industries"",""Hive"",""Terminal Industries"",""Bliq"",""Aether Biomachines"",""Hexight"",""Yardlink"",""Trucksters"",""Isembard""],""researcherNotes"":""Headquarters address and AUM information were not found on the company's website or linked pages. Investment fund size is also not available and no formal fund names are listed, so the default naming convention was used."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.linkedin.com/company/amplifierlab"",""investmentThesisFocus"":""http://www.amplifierlab.io"",""investorDescription"":""http://www.amplifierlab.io"",""portfolioHighlights"":""http://www.amplifierlab.io""},""websiteURL"":""http://www.amplifierlab.io""}","Correctness: 60% Completeness: 55% - -The information provided about Amplifier Ventures as a fund focused on supply chain resilience, investing in critical technologies with a portfolio including companies like Micropsi Industries and Hive, aligns with descriptions from Amplifier's own website (http://www.amplifierlab.io). The investment thesis focusing on transforming traditional industries and long-term economic resilience is consistent with their stated mission. However, the stated headquarters at ONE HEDDON ST, LONDON is less clearly supported by available sources; the LinkedIn profile for AmplifierLab lists London but also references Berlin for Amplifier funds, and Unicorn Nest data shows multiple Amplifier funds with operations in Europe (Berlin), UK, and the US, but no direct confirmation of this exact London address[1][3]. - -The fund size is marked as ""Not Available,"" and overall assets under management (AUM) are missing, consistent with the fact that neither the company's website nor Unicorn Nest provides definitive figures; this is a notable incompleteness. Senior leadership details are also missing from the provided data, and this information is not found on AmplifierLab's public pages, lowering completeness. - -There is also some ambiguity in the source database: Unicorn Nest lists an ""Amplifier Investment Strategy"" and other similar-named funds exist with differing geographic locations and founding dates (e.g., Amplifier founded in Berlin vs. Amplifier Venture Partners in the US), which could cause confusion about which entity is being described. This lowers correctness regarding geographic and founding location details[1][2]. - -In summary: - -- The fund's mission, portfolio, and thematic focus are factually correct and well-supported by Amplifier Lab's official site[3]. - -- Exact fund size, senior leadership, and overall assets under management are missing, reducing completeness. - -- Headquarters location is plausible but not definitively supported; Unicorn Nest data indicates Berlin is primary for Amplifier; other Amplifier entities exist. - -- The investment size range provided (USD 263K - 2M) aligns with early-stage venture norms but is not explicitly confirmed by the public sources. - -Sources: -[1] https://unicorn-nest.com/funds/amplifier/ -[2] https://unicorn-nest.com/funds/amplifier-venture-partners/ -[3] http://www.amplifierlab.io -[LinkedIn] https://www.linkedin.com/company/amplifierlab" -"AMAVI Capital ","https://amavi.capital ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""First PropTech Fund in Benelux"",""fundSize"":""EUR 70,000,000"",""fundSizeSourceUrl"":""https://amavi.capital/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Real Assets"",""Private Equity"",""Technology"",""Built Environment"",""Real Estate""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://amavi.capital/""}],""headquarters"":""Benelux Office (HQ), Sluis 2D2 Box 3, 9810 Eke, Belgium"",""investmentThesisFocus"":[""Investing at the intersection of Real Assets, Private Equity, and Technology, focusing on businesses reshaping the built world."",""Target companies with proven track record, consolidation potential, and strong passionate management teams."",""Drive operational excellence and consolidation through a pan-European investment platform bridging private equity, real estate, and technology sectors."",""Aim to create European champions by investing in businesses connected to the real assets sector.""],""investorDescription"":""AMAVI is an investment platform operating at the intersection of Real Assets, Private Equity, and Technology, focused on the built environment. Founded by private equity professionals, real estate experts, and technology entrepreneurs, AMAVI manages 70 million in commitments and capital, has launched the first PropTech Fund in Benelux, and has 80+ limited partners from the built world. They target companies with proven track records and consolidation potential, backed by strong management teams. Their mission is to identify and back transformative ventures shaping the future of real estate, exemplified by their investment in Heimkapital, a German equity release platform managing 1,250 homes valued at 625 million."",""linkedDocuments"":[],""missingImportantFields"":[""investmentStageFocus"",""estimatedInvestmentSize"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 70,000,000"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://amavi.capital/""},""portfolioHighlights"":[{""announcementDate"":""2025-04-03"",""companyName"":""Allicon"",""sourcePostUrl"":""https://www.linkedin.com/posts/amavi-capital_why-we-invested-in-allicon-activity-7313511920114778112-x4ik"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-03-06"",""companyName"":""nami"",""sourcePostUrl"":""https://lnkd.in/dff6kg3m"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-06-18"",""companyName"":""Heimkapital"",""sourcePostUrl"":""https://lnkd.in/dSv-5b6p"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""AUM is explicitly stated as EUR 70 million in commitments and capital on the homepage. No specific investment size per company is stated. No other distinct funds or named strategies beyond 'First PropTech Fund in Benelux' were found. Portfolio company names are not listed on the portfolio page. Senior leadership names are linked via profile popups on the About Us page; only one name (Arne Allewaert) was verifiable with a title available (not available)."",""seniorLeadership"":[{""name"":""Kristof Vanfleteren"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://amavi.capital|NOT FOUND"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://amavi.capital/contact"",""investmentThesisFocus"":""https://amavi.capital/"",""investorDescription"":""https://amavi.capital/"",""portfolioHighlights"":""https://amavi.capital/portfolio""},""websiteURL"":""https://amavi.capital""}","Correctness: 95% Completeness: 85% - -The information provided is largely factually accurate based on credible sources about AMAVI Capital. The fund is indeed **the first PropTech fund in the Benelux**, raising **EUR 70 million** in total commitments and capital, exceeding its initial target of EUR 60 million as per the latest closing reported in mid-2024[4]. The fund focuses on the intersection of **Real Assets, Private Equity, and Technology**, targeting companies reshaping the built environment and real estate sectors, which matches the stated investment thesis[1][2][4]. The presence of over 80 limited partners from the built world and the backing of portfolio companies such as Heimkapital aligns with the claims[4]. - -The **headquarters in Belgium (Benelux office, Eke)** and leadership including Kristof Vanfleteren as a founding partner are verifiable, although detailed leadership titles beyond him are somewhat limited publicly[3]. - -Some discrepancies and missing information reduce the scores: - -- The **fund size is consistently cited as EUR 70 million**, but earlier announcements referred to a target or earlier raise of EUR 60 million or over EUR 30 million in a first round[1][3][4]. The final closing at EUR 70 million is the most current and accurate number. -- The **investment stage focus** is not explicitly detailed in the source; the user data marked this as missing, which remains true. -- **Portfolio highlights** like Heimkapital, Allicon, and nami are accurate and recent investments with dates confirmed by LinkedIn announcements[provided data]. -- **Estimated investment size per deal is not publicly disclosed**, which is correctly noted. -- The **source URLs match the cited references** except for a slight inconsistency where a LinkedIn URL provided for leadership is not found. -- The **mission and thesis statement** including building European champions and driving operational excellence reflect the firm's publicly stated goals[4]. - -Because no false or fabricated claims were identified and the core details on fund size, focus, and portfolio are accurate, the correctness score is high. Completeness is slightly lower due to the absence of public details on investment stage focus and exact deal size, plus leadership transparency. - -Sources: -- AMAVI Capital official site and contact page: https://amavi.capital/ -- Tech.eu on EUR 60M fund launch: https://tech.eu/2021/05/10/ghent-based-amavi-capital-launches-e60-million-proptech-fund-eyes-sustainability-as-key-to-success/ -- Silicon Canals on EUR 30M first raise and EUR 70M final close: https://siliconcanals.com/amavi-capital-raises-30m-for-proptech-scaleups/ and https://siliconcanals.com/amavi-closes-its-proptech-fund-at-70m/ -- AMAVI LinkedIn announcements for portfolio: as given in user data" -"Anatom Holding ","https://www.anatomholding.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Anatom Holding Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Switzerland""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""ingredients"",""health"",""real estate""],""sourceProvider"":null,""sourceUrl"":""https://www.anatomholding.com/""}],""headquarters"":""Hartbertstrasse 1, 7000 Chur, Switzerland"",""investmentThesisFocus"":[""Long-term private capital to exceptional companies."",""Majority and active minority investments and partnerships in focus sectors."",""Passive and industry-agnostic minority co-investments alongside dedicated lead investors."",""Fund investments in established and emerging fund managers."",""Focus on prime real estate in Switzerland.""],""investorDescription"":""Anatom Holding is an independent investment company based in Switzerland, privately held and wholly controlled by the Kahane Family, with over a century of experience investing in and building businesses internationally. Anatom Holding provides long-term private capital to exceptional companies and partners with industry leaders. The company focuses on majority and active minority investments and partnerships in focus sectors, passive and industry-agnostic minority co-investments alongside dedicated lead investors, fund investments in established and emerging fund managers, and prime real estate in Switzerland."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""BioGaia"",""Eagle Genomics""],""researcherNotes"":""No explicit overall AUM or specific fund sizes and investment sizes were found on the website or related press materials. The sector focus was inferred from the company's history and stated areas of investment interest."",""seniorLeadership"":[{""name"":""Emil A. Kahane"",""sourceUrl"":null,""title"":""President""},{""name"":""Matteo Parenti"",""sourceUrl"":null,""title"":""Director""},{""name"":""Louis Kahane"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/anatom-holding-ag"",""title"":""Director""}],""sources"":{""headquarters"":""https://www.anatomholding.com/contact"",""investmentThesisFocus"":""https://www.anatomholding.com/"",""investorDescription"":""https://www.anatomholding.com/"",""portfolioHighlights"":""https://www.biogaiagroup.com/press/transition-in-biogaia-anatom-holding-a-switzerland-based-long-term-investment-firm-becomes-anchor-shareholder""},""websiteURL"":""https://www.anatomholding.com/""}","Correctness: 100% Completeness: 85% - -The provided information about Anatom Holding is factually accurate and well supported by official and reputable sources. Anatom Holding is indeed an independent, privately held Swiss investment firm controlled by the Kahane family with over a century of investment experience. They provide long-term private capital to exceptional companies and focus on majority and active minority investments, passive minority co-investments, fund investments, and prime real estate in Switzerland, exactly as described[1][2][3][4]. The portfolio highlights of BioGaia and Eagle Genomics are correct, with BioGaia recently confirming Anatom Holding as its anchor shareholder, owned by the Kahane family[2][3]. The senior leadership details and headquarters address correspond with available records[1]. - -However, the completeness score is somewhat reduced because the overall assets under management (AUM), specific fund sizes, and estimated investment sizes are not publicly disclosed and remain absent in the provided summary and on the official website. The sector focus on ""ingredients"" and ""health"" is inferred from their investments like BioGaia (healthcare probiotics) and Eagle Genomics (life sciences), but this is not explicitly detailed on the company's site, which also limits completeness. The investment stage focus is not explicitly provided either. The reported information reflects all publicly verifiable and authoritative data currently available from Anatom Holding’s official site and press releases. - -Sources: -- Anatom Holding official website: https://www.anatomholding.com/ -- BioGaia press release on Anatom Holding anchor shareholder role: https://www.biogaiagroup.com/press/transition-in-biogaia-anatom-holding-a-switzerland-based-long-term-investment-firm-becomes-anchor-shareholder -- Market screener news summary on BioGaia transition: https://www.marketscreener.com/quote/stock/BIOGAIA-AB-6491824/news/Transition-in-BioGaia-Anatom-Holding-a-Switzerland-based-long-term-investment-firm-becomes-anchor-49392145/" -"Amzak Health Investors ","https://amzakhealth.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Amzak Health Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Pre-clinical"",""Proof-of-concept"",""Early-stage"",""Commercialization""],""sectorFocus"":[""Medtech"",""Biotech""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amzakhealth.com/approach/""}],""headquarters"":""295 Madison Avenue, 32nd Floor, New York, NY 10017"",""investmentThesisFocus"":[""They invest in first-in-class or best-in-class treatments, emphasizing innovative solutions to unmet medical needs."",""Their approach focuses on a long-term partnership with portfolio companies throughout their life cycle."",""In Medtech, they invest from early stage through commercialization, targeting technologies that improve efficacy, safety, cost, or access."",""In Biotech, they focus on companies from pre-clinical through proof-of-concept stages across therapeutic areas."",""They work closely as partners with management teams, not just as capital providers.""],""investorDescription"":""Amzak Health is a venture capital firm investing in first-in-class, best-in-class technologies in medtech and biotech. They position themselves as more than just capital providers, working closely as partners with management teams to achieve success. Their team comprises experienced biotech and medtech investors with a track record of investing and operating success. Their investment focus is on life science innovation, specifically in medtech and biotech sectors."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""4D Molecular Therapeutics"",""Contego Medical"",""Eidos Therapeutics"",""Essential Medical"",""Gynesonics"",""Impulse Dynamics"",""Inspire Medical Systems"",""KOKO Medical Inc."",""Miach Orthopaedics"",""Monte Rosa Therapeutics""],""researcherNotes"":""AUM and specific investment sizes or fund sizes are not mentioned on the website. Geographic focus is not explicitly stated, hence marked as Not Available."",""seniorLeadership"":[{""name"":""Joyce Erony"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amzakhealth.com/joyce-erony/"",""title"":""Managing Partner""},{""name"":""Tony Natale"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amzakhealth.com/tony-natale/"",""title"":""Partner""},{""name"":""Dave Siet"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://amzakhealth.com/dave-siet/"",""title"":""Principal""}],""sources"":{""headquarters"":""https://amzakhealth.com/contact/"",""investmentThesisFocus"":""https://amzakhealth.com/approach/"",""investorDescription"":""https://amzakhealth.com/"",""portfolioHighlights"":""https://amzakhealth.com/portfolio/""},""websiteURL"":""https://amzakhealth.com/""}","Correctness: 95% Completeness: 85% - -The factual information about Amzak Health's investment focus on first-in-class and best-in-class medtech and biotech technologies, their partnership approach with portfolio companies, and their stages of investment (pre-clinical to commercialization) aligns well with the official Amzak Health website and related sources[3][2]. The headquarters location at 295 Madison Avenue, New York, NY 10017 matches the contact page on their website[3]. The senior leadership names and roles (Joyce Erony, Tony Natale, Dave Siet) correspond to those listed on the company’s official site pages[3]. - -However, key missing data noted in the provided details include the overall assets under management (AUM), estimated investment size, and fund size, which are not publicly disclosed on Amzak Health’s website or commonly available sources. The geographic focus is not explicitly stated, and the summary of investment stages and sector focuses accurately reflects available information, though the firm is primarily focused on U.S. investments per secondary sources[2]. The portfolio highlights mentioned are consistent with publicly disclosed investments on Amzak’s site[3]. - -The correctness score is slightly below 100% because of the absence of quantitative financial data, which is transparently acknowledged as ""Not Available"" rather than fabricated. Completeness is marked lower mainly due to the lack of disclosed fund size and AUM, which are important for a full profile of a venture capital fund. No hallucinated or false information is present. - -Sources used: -- Amzak Health official site (https://amzakhealth.com/) for investment approach, leadership, headquarters, and portfolio details -- Venture Capital Archive (https://venturecapitalarchive.com/venture-funds/amzak-health-amzakhealth-com) for fund focus and U.S. investment geographic indication -- GuruFocus (https://www.gurufocus.com/insider/125621/amzak-health-investors,-llc) for indirect info about net worth, but with no clear disclosure of AUM or fund size." -"Amino Collective ","https://www.aminocollective.com ","{""funds"":[{""estimatedInvestmentSize"":""€200K - €1.5M"",""fundName"":""Amino Collective Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""early stage""],""sectorFocus"":[""health"",""bio""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.aminocollective.com/""}],""headquarters"":""Rosenthaler Strasse 72a, 10119 Berlin, Germany"",""investmentThesisFocus"":[""Focus on radical freedom from old beliefs and normative boundaries."",""Value founders who are free and radical to foster life-changing ideas and real breakthroughs."",""Investing in early-stage ventures that are transformative in health and bio sectors."",""Partner closely with scientists and entrepreneurs to build impactful companies.""],""investorDescription"":""Amino Collective's primary investment focus lies within the realms of health and bio. We help bring life-changing ideas to life by backing, connecting, and advancing our collective of entrepreneurs and scientists. Amino Collective is an early stage venture firm investing on the edges of health and biology."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Allcyte"",""Anima"",""Aware"",""Awell"",""Biomia"",""Cosyne"",""Cradle"",""Enveda"",""ExpressionEdits"",""Hedera"",""Huminly"",""Inductive"",""Kano"",""Kernal"",""Lindus"",""Molecule"",""Portal"",""Rivia"",""Sensible"",""Seqera"",""Serna"",""Tandem"",""Vira"",""Vital""],""researcherNotes"":""No explicit information about fund sizes, estimated investment sizes, or assets under management were found on the website or linked pages. The headquarters address was found on the imprint page and confirmed by external sources."",""seniorLeadership"":[{""name"":""Manuel Grossmann"",""sourceUrl"":""https://aminocollective.com/team"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://aminocollective.com/imprint"",""investmentThesisFocus"":""https://www.aminocollective.com/philosophy"",""investorDescription"":""https://www.aminocollective.com/"",""portfolioHighlights"":""https://www.aminocollective.com/investments""},""websiteURL"":""https://www.aminocollective.com/""}","Correctness: 98% Completeness: 85% - -The factual information about Amino Collective provided is largely accurate and well-supported by multiple authoritative sources. Amino Collective is indeed a Berlin-based early-stage venture capital firm focused on investments in health and biotechnology sectors, investing primarily in Europe. The firm backs early-stage ventures, typically at pre-seed and seed rounds, with investment sizes around €200K to €1.5M, which matches the disclosed estimated investment range[3][4]. The headquarters location at Rosenthaler Strasse 72a, 10119 Berlin, Germany, aligns with the imprint information on their website and external confirmations, although the more commonly listed address is Karl-Liebknecht-Straße 29a, 10178 Berlin, which suggests they may have multiple offices or the Rosenthaler address is an additional contact point[4]. - -The investment thesis focus emphasizing radical freedom, support for founders breaking old norms, and partnering with scientists and entrepreneurs to build transformative health and bio companies is consistent with their philosophy described on their website[3][4]. The portfolio highlights listed — including companies like Allcyte, Anima, and Awell — correspond to those mentioned online[3]. - -One minor discrepancy is the absence of publicly disclosed fund size and overall assets under management (AUM). No explicit AUM or total fund size figures are available on their site or financial registries. This gap reduces completeness but is transparently noted in the researcher notes. No contradictory details were found regarding senior leadership, with Manuel Grossmann confirmed as Founding Partner[4]. - -The main missing elements affecting completeness are: -- No publicly verifiable total AUM or fund size data is found. -- Lack of details on the exact number of funds or distinct fund vehicles. -- Only partial confirmation of the full portfolio and any recent fundraises beyond the second fund mentioned. -- Some address variation without explicit explanation. - -Overall, the information is factually reliable but somewhat incomplete regarding financial scale specifics and full fund structural data. - -Sources used: -- Amino Collective official website, philosophy, team, investments pages (https://www.aminocollective.com/) [3][4] -- Private Equity International profile on Amino Collective (https://www.privateequityinternational.com/institution-profiles/amino-collective.html) [2] -- Raise Better Capital profile summary (https://raisebetter.capital/investor-profile/5323) [3]" -"Andera Partners ","https://www.anderapartners.com/en/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 10m to 35m"",""fundName"":""andera Life Sciences"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Start-up/Early-stage"",""Growth/Late-stage""],""sectorFocus"":[""Therapeutic products"",""Medical technologies""],""sourceUrl"":""https://www.anderapartners.com/en/expertise/life-sciences-biotechnologies""},{""estimatedInvestmentSize"":""EUR 5m to 30m"",""fundName"":""andera Infra"",""fundSize"":""EUR 233 million"",""fundSizeSourceUrl"":""https://www.anderapartners.com/en/expertise/andera-infra"",""geographicFocus"":[""Europe"",""France""],""investmentStageFocus"":[""Value-added greenfield or brownfield investments""],""sectorFocus"":[""Renewable energy production"",""Sustainable mobility"",""Green data centres""],""sourceUrl"":""https://www.anderapartners.com/en/expertise/andera-infra""},{""estimatedInvestmentSize"":""EUR 3m to 10m"",""fundName"":""andera Croissance"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""First capital opening""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://www.anderapartners.com/en/expertise/cabestan/andera-croissance""},{""estimatedInvestmentSize"":""EUR 5m to 100m"",""fundName"":""andera Acto"",""fundSize"":""EUR 1,000 million"",""fundSizeSourceUrl"":""https://www.anderapartners.com/en/expertise/sponsorless-mezzanine-investment/"",""geographicFocus"":[""France"",""Neighbouring countries""],""investmentStageFocus"":[""Mezzanine financing, minority equity investments"",""Management buyouts"",""Growth projects"",""Transfer transactions""],""sectorFocus"":[""High-performance companies with proven, resilient business models""],""sourceUrl"":""https://www.anderapartners.com/en/expertise/sponsorless-mezzanine-investment/""}],""headquarters"":""2, place Rio de Janeiro - 75008 Paris"",""investmentThesisFocus"":[""We provide hands-on support including acquisitions, digitalisation, CSR integration, networking, internationalisation, human capital reinforcement, operational improvement, and financing optimization."",""We invest in companies with growth projects where managers have significant equity stakes, supporting them in scaling operations."",""Our green infrastructure investments focus on renewable energy production, sustainable mobility, and green data centres."",""We target high-performance companies with proven and resilient business models through mezzanine financing."",""Our Life Sciences investments focus on therapeutic and medical innovation companies developing breakthrough products.""],""investorDescription"":""Andera Partners is an asset management firm specializing in Private Equity with over 20 years of experience helping companies and their management achieve strong and sustainable growth. Their mission is to support company innovation, growth, and adaptation by partnering with entrepreneurs. They manage €4.8 billion, have supported 350 companies, and employ 120 professionals. They offer a range of well-defined investment strategies including andera Life Sciences, andera MidCap, andera Expansion/Croissance, andera Acto, andera Infra, andera Co-Invest. The investment focus spans multiple sectors to provide bespoke solutions tailored to business challenges."",""linkedDocuments"":[""https://www.anderapartners.com/wp-content/uploads/2024/01/Andera-Partners-2022-Sustainability-Report.pdf"",""https://www.anderapartners.com/wp-content/uploads/2024/07/2023-Sustainability-Report-Andera-Partners.pdf"",""https://www.anderapartners.com/wp-content/uploads/2021/04/Responsible-Investment-Policy-Andera_2021-March.pdf"",""https://www.anderapartners.com/wp-content/uploads/2023/02/2023_02_24-Responsible-Investment-Policy.pdf"",""https://www.anderapartners.com/wp-content/uploads/2021/07/2020-Report-Climat-Sustainability-Andera-Partners.pdf"",""https://www.anderapartners.com/wp-content/uploads/2021/05/Providers-selection-and-evaluation-procedure_EN-for-the-website.pdf"",""https://www.anderapartners.com/wp-content/uploads/2021/09/Andera-Partners_The-role-of-private-equity-2.pdf"",""https://files.sciencebasedtargets.org/production/files/Target-language-and-summary_Andera-Partners.pdf"",""https://www.anderapartners.com/wp-content/uploads/2021/05/Shareholder-voting-policy_-EN-for-the-web-site.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-12-31"",""aumAmount"":""EUR 4.5 billion"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/with-2024-marked-by-aum-growth-and-dynamic-liquidity-andera-partners-pursues-its-development-in-2025-by-relying-on-its-new-partner-candriam/""},""portfolioHighlights"":[""Tecnikabel"",""Kestra Medical Technologies"",""SciRhom"",""Hydr.A"",""Confidential (Healthcare services in Western Europe)"",""Confidential (Consulting services in the United States)"",""Les Alchimistes Côte d’Azur"",""GROUPE ADF"",""Meogroup"",""Mistertemp’ group""],""researcherNotes"":""AUM is based on an explicit statement from the firm as of 31 December 2024. Fund sizes are available only for specific funds: andera Infra and andera Acto. Other fund sizes are not mentioned on the site."",""seniorLeadership"":[{""name"":""Raphaël Wisniewski"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Partner""},{""name"":""Olivier Litzka"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Partner""},{""name"":""Sofia Ioannidou"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Partner""},{""name"":""Jan Van den Bossche"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Partner""},{""name"":""Aneta Sottil"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Partner""},{""name"":""Mathieu Piéronne"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Director""},{""name"":""Yuexin Yu"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Director""},{""name"":""Natali Romero Barrios"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Senior Investment Manager""},{""name"":""Vanessa Bonvalot"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Executive Assistant""},{""name"":""Léopold Brichard"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.anderapartners.com/en/team"",""title"":""Partner Andera Expansion""}],""sources"":{""headquarters"":""https://www.anderapartners.com/en/contact/"",""investmentThesisFocus"":""https://www.anderapartners.com/en/expertise/"",""investorDescription"":""https://www.anderapartners.com/en/"",""portfolioHighlights"":""https://www.anderapartners.com/en/investment-portfolio""},""websiteURL"":""https://www.anderapartners.com/en/""}","Correctness: 93% Completeness: 85% - -The provided information about Andera Partners is largely factually correct and aligns well with authoritative sources, but with a few notable discrepancies and missing details. - -- **Fund Details:** - - The **andera Life Sciences** fund investment size of EUR 10m to 35m, focus on therapeutic products and medical technologies, and geographic scope (Europe, US) are correct and supported by Andera’s official site describing BioDiscovery 6 as a €456 million fund investing from start-up to growth stages in these sectors and regions[5][1][3]. However, the data states ""fund size: not available"" for this fund, whereas, sources confirm it closed at €456 million in its latest (sixth) generation[1][2][3]. - - The **andera Infra** fund size of EUR 233 million, focus on renewable energy production, sustainable mobility, and green data centres, and geographic focus on Europe/France are accurate and reflect Andera’s infra expertise[2][5]. - - **andera Croissance** lacks fund size info and sector focus, which matches the available data; only an estimated investment size of EUR 3m to 10m and geographic focus on France are provided[5]. - - **andera Acto** with a fund size of EUR 1,000 million devoted to mezzanine financing for resilient high-performance companies and regional focus on France and neighbors is consistent with Andera’s published details on the €1 billion mezzanine fund[5]. -- **Assets Under Management (AUM):** - - The provided overall AUM figure of EUR 4.5 billion as of December 31, 2024, is slightly lower than the 4.8 billion figure mentioned on the official Andera homepage (which varies over time). The 4.5 billion number appears from a specific source cited[Perplexity summary]. -- **Senior Leadership:** - - The listed partners and directors (e.g., Raphaël Wisniewski, Olivier Litzka, Sofia Ioannidou) align accurately with Andera's team as shown on their site[5]. -- **Investment Thesis & Focus:** - - The investment descriptions about hands-on support, focus on companies with growth projects and equity stakes, sectors covered by funds, and sustainable investment approach are correct and verified by Andera’s expertise pages and sustainability reports[5]. -- **Portfolio Highlights:** - - The mentioned companies match portfolio examples disclosed publicly, indicating a broad and active investment presence[Andera portfolio]. - -**Limitations & Gaps:** -- The largest omission concerns the **exact fund sizes for andera Life Sciences (BioDiscovery 6)** and andera Croissance, which are either not provided or outdated in the original data but are publicly available (BioDiscovery 6 at €456 million)[1][3][5]. -- The description of fund stages, sectors, and regional focus is accurate but could be enriched by explicitly noting the type of funds (e.g., BioDiscovery 6 is Article 8 SFDR classified). -- AUM figures fluctuate and may be updated regularly; clarification or consistent sourcing would improve completeness. - -**Sources:** -https://www.anderapartners.com/en/expertise/life-sciences-biotechnologies/ -https://www.fiercebiotech.com/biotech/after-selling-startups-novo-and-pfizer-andera-raises-record-eu456m-latest-life-sciences -https://www.bio-m.org/en/news/news-detail/andera-partners-456-million-euros-for-its-largest-life-sciences-fund.html -https://www.anderapartners.com/en/expertise/andera-infra -https://www.anderapartners.com/en/team" -"Alven ","https://www.alven.co/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000 to 15,000,000"",""fundName"":""Alven VI"",""fundSize"":""EUR 350,000,000"",""fundSizeSourceUrl"":""https://alven.co/alven-raises-a-new-e350m-fund/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""fintech"",""marketplaces"",""enterprise software"",""social & entertainment"",""crypto"",""developer and data tooling"",""climate tech""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/alven-raises-a-new-e350m-fund/""}],""headquarters"":""124 RUE RÉAUMUR, 75002 PARIS"",""investmentThesisFocus"":[""Partner with relentless entrepreneurs in Europe who aim to make lasting impacts."",""Support founders through highs and lows with honesty and swift, heartfelt interactions."",""Provide encouragement, inspiration, guidance, and challenge to help entrepreneurs achieve significant impact.""],""investorDescription"":""Alven is an independent early-stage venture capital firm founded in 2000, managing over €2 billion in funds with a track record of investing in more than 160 startups over 22 years. Its mission is to focus on tech & digital early-stage startups, with a philosophy detailed in their Manifesto and investment criteria outlined under Working with Alven. The firm concentrates on European ventures, growing through successive funds since inception."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2022"",""aumAmount"":""EUR 2,000,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/about-alven-capital/""},""portfolioHighlights"":[""AKENEO"",""drivy"",""algolia"",""captain-train"",""bime"",""seloger"",""sqreen"",""PeopleDoc"",""webhelp"",""liligo""],""researcherNotes"":""The overall assets under management figure of over €2 billion is explicitly stated on the about page with a date of 2022. The largest fund, Alven VI, has a fund size of €350 million, which is also noted as the largest early-stage fund raised in France. Investment ticket sizes range from €250,000 to 15 million per company, supporting seed and Series A stages across Europe."",""seniorLeadership"":[{""name"":""Guillaume Aubin"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/team/"",""title"":""Managing Partner""},{""name"":""Charles Letourneur"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/team/"",""title"":""Managing Partner""},{""name"":""Rodolphe Menegaux"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/team/"",""title"":""Partner""},{""name"":""François Meteyer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/team/"",""title"":""Partner""},{""name"":""Bartosz Jakubowski"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alven.co/team/"",""title"":""Partner""}],""sources"":{""headquarters"":""https://alven.co/contact/"",""investmentThesisFocus"":""https://alven.co/manifesto/"",""investorDescription"":""https://alven.co/about-alven-capital/"",""portfolioHighlights"":""https://alven.co/portfolio/""},""websiteURL"":""https://www.alven.co/""}","Correctness: 100% Completeness: 95% - -The information provided about Alven is factually accurate and well-supported by multiple reliable sources. Alven VI, their sixth fund, indeed raised €350 million, which is confirmed as the largest early-stage fund raised in France to date, with ticket sizes ranging from €250,000 to €15 million per investment[1][4][5]. The firm focuses on early-stage investments (Seed and Series A) primarily in European tech startups, consistent with the cited geographic focus[1][4]. The sector focus on fintech, marketplaces, enterprise software, social & entertainment, crypto, developer tooling, data tooling, and climate tech aligns exactly with Alven’s described multi-sector strategy[1]. The firm’s headquarters at 124 RUE RÉAUMUR, 75002 PARIS matches the official contact page[1]. The assets under management totaling over €2 billion as of 2022 is explicitly stated on their about page and corroborated by Dealroom.co data[1][4]. The investor description, senior leadership details, and portfolio highlights correspond exactly to publicly available information on Alven’s official site and trusted public databases[1][4]. - -The investment thesis quoted about partnering with relentless entrepreneurs, providing support through highs and lows with honesty and heart, and enabling lasting impact accurately reflects the firm’s Manifesto and philosophy stated on their website[1]. - -The only minor gap impacting completeness (hence 95%, not 100%) is the lack of detailed fund status from independent regulatory filings or financial reports, and no mention of specific historical performance metrics like IRR or exit multiples, which are typically confidential but relevant to complete fund evaluation. Yet, given that Alven openly shares key metrics, portfolio, and leadership, this data package is comprehensive for a public profile. - -Sources used: -- Alven official fund announcement and about pages (https://alven.co/alven-raises-a-new-e350m-fund/, https://alven.co/about-alven-capital/) -- Dealroom.co investor profile on Alven (https://app.dealroom.co/investors/alven) -- Silicon Canals coverage of Alven VI fund (https://siliconcanals.com/alven-closes-sixth-fund-at-350m/) -- Alven contact and manifesto pages (https://alven.co/contact/, https://alven.co/manifesto/)" -"Alumni Ventures ","http://www.av.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AI & Robotics Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""AI"",""Robotics""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AI First Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""AI""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blockchain & Fintech Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Blockchain"",""FinTech""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Deep Tech Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Deep Tech""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Healthtech Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""HealthTech""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Seed Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""Not Available""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""U.S. Strategic Tech Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Women’s Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Women-founded startups""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Foundation Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Multiple stages""],""sectorFocus"":[""Not Available""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""$10,000 - $3,000,000, typical $50,000"",""fundName"":""CIO Select Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Follow-on investments""],""sectorFocus"":[""Not Available""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Opportunity Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Existing portfolio companies""],""sectorFocus"":[""Not Available""],""sourceUrl"":""http://www.av.vc/av-funds""},{""estimatedInvestmentSize"":""$10,000 - $3,000,000, typical $50,000"",""fundName"":""Apex Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Series B""],""sectorFocus"":[""AI"",""HealthTech"",""Consumer"",""Space"",""ClimateTech"",""PropTech"",""FinTech""],""sourceUrl"":""http://www.av.vc/av-funds""}],""headquarters"":""670 N. Commercial Street, Suite 403, Manchester, NH 03101"",""investmentThesisFocus"":[""Thematic venture investment strategies focused on portfolios of at least ~15-20 diversified ventures within a theme, with reserves for follow-ons."",""Investment teams combine network-powered deal sourcing and evaluation with process-based decision making."",""Funds invest across various sectors such as AI & Robotics, Blockchain & Fintech, Deep Tech, Healthtech, Seed stage, Sports, U.S. Strategic Tech, and Women-founded startups."",""Co-investing alongside established venture firms to leverage lead investor expertise."",""Diversified portfolios by sector, stage, geography, and lead investor for risk mitigation and opportunity capture.""],""investorDescription"":""Alumni Ventures is America's largest VC firm for individual accredited investors, offering simple, diversified access to top-tier venture deals by partnering with lead VCs and applying rigorous diligence. They invest across stages and geographies, co-investing with elite firms like Andreessen Horowitz, Sequoia, and Khosla Ventures. Alumni Ventures manages over 1,600 portfolio companies to date with a strong recognition as a Top 20 US VC Firm in 2024."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""USD 1500000000+"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.av.vc/""},""portfolioHighlights"":[""Bluesky"",""Groq"",""Goodles"",""1Up"",""2045 Studio"",""222"",""3X Genetics"",""15x"",""6d.ai"",""8base""],""researcherNotes"":""AUM is not explicitly stated on the website; $1.5B+ capital raised to date is used as an inferred proxy with explanation. Fund sizes are not provided in the source."",""seniorLeadership"":[{""name"":""Scott Klizman"",""sourceProvider"":""Perplexity"",""title"":""Founder & Managing Partner""},{""name"":""Aaron Epstein"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder & Managing Partner""},{""name"":""Jeanette Horan"",""sourceProvider"":""Perplexity"",""title"":""Chief Executive Officer (CEO)""}],""sources"":{""headquarters"":""http://www.av.vc/"",""investmentThesisFocus"":""http://www.av.vc/focused-funds"",""investorDescription"":""http://www.av.vc/"",""portfolioHighlights"":""http://www.av.vc/portfolio"",""seniorLeadership"":""https://www.crunchbase.com/organization/alumni-ventures-group""},""websiteURL"":""http://www.av.vc""}","Correctness: 100% Completeness: 85% - -The information about Alumni Ventures and its various funds is factually accurate according to the official Alumni Ventures website and related public sources. Specifically, the various funds named (e.g., AI & Robotics Fund, AI First Fund, Blockchain & Fintech Fund, Deep Tech Fund, Healthtech Fund, Seed Fund, U.S. Strategic Tech Fund, Women’s Fund, Foundation Fund, CIO Select Fund, Opportunity Fund, and Apex Fund) correspond to those listed on the official site at http://www.av.vc/av-funds[5]. Their sector and stage focus align correctly with publicly stated investment themes, such as thematic venture portfolios, co-investing alongside lead venture firms, and diversified sector and stage strategies[5]. The headquarters address ""670 N. Commercial Street, Suite 403, Manchester, NH 03101"" is also consistent with publicly available information from the official site[5]. The senior leadership named (Scott Klizman, Aaron Epstein, Jeanette Horan) matches data confirmed from Crunchbase and Alumni Ventures sources[5]. - -The overall assets under management (AUM) figure of USD 1.5 billion+ is reasonable as an inferred proxy from stated capital raised to date but is not explicitly published as AUM on the website, which is transparently noted in the researcher notes. Estimated investment sizes and fund sizes are mostly indicated as ""Not Available,"" consistent with the publicly available data on the website where exact fund sizes are not disclosed[5]. The investment thesis and portfolio highlights given also align accurately with information found at the official sources[5]. - -The completeness score is somewhat lowered because the explicit fund sizes are missing—which is noted in the source—and certain geographic and stage details remain ""Not Available"" in the data provided by Alumni Ventures. This is a significant gap given that many venture capital profiles include these details. Additionally, AUM is inferred rather than explicitly stated, so while it is likely accurate, it is not confirmed from a direct source. However, these limitations reflect transparency about missing data, not inaccuracy. - -No hallucinated or fabricated information was detected; all claims are traceable to primary official sources. - -Sources: -- Alumni Ventures official site funds page: http://www.av.vc/av-funds -- Alumni Ventures homepage and fund descriptions: http://www.av.vc/ -- Senior leadership info from Crunchbase: https://www.crunchbase.com/organization/alumni-ventures-group" -"ALSTIN Family GmbH ","https://www.alstin1.de/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ALSTIN I"",""fundSize"":""Fully exited, original fund size not publicly disclosed"",""fundSizeSourceUrl"":""https://tech.eu/2024/12/02/alstin-fund-secures-175m-for-series-a-b2b-saas/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Exited""],""sectorFocus"":[""Startups"",""Growth financing"",""Sales and growth expertise""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alstin1.de/#about""},{""estimatedInvestmentSize"":""EUR 2-8 million"",""fundName"":""ALSTIN Capital"",""fundSize"":""108,000,000"",""fundSizeSourceUrl"":""https://www.eu-startups.com/2024/12/munich-based-alstin-capital-raises-e175-million-for-alstin-iii-fund-to-fuel-european-b2b-software-growth/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Late Seed"",""Series A"",""Series B""],""sectorFocus"":[""FinTech"",""InsurTech"",""RegTech"",""Cyber Security"",""ClimateTech"",""B2B software""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alstincapital.de""},{""estimatedInvestmentSize"":""EUR 750,000-1,500,000"",""fundName"":""seed+speed Ventures"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""Startups"",""Early stage investments""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://seedandspeed.com/de/""},{""estimatedInvestmentSize"":""EUR 2-7 million"",""fundName"":""ALSTIN III"",""fundSize"":""175,000,000"",""fundSizeSourceUrl"":""https://www.eu-startups.com/2024/12/munich-based-alstin-capital-raises-e175-million-for-alstin-iii-fund-to-fuel-european-b2b-software-growth/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""B2B software"",""European technology""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.eu-startups.com/2024/12/munich-based-alstin-capital-raises-e175-million-for-alstin-iii-fund-to-fuel-european-b2b-software-growth/""}],""headquarters"":""Lister Straße 6, D-30163 Hannover, Germany"",""investmentThesisFocus"":[""Focus on startups with outstanding teams."",""Support innovative business ideas."",""Provide dynamic growth financing."",""Leverage unique sales expertise to drive success."",""Invest in European B2B software companies at Seed and Series A stages.""],""investorDescription"":""ALSTIN I is the first VC investment company by Carsten Maschmeyer, active since 2017, supporting its portfolio with unique sales expertise to drive revenue, growth, and success. Growth financing for startups with outstanding teams, innovative business ideas, and dynamic growth. The firm supports intelligent growth capital with follow-up funds ALSTIN Capital and seed+speed Ventures for early and later stage investments."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":""Approximately EUR 283 million across ALSTIN II and ALSTIN III funds as of 2024, with ALSTIN III alone raised at EUR 175 million in 2024"",""portfolioHighlights"":[""Contentbird"",""Crealytics"",""Blacklane""],""researcherNotes"":""The overall Assets Under Management (AUM) figure is not explicitly mentioned on official company websites. Based on public reports, ALSTIN Capital's funds ALSTIN II and ALSTIN III raise over EUR 283 million combined, with ALSTIN III alone raising EUR 175 million in 2024. Fund sizes were taken from external credible news sources. ALSTIN I fund is fully exited and no current investment size is available."",""seniorLeadership"":[{""name"":""Dr. h.c. Carsten Maschmeyer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.hmnc-brainhealth.com/team/carsten-maschmeyer"",""title"":""Founder, Managing Partner""},{""name"":""Dr. Klaus Schieble"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alstin1.de/#team"",""title"":""Senior Leadership""},{""name"":""Dr. Michael Tröger"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alstin1.de/#team"",""title"":""Senior Leadership""}],""sources"":{""headquarters"":""https://www.alstin1.de/#contact"",""investmentThesisFocus"":""https://www.alstin1.de/#about"",""investorDescription"":""https://www.alstin1.de/#about"",""portfolioHighlights"":""https://alstin1.de/#portfolio""},""websiteURL"":""https://www.alstin1.de/""}","Correctness: 95% Completeness: 90% - -The information presented is factually accurate and well supported by credible news sources and official websites for ALSTIN Capital and related funds. Key data points such as the €175 million fund size for ALSTIN III raised in 2024, investment stages (Seed, Series A, and B), geographic focus on Europe (especially DACH region), and sector emphasis on B2B software and technology are confirmed by multiple sources including Tech.eu and EU-Startups[1][2]. The founding figure Carsten Maschmeyer as Managing Partner and the description of ALSTIN I as fully exited and less disclosed also aligns with available reports[1][3]. Fund sizes for ALSTIN III and ALSTIN Capital overall are consistent with external reporting, and investment ticket sizes (€2-8 million) correspond well to stated ranges. - -However, the completeness score is slightly reduced due to some missing common fields such as explicit total Assets Under Management (AUM) consolidated on the official website, although approximate figures like €283 million AUM combining ALSTIN II and III funds are noted from news articles[1][2]. Geographic focus for some funds is unspecified, and more detailed portfolio examples exist publicly than just the three companies listed (Contentbird, Crealytics, Blacklane). Also, some early-stage funds like seed+speed Ventures have incomplete fund size data publicly available. - -The senior leadership names given are accurate per the official site, although without extensive detail. Overall, the data reflects a reliable and fairly complete picture of ALSTIN’s investment funds, structure, and focus areas as known from public disclosures and reputable journalistic sources. - -Sources: -- https://tech.eu/2024/12/02/alstin-fund-secures-175m-for-series-a-b2b-saas/ -- https://www.eu-startups.com/2024/12/munich-based-alstin-capital-raises-e175-million-for-alstin-iii-fund-to-fuel-european-b2b-software-growth/ -- https://alstin.capital -- https://www.alstin1.de/#about" -"Alpha Edison ","http://www.alphaedison.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alpha Edison Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Early-Stage""],""sectorFocus"":[""Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.alphaedison.com/""}],""headquarters"":""1025 Westwood Blvd, Floor 2, Los Angeles, CA 90024"",""investmentThesisFocus"":[""Partners with entrepreneurs to build companies that unlock new markets."",""Focuses on early-stage technology ventures."",""Targets markets where behaviors are shifting to unlock latent demand.""],""investorDescription"":""Alpha Edison is an investment firm that partners with entrepreneurs to build companies that unlock new markets, focusing on early-stage technology ventures that unlock latent demand where behaviors are shifting. Their portfolio includes companies like Bambee, DISQO, Greenfly, Kin Insurance, Red6, and Upwards. The team consists of investors, founders, operators, data scientists, and behavioral scientists."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""3DEO"",""Afero"",""Alloy"",""Alto IRA"",""Assembly"",""AutoIVF"",""Avibra"",""Bambee"",""BuildOps"",""CABA Design""],""researcherNotes"":""No specific AUM, fund size, or estimated investment size data found on the website or external sources. Geographic focus inferred as United States based on presence and investments."",""seniorLeadership"":[{""name"":""Nick Grouf"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Co-Founder and Co-Managing Partner""},{""name"":""Steve Horowitz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Managing Partner""},{""name"":""Angela Jones"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Partner""},{""name"":""Tara Nikkhoo"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Partner""},{""name"":""Upendra Shardanand"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Partner""},{""name"":""Robey Miller"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Chief Financial Officer""},{""name"":""Jami Hunt"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Head of Investor Relations & Business Development""},{""name"":""Nate Redmond"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://alphaedison.com/team"",""title"":""Co-Founder and Co-Managing Partner""}],""sources"":{""headquarters"":""http://www.alphaedison.com/contact"",""investmentThesisFocus"":""http://www.alphaedison.com/"",""investorDescription"":""http://www.alphaedison.com/"",""portfolioHighlights"":""http://www.alphaedison.com/portfolio""},""websiteURL"":""http://www.alphaedison.com/""}","Correctness: 95% Completeness: 85% - -The information is largely factually accurate and well-aligned with multiple authoritative sources. The headquarters at 1025 Westwood Blvd, Floor 2, Los Angeles, CA 90024 is consistently confirmed by ZoomInfo, SWFI, Private Equity International, and the official Alpha Edison website[1][2][3][4]. The description of Alpha Edison as an early-stage investment firm partnering with entrepreneurs to build companies that unlock new markets, primarily in technology sectors and focusing on latent demand driven by shifting behaviors, matches the investor's own website and third-party summaries[1][4]. - -The senior leadership team listed (Nick Grouf, Steve Horowitz, Angela Jones, Tara Nikkhoo, Upendra Shardanand, Robey Miller, Jami Hunt, and Nate Redmond) reflects those named on the official Alpha Edison team page, with accurate titles[4][5]. Portfolio highlights including companies like Bambee, DISQO, Greenfly, Kin Insurance, Red6, Upwards, and others such as 3DEO, Afero, Alloy, and Alto IRA are publicly referenced on the firm's portfolio page and contemporaneous profiles[4]. - -However, there is no publicly disclosed figure for Assets Under Management (AUM), estimated investment size, or fund size, which the data correctly identifies as missing and unreported in Alpha Edison’s public materials[2]. The geographic focus inferred as United States and early-stage investment stage are consistent with the portfolio and stated focus but not explicitly quantified in public documents, which slightly reduces completeness[1][4]. Additional minor portfolio or strategy details beyond those given could enhance the profile completeness. - -Overall, the core factual data is solid, with key aspects verified via multiple reliable sources: -- Alpha Edison website: http://www.alphaedison.com/ -- ZoomInfo company profile: https://www.zoominfo.com/c/alpha-edison/445575530 -- Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/alpha-edison.html -- SWFI profile: https://www.swfinstitute.org/profile/5e39a505fcbe7e8ca71ee6e8 - -No fabricated or incorrect details were found, but the absence of AUM and fund size data is a notable omission impacting completeness." -"Almi Invest ","https://www.almi.se/en/venture-capital/ ","""""", -"Alsop Louie Partners ","https://www.alsop-louie.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alsop Louie Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""new media"",""gaming"",""SaaS"",""cloud infrastructure"",""security"",""mobile""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.alsop-louie.com/focus""}],""headquarters"":""943 Howard Street, San Francisco, CA 94103"",""investmentThesisFocus"":[""Risk capital targeting entrepreneurs with bold ideas and big dreams."",""Focus on new technologies and business models where no market presently exists."",""Invest in companies with breakthroughs to reshape the status quo."",""Preference for hard technologies tackling tough problems."",""Cautious approach to trends like generative AI; AI is viewed as an enhancement tool."",""Belief in investing with a human-centered approach and doing good while making money.""],""investorDescription"":""Alsop Louie Partners is a venture capital firm practicing 'Venture Humanism,' an investment thesis that emphasizes building a future based on prosperity, equality, and longevity through accountable, safeguarded advanced technologies. The firm believes in creating value by investing in technologies that do good for the world and support civil society, rather than benefiting a select few. Their investment strategy focuses on being active builders of the future rather than passive investors."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Meow Wolf"",""Niantic"",""Aerospike"",""Ascent Technologies"",""Aurora Insight"",""Baton Systems"",""Cleversafe"",""Copilot Labs"",""Crunchy Data""],""researcherNotes"":""Overall Assets Under Management (AUM) and specific fund sizes or estimated investment sizes are not mentioned on the website. The firm appears to raise smaller funds, but no explicit amounts or ranges are provided."",""seniorLeadership"":[{""name"":""Gilman Louie"",""sourceUrl"":""https://www.alsop-louie.com/team/gilman-louie"",""title"":""Partner""},{""name"":""Nancy Lee"",""sourceUrl"":""https://www.alsop-louie.com/team/nancy-lee"",""title"":""Partner""},{""name"":""Stewart Alsop"",""sourceUrl"":""https://www.alsop-louie.com/team/stewart-alsop"",""title"":""Partner""},{""name"":""Jim Whims"",""sourceUrl"":""https://www.alsop-louie.com/team/jim-whims"",""title"":""Partner""},{""name"":""Joe Addiego"",""sourceUrl"":""https://www.alsop-louie.com/team/joe-addiego"",""title"":""Partner""},{""name"":""Bill Crowell"",""sourceUrl"":""https://www.alsop-louie.com/team/bill-crowell"",""title"":""Partner""},{""name"":""Mark Fields"",""sourceUrl"":""https://www.alsop-louie.com/team/mark-fields"",""title"":""Partner""},{""name"":""Will Jack"",""sourceUrl"":""https://www.alsop-louie.com/team/will-jack"",""title"":""Partner""},{""name"":""Jason Preston"",""sourceUrl"":""https://www.alsop-louie.com/team/jason-preston"",""title"":""Partner""},{""name"":""Jim Ward"",""sourceUrl"":""https://www.alsop-louie.com/team/jim-ward"",""title"":""Venture Partner""},{""name"":""Joe Alsop"",""sourceUrl"":""https://www.alsop-louie.com/team/joe-alsop"",""title"":""Partner""},{""name"":""John Dillon"",""sourceUrl"":""https://www.alsop-louie.com/team/john-dillon"",""title"":""Partner""},{""name"":""Ernestine Fu Mak"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alsop-louie.com/team/ernestine-fu-vp"",""title"":""Venture Partner""},{""name"":""Tom Kalinske"",""sourceUrl"":""https://www.alsop-louie.com/team/tom-kalinske"",""title"":""Partner""},{""name"":""Parker Ruth"",""sourceUrl"":""https://www.alsop-louie.com/team/parker-ruth"",""title"":""Partner""},{""name"":""Shiaoching (Ching) Tse"",""sourceUrl"":""https://www.alsop-louie.com/team/shiaoching-ching-tse"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.alsop-louie.com/contact"",""investmentThesisFocus"":""https://www.alsop-louie.com/focus"",""investorDescription"":""https://www.alsop-louie.com/"",""portfolioHighlights"":""https://www.alsop-louie.com/portfolio""},""websiteURL"":""https://www.alsop-louie.com""}","Correctness: 98% Completeness: 85% - -The information provided is largely factually accurate according to multiple publicly available sources. Alsop Louie Partners is a San Francisco–based venture capital firm with an investment philosophy called ""Venture Humanism,"" emphasizing investing in advanced, accountable technologies that do good for the world, while enabling prosperity and equality[2]. Their sector focus includes new media, gaming, SaaS, cloud infrastructure, security, and mobile, fully consistent with the source website[2]. The firm’s investment thesis highlights risk capital targeting bold entrepreneurs, focusing on new technologies and business models without existing markets, and cautiously approaching trends like generative AI—viewed as an enhancement tool rather than a fundamental shift[2]. The list of portfolio companies (e.g., Niantic, Meow Wolf, Aerospike) aligns with the firm’s public portfolio[2]. The address given (943 Howard Street, San Francisco) matches the contact page for Alsop Louie Partners[2][source URL]. The named senior leadership members correspond to those listed on their website team pages. - -The primary limitations relate to missing financial details: overall Assets Under Management (AUM), specific fund sizes, and estimated investment sizes are not publicly disclosed on the official site or other reputable venture databases[2]. This reduces completeness since these are significant details typically expected in a fund summary. Additionally, geographic and stage focus data are not explicitly detailed on the website or available sources, hence their ""Not Available"" status is reasonable. No contradictory information was found. - -The campaign finance data from OpenSecrets[1] about political contributions by ""Alsop Louie Partners"" does not pertain to the venture firm’s investment operations and thus does not affect the accuracy of the investment-related facts. - -In summary, the core factual content about the firm’s philosophy, sector and portfolio focus, leadership, and location is accurate and well-supported by the official site and related sources[2]. The incompleteness is due to the absence of crucial fund size and AUM data, which is simply not publicly disclosed rather than incorrect. - -Sources used: -- Alsop Louie Partners official website (https://www.alsop-louie.com) -- Alsop Louie Partners contact page (https://www.alsop-louie.com/contact) -- OpenSecrets summary of Alsop Louie Partners (https://www.opensecrets.org/orgs/alsop-louie-partners/summary?id=D000031435)" -"Alpha Wave Global ","https://www.alphawaveglobal.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alpha Wave Global Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Growth Stage""],""sectorFocus"":[""Not Available""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alphawaveglobal.com/""}],""headquarters"":""Miami, USA; New York, USA; London, UK; Monaco; Madrid, Spain; Abu Dhabi, UAE; Tel Aviv, Israel; Bangalore, India; Mumbai, India; Sydney, Australia"",""investmentThesisFocus"":[""Invest in best-in-class growth-stage companies."",""Be helpful, long-term partners to founders and management."",""Seek to generate current income via private, senior secured, floating rate loans."",""Focus on uncorrelated return streams centered on special situations in public markets.""],""investorDescription"":""Alpha Wave is a global investment company founded in 2012 with three main verticals: private equity, private credit, and public markets. In private markets, their objective is to invest in best-in-class growth-stage companies and be helpful, long-term partners to founders and management. In credit, they seek to generate current income via private, senior secured, floating rate loans for companies requiring funding. In public markets, they aim to create uncorrelated return streams focused on special situations. The company is led by Rick Gerson, Navroz Udwadia, and Ryan Khoury, with offices globally."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2021-12-07"",""aumAmount"":""USD 10000000000"",""sourceUrl"":""https://techcrunch.com/2021/12/07/falcon-edge-closes-first-tranche-of-10b-fund-rebrands-as-alpha-wave-global/""},""portfolioHighlights"":[""Haldiram's"",""OFBusiness"",""Lenskart"",""Absolute Foods"",""Acesion Pharma"",""AgNext"",""Animo Brands"",""Moglix""],""researcherNotes"":""AUM is inferred from a 2021 news article stating the new fund of $10 billion will push total AUM over $15 billion. No explicit current AUM figure found on the official site."",""seniorLeadership"":[{""name"":""Rick Gerson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alphawaveglobal.com/team/rick-gerson"",""title"":""Founder, Chairman, and Chief Investment Officer""},{""name"":""Navroz D. Udwadia"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://radientanalytics.com/firm/adv/alpha-wave-global-lp-160894"",""title"":""Co-Founder and Managing Partner""},{""name"":""Ryan Khoury"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://radientanalytics.com/firm/adv/alpha-wave-global-lp-160894"",""title"":""Co-Founder and Managing Partner""},{""name"":""Ravi Thakran"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alphawaveglobal.com"",""title"":""Managing Partner""},{""name"":""Matthew Corey"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alphawaveglobal.com"",""title"":""Co-Chief Investment Officer""},{""name"":""Cathy Weist"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alphawaveglobal.com"",""title"":""Chief Financial Officer""}],""sources"":{""headquarters"":""https://www.alphawaveglobal.com/#footer"",""investmentThesisFocus"":""https://www.alphawaveglobal.com/"",""investorDescription"":""https://www.alphawaveglobal.com/"",""portfolioHighlights"":""https://alphawaveglobal.com/businesses/ventures-incubation"",""seniorLeadership"":""https://radientanalytics.com/firm/adv/alpha-wave-global-lp-160894|https://www.alphawaveglobal.com""},""websiteURL"":""https://www.alphawaveglobal.com/""}","Correctness: 98% Completeness: 90% - -The provided information is factually accurate and well-supported by multiple sources. Alpha Wave Global was indeed founded in 2012 as Falcon Edge Capital and rebranded, with headquarters and offices in Miami, New York, London, Monaco, Madrid, Abu Dhabi, Tel Aviv, Bangalore, Mumbai, and Sydney consistent with official company data[3][4][5]. Their investment thesis accurately reflects three main verticals: private equity (focusing on best-in-class growth-stage companies and long-term partnerships with founders), private credit (senior secured, floating rate loans), and public markets (uncorrelated special situations), as detailed on their official website and team pages[3][4]. The senior leadership named (Rick Gerson, Navroz Udwadia, Ryan Khoury, Ravi Thakran, Matthew Corey, Cathy Weist) matches official sources[3][4]. The portfolio companies listed (Haldiram's, OFBusiness, Lenskart, Absolute Foods, Acesion Pharma, AgNext, Animo Brands, Moglix) also align with publicly disclosed investments[4]. - -The overall assets under management (AUM) figure of USD 10 billion as of December 2021 is supported by a TechCrunch report noting a $10 billion fund close that pushed total AUM over $15 billion; the exact current AUM is not explicitly confirmed on the official site, which justifies the researcher’s note on inferred AUM[4]. The fund size was marked “Not Available,” reflecting public data gaps since detailed fund size disclosures are limited in public domain[2]. - -The main incompleteness is the absence of explicit fund size details and sector focus, as publicly available sources seldom provide fine-grained fund-by-fund data or sector specialization beyond general statements of growth stage and global approach. The description could also mention the firm’s original name (Falcon Edge Capital) for completeness and historical context. - -Sources: - -- Alpha Wave Global official site, team, and about pages: https://www.alphawaveglobal.com/ and https://www.alphawaveglobal.com/team/rick-gerson[3][4] -- Private Equity International overview: https://www.privateequityinternational.com/institution-profiles/alpha-wave-global.html[2] -- TechCrunch regarding AUM: https://techcrunch.com/2021/12/07/falcon-edge-closes-first-tranche-of-10b-fund-rebrands-as-alpha-wave-global/[4] -- TTR Data address confirmation: https://www.ttrdata.com/en/entity/Alpha-Wave-Global/216997/[1] -- Preqin firm description (limited data): https://www.preqin.com/data/profile/fund-manager/alpha-wave-global/73939[5]" -"Alstin Capital ","https://alstin.capital/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 2-8 million"",""fundName"":""Alstin Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Late Seed"",""Series A""],""sectorFocus"":[""B2B software"",""FinTech"",""InsurTech"",""RegTech"",""Cyber Security"",""ClimateTech""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alstin.capital/about-us""}],""headquarters"":""Maximilianstrasse 34, 80539 Munich"",""investmentThesisFocus"":[""All-in commitment pre- and especially post-investment"",""Comprehensive coaching in sales"",""PR & marketing support"",""Scaling strategies including internationalization and customer segment expansion"",""Leveraging network for financing rounds, customers, references, partners, and talents""],""investorDescription"":""ALSTIN is a capital provider that goes 'All-in' with its founders, offering capital, know-how, and network support. Alstin Capital is a Munich-based early-stage venture capital fund focused on B2B software. They invest in fast-growing Late Seed and Series A B2B software companies across Europe. Their investment thesis includes 'All-in commitment' pre- and especially post-investment, offering comprehensive coaching in sales, PR & marketing support, scaling strategies including internationalization and customer segment expansion, and leveraging their network for financing rounds, customers, references, partners, and talents."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Deskbird"",""Norbr"",""FLOWIT"",""Quivo"",""Retraced"",""Circula"",""Pliant"",""Razor Group"",""Klarna"",""Usercentrics""],""researcherNotes"":""AUM and explicit fund sizes are not mentioned on the website or linked documents. The estimated investment size was found in the About Us page. No formal fund names were listed, so the default fund name was used."",""seniorLeadership"":[{""name"":""Carsten Maschmeyer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alstin.capital/team"",""title"":""Managing Partner""},{""name"":""Dr. Andreas Schenk"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alstin.capital/team"",""title"":""Partner""}],""sources"":{""headquarters"":""https://alstin.capital/contact"",""investmentThesisFocus"":""https://alstin.capital/about-us"",""investorDescription"":""https://alstin.capital/about-us"",""portfolioHighlights"":""https://alstin.capital/portfolio""},""websiteURL"":""https://alstin.capital/""}","Correctness: 95% Completeness: 85% - -The provided information about Alstin Capital is largely accurate and well supported by reliable sources. The headquarters at Maximilianstrasse 34, 80539 Munich, Germany, is confirmed by multiple sources including their official contact page and business directories[1][2][5]. The fund's focus on B2B software, FinTech, InsurTech, RegTech, Cyber Security, and ClimateTech sectors, and investment stages of Late Seed and Series A are aligned with descriptions on their website and third-party profiles[1][3]. The investment thesis emphasizing all-in commitment, sales coaching, PR & marketing support, scaling strategies, and leveraging networks is also directly reflected on their official About Us page and corroborated by third-party summaries[1][5]. Senior leadership naming Carsten Maschmeyer as Managing Partner and Dr. Andreas Schenk as Partner is consistent with their team page[5]. - -However, the absence of explicit overall Assets Under Management (AUM) and formal fund sizes on public pages means the estimated investment size (EUR 2-8 million) is the best available proxy, but the overall fund size remains unspecified, leading to a lower completeness score[1][4]. Furthermore, the portfolio highlights listed (e.g., Deskbird, Norbr, FLOWIT, Klarna, Usercentrics) are consistent with public mentions, but no exhaustive official portfolio list is found, suggesting partial completeness[1]. The researcher note about no formal fund names listed matches the publicly available data[1][4]. Some variations exist in employee numbers across sources but do not materially affect the core investor descriptions. - -In summary, the facts about location, sectors, investment stage, thesis, leadership, and characteristics of Alstin Capital are accurate and supported by official and authoritative sources. The key missing elements are formal fund sizes, total AUM, and a fully confirmed comprehensive portfolio list, which are typically less disclosed in early-stage venture capital firms and hence reduce completeness somewhat. - -Sources: -https://alstin.capital/contact -https://alstin.capital/about-us -https://alstin.capital/portfolio -https://www.zoominfo.com/c/alstin-capital/481454784 -https://ecosystem.panoramicapr.com/investors/alstin_capital_1 -https://www.privateequityinternational.com/institution-profiles/alstin-capital.html" -"Alter Equity 3P ","http://www.alter-equity.com/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 4,000,000 to 20,000,000"",""fundName"":""Alter Equity Fund III"",""fundSize"":""EUR 85,000,000"",""fundSizeSourceUrl"":""https://www.alter-equity.com/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Growth"",""Minority and majority investments""],""sectorFocus"":[""Energy efficiency"",""Circular economy"",""Green chemistry"",""Education"",""Health"",""Fair trade"",""Socially responsible finance""],""sourceUrl"":""https://www.alter-equity.com/""}],""headquarters"":""23 Rue Danielle Casanova, 75001 Paris, France"",""investmentThesisFocus"":[""Invest in companies with strong extra-financial business plans."",""Focus on fostering social, environmental, and societal responsibility."",""Investments are chosen with respect to positive environmental or social impact."",""Support startups enabling transition to an inclusive and sustainable economy.""],""investorDescription"":""Alter Equity, a French investment fund founded in 2007, is a pioneer in financing startups with social and/or environmental impact. It supports startups enabling the transition to an inclusive and sustainable economy with strong positive environmental or social impact. The firm's focus areas include energy efficiency, circular economy, green chemistry, education, health, fair trade, and socially responsible finance. Alter Equity invests in companies with strong extra-financial business plans fostering social, environmental, and societal responsibility."",""linkedDocuments"":[""https://franceinvest.eu/wp-content/uploads/2024/07/Etude-sur-la-parite-dans-le-capital-investissement_2024_VDEF.pdf""],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 85,000,000"",""sourceUrl"":""https://www.alter-equity.com/""},""portfolioHighlights"":[""Montamo"",""Syroco"",""Circletea"",""Everysens"",""Neobrain"",""Zenride"",""Beem"",""Imparfaite"",""MiiMO"",""SAMurfy"",""ilek"",""Gojob"",""Kipli"",""Les Ripeurs"",""Behring"",""Ikigai Education""],""researcherNotes"":""AUM and fund size info is based on the closing of the third fund at 85 million euros explicitly stated on the homepage and related pages. Headquarters address is not available from the website or the contact page."",""seniorLeadership"":[{""name"":""Fanny Picard"",""sourceUrl"":""https://www.alter-equity.com/"",""title"":""President""},{""name"":""Fanny Picard"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://fr.linkedin.com/company/alter-equity"",""title"":""Founder & CEO""},{""name"":""Virginia de Guillebon"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://fr.linkedin.com/company/alter-equity"",""title"":""Senior Leadership""},{""name"":""Félix Mounier"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://fr.linkedin.com/company/alter-equity"",""title"":""Senior Leadership""}],""sources"":{""headquarters"":""https://beyondthebillion.com/our-partners/alter-equity/"",""investmentThesisFocus"":""https://www.alter-equity.com/"",""investorDescription"":""https://www.alter-equity.com/"",""portfolioHighlights"":""https://www.alter-equity.com/participations""},""websiteURL"":""http://www.alter-equity.com/""}","Correctness: 95% Completeness: 90% - -The provided information about Alter Equity Fund III, its investment size range (EUR 4M to 20M), fund size (EUR 85M), geographic focus on Europe, sectors, investment thesis, investor description, portfolio highlights, and senior leadership align closely with publicly available data. Alter Equity is indeed a French impact investment fund focusing on companies with positive social and environmental impact, investing mainly in energy efficiency, circular economy, green chemistry, education, health, fair trade, and socially responsible finance sectors[1][2][5]. - -The fund size of approximately EUR 85 million matches the stated size of the third fund as seen on the official website and other summaries. The headquarters address ""23 Rue Danielle Casanova, 75001 Paris, France"" is confirmed by a partner directory source but is not explicitly listed on the company’s own contact page, so there is some external validation but minor uncertainty remains[1]. The investment thesis emphasizing extra-financial business plans and fostering social, environmental, and societal responsibility is accurately described on Alter Equity’s homepage and impact pages[2][5]. - -Senior leadership details with Fanny Picard as Founder, CEO, and President, and Félix Mounier included in senior leadership, are consistent with LinkedIn and company sources[1]. Portfolio company names such as Montamo, Syroco, Everysens, Neobrain, and others also correspond to listed participations. - -The only minor limitation affecting completeness is the absence of the exact ""As of"" date for Assets Under Management (AUM) and some confirmation details about the current size of assets or funds in market besides Fund III closure, but this does not critically affect the overall factual completeness of the profile[3]. - -Sources: -- Alter Equity official website and portfolio pages (https://www.alter-equity.com/) -- OpenVC profile confirming headquarters, investment focus, leadership (https://www.openvc.app/fund/Alter%20Equity) -- Impact Europe profile outlining investment thesis and sectors (https://www.impacteurope.net/members/alter-equity) -- Private Equity International institution profile (https://www.privateequityinternational.com/institution-profiles/alter-equity.html)" -"Alta Park Capital ","https://www.altaparkcapital.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alta Park Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Growth Stage""],""sectorFocus"":[""Technology"",""Media"",""Telecommunications""],""sourceProvider"":""Original SOURCE_JSON"",""sourceUrl"":""https://www.altaparkcapital.com/""}],""headquarters"":""San Francisco, USA; New York, USA"",""investmentThesisFocus"":[""Identifying emerging themes of innovation in technology"",""Developing a holistic understanding of technology trends across public and private companies"",""Focusing on growth-stage private companies globally"",""Targeting emerging category leaders in application software, infrastructure software, and fintech"",""Using deep fundamental research to identify consequential trends, markets, and companies globally in the technology sector""],""investorDescription"":""Alta Park Capital is an investment firm focused on public and private companies in the global technology, media, and telecommunications sectors. Their investment strategy involves identifying emerging themes of innovation in technology and developing a holistic understanding of these trends across public and private companies. The founders have a combined 70+ years of technology investing experience. Public equity strategy since 2013 uses deep fundamental research to identify consequential trends, markets, and companies globally in the technology sector. Growth equity investments since 2015 focus on growth-stage private companies globally, targeting emerging category leaders in application software, infrastructure software, and fintech."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""AUM is not mentioned on the website or related sources. No formal funds or specific investment size details provided. Headquarters are mentioned as cities only based on contact info and footer."",""seniorLeadership"":[{""name"":""Ray Zhu"",""sourceProvider"":""Original SOURCE_JSON"",""sourceUrl"":""https://www.zoominfo.com/pic/alta-park-capital/374940191"",""title"":""Managing Director""},{""name"":""Kevin Sun"",""sourceProvider"":""Original SOURCE_JSON"",""sourceUrl"":""https://www.zoominfo.com/pic/alta-park-capital/374940191"",""title"":""Managing Director""},{""name"":""Carson Fullard"",""sourceProvider"":""Original SOURCE_JSON"",""sourceUrl"":""https://www.zoominfo.com/pic/alta-park-capital/374940191"",""title"":""Head Managing Director, Private Investments""},{""name"":""Scott McWilliams"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/alta-park-capital"",""title"":""Director of Capital Formation and Investor Relations""},{""name"":""Rene N."",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/alta-park-capital"",""title"":""Chief Operating Officer""},{""name"":""Kai Wang"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/alta-park-capital"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.altaparkcapital.com/"",""investmentThesisFocus"":""https://www.altaparkcapital.com/"",""investorDescription"":""https://www.altaparkcapital.com/"",""portfolioHighlights"":""https://www.altaparkcapital.com/""},""websiteURL"":""https://www.altaparkcapital.com""}","Correctness: 95% Completeness: 80% - -The provided summary about Alta Park Capital is largely factually accurate based on multiple sources. It correctly identifies Alta Park Capital as an investment firm focused on the global technology, media, and telecommunications sectors, with strategies targeting growth-stage private companies as well as public equities using deep fundamental research. The description of the firm’s investment theses, geographic focus (global), sector focus, and senior leadership names and roles align with publicly available information[4][1][3]. - -The stated headquarters in San Francisco and New York corresponds to contact information found on their official website, consistent with research notes provided but is not formally detailed in external filings[4]. Their founding in 2013 and emphasis on 70+ years combined experience also matches[4]. - -However, the completeness is limited. Public filings indicate the firm manages over $1.3 billion to $1.7 billion in assets under management (AUM), which is a critical metric missing from the original data provided (noted as null/missing)[3][4]. Additionally, specific fund size details or estimated investment sizes are not publicly stated, which matches the “Not Available” fields flagged. Portfolio highlights are lacking; external sources list substantial portfolio holdings worth hundreds of millions, including companies like Amazon, Netflix, and others[1][2][4]. - -Senior leadership listed partially overlaps with publicly known founders and partners (e.g., Bijan Modanlou, Joe Bou-Saba not mentioned in the original data but documented as founders/partners)[4]. The original data lists managing directors and other executives, consistent with sources but without full leadership disclosure. - -In sum, the factual details given are mostly correct, but important financial metrics (AUM), portfolio specifics, and some leadership information are missing or incomplete, resulting in the lowered completeness score. - -Sources: -- Alta Park Capital official website (https://www.altaparkcapital.com/) -- InsiderMonkey Hedge Fund Profile (https://www.insidermonkey.com/hedge-fund/alta+park+capital/849/) -- RADiENT Analytics Form ADV (https://radientanalytics.com/firm/adv/alta-park-capital-lp-169422) -- Fintel Portfolio Holdings (https://fintel.io/i/alta-park-capital-lp) -- Stockzoa 13F Data (https://stockzoa.com/fund/alta-park-capital/)" -"Alto Invest ","http://www.altoinvest.fr ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Eiffel Investment Group Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Small and medium-sized enterprises"",""Technology"",""Healthcare"",""Manufacturing""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.altoinvest.fr""}],""headquarters"":""Paris, France"",""investmentThesisFocus"":[""Focuses on providing long-term financing solutions to SMEs with growth potential."",""Aiming for sustainable development and value creation.""],""investorDescription"":""Eiffel Investment Group is an independent asset management company based in Paris, specializing in private debt and equity investments in small and medium-sized enterprises (SMEs). Eiffel Investment Group is a diversified investment company supporting innovative and high-potential companies. Focuses on providing long-term financing solutions to SMEs with growth potential, aiming for sustainable development and value creation."",""linkedDocuments"":[],""missingImportantFields"":[""portfolioHighlights"",""seniorLeadership"",""linkedDocuments"",""fundSize""],""overallAssetsUnderManagement"":""€4 billion (as of end 2021)"",""portfolioHighlights"":[],""researcherNotes"":""AUM and specific fund details including size and investment ticket size are not mentioned on the website. Senior leadership names and titles are also not provided."",""seniorLeadership"":[],""sources"":{""headquarters"":""http://www.altoinvest.fr"",""investmentThesisFocus"":""http://www.altoinvest.fr"",""investorDescription"":""http://www.altoinvest.fr"",""overallAssetsUnderManagement"":""https://finalscout.com/company/eiffel_investment_group"",""portfolioHighlights"":""http://altoinvest.fr/investissements""},""websiteURL"":""http://www.altoinvest.fr""}","Correctness: 85% Completeness: 70% - -The provided data about Eiffel Investment Group is largely factually accurate but contains some inconsistencies related to the headquarters address and total assets under management (AUM). The investment thesis, focus on SMEs, and strategy pertaining to private debt and equity align with publicly available information[1][5]. The description as an independent Paris-based asset manager specializing in SME financing and growth also matches external sources. - -However, the stated headquarters as ""Paris, France"" is correct in general but incomplete—authoritative sources specify the office address as **22 rue de Marignan, 75008 Paris**, not just ""Paris"" or ""9 Rue Euler""[2][3][4]. The source URL given (http://www.altoinvest.fr) relates to Alto Invest, an equity subsidiary of Eiffel Investment Group, rather than the main group’s website, which is https://www.eiffel-ig.com/; this could cause confusion. - -Regarding AUM, the claim of **€4 billion as of end 2021** is higher than some other sources reporting around €1.5 to €3 billion, with one source citing €3 billion+ under management[1][5]. This score reflects some ambiguity and lack of official recent data publicly available. Also, important completeness gaps exist as the fund size, estimated investment size, portfolio highlights, senior leadership names, and linked documents are missing in the data, which appear accessible or partially referenced on their official website or through related sources[1][3]. - -Summary: -- Headquarters location and source website details partially incomplete. -- Description and investment focus mostly accurate. -- AUM figure somewhat uncertain, likely overstated relative to some sources. -- Significant missing fields like senior leadership, fund size, and portfolio information reduce completeness. - -Sources: -https://www.eiffel-ig.com/en/contact/ -https://www.franceinvest.eu/en/annuaire/eiffel-investment-group/ -https://www.lei-lookup.com/record/549300PBLPGO5HHRXL63/ -https://www.zoominfo.com/c/eiffel-investment-group-bv/358639521 -https://www.devex.com/organizations/eiffel-investment-group-128247" -"ALTERDYNE ENERGY ","https://alterdyne.energy/contact ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ALTERDYNE ENERGY Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":null}],""headquarters"":""Eschenbachgasse 9, Vienna, 1010, Austria"",""investmentThesisFocus"":[],""investorDescription"":""Alterdyne is an expert for international project scouting and validation. We minimize the resource requirements of investors from project identification to pre due-diligence by identifying projects, filtering the bankable opportunities and validating information with on-site checks.\n\nAlterdyne has been founded by seasoned experts and former top-managers in the renewable energy, artificial intelligence and web development domains, combining 60+ years of in-depth sector experience.\n\nAlterdyne thrives to change the painful and slow processes of global project search, screening, validating and M&A in the renewables industry based on cutting edge technology and hands-on experience."",""linkedDocuments"":[],""missingImportantFields"":[""investorDescription"",""investmentThesisFocus"",""headquarters"",""overallAssetsUnderManagement"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The website https://alterdyne.energy/contact and its parent domain contain no accessible content or data to extract. All fields are unavailable."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://crunchbase.com/organization/alterdyne-energy|https://linkedin.com/company/alterdyne"",""investmentThesisFocus"":""https://crunchbase.com/organization/alterdyne-energy|https://linkedin.com/company/alterdyne"",""investorDescription"":""https://crunchbase.com/organization/alterdyne-energy|https://linkedin.com/company/alterdyne"",""portfolioHighlights"":""https://crunchbase.com/organization/alterdyne-energy|https://linkedin.com/company/alterdyne""},""websiteURL"":""https://alterdyne.energy/contact""}","Correctness: 95% Completeness: 40% - -The provided information about Alterdyne Energy is largely factually accurate. Alterdyne is indeed described as an expert in international project scouting and validation, focusing on minimizing resource requirements for investors by identifying, filtering, and validating projects, especially in renewables. Its headquarters are in Vienna, Austria, consistent with multiple sources confirming the location[1][2]. The investor description aligns well with industry reports, specifying founders with 60+ years of combined experience and a focus on renewable energy, AI, and web development domains[1][2]. - -However, the completeness is low due to the absence of essential details commonly found in investor profiles: there is no available information on the estimated investment size, fund size, sector or stage focus, overall assets under management, portfolio highlights, or senior leadership. The website (https://alterdyne.energy/contact) and related domains offer no further accessible data to fill these gaps[1][2]. Public business databases like Crunchbase and LinkedIn do not provide additional substantive details on investment theses or fund specifics. No data is found on Alterdyne’s exact investment strategies or completed and active investments. - -In summary, while the factual statements that are present are mostly correct and verifiable, the overall dataset is incomplete, missing critical investor profile elements that prevent a full picture. - -Sources: -https://saudi.dealroom.co/companies/alterdyne_former_e_nable_ [1] -https://ecosystem.dubaifoundershq.com/companies/alterdyne_former_e_nable_ [2] -https://crunchbase.com/organization/alterdyne-energy -https://linkedin.com/company/alterdyne" -"Alma Mundi Ventures ","http://mundiventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Kembara Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""global Spanish-speaking diaspora""],""investmentStageFocus"":[""early stage"",""growth stage""],""sectorFocus"":[""deeptech"",""insurtech"",""fintech"",""climate tech""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.mundiventures.com/""}],""headquarters"":""Madrid, Barcelona, Paris, London"",""investmentThesisFocus"":[""Backing bold and purpose-driven founders with a strong ESG vision."",""Supporting startups in embedding ESG considerations to create competitive advantage."",""Investment philosophy integrates five core sustainability topics: Purpose Driven (UN SDGs alignment), ESG Stewardship (signatory of UN PRI, ESG data use), Climate Awareness (GHG measurement, climate risk assessment), Gender Equality (high female representation), Solid Governance (ESG investment policy)."",""Due diligence uses UN SDGs, SASB standards, and climate risk assessments."",""Measurement of impact via SFDR indicators and 30+ ESG data points collected annually."",""Focus on ESG safeguard, ESG alpha, and ESG excellence for category leadership.""],""investorDescription"":""Mundi Ventures backs bold and purpose-driven founders building the future of deeptech, insurtech, fintech, and climate tech. They describe their focus as 'Deep Tech for Deep Challenges.' The firm has the backing of the European Investment Bank (EIB) and the European Investment Fund (EIF). They support startups in realizing sustainability goals, focusing on embedding ESG considerations as a competitive advantage."",""linkedDocuments"":[""https://mundiventures.com/post/eif-invests-350-million-in-the-spain-based-venture-capital-firm-mundi-ventures""],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 500,000,000"",""sourceUrl"":""https://www.mundiventures.com/post/55-5-million-usd-growth-round-fuels-submers-push-for-greener-ai-factories-and-data-centers""},""portfolioHighlights"":[""Twinco Capital"",""Clarity AI"",""Acurable"",""Floodmapp"",""Laiier"",""Sherpa.ai"",""Citibox"",""Betterfly"",""Submer""],""researcherNotes"":""AUM is explicitly mentioned as €500 million in assets under management in a recent 2024 source. Fund size and other fund-specific investment size and stage data are not available publicly on the website."",""seniorLeadership"":[{""name"":""Javier Santiso"",""sourceUrl"":""https://www.mundiventures.com/team"",""title"":""CEO & General Partner""},{""name"":""Moisés Sánchez"",""sourceUrl"":""https://www.mundiventures.com/team"",""title"":""CLO & General Partner""},{""name"":""Luis Viñas"",""sourceUrl"":""https://www.mundiventures.com/team"",""title"":""Partner""},{""name"":""Rafaela Andrade"",""sourceUrl"":""https://www.mundiventures.com/team"",""title"":""Partner""},{""name"":""Rajeev Singh-Molares"",""sourceUrl"":""https://www.mundiventures.com/team"",""title"":""Partner at ALM I and ALM II""},{""name"":""Moisés Sánchez Jiménez"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://es.linkedin.com/company/mundi-ventures"",""title"":""General Partner""},{""name"":""Lluís Viñas Fernandez"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://es.linkedin.com/company/mundi-ventures"",""title"":""Investment Director""}],""sources"":{""headquarters"":""https://www.mundiventures.com/contact"",""investmentThesisFocus"":""https://www.mundiventures.com/esg"",""investorDescription"":""https://www.mundiventures.com/"",""portfolioHighlights"":""https://www.mundiventures.com/companies""},""websiteURL"":""http://mundiventures.com/""}","Correctness: 90% Completeness: 85% - -The provided details about Mundi Ventures are largely factually accurate based on currently available and credible sources. The **headquarters** in Madrid and Barcelona is confirmed, though Paris and London offices are not explicitly mentioned in the sources found; the firm also has offices in the UK and US, which partly aligns with the international presence stated[1][4]. The **focus on deeptech, insurtech, fintech, and climate tech** sectors and backing bold, purpose-driven founders with a strong ESG (Environmental, Social, and Governance) vision aligns well with the description on their official website and third-party profiles[1][3][4]. They indeed integrate ESG considerations as a competitive advantage and base their investment philosophy on sustainability themes and data-driven ESG impact measurement, consistent with their stated use of UN SDGs, SASB standards, and climate risk assessments[3][5]. - -The **Assets Under Management (AUM)** figure of around EUR 500 million as of 2024 matches public announcements of a €350 million fund launched recently and additional capital under management reported elsewhere (some sources mention around $561 million, which corresponds roughly to ~EUR 500 million)[2][5]. The **investment stage focus on early and growth stages** is broadly consistent, although some sources emphasize Series A/B rounds, seed rounds, or slightly vary in stage definitions but remain consistent with early to growth stages[2][3]. The **portfolio highlights** mentioned (Twinco Capital, Clarity AI, Submer, etc.) also align with the actual companies listed on their portfolio page[5]. Senior leadership names such as Javier Santiso (CEO & General Partner) and Moisés Sánchez (CLO & General Partner) are accurately captured, as verified by the official site and LinkedIn data[5]. - -However, some **gaps affect completeness**: the exact ""fund size"" and ""estimated investment size"" for the Kembara Fund are noted as unavailable and remain so publicly; this omission is reflected in your summary and no source contradicts this. The geographic focus described as “global Spanish-speaking diaspora” and specific ESG measurement details (30+ ESG data points, SFDR indicators) are well aligned with Mundi Ventures’ emphasis on sustainability but are not detailed at length in third-party sources, primarily found from Mundi’s own disclosures[5]. The mention of Paris as a headquarters is unsupported. Also, while the investment thesis is well outlined, some minor details about fund numbers and specific fund strategies are less publicly detailed, lowering completeness slightly. - -In sum, the information is **factually very solid**, predominantly based on reliable direct and indirect sources, including Mundi Ventures’ own website and respected third-party data. The **main shortcoming is the incomplete public disclosure of certain private fund metrics and more granular fund-specific data**, which your notes about missing ""fundSize"" and ""estimatedInvestmentSize"" correctly acknowledge. Also, geographic office presence beyond Madrid, Barcelona, London, and US offices is inconsistent regarding Paris. - -Sources used: -- https://www.mundiventures.com/ -- https://golden.com/wiki/Mundi_Ventures-NMYNJJG -- https://app.dealroom.co/investors/alma_mundi_ventures -- https://www.privateequityinternational.com/institution-profiles/mundi-ventures.html -- https://www.mundiventures.com/news" -"Almi Invest GreenTech ","https://almiinvest.se ","{""funds"":[{""estimatedInvestmentSize"":""SEK 5,000,000 - 15,000,000"",""fundName"":""GreenTech Fund"",""fundSize"":""SEK 1,200,000,000"",""fundSizeSourceUrl"":""https://www.almiinvest.se/riskkapital/vara-riskkapitalbolag/almi-invest-greentech/"",""geographicFocus"":[""Sweden""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Energy Transition"",""Circular Economy"",""Materials Technology"",""Transport and Mobility"",""Industry and Construction"",""Innovative Agriculture and Biosphere Technologies""],""sourceUrl"":""https://www.almiinvest.se/riskkapital/vara-riskkapitalbolag/almi-invest-greentech/""}],""headquarters"":""Stockholm, Stockholm County"",""headquarters_sourceProvider"":""LinkedIn"",""investmentThesisFocus"":[""Focus on early-stage Swedish startups with scalable business models and strong national and international market potential."",""Invest in climate-smart, CO2-reducing, innovative companies contributing to sustainability."",""Co-investment with independent investors for risk sharing and access to networks."",""Evaluation based on measurable climate and environmental benefits, such as avoided emissions of at least 200,000 tons CO₂e per year within 5-10 years."",""Investment criteria include significant climate/environmental impact, strong team, innovative and scalable technology with proprietary solutions, and clear market potential."",""Industry sectors prioritized include energy transition, circular economy, materials technology, transport and mobility, industry and construction, and innovative agriculture and biosphere technologies."",""Full due diligence and analysis of ecological sustainability using frameworks such as TNFD and Kunming-Montreal agreement.""],""investorDescription"":""Almi Invest GreenTech is a climate-focused investment fund investing in startups contributing to sustainability by reducing carbon emissions, protecting natural resources, or restoring ecosystems. Since 2017, it has invested in about 40 companies and manages 1.2 billion SEK across two funds, including a 600 million SEK Climate Fund launched in 2024 with EU support. Eligible companies are Swedish, private SMEs not publicly listed, with innovations that show measurable potential to reduce emissions or improve the environment, and less than seven years of commercial revenue. Typical investments range from 5 to 15 million SEK per round, with total capacity up to 50 million SEK per company, mainly in Seed to Series A stages."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""SEK 4,000,000,000"",""sourceUrl"":""https://www.almiinvest.se/riskkapital/vara-riskkapitalbolag/almi-invest-greentech/""},""portfolioHighlights"":[""InTeEx"",""Seaqure Labs""],""researcherNotes"":""Headquarters information not found on the contact or footer pages of the website. AUM is clearly stated as 4 billion SEK total with 1.2 billion SEK specifically for the GreenTech fund, based on the main fund page. No direct linked documents (PDF, DOCX, PPTX) were found on the site."",""seniorLeadership"":[{""name"":""Joachim Karlsson"",""sourceUrl"":""https://almi.se/om-almi/organisation-och-ekonomi/ledning/koncernledning-almi-ab"",""title"":""vd Almi Invest""},{""name"":""Anders Fagerdahl"",""sourceUrl"":""https://almi.se/om-almi/organisation-och-ekonomi/ledning/koncernledning-almi-ab"",""title"":""Vd och koncernchef""},{""name"":""Juliana Perez Falke"",""sourceUrl"":""https://almi.se/om-almi/organisation-och-ekonomi/ledning/koncernledning-almi-ab"",""title"":""Affärsområdeschef företagspartner""},{""name"":""Jorgen Bodin"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/almi-invest/"",""title"":""CEO and Fund Manager""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/almi-invest/"",""investmentThesisFocus"":""https://almiinvest.se/riskkapital/vara-riskkapitalbolag/almi-invest-greentech/"",""investorDescription"":""https://www.almiinvest.se/riskkapital/vara-riskkapitalbolag/almi-invest-greentech/"",""portfolioHighlights"":""https://almiinvest.se/riskkapital/portfolio""},""websiteURL"":""https://almiinvest.se""}","Correctness: 95% Completeness: 90% - -The information provided about Almi Invest GreenTech is largely factual and accurately reflects publicly available sources. The fund size cited as SEK 1.2 billion aligns with the stated amount of about €65 million (approximately SEK 650–700 million) noted elsewhere but appears confirmed on the Almi Invest GreenTech page, indicating this could be a part or a specific fund within the total AUM. The total assets under management (AUM) figure of SEK 4 billion is consistent with publicly stated figures referenced in multiple investor profiles, including Almi’s own communications[1][2][5]. - -The details about the focus on early-stage Swedish startups, investment stages (Seed and Series A), sectors prioritized (energy transition, circular economy, materials technology, transport and mobility, industry and construction, innovative agriculture and biosphere), and investment size per round (SEK 5-15 million) are all supported by the Almi Invest official descriptions[1][4][5]. The investment thesis emphasizing climate-smart, CO2-reducing innovations with measurable environmental impact and co-investment strategies also matches the official mission and evaluation criteria on the Almi Invest GreenTech website[1]. - -The leadership names given—Joachim Karlsson (vd Almi Invest), Anders Fagerdahl (Vd och koncernchef), Juliana Perez Falke (Affärsområdeschef företagspartner), and Jorgen Bodin (CEO and Fund Manager)—are plausible and mostly verifiable from the organizational sources. The characterization of portfolio highlights like InTeEx and Seaqure Labs is consistent with their focus but not extensively documented in the sources reviewed. - -Regarding completeness, some minor nuances or recent updates could be missing, such as precise details of the 2024 Climate Fund launched with EU support, which was mentioned but not fully detailed in external summaries[1][2]. Also, the available information does not fully capture all operational aspects, such as co-investment ratios, specific due diligence procedures involving TNFD and Kunming-Montreal frameworks, which are sophisticated but likely correct since they relate to ecological sustainability frameworks seen in advanced climate funds. - -In summary, the description is very accurate and includes almost all key facts publicly known about Almi Invest GreenTech, its size, focus, investment thesis, and leadership with minor possible omissions of very recent or internal data. The URLs used include: - -- https://www.almiinvest.se/riskkapital/vara-riskkapitalbolag/almi-invest-greentech/ -- https://swedishcleantech.com/business-opportunities/almi-invest-green-tech-fund/ -- https://www.vestbee.com/vc-list/almi-invest -- https://thehub.io/funding/almi-invest -- https://www.eu-startups.com/investor/almi-invest-greentech/ -- https://almi.se/om-almi/organisation-och-ekonomi/ledning/koncernledning-almi-ab" -"Allinvest ","http://www.allinvest.at/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR single-digit millions"",""fundName"":""Allinvest Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Established Companies""],""sectorFocus"":[""Industrial"",""Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.allinvest.at/en/home-en/""}],""headquarters"":""Brahmsplatz 2A-1040 Wien, Austria"",""investmentThesisFocus"":[""Focus on established companies seeking fresh capital for corporate succession or growth."",""No strict sector or regional focus but preference for classic industrial and technology companies."",""Flexible contract design and longer investment horizons compared to classic private equity investors."",""Active participation in investments by supporting management with know-how and networks without operational interference."",""Providing management consulting to family businesses, family offices, and private foundations in strategic corporate issues, financing, and real estate."",""Investment volumes typically single-digit millions, with potential for larger deals via partners."",""No new startup investments since 2018 due to compliance reasons related to a partner’s involvement in Speedinvest.""],""investorDescription"":""Allinvest Unternehmensbeteiligungs GmbH was founded in 2006 as a subsidiary of Allholding Beteiligungsverwaltungs GmbH to consolidate the investments of the Gröller family. It is an active entrepreneurial investor engaging in direct investments in companies and real estate (outside the core business of sister company Allmobil Immobilien GmbH) along with a broad fund portfolio (PE, VC, alternatives), stocks, and bonds to achieve broad thematic and geographical diversification. It focuses on investing in established companies needing fresh capital for corporate succession or growth, with no sector-specific or regional focus but a preference for classic industrial and technology companies. Investment volumes per transaction are typically in the single-digit million range, with flexibility for larger volumes via partners. As a family business, Allinvest offers more contractual flexibility and longer investment horizons compared to classic private equity investors, emphasizing entrepreneurial thinking over short-term value maximization. They actively participate in shaping investments by supporting management with know-how and networks without interfering operationally. They also provide management consulting to family businesses, family offices, and private foundations in strategic corporate issues, financing, and real estate."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Neoom AG"",""B2X Care Solutions GmbH"",""Cumulus Immobilien GmbH"",""Wefox"",""Invesdor"",""klarx"",""PROPSTER"",""refurbed"",""Schüttflix""],""researcherNotes"":""Overall Assets Under Management (AUM) and specific fund sizes are not mentioned on the website or in related documents. The investment size is inferred as 'single-digit millions' per transaction based on company description."",""seniorLeadership"":[{""name"":""Heinrich Gröoller"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://allinvest.at/en/home-en/#management"",""title"":""Geschäftsführer Dipl. Ing. ETH""},{""name"":""Michael Gröoller"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://allinvest.at/en/home-en/#management"",""title"":""Advisor Dkfm.""}],""sources"":{""headquarters"":""https://www.allinvest.at/en/kontakt/"",""investmentThesisFocus"":""http://www.allinvest.at/en/home-en/"",""investorDescription"":""http://www.allinvest.at/en/home-en/"",""portfolioHighlights"":""https://allinvest.at/en/home-en/#beteiligungen""},""websiteURL"":""http://www.allinvest.at/""}","Correctness: 100% Completeness: 90% - -The provided information about Allinvest Unternehmensbeteiligungs GmbH is factually accurate and aligns closely with the company’s official website and other authoritative sources. The details about its founding in 2006 as a subsidiary of Allholding Beteiligungsverwaltungs GmbH, focus on established companies for corporate succession or growth, preference for classic industrial and technology sectors, investment volumes in the single-digit million euro range, flexible contract terms, longer investment horizons, and active but non-operational involvement with management correspond to statements on Allinvest’s official homepage[2][4]. The description of offering management consulting to family businesses and private foundations, as well as the suspension of startup investments post-2018 due to compliance concerns, is consistent with their declared investment thesis[2]. - -The headquarters address at Brahmsplatz 2A, 1040 Vienna, Austria, is confirmed on their contact page[2]. The mention of portfolio highlights such as Neoom AG, B2X Care Solutions, and others matches data shown in their publicly listed participations[2]. Senior leadership named—Heinrich Gröoller as Geschäftsführer and Michael Gröoller as Advisor—is also correct per the company’s management information[2]. - -However, the **completeness score is slightly reduced (~90%)** due to missing or unavailable data on the overall assets under management (AUM) and specific fund size details, which are not found on the website or related documents and hence duly noted as missing fields. This lack of precise numerical AUM or fund size is typical for family office-type investors that do not always disclose such metrics publicly. The investment size is inferred as ""EUR single-digit millions"" per transaction but without exact fund size specifications[2]. - -No conflicting or fabricated information is present based on the authoritative website and institutional profiles examined. - -Sources used: -- Allinvest official website: https://www.allinvest.at/en/home-en/ -- Allinvest contact page: https://www.allinvest.at/en/kontakt/ -- Institutional overview: https://www.privateequityinternational.com/institution-profiles/allinvest-unternehmensbeteiligungs-gmbh.html" -"ALSA Ventures ","https://www.alsaventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ALSA Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Company Formation"",""Early Stage"",""Syndicate Participation""],""sectorFocus"":[""Biotechnology"",""Life Sciences"",""Therapeutics""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alsaventures.com/our-approach""}],""headquarters"":""London, London"",""investmentThesisFocus"":[""Focused around therapeutics with novel drugs and modalities in a wide variety of disease areas."",""Invest across the spectrum of drug development, from company formation to participation in syndicates with co-investors."",""Heavily reliant on proprietary deal flow."",""Identify and evaluate opportunities globally, leveraging a well-networked team."",""Focus on investments that meet both commercial and scientific aims."",""Aware that capital markets vary globally in how well they support the industry.""],""investorDescription"":""ALSA Ventures is a London-based international life science investor focused on novel therapeutics, primarily investing in biotechnology companies developing novel drugs and modalities across a wide variety of disease areas. Their investment approach spans the spectrum of drug development and includes company formation as well as participation in syndicates with co-investors. ALSA Ventures is a Europe-focused biotechnology fund manager aiming at creating valuable businesses with global impact."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Axovia Therapeutics"",""Vantage Biosciences"",""Promatix""],""researcherNotes"":""No financial data or AUM details were found on the website. Headquarters address not available on the Contact page or footer."",""seniorLeadership"":[{""name"":""Alek Safarian"",""sourceUrl"":""https://www.alsaventures.com/meet-the-team"",""title"":""CEO""},{""name"":""Lorna Collings"",""sourceUrl"":""https://www.alsaventures.com/meet-the-team"",""title"":""CFO""},{""name"":""Dr Bruce Goldsmith"",""sourceUrl"":""https://www.alsaventures.com/meet-the-team"",""title"":""Operating Partner""},{""name"":""Dr Robert Balfour"",""sourceUrl"":""https://www.alsaventures.com/meet-the-team"",""title"":""Investment Director""}],""sources"":{""headquarters"":""https://uk.linkedin.com/company/alsa-holdings"",""investmentThesisFocus"":""https://www.alsaventures.com/our-approach"",""investorDescription"":""https://www.alsaventures.com/"",""portfolioHighlights"":""https://www.alsaventures.com/portfolio""},""websiteURL"":""https://www.alsaventures.com/""}","Correctness: 95% Completeness: 85% - -The information provided about ALSA Ventures is largely **factually accurate** based on multiple reliable sources. ALSA Ventures is indeed a London-based international life science investor focused primarily on biotechnology companies developing novel therapeutics across diverse disease areas. Their investment approach covers early stages including company formation and syndicate participation, with a global geographical focus, heavily reliant on proprietary deal flow. The description of their investment thesis aligns with the fund's focus on therapeutics with novel drugs and modalities, supporting companies from discovery to early clinical development[1][2][3]. The named senior leadership (Alek Safarian as CEO, Lorna Collings as CFO, Dr. Bruce Goldsmith as Operating Partner, and Dr. Robert Balfour as Investment Director) matches the team listed on ALSA’s website[3]. The portfolio highlights such as Axovia Therapeutics and others are consistent with news about recent acquisitions and investments by ALSA[2]. - -However, **some completeness issues** remain due to missing specific financial details, notably: - -- The overall assets under management (AUM) are not publicly stated on ALSA’s website or verified sources, though press reports indicate a target of $150 million for their inaugural fund with an initial $59 million raised already[1]. This is a significant omission since AUM is a key metric for venture funds. - -- The fund size and estimated investment size are listed as ""Not Available,"" which matches the lack of detailed public financial disclosures. - -- The precise headquarters address cannot be confirmed on the ALSA site or official contact pages but is known generally to be in London, UK, consistent with the LinkedIn company page[5]. - -- Additional detailed performance metrics such as fund vintage year, investment multiple, or carry terms are not available and thus omitted, which affects completeness. - -No unsupported or fabricated claims were identified. The investor description, investment thesis, and portfolio are well supported by the official ALSA website and credible biotech venture capital reporting sources[1][2][3][5]. - -**Sources:** - -- https://globalventuring.com/university/alsa-secures-59m-for-biotech-venture-fund/ -- https://www.genengnews.com/topics/drug-discovery/on-your-mark-alsa-ventures-lifts-early-stage-european-biotechs-to-jockey-out-of-the-gate/ -- https://www.alsaventures.com/ -- https://venturecapitalarchive.com/venture-funds/alsa-ventures-alsaventures-com" -"Alpana Ventures ","https://alpana-ventures.ch/ ","{""funds"":[{""estimatedInvestmentSize"":""CHF 0.3-3m"",""fundName"":""Alpana Ventures Investments I SCSp"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Switzerland"",""Europe"",""US""],""investmentStageFocus"":[""Early stage"",""Seed""],""sectorFocus"":[""ICT"",""Healthtech"",""Fintech""],""sourceProvider"":""SECA Directory"",""sourceUrl"":""https://www.seca.ch/en/find-members/alpana-ventures/""},{""estimatedInvestmentSize"":""CHF 0.3-3m"",""fundName"":""Alpana Ventures Investments II SCSp"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Switzerland"",""Europe"",""US""],""investmentStageFocus"":[""Early stage"",""Seed""],""sectorFocus"":[""ICT"",""Healthtech"",""Fintech""],""sourceProvider"":""SECA Directory"",""sourceUrl"":""https://www.seca.ch/en/find-members/alpana-ventures/""},{""estimatedInvestmentSize"":""CHF 0.3-3m"",""fundName"":""Alpana Ventures Investments III SCSp"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Switzerland"",""Europe"",""US""],""investmentStageFocus"":[""Early stage"",""Seed""],""sectorFocus"":[""ICT"",""Healthtech"",""Fintech""],""sourceProvider"":""SECA Directory"",""sourceUrl"":""https://www.seca.ch/en/find-members/alpana-ventures/""}],""headquarters"":""Tour de l’Ile 1, CH – 1204 Geneva, Switzerland"",""investmentThesisFocus"":[""Focus on discovering and investing in Deeptech solutions."",""Invest to embed Deeptech solutions into innovative business models."",""Support scalable ICT, Healthtech, and Fintech solutions that create a sustainable future."",""Provide funding, guidance, and assistance in business strategy implementation."",""Help startups with talent acquisition and leverage US marketing expertise.""],""investorDescription"":""Alpana Ventures is a Swiss VC focusing on digital transformation. Committed to value creation, they discover 'Deeptech' solutions in Switzerland, Europe, and the US. They invest to embed these solutions into innovative business models. Alpana Ventures is a Swiss venture capital firm focused on Digital Transformation since 2016. Their mission is to discover 'Deeptech' solutions in Switzerland, Europe, and the US, and invest to embed them into innovative business models. They back scalable ICT, Healthtech, and Fintech solutions with a big impact that help create a sustainable future. Their investment approach includes providing funding and guidance for startups, assisting in implementing the right business strategies, helping hire talent, and applying US marketing expertise."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""AirConsole"",""Altoida"",""CariqPay"",""CityCop"",""CloudGuide"",""Domo Health"",""Emonitor"",""Invaluable"",""Klarys"",""Beekeeper"",""Voliro""],""researcherNotes"":""AUM and exact fund sizes are not mentioned on the company's own website. Investment size data was found on an external credible member directory (SECA)."",""seniorLeadership"":[{""name"":""Nathalie Chemtob (Girod)"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://alpana-ventures.ch/people/"",""title"":""Co-Founding Partner""},{""name"":""Christophe Chemtob"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alpana-ventures.ch/people/"",""title"":""Partner""},{""name"":""Pascal H. Widmer"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alpana-ventures.ch/people/"",""title"":""Partner""},{""name"":""Hervé Liboureau"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alpana-ventures.ch/people/"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://alpana-ventures.ch/contact/"",""investmentThesisFocus"":""https://alpana-ventures.ch/; https://alpana-ventures.ch/mission/"",""investorDescription"":""https://alpana-ventures.ch/; https://alpana-ventures.ch/mission/"",""portfolioHighlights"":""https://alpana-ventures.ch/portfolio/""},""websiteURL"":""https://alpana-ventures.ch/""}","Correctness: 98% Completeness: 90% - -The information provided about Alpana Ventures is highly accurate and aligns well with authoritative sources. Alpana Ventures is correctly described as a Swiss venture capital firm headquartered in Geneva, focusing on digital transformation and finding Deeptech solutions across Switzerland, Europe, and the US[1][3][4]. The firm invests primarily at early and seed stages in ICT, Healthtech, and Fintech sectors, with typical investment sizes of CHF 0.3-3 million confirmed by SECA[1]. Their investment thesis emphasizing embedding Deeptech into innovative business models, supporting scalable solutions for a sustainable future, and offering funding alongside strategic and operational guidance matches the descriptions on Alpana Ventures' official and third-party sites[1][4][5]. - -The senior leadership named (Nathalie Chemtob (Girod), Christophe Chemtob, Pascal H. Widmer, Hervé Liboureau) is consistent with information on their site[1][4]. - -The portfolio examples such as Altoida, Beekeeper, CariqPay, and Voliro are verified on the official portfolio listing[1], though there are minor slight differences in portfolio company names (e.g., ""Car IQ"" spelled as ""CariqPay"") which appear to be due to naming variants. - -Missing fields include overall Assets Under Management (AUM) and exact fund sizes, which are not publicly disclosed on the company’s website or in credible directories. This justifies the noted incompleteness regarding total fund sizes and AUM[1][4]. The geographical focus is comprehensive covering Switzerland, Europe, and the US. - -One discrepancy is that VentureCapitalArchive lists Lausanne as the HQ rather than Geneva, but Geneva is confirmed by the firm’s official contact page and SECA. Given Geneva is the firm’s stated official HQ on their website and SECA, Geneva is more reliable[1][4][3]. - -Additional minor gaps are detail on follow-on investment strategy, exact number of portfolio companies (35+ per SECA vs. 45 founders backed mentioned on the official site), and detailed fund vintage years or performance metrics which are not fully public. But the core data is well supported. - -Sources: - -- SECA Directory: https://www.seca.ch/en/find-members/alpana-ventures/ -- Official website: https://alpana-ventures.ch/ -- Private Equity List: https://privateequitylist.com/investor/alpana-ventures -- VentureCapitalArchive: https://venturecapitalarchive.com/venture-funds/alpana-ventures-alpanaventures-ch -- Vestbee: https://www.vestbee.com/vc-list/alpana-ventures" -"Alfvén & Didrikson ","http://www.alfvendidrikson.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alfvén & Didrikson Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Northern Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.alfvendidrikson.com""}],""headquarters"":""Kungsgatan 30, 111 35 Stockholm"",""investmentThesisFocus"":[""Invest in brilliant people and their businesses aiming for long-term value creation."",""Engaged and active involvement with investee companies."",""Entrepreneurs and risk takers who are pragmatic and open-minded."",""Open to variety and not bound by preconceived rules."",""Believe in long-term incentives aligned with partners and avoid short-term bonuses.""],""investorDescription"":""Our dream is to make fantastic investments in brilliant people and their businesses, aiming for long-term value creation. We are engaged and active with our investee companies, providing energy and guidance when needed. We are entrepreneurs and risk takers, pragmatic and open-minded, open to variety and not bound by preconceived rules. We believe in long-term incentives aligned with our partners and do not pursue short-term bonuses."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""sectorFocus"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Stockholms Auktionsverk"",""Auctionet"",""Uppsala Auktionskammare"",""Open Payments""],""researcherNotes"":""No explicit data on AUM or fund sizes found on the website. The firm appears to operate a single unified investment strategy focused on Northern Europe. Portfolio companies are acknowledged but specific investment sizes and sectors are not disclosed."",""seniorLeadership"":[{""name"":""Hjalmar Didrikson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfvendidrikson.com/team"",""title"":""Founder""},{""name"":""Måns Alfvén"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfvendidrikson.com/team"",""title"":""Founder and CEO""},{""name"":""Monika Pers"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfvendidrikson.com/team"",""title"":""CFO""}],""sources"":{""headquarters"":""https://www.alfvendidrikson.com/contact"",""investmentThesisFocus"":""https://www.alfvendidrikson.com/about"",""investorDescription"":""https://www.alfvendidrikson.com/about"",""portfolioHighlights"":""https://www.alfvendidrikson.com/news""},""websiteURL"":""http://www.alfvendidrikson.com""}","Correctness: 95% Completeness: 80% - -The provided information about Alfvén & Didrikson is factually accurate based on multiple sources. The fund is described as an active, long-term investor focusing on passionate entrepreneurial teams and growth companies primarily in Northern Europe, which aligns with the official website and investor profiles[2][3]. The description emphasizes investing in brilliant people, long-term value creation, pragmatic and open-minded entrepreneurship, and avoidance of short-term incentives, which matches the language on their ""About"" page[2]. - -Their headquarters at Kungsgatan 30, 111 35 Stockholm is confirmed by their contact information on the official site[2]. The leadership names—Hjalmar Didrikson (Founder), Måns Alfvén (Founder and CEO), and Monika Pers (CFO)—are also supported by the team page on their website[2][3]. - -Portfolio highlights such as Stockholms Auktionsverk, Auctionet, Uppsala Auktionskammare, and Open Payments are consistent with news updates and portfolio mentions on their website and external sources[2][3]. The geographic focus on Northern Europe and lack of explicit sector or investment stage focus is supported, as details on sector and stage are either ""Not Available"" or not prominent across sources. - -Where completeness is reduced: -- No public data is available on overall Assets Under Management (AUM), fund size, or estimated investment sizes, which is explicitly noted in the researcher’s notes and confirmed by absence in official and third-party databases[1][2][3]. -- The specific investment stages and sector focuses are not clearly detailed publicly. Some third-party sources mention investment in sectors like IT and medical but these are not official fund-declared focuses[1]. -- The interview or detailed investment strategy documents that might shed more light on fund size, investment parameters, or typical deal sizes are missing, limiting the depth of coverage. - -Thus, while the core profile, leadership, philosophy, geographic focus, and portfolio highlights are accurate and well-supported, important quantitative details are missing, leading to the adjusted completeness score. - -Sources: -- Official website: https://www.alfvendidrikson.com/contact, https://www.alfvendidrikson.com/about, https://www.alfvendidrikson.com/news -- Unicorn Nest profile: https://unicorn-nest.com/funds/alfven-didrikson-2/ -- Dealroom profile: https://app.dealroom.co/investors/alfv_n_amp_didrikson" -"Akilia Partners ","https://akilia.io/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Akilia Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""global"",""Madrid""],""investmentStageFocus"":[""Seed"",""Series A"",""Growth""],""sectorFocus"":[""Venture Capital"",""Private Equity""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://akilia.io/about""}],""headquarters"":""C. de Fernando VI, 5, 28004 Madrid, Spain"",""investmentThesisFocus"":[""Focus on long-term partnerships with investors and portfolio companies."",""Support startups at every growth stage with a comprehensive investment suite."",""Target straightforward, strong arguments for complex solutions that can revolutionize and penetrate industries by fixing obsolete processes or standards."",""Emphasize deep understanding of current industry pain points and stakeholders to build pragmatic, executable plans."",""Make conviction-driven decisions, not trend-driven, relying on multiple data sources and industry advisors."",""Maximize opportunity/risk ratios via dedicated diligence covering market sizing, problem-solving, risk analysis, and company capabilities."",""Build industry value chains and knowledge maps to create industry theses that simplify diligence and target fitting companies."",""Use a flexible multi-vehicle structure, rely on trusted networks to access exclusive deals, combine generalist and specialist knowledge, and foster collaborative, long-term partnerships with entrepreneurs.""],""investorDescription"":""We support entrepreneurs who visualize the future of their industry and work towards creating a more efficient society with higher levels of wellbeing. An investment firm born to accelerate the pace of innovation and materialize its potential to improve the world. We invest at every stage of the VC cycle leveraging our flexible multi-vehicle structure. Our approach includes simplifying complexity, targeting obsolete industry standards, insight-driven decisions, and building knowledge networks. We are industry veteran operators, traditional finance professionals, and digital entrepreneurs who value visualizing the future as much as understanding the present to build the next generation of industry incumbents."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""sectorFocus"",""geographicFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Stalicla"",""Body Vision"",""Assured Allies"",""Rappi"",""Laminate"",""Span"",""Lightspark"",""Rex Real Estate"",""Vascular Graft Solutions""],""researcherNotes"":""The website does not provide explicit information on overall assets under management, fund sizes, specific sector or geographic focus, or estimated per-company investment sizes. These fields are marked as 'Not Available' or null accordingly."",""seniorLeadership"":[{""name"":""Matteo Legler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://akilia.io/team"",""title"":""Managing Partner""},{""name"":""Gonzalo Rubio"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://akilia.io/team"",""title"":""Managing Partner""},{""name"":""Jose (Pepe) Calle Gordo"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://akilia.io/team"",""title"":""CEO & Managing Partner""}],""sources"":{""headquarters"":""https://akilia.io/contact"",""investmentThesisFocus"":""https://akilia.io/about"",""investorDescription"":""https://akilia.io/about"",""portfolioHighlights"":""https://akilia.io/portfolio""},""websiteURL"":""https://akilia.io/""}","Correctness: 95% Completeness: 70% - -The provided information about Akilia Partners is largely factually accurate and aligns with publicly available data from the official Akilia website and other investment directories. The headquarters address at C. de Fernando VI, 5, 28004 Madrid, Spain, matches the contact information on the Akilia website[3][5]. The investor description, investment thesis focus, and ethos (such as supporting entrepreneurs who visualize industry futures, focusing on long-term partnerships, multi-stage VC investments, deep industry understanding, and flexible structures) closely reflect the language and themes presented on their About and What We Do pages[3]. - -The senior leadership listing with Matteo Legler, Gonzalo Rubio, and Jose (Pepe) Calle Gordo as Managing Partners/CEO & Managing Partner matches their team page information indicated in the source JSON[3]. The portfolio highlights (Stalicla, Body Vision, Assured Allies, Rappi, Laminate, Span, Lightspark, Rex Real Estate, Vascular Graft Solutions) are consistent with portfolio companies mentioned on their site and deal listings[3][1][2]. - -Notably, the data correctly indicates the **absence** of disclosed details such as overall assets under management, fund size, estimated investment size per company, and granular sector and geographic focus beyond the stated “global” and Madrid presence. These details are indeed not provided publicly on Akilia’s website or main investor profiles[3][1][2]. This omission reduces completeness since these are typically key fund metrics. - -The categorization of the fund's focus sectors as venture capital and private equity is reasonable given the stages invested in (Seed through Growth) and the nature of investments described, although Akilia emphasizes venture capital activities prominently[3]. Geographic focus includes Madrid and broadly global, which matches the stated offices and international presence (Spain, Portugal, Switzerland, Israel)[3][5]. - -In summary, the information is accurate regarding qualitative statements, leadership, investment approach, and portfolio examples, but moderately incomplete due to missing quantitative financial data and more exact sectoral/geographic scope metrics that Akilia does not publicly disclose. - -Sources: -https://akilia.io/about -https://akilia.io/contact -https://akilia.io/portfolio -https://investny.org/investors/akilia_partners_1/portfolio/current -https://espoo.dealroom.co/companies/akilia_partners_1" -"Alexandria Venture Investments ","http://www.are.com/venture-investments.html ","""""", -"Aliment Capital ","https://www.alimentcap.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aliment Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Growth-stage""],""sectorFocus"":[""Life Sciences & Biopharmaceuticals"",""Food & Nutrition"",""Farm Technology"",""Supply Chain Efficiency""],""sourceUrl"":""https://alimentcap.com/strategy/""}],""headquarters"":""10100 Santa Monica Blvd., Suite 1500, Los Angeles, CA 90067"",""investmentThesisFocus"":[""Sector-focused growth capital driving sustainability"",""Targeting growth-stage companies with proven technologies, clear ROI, established sales, strong margins"",""Investing to scale cash flow and impact"",""Thematically-focused, thesis-driven, partnership-oriented, operationally-focused, flexible investors"",""Scalable business models with profitability or near-term path"",""Companies promoting sustainability"",""Strong teams with collaborative culture"",""Mission aligned to advancing planetary and human health"",""Clear enduring vision"",""Long-term partnership with reserved capital for follow-on rounds and M&A""],""investorDescription"":""Aliment Capital is a global purpose-driven investment firm with over a decade of experience. The firm focuses on investing in disruptive companies innovating in food, agriculture, human health, and the global food supply chain. Their primary investment areas include Life Sciences & Biopharmaceuticals, Food & Nutrition, Farm Technology, and Supply Chain Efficiency. Aliment Capital's mission centers on advancing global sustainability and nutrition to ensure food security, social change, and an environmentally stable, carbon-neutral future. They target established, high-growth businesses with proven technologies that enhance safety, efficiency, resiliency, and sustainability in the food and agriculture supply chain. The firm pursues a growth capital strategy aiming for attractive returns with shorter holding periods, helping scale revenue and cash flow by focusing on commercialization and execution. The investment team comprises investors, technical advisors, and global strategic partners dedicated to better returns for investors and the planet. Aliment Capital builds diversified portfolios of mission-driven, founder-led brands."",""linkedDocuments"":[""https://alimentcap.com/wp-content/uploads/2024/06/Aliment-Capital-Responsible-Investment-Policy-2024.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 483,000,000"",""sourceUrl"":""https://www.builtinla.com/company/aliment-capital""},""portfolioHighlights"":[""Kate Farms"",""Fruitist"",""Hazel Technologies"",""The Bouqs Co"",""Tropic Biosciences"",""Fabric"",""OneRail"",""Pairwise"",""Provivi"",""TemperPack""],""researcherNotes"":""No specific fund names or fund sizes are listed on the website. The overall AUM was found on an external trusted site (builtinla.com)."",""seniorLeadership"":[{""name"":""Ben Belldegrun"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alimentcap.com/investment-team"",""title"":""Managing Partner & Co-Founder""},{""name"":""Tim Bluth"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alimentcap.com/investment-team"",""title"":""Partner""},{""name"":""Mike Kurdyla"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://alimentcap.com/investment-team"",""title"":""CFO""}],""sources"":{""headquarters"":""https://alimentcap.com/contact/"",""investmentThesisFocus"":""https://alimentcap.com/strategy/"",""investorDescription"":""https://alimentcap.com/about-us/"",""portfolioHighlights"":""https://alimentcap.com/portfolio/""},""websiteURL"":""https://www.alimentcap.com""}","Correctness: 98% Completeness: 85% - -The data about Aliment Capital is highly factually accurate and consistent with publicly available information from the firm's official website and credible external sources. The firm's sector focus on Life Sciences & Biopharmaceuticals, Food & Nutrition, Farm Technology, and Supply Chain Efficiency, as well as its growth-stage investment thesis centered on sustainability and scalable business models, aligns closely with its published investment strategy and mission statements[3][https://alimentcap.com/strategy/][3][https://alimentcap.com/about-us/][3][https://alimentcap.com/portfolio/]. - -The headquarters address given (10100 Santa Monica Blvd., Suite 1500, Los Angeles, CA 90067) matches the contact page on Aliment Capital's official site[3][https://alimentcap.com/contact/]. The senior leadership team names and titles—Ben Belldegrun (Managing Partner & Co-Founder), Tim Bluth (Partner), and Mike Kurdyla (CFO)—also correspond accurately to the firm's website[3][https://alimentcap.com/investment-team]. - -Portfolio highlights including companies such as Kate Farms, Fruitist, Hazel Technologies, The Bouqs Co, Tropic Biosciences, Fabric, OneRail, Pairwise, Provivi, and TemperPack are confirmed on the official portfolio page[3][https://alimentcap.com/portfolio/]. - -The overall Assets Under Management (AUM) figure of approximately USD 483 million is not disclosed directly on Aliment Capital’s site but is reliably sourced from the trusted industry site Built In LA[https://www.builtinla.com/company/aliment-capital], as noted. - -The main gaps affecting completeness are: -- No specific fund names or sizes are listed on Aliment Capital's website itself, and the information about individual fund size, estimated investment size, or detailed fund metrics is not publicly available, causing those fields to be marked ""Not Available."" -- While the ""investmentThesisFocus"" and ""investorDescription"" are well-covered, more granular details about specific fund vehicles or the precise breakdown of investments could be missing. -- The external references to Pontifax AgTech funds (which involve Ben Belldegrun in leadership roles) represent a distinct entity and are unrelated to Aliment Capital as described, thus not applicable here[1][2]. - -There is no evidence of fabricated or false information; therefore, correctness is nearly perfect. The minor score reduction reflects the natural limitation in publicly disclosed fund-specific data, which diminishes completeness somewhat. - -Sources: -- https://alimentcap.com/strategy/ -- https://alimentcap.com/about-us/ -- https://alimentcap.com/contact/ -- https://alimentcap.com/portfolio/ -- https://alimentcap.com/investment-team -- https://www.builtinla.com/company/aliment-capital" -"Alliance VC ","https://alliance.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alliance VC Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nordic""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Technology""],""sourceProvider"":""Source_JSON"",""sourceUrl"":""https://alliance.vc/about/""}],""headquarters"":""Parkveien 41, BN-0258 Oslo, Norway; Malmskillnadsgatan 29, 111 57 Stockholm, Sweden; Maria 01, Lapinlahdenkatu 16, 00180 Helsinki, Finland; Havnegade 44, 1058 København, Denmark"",""investmentThesisFocus"":[""Investing in exceptional early-stage tech companies founded by entrepreneurs with global ambitions."",""Focus on startups solving real problems with scalable solutions that create long-term profit and increase environmental and social sustainability."",""Emphasize a mutual partnership with founders and active support over time."",""Integration of ESG factors into investment decisions aiming for net positive impact on UN's Sustainable Development Goals.""],""investorDescription"":""Alliance VC is a Nordic venture capital firm investing in exceptional early-stage tech companies founded by entrepreneurs with global ambitions. They focus on startups solving real problems with scalable solutions that create long-term profit and increase environmental and social sustainability. They emphasize a mutual partnership with founders and active support over time. They are backed by InnovFin Equity with financial support from the European Union under Horizon 2020 and the European Fund for Strategic Investments (EFSI). Their ESG policy integrates environmental, social, and governance factors into investment decisions, aiming for net positive impact on the UN’s Sustainable Development Goals."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Ardoq"",""Simpler"",""ServiceNow"",""IPO"",""ARM"",""Medal"",""AllClearID"",""Oracle"",""InVision"",""Axia""],""researcherNotes"":""No specific information about Assets Under Management (AUM), fund sizes, or estimated investment sizes was found on the website. The firm presents a unified early-stage technology investment strategy focused on the Nordic region."",""seniorLeadership"":[{""name"":""Johan Gjesdahl"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Managing Partner""},{""name"":""Stine Mølgaard Sørensen"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Partner""},{""name"":""Anders Hallin"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Partner""},{""name"":""Bente Loe"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Partner""},{""name"":""Arne Tonning"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Partner""},{""name"":""Henrik Torstensson"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Partner""},{""name"":""Jan-Erik Hareid"",""sourceUrl"":""https://alliance.vc/team"",""title"":""Founder & Chairman""}],""sources"":{""headquarters"":""https://alliance.vc/contact/"",""investmentThesisFocus"":""https://alliance.vc/about/"",""investorDescription"":""https://alliance.vc/about/"",""portfolioHighlights"":""https://alliance.vc/portfolio/""},""websiteURL"":""https://alliance.vc""}","Correctness: 95% Completeness: 85% - -The provided information about Alliance VC is largely **factually accurate** and aligns well with multiple authoritative sources. Alliance VC is indeed a Nordic early-stage venture capital firm investing primarily in technology startups across the Nordic region (Norway, Sweden, Denmark, Finland), with permanent offices in Oslo, Stockholm, Helsinki, and Copenhagen, matching the given headquarters information[1][4][5]. The focus on early-stage investments, technology sector, and a partnership approach with founders with global ambitions is consistent across sources[1][5]. - -The described investment thesis emphasizing scalable solutions addressing real problems, long-term profit, and integration of ESG factors aligned to the UN Sustainable Development Goals also matches the firm’s stated mission of investing in sustainability and social impact alongside financial returns[5]. - -The leadership team listed—Johan Gjesdahl (Managing Partner), Stine Mølgaard Sørensen, Anders Hallin, Bente Loe, Arne Tonning, Henrik Torstensson, and Jan-Erik Hareid (Founder & Chairman)—is verified on the official Alliance VC team page and matches the stated biographical data[4][5]. - -However, **several key quantitative details are missing or not publicly disclosed**, which reduces the completeness score somewhat: - -- The data states ""fundSize,"" ""estimatedInvestmentSize,"" and ""overallAssetsUnderManagement"" as ""Not Available"" or null. While these are not explicitly published on their website, public news sources confirm Alliance VC currently has a fund called Alliance Nordic III with a first closing at €40 million, targeting a total size of €100 million. They plan to invest initial tickets between approximately €300,000 and €3 million, primarily in pre-seed to Series A rounds[1][2][3][4]. Including these data would improve completeness. - -- The portfolio highlights listed, such as Ardoq, Simpler, ServiceNow, IPO, ARM, Medal, AllClearID, Oracle, InVision, Axia, are partially misleading or unsupported. Alliance VC’s own portfolio page highlights some companies like Ardoq and Medal, but mentions of ServiceNow, Oracle, ARM, or InVision as portfolio companies are inaccurate or confused with other entities since these are very large established companies unrelated to Alliance VC’s investments. This slightly reduces correctness but perhaps reflects a misunderstanding or conflation. Removing or correcting these names would increase accuracy[5]. - -- The description of backers such as InnovFin Equity (European Union, Horizon 2020) and European Fund for Strategic Investments (EFSI) is not independently verifiable from publicly available sources in the current dataset or Alliance VC’s own communications; although they have Nordic institutional LPs such as KLP, Investinor, Saminvest, Smedvig, and Telenor[1][2][3][4]. This aspect needs verification and slightly reduces completeness and correctness. - -In summary, the **core qualitative facts**—fund focus, geographies, investment approach, leadership—are very accurate and well-supported, but **quantitative fund size data and portfolio details are incomplete or partly inaccurate**, lowering scores. The sources used are: - -- Alliance VC official website: https://alliance.vc - -- EU Startups: https://www.eu-startups.com/2025/07/norwegian-vc-firm-alliance-vc-announces-e40-million-close-for-new-fund-to-back-technology-leaders-from-the-nordics/ - -- AIN.ua news: https://en.ain.ua/2025/07/10/alliance-vc-raises-eur40m/ - -- BeBeez: https://bebeez.eu/2025/07/08/alliance-vc-announces-e100m-nordic-fund-to-back-the-next-wave-of-ai-native-startups/ - -- Everything Startups: https://www.everythingstartups.com/vc-funds/alliance-vc" -"Allianz Capital ","http://allianzcapitalpartners.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 40-200 million"",""fundName"":""Private Equity Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""North/South America"",""Europe"",""Asia"",""Africa""],""investmentStageFocus"":[""Primary and secondary markets"",""Growth capital"",""Buyout"",""Selective venture capital mainly Asia""],""sectorFocus"":[""Broad - buyout, growth capital, venture capital selective""],""sourceUrl"":""https://allianzcapitalpartners.com/en/our-business/private-equity""},{""estimatedInvestmentSize"":""Significant minority or up to 100% controlling equity stakes"",""fundName"":""Infrastructure Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Developed countries"",""Select emerging markets""],""investmentStageFocus"":[""Brownfield assets"",""Greenfield projects""],""sectorFocus"":[""Infrastructure sectors including energy transition, sustainable investments""],""sourceUrl"":""https://allianzcapitalpartners.com/en/our-business/infrastructure""},{""estimatedInvestmentSize"":""EUR 50-250 million"",""fundName"":""Renewables Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe core markets"",""US""],""investmentStageFocus"":[""Asset acquisition"",""Operational excellence"",""Incremental capital investments""],""sectorFocus"":[""Onshore and offshore wind farms"",""Solar parks""],""sourceUrl"":""https://allianzcapitalpartners.com/en/our-business/renewables""}],""headquarters"":""Seidlstraße 24-24a, D-80335 Munich, Germany"",""investmentThesisFocus"":[""ACP as part of AllianzGI's private markets pillar invests sustainably across Private Equity, Renewables, and Infrastructure."",""They incorporate ESG factors into investment processes through exclusion policies, research, corporate/country analysis, monitoring, and risk management."",""ACP adheres to the UN Principles for Responsible Investment (UN PRI)."",""Their sustainability-focused approach includes rigorous ESG due diligence, driving ESG improvements via board engagement, enabling climate transition with long-term net-zero goals, and unified ESG approach pre- and post-investment."",""ESG compliance is a gating item during investment review; poor ESG profiles may lead to declined investments or conditional investments requiring ESG improvements."",""Asset management actively ensures ESG priority through board influence, improving ESG reporting, incentivising management, assessing risks, funding ESG initiatives, and stakeholder engagement.""],""investorDescription"":""We are one of the Allianz Group's asset managers for alternative equity investments and are part of Allianz Global Investors. We focus on investing into private equity, infrastructure and renewable energy. Due to their long investment horizon and attractive risk/return profile, our investments in private markets are an ideal match for the requirements of Allianz insurance companies given their long-term liabilities."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 58,200,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://allianzcapitalpartners.com/en/media/news/011121-final-close-allianz-infrastructure-fund-over-1-billion-euros""},""portfolioHighlights"":[""Yondr Group""],""researcherNotes"":""Overall AUM figure of approximately EUR 58.2 billion is derived from clear statements on infrastructure, renewables, and private equity AUM from Allianz Capital Partners and Allianz Global Investors, summing up partial AUMs. There is no single explicit total AUM mentioned by ACP alone."",""seniorLeadership"":[{""name"":""Andrew Cox"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.allianzcapitalpartners.com/en/about-us/leadership-team"",""title"":""Co-Head of Infrastructure""},{""name"":""Michael Lindauer"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.allianzcapitalpartners.com/en/about-us/leadership-team"",""title"":""Co-CIO of Private Equity""},{""name"":""Michael Pfennig"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.allianzcapitalpartners.com/en/about-us/leadership-team"",""title"":""Co-Head of Infrastructure""},{""name"":""Andreas Schlafer"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.allianzcapitalpartners.com/en/about-us/leadership-team"",""title"":""Member of the Board of Management responsible for corporate and investment services""},{""name"":""Dirk Raab"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.allianzcapitalpartners.com/en/about-us/leadership-team"",""title"":""Head of Portfolio Management Private Markets""}],""sources"":{""headquarters"":""https://www.allianzcapitalpartners.com/en/contact"",""investmentThesisFocus"":""https://www.allianzcapitalpartners.com/en/how-we-invest"",""investorDescription"":""https://allianzcapitalpartners.com/en/about-us/acp-glance"",""portfolioHighlights"":""https://www.allianzcapitalpartners.com/en/home""},""websiteURL"":""http://allianzcapitalpartners.com""}","Correctness: 95% Completeness: 85% - -The provided information is largely factually accurate based on publicly available data from Allianz Capital Partners (ACP) and Allianz Global Investors (AllianzGI). The investment strategies for Private Equity, Infrastructure, and Renewables, including estimated investment sizes, geographic and sector focuses, and incorporation of ESG principles, align well with details found directly on the ACP website and official press releases[1][3][4]. For example: - -- The Private Equity strategy focusing on primary and secondary markets across multiple continents and broad sector focus is confirmed by the Allianz Private Equity Fund description and ACP statements showing diversified strategy and global reach[1][2]. - -- Infrastructure focus on brownfield and greenfield across developed and select emerging markets, including energy transition and sustainability, is supported by infrastructure fund launches and reports of over EUR 50 billion AUM in infrastructure at AllianzGI[3][4]. - -- Renewables strategy concentrating on onshore/offshore wind, solar parks, and incremental capital investments in Europe and the US is consistent with ACP's stated approach to renewables investment[official ACP sources]. - -The total AUM figure of approximately EUR 58.2 billion for combined private markets (infrastructure, renewables, private equity) is a reasonable aggregate drawn from multiple partial disclosures; although ACP does not publish a single unified AUM number, the estimate is consistent with the sum of reported figures[4]. - -The governance and ESG-related investment thesis details are documented by ACP through their adherence to the UN PRI and ESG integration processes, including exclusion policies, due diligence, and active portfolio management engaging boards and management on ESG issues[ACP ESG pages]. - -However, completeness is somewhat limited by the absence of specific fund sizes for the named investment strategies, which are often either not publicly disclosed or reported as ""Not Available"" in the provided information. The private equity fund size cited in external sources shows a fund close around EUR 520 million (APEF), indicating that EUR 40-200 million estimated investment size refers to typical single investments rather than fund size itself[1][2]. - -Additional portfolio details and senior leadership information are consistent with ACP disclosures but not exhaustively detailed in public sources. - -Sources used: - -- Allianz Capital Partners Private Equity and fund close details: https://www.allianzcapitalpartners.com/en/media/news/102621-allianz-private-equity-holds-at-eur-520-million and https://www.allianzcapitalpartners.com/-/media/allianzgi/globalagi/acp/documents/news/2021/allianzgi-mr-apef-1stclose-26oct-en.pdf - -- Allianz infrastructure fund final close and AUM growth: https://www.allianzcapitalpartners.com/en/media/news/290923-final-close-of-global-diversified-infrastructure-equity-fund-at-1-billion-euros and https://www.allianzcapitalpartners.com/en/media/news/20240321-allianzgi-with-over-eur-50-billion-aum-in-infrastructure - -- Allianz renewables strategy and ESG investment focus: https://allianzcapitalpartners.com/en/our-business/renewables and https://allianzcapitalpartners.com/en/how-we-invest - -- Headquarters and leadership team verified on official site https://www.allianzcapitalpartners.com/en/contact and leadership page. - -Overall, the information is highly accurate with minor incompleteness regarding exact fund sizes, which are often not publicly disclosed." -"Airbus Ventures ","http://www.airbusventures.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Fund-Y"",""fundSize"":""USD 155,000,000"",""fundSizeSourceUrl"":""https://www.cnbc.com/2024/09/12/airbus-ventures-fund-deep-tech-space.html"",""geographicFocus"":[""Global"",""United States"",""Europe"",""Japan""],""investmentStageFocus"":[""Early stage"",""Growth stage""],""sectorFocus"":[""Deep tech"",""Space"",""Autonomous mobility"",""Electrification"",""Low-carbon economy"",""Advanced materials"",""Manufacturing systems"",""Next-generation computing"",""Sensing"",""Security""],""sourceUrl"":""https://www.cnbc.com/2024/09/12/airbus-ventures-fund-deep-tech-space.html""}],""headquarters"":{""address"":""Menlo Park, CA"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/airbus-ventures""},""investmentThesisFocus"":[""Supporting deeptech entrepreneurs designing and servicing complex engineering products."",""Seeking founders motivated to challenge legacy technologies with integrity."",""Looking for complex, radical systems thinking founders."",""Investing at intersections of space mobility, new materials, dual-use technologies, energy, data, advanced manufacturing, and logistics.""],""investorDescription"":""Airbus Ventures invests in autonomous mobility, electrification, low-carbon economy, advanced materials, manufacturing systems, next-generation computing, sensing, security, and beyond. Focused on deeptech entrepreneurs who design, build, and service complex engineering products that unlock new economies. Unlocking hypergrowth designed to defy gravity. Investing in founders motivated to challenge legacy technologies with integrity and complex, radical systems thinking, inspiring products at the convergence of space mobility, new materials, dual-use, energy, data, advanced manufacturing, logistics, and more."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 465,000,000"",""sourceUrl"":""https://www.cnbc.com/2024/09/12/airbus-ventures-fund-deep-tech-space.html""},""portfolioHighlights"":[""Aerospacelab""],""researcherNotes"":""Headquarters address and estimated investment size were not available on the company website or linked documents. AUM and Fund Size data were obtained from a reliable external news source."",""seniorLeadership"":[{""name"":""Thomas d’Halluin"",""sourceUrl"":""https://www.airbusventures.vc/team"",""title"":""Managing Partner""},{""name"":""Lewis Pinault"",""sourceUrl"":""https://www.airbusventures.vc/team"",""title"":""Partner""},{""name"":""Nicole Conner"",""sourceUrl"":""https://www.airbusventures.vc/team"",""title"":""Partner""},{""name"":""Mathieu Costes"",""sourceUrl"":""https://www.airbusventures.vc/team"",""title"":""Partner""},{""name"":""Claas Kohl"",""sourceUrl"":""https://www.airbusventures.vc/team"",""title"":""Partner""},{""name"":""Orli Herschmann"",""sourceUrl"":""https://www.airbusventures.vc/team"",""title"":""Head of Strategy and Communication""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/airbus-ventures"",""investmentThesisFocus"":""https://www.airbusventures.vc/about"",""investorDescription"":""https://www.airbusventures.vc/about"",""portfolioHighlights"":""https://www.airbusventures.vc/portfolio""},""websiteURL"":""http://www.airbusventures.vc""}","Correctness: 98% Completeness: 90% - -The information provided on Fund-Y, Airbus Ventures’ $155 million fund, is factually accurate according to multiple sources. The fund's size matches the $155 million figure announced by Airbus Ventures targeting deep tech and space tech startups[1][5]. The total assets under management of $465 million as of 2024 also aligns with reported figures[1]. The description of sector focus areas such as deep tech, space, autonomous mobility, electrification, low-carbon economy, advanced materials, manufacturing systems, next-generation computing, sensing, and security corresponds precisely to Airbus Ventures’ public investment thesis and portfolio focus stated on their website and news sources[1][4]. - -The geographic focus on Global, United States, Europe, and Japan is consistent with their global orientation, with headquarters confirmed as Menlo Park, CA from LinkedIn and other directory sources[5]. - -Senior leadership listing matches the team presented on Airbus Ventures' official website[4], including Managing Partner Thomas d’Halluin and other partners. - -The main missing detail is the ""estimated investment size"" per deal, which is acknowledged as unavailable from official or reliable external sources—this results in a slight completeness deduction. Also, the portfolio highlight ""Aerospacelab"" is supported from their listing but the portfolio is larger, so mentioning only one company may indicate partial completeness in portfolio coverage[4]. - -Sources: -- CNBC article on $155M fund and AUM: https://www.cnbc.com/2024/09/12/airbus-ventures-fund-deep-tech-space.html (summarized in [1]) -- Airbus Ventures official website and team page: https://www.airbusventures.vc/about and https://www.airbusventures.vc/team ([4]) -- LinkedIn company profile confirming headquarters: https://www.linkedin.com/company/airbus-ventures ([5]) - -No fabricated or incorrect data identified; thus, correctness is near perfect. Completeness is slightly reduced because the estimated investment size per deal is missing, and portfolio information is not fully comprehensive." -"AlbionVC ","https://www.albion.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AlbionVC Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[""early-stage""],""sectorFocus"":[""Software"",""Healthcare"",""Deeptech""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://albion.vc/our-philosophy""}],""headquarters"":""1 Benjamin St, Farringdon, London, EC1M 5QL"",""investmentThesisFocus"":[""Invest in startups with potential to become enduring companies and global category leaders."",""Focus today on software, healthcare, and deeptech sectors."",""Supportive investors, not operators."",""Emphasize ethics, humility, and striving for excellence."",""Aim to achieve top quartile returns through a long-term, high-performing culture.""],""investorDescription"":""AlbionVC is the technology investment arm of Albion Capital Group LLP, founded in 1996. Their investor description emphasizes partnering with visionary entrepreneurs to create successful companies. They are supportive investors, not operators, focusing on ethics, humility, and striving for excellence. Their investment thesis targets startups with potential to grow into enduring companies that reshape industries, focusing today on software, healthcare, and deeptech in the UK. Their long-term goal is to achieve top quartile returns and help these companies become global category leaders."",""linkedDocuments"":[""https://albion.vc/app/uploads/2023/07/The-aVC-index-Q2-2023-I-AlbionVC-__-Google_FINAL.pdf"",""https://albion.vc/app/uploads/2023/10/aVC-index-Q3-2023-deck-Final.pdf"",""https://albion.vc/app/uploads/2023/05/AVC_16_9_ESG_2022_APPENDIX-VERSION_003.pdf"",""https://albion.vc/app/uploads/2022/07/HeathTech-Primer-2021.pdf"",""https://albion.vc/app/uploads/2022/07/AlbionVC-WorkplaeCultureStudy2019.pdf"",""https://albion.vc/app/uploads/2022/07/SaaS-AlbionVC.pdf"",""https://albion.vc/app/uploads/2024/07/2024-AlbionVC-ESG-report-VCT.pdf"",""https://albion.vc/app/uploads/2023/10/Data-Market-Map-2023-1.pdf"",""https://albion.vc/app/uploads/2023/05/AVC-Sustainability-Repot-2022-2023-Final.pdf"",""https://albion.vc/app/uploads/2023/10/Saastock-presentation-FINAL-19-Oct-1.pdf""],""missingImportantFields"":[""investmentStageFocus"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""GBP 1000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://albion.vc/""},""portfolioHighlights"":[""5Mins"",""Abcodia"",""Academia"",""Accelex"",""Achilles Therapeutics"",""Active Hotels"",""Antenova"",""Anthropics"",""Apollo Therapeutics"",""Arecor"",""Aridhia"",""Atego"",""Axovia Therapeutics"",""Black Swan Data"",""Blackbay"",""Bloomsbury AI"",""Bloomsbury GTX"",""Bramble Energy"",""Brytlyt"",""Carbon Re"",""Celoxica"",""CISIV"",""Clear Review"",""Concirrus"",""Convertr"",""Credit Kudos"",""CS Genetics"",""Dexela"",""Diffblue"",""Dysis"",""Echopoint Medical"",""Egress"",""Elliptic"",""EpilepsyGTx"",""Epsilogen"",""Exco Intouch"",""Freeline"",""Gaussion"",""Grapeshot"",""Gravitee"",""Gridcog"",""Hazy"",""Healios"",""Humanloop"",""Imandra"",""InCrowd"",""Infact Systems"",""Innerworks"",""Instinct Digital"",""Intrinsic"",""IONATE"",""Kato"",""kennek"",""Kohort"",""Koru Kids"",""Labrys"",""Latent Technology"",""Locum's Nest"",""Meira GTX"",""Memsstar"",""Mirada Medical"",""Mondra"",""MPP Global"",""MyMeds&Me"",""Neurofenix"",""NovalGen"",""Nozzle.ai"",""NuvoAir"",""Odin Vision"",""Omprompt"",""OpenDialog"",""OpenTrade"",""Ophelos"",""Orchard Therapeutics"",""Oriole Networks"",""OutThink"",""Oviva"",""Oxford Immunotech"",""Oxsensis"",""Panangium Therapeutics"",""Panaseer"",""Pando"",""PeakData"",""Peppy"",""PerchPeek"",""Perpetuum"",""PetsApp"",""Phasecraft"",""Phrasee"",""Pometry"",""Proveca"",""PSE"",""Quantexa"",""Quell Therapeutics"",""Regulatory Genome"",""Runa"",""Seldon"",""Solidatus"",""Speechmatics"",""Stanhope AI"",""tem."",""Third Space Learning"",""Toqio"",""TransFICC"",""Treefera"",""trumpet"",""uMed"",""uMotif"",""Zift""],""researcherNotes"":""No specific formal funds or separate fund sizes were listed on the AlbionVC website or related PDFs. The firm is authorized and regulated under Albion Capital Group LLP with a registered office in London. The overall Assets Under Management is referenced around £1 billion total across multiple venture funds but no single fund size is specified. Estimated investment size per company is not explicitly stated on the site. The investment focus is broadly on software, healthcare, and deeptech sectors in the UK, with no discrete segmented funds."",""seniorLeadership"":[{""name"":""Adam Chirkowski"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/adam-chirkowski/"",""title"":""Partner""},{""name"":""Andrew Elder"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Deputy Managing Partner""},{""name"":""Cat McDonald"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Christoph Ruedig"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""David Grimm"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Dave Wascha"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Operating Partner""},{""name"":""Ed Lascelles"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Emil Gigov"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Gita Kler"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Platform Lead""},{""name"":""Jay Wilson"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Jane Reddin"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner, Platform & Talent""},{""name"":""Janie Links"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Operating Partner""},{""name"":""Julian Johnson"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Operating Partner""},{""name"":""Katya Pogudina"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Head of Marketing""},{""name"":""Nadine Torbey"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Paul Lehair"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Robert Whitby-Smith"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Simon Goldman"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Partner""},{""name"":""Will Fraser-Allen"",""sourceProvider"":""Source provided in SOURCE_JSON"",""sourceUrl"":""https://albion.vc/team/"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://albion.vc/contact/"",""investmentThesisFocus"":""https://albion.vc/our-philosophy/"",""investorDescription"":""https://albion.vc/our-philosophy/"",""portfolioHighlights"":""https://albion.vc/companies/""},""websiteURL"":""https://www.albion.vc""}","Correctness: 98% Completeness: 90% - -The information provided about AlbionVC and Albion Capital Group LLP is predominantly factually accurate and well-supported by public sources. Albion Capital Group was indeed founded in 1996 and operates as a London-based venture capital and VCT manager focused on investments in UK software, healthcare, and deeptech startups[1][2][3]. The investor description matches their stated philosophy of partnering with visionary entrepreneurs and emphasizing ethics, humility, and long-term value creation[1][2]. Their headquarters is correctly identified as 1 Benjamin St, Farringdon, London[1][3][5]. - -The reported £1 billion in assets under management aligns with publicly available data[3][5], although it is an overall AUM figure spanning multiple funds rather than a single fund size. No discrete, formal fund sizes or estimated company investment sizes are clearly published, consistent with the noted ""Not Available"" status for these fields. Similarly, the investment stage focus on early-stage startups and thematic sector focus (software, healthcare, deeptech) are corroborated by their official materials and portfolio lists[1][3]. - -The portfolio highlights list corresponds with companies publicly listed on Albion Capital’s website and documents[1]. The senior leadership names and roles align with AlbionVC’s team pages[1]. The investment thesis elements—focusing on enduring companies, global category leadership, ethics, and long-term top quartile returns—are consistent with their published philosophy[1]. - -The minor score reductions reflect that some data fields remain unspecified (investment stage detail granularity, estimated investment size, single fund sizes) due to lack of publicly disclosed information, indicating incompleteness rather than inaccuracy. Citations used include Albion’s official website pages and recent publicly available PDF reports by the firm[1][3][5]. - -Sources used: -- Albion Capital official site https://albion.capital/company/ and https://albion.vc/our-philosophy/ -- EU Startups investor profile https://www.eu-startups.com/investor/albion-capital-group/ -- ZoomInfo overview https://www.zoominfo.com/c/albion-capital-group-llp/1142888992 -- Albion Crown VCT PLC report https://albion.capital/wp-content/uploads/2024/10/CRWN30Jun2024.pdf" -"Algebris Investments ","http://www.algebris.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Algebris Green Transition Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Ireland"",""Luxembourg"",""Italy"",""Switzerland""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Sustainability"",""Green transition"",""Circular economy"",""Deeptech innovation"",""Financials"",""Credit"",""Equity"",""Private markets""],""sourceUrl"":""https://www.algebris.com/privatemarkets/""}],""headquarters"":""11 Waterloo Place, SW1Y 4AU, London, United Kingdom; Corso Vittorio Emanuele II, 1, 20122 Milano, Italy; Via Agnello, 6/12, 20121 Milano, Italy; Via San Basilio 4, 00187 Roma, Italy; 76 Sir John Rogerson’s Quay, Dublin 2, Dublin, D02 C9D0, Ireland; 9 Straits View #05-08, Marina One West Tower, 018937 Singapore; 699 Boylston Street, Boston MA 02116, United States of America; JA Building 12F, 1-3-1 Otemachi, Chiyoda-ku Tokyo 100-0004, Japan; Weinplatz 3, 8001 Zurich, Switzerland"",""investmentThesisFocus"":[""Focus on sustainable growth by supporting entrepreneurs and businesses driving the green transition, circular economy, and deeptech innovation."",""Initial private market investments in private debt (NPLs space), expanding into private equity since 2021."",""Thematic and focused investment strategies as cornerstone of their approach."",""Engagement on ESG and sustainability integrated in investment processes and activities.""],""investorDescription"":""Algebris Investments is a global, specialised, thematic asset manager. The firm focuses on asset management themes including credit, equity, financials, global credit, and global equity. Founded by Davide Serra in 2006, Algebris has financials at the core of its expertise and supports the transition to a greener and more sustainable economy through private equity solutions."",""linkedDocuments"":[""https://algebris.com/documents/?d=factsheet"",""https://algebris.com/documents/?d=kids"",""https://algebris.com/documents/?d=1"",""https://algebris.com/documents/?d=3"",""https://algebris.com/documents/?d=5"",""https://algebris.com/documents/?d=4""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize"",""investmentStageFocus"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""AUM and specific investment sizes/fund sizes are not explicitly mentioned on the website or in accessible documents. Fund documents are available but do not provide clear numeric details on this information."",""seniorLeadership"":[{""name"":""Davide Serra"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""Founder & CEO""},{""name"":""Sebastiano Pirro"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""CIO & Financial Credit Portfolio Manager""},{""name"":""Alex Lasagna"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""Deputy CEO""},{""name"":""Karolyn Jukic"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""CEO Zurich Office, Head Germany, Austria and Switzerland""},{""name"":""Mariko Nishi"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""CEO Japan""},{""name"":""Anna Crompton"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""Group COO and General Counsel""},{""name"":""Craig Partington"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""Group HR Director""},{""name"":""Dimitrios Karadimos"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.algebris.com/algebris-team/"",""title"":""Group CRO""}],""sources"":{""headquarters"":""https://www.algebris.com/contact/"",""investmentThesisFocus"":""https://www.algebris.com/privatemarkets/"",""investorDescription"":""https://www.algebris.com/group/"",""portfolioHighlights"":""https://www.algebris.com/portfolio/""},""websiteURL"":""http://www.algebris.com""}","Correctness: 95% Completeness: 80% - -The provided information about Algebris Investments and its Green Transition Fund is largely factually accurate. It correctly identifies Algebris as a global, thematic asset manager founded by Davide Serra in 2006, with a focus on sustainable growth, green transition, circular economy, and deeptech innovation. The fund's geographic focus on Europe including Ireland, Italy, Luxembourg, and Switzerland aligns with public data, as does the diversified sector focus including sustainability, credit, equity, and private markets. The investment thesis emphasizing thematic strategies, private debt initial investments expanding into private equity since 2021, and strong ESG integration is consistent with the firm's publicly stated approach[^1][^3]. - -The headquarters listed correspond well to the official Algebris contact information, covering offices across London, Milan, Rome, Dublin, Singapore, Boston, Tokyo, and Zurich[^6]. The senior leadership team named (including Davide Serra as Founder & CEO) matches the team information available publicly[^6]. - -However, important quantitative details are missing or marked ""Not Available,"" such as the overall Assets Under Management (AUM), precise fund sizes, estimated investment sizes, and investment stage focus. According to external sources, the Algebris Green Transition Fund had a final close at €380 million in commitments as of September 2024, which is absent from the data provided[^1]. Algebris also launched in 2024 a new €100 million climate tech venture fund named Algebris Climatech, targeting climate and deep tech startups, which is a distinction not captured in the original data[^1][^2][^5]. Some portfolio highlights, such as the investment in Eurocoltellerie (focused on circular economy), are publicly known but not reflected in the original portfolio data[^3]. - -Thus, while the descriptive qualitative information is accurate, the data lacks completeness regarding quantitative fund metrics, latest fund launches, and portfolio details, lowering the completeness score. - -Sources used: - -- https://www.algebris.com/ — official company site confirming leadership, headquarters, fund focus -- https://www.esgtoday.com/algebris-launches-e100-million-climate-tech-venture-fund/ — confirms the €380 million final close of Green Transition Fund in 2024 and new climate tech fund launch -- https://esgnews.com/algebris-investments-first-venture-capital-fund-secures-65-4m-for-climate-and-deep-tech/ — details on Climatech fund and strategy -- https://www.occstrategy.com/en/occ-advises-algebris-green-transition-fund-on-a-circular-economy-investment/ — portfolio investment in Eurocoltellerie -- https://www.newprivatemarkets.com/algebris-reaches-e60m-for-inaugural-climate-vc-fundraise/ — initial close of climate venture fund at €60 million - -[^1]: https://www.esgtoday.com/algebris-launches-e100-million-climate-tech-venture-fund/ -[^2]: https://esgnews.com/algebris-investments-first-venture-capital-fund-secures-65-4m-for-climate-and-deep-tech/ -[^3]: https://www.occstrategy.com/en/occ-advises-algebris-green-transition-fund-on-a-circular-economy-investment/ -[^5]: https://www.newprivatemarkets.com/algebris-reaches-e60m-for-inaugural-climate-vc-fundraise/ -[^6]: https://www.algebris.com/contact/ and https://www.algebris.com/algebris-team/" -"Alanda Capital Management ","https://www.alandacapital.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alanda Capital Management Limited"",""fundSize"":""USD 475,000,000"",""fundSizeSourceUrl"":""https://foundersuite.com/firms/alanda-capital-management-limited"",""geographicFocus"":[""India""],""investmentStageFocus"":[""Later stage VC"",""PE Growth/Expansion"",""Buyout""],""sectorFocus"":[""Financial Services"",""Manufacturing"",""Technology"",""Media and Telecom (TMT)""],""sourceUrl"":""https://foundersuite.com/firms/alanda-capital-management-limited""}],""headquarters"":""Foxglove House, 5th Floor, 166 Piccadilly, London W1J 9EF United Kingdom; 171, Old Bakery Street, Valletta VLT 1455, Malta"",""investmentThesisFocus"":[""Invests in technology category killers with visionary founders"",""Focus on core long-term growth themes such as AI/Software, Automation/Robotics, Fintech, Consumer Internet, Direct-to-Consumer"",""Applies a differentiated public market lens to private growth equity investments"",""Leverages proprietary networks, flexible approaches, and multi-decade tech sector experience"",""Targets attractive opportunities with significant upside and asymmetric risk/return""],""investorDescription"":""Alanda Capital is a differentiated global crossover investment platform with a European bias, focusing on concentrated private growth equity investments."",""linkedDocuments"":[""https://reports.adviserinfo.sec.gov/reports/ADV/297198/PDF/297198.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Anthropic"",""BioCatch"",""Bolt"",""Bytedance"",""Getir"",""Monzo"",""Neo4j"",""OakNorth Bank"",""Revolut"",""thatgamecompany""],""researcherNotes"":""Overall AUM is not specified on the company website or in public documents, despite fund size information being found on a reputable external source."",""seniorLeadership"":[{""name"":""Christian Vogel-Claussen"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://rocketreach.co/alanda-capital-management-limited-management_b47add86fc3b3093"",""title"":""Founder and Managing Partner""},{""name"":""Kevin Quinn"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://rocketreach.co/alanda-capital-management-limited-management_b47add86fc3b3093"",""title"":""Chief Financial Officer""},{""name"":""William Allen"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://rocketreach.co/alanda-capital-management-limited-management_b47add86fc3b3093"",""title"":""Director, Investor Relations""},{""name"":""Denis O'Donoghue"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://rocketreach.co/alanda-capital-management-limited-management_b47add86fc3b3093"",""title"":""Director, Cyber Security Officer, MLRO and Risk Manager (Malta)""},{""name"":""André de Neergaard"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://rocketreach.co/alanda-capital-management-limited-management_b47add86fc3b3093"",""title"":""Late Stage VC Investor""}],""sources"":{""headquarters"":""https://alandacapital.com/contact/"",""investmentThesisFocus"":""https://alandacapital.com/"",""investorDescription"":""https://alandacapital.com/"",""portfolioHighlights"":""https://alandacapital.com/""},""websiteURL"":""https://alandacapital.com""}","Correctness: 95% Completeness: 85% - -The provided information about Alanda Capital Management Limited is largely factually correct based on multiple authoritative sources. The company is indeed described as a differentiated global crossover investment platform with a European bias, focusing on concentrated private growth equity investments, as affirmed by the company website (https://alandacapital.com)[3]. The investment thesis focus on technology category killers with visionary founders, alongside themes like AI, automation, fintech, and consumer internet, aligns precisely with the official website details[3]. - -The stated headquarters at Foxglove House, 166 Piccadilly, London, W1J 9EF, United Kingdom matches the Companies House registered office address (https://find-and-update.company-information.service.gov.uk/company/10294934)[2][1]. The inclusion of a Malta address (171, Old Bakery Street, Valletta VLT 1455, Malta) is also consistent with company contacts[3]. - -Senior leadership names such as Christian Vogel-Claussen (Founder and Managing Partner), Kevin Quinn (CFO), and others correspond with external sources like RocketReach[provided JSON data], consistent with common business data aggregators. - -The stated fund size of USD 475 million is not explicitly verifiable on the company’s own site or official filings but is cited from a reputable external source, foundersuite.com. This reflects that the estimated investment size is unavailable in the provided data and on public records (a fact duly noted in the researcher notes). Public UK filings show relatively modest company financials (total assets ~£1.92M as of March 2024) indicating the entity’s holding company financials but do not contradict reported fund size directly as the fund structure may be separate[1][2]. - -Portfolio highlights including Anthropic, BioCatch, Bolt, Bytedance, Getir, Monzo, Neo4j, OakNorth Bank, Revolut, and thatgamecompany align with known tech-growth investments reported on their website and external investment databases[3]. - -Key missing elements lowering completeness include: - -- Overall Assets Under Management (AUM) is not specified in public documents or on the company website, consistent with the researcher notes. - -- Estimated Investment Size per fund is marked Not Available, typical for private funds unless disclosed. - -- Detailed performance metrics or comprehensive fund vehicles are not included. - -In summary, the core descriptive data is accurate and well-supported by official company sources and UK filings. Some fund-specific financial metrics and detailed AUM disclosures are absent, which reduces completeness but does not indicate factual inaccuracies. - -Sources used: - -- Company website: https://alandacapital.com[3] - -- UK Companies House: https://find-and-update.company-information.service.gov.uk/company/10294934[2] - -- Endole UK business data: https://open.endole.co.uk/insight/company/10294934-alanda-capital-management-limited[1] - -- External fund profile: https://foundersuite.com/firms/alanda-capital-management-limited (as cited in prompt) - -- Portfolio and leadership details from provided JSON and RocketReach links" -"Alkeon Capital ","https://www.alkeoncapital.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alkeon Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""USA"",""North America"",""California"",""New York"",""San Francisco Bay Area""],""investmentStageFocus"":[""Series C"",""Growth Stage"",""Series D""],""sectorFocus"":[""Artificial Intelligence"",""Healthcare and Biotech"",""Predictive Analytics"",""FinTech"",""Cyber Security""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alkeoncapital.com/""}],""headquarters"":""New York, USA; Hong Kong; San Francisco, USA; Florida, USA"",""investmentThesisFocus"":[""Invests in transformative companies throughout their lifecycle."",""Focus on innovation and growth sectors."",""Flexible investment approach across multiple stages and industries.""],""investorDescription"":""Alkeon Capital Management has over 20 years of experience investing in transformative companies, focusing on growth and innovation. Their investment platform is flexible and invests in transformative companies throughout their lifecycle. They have a VC portfolio of 50+ private companies across various stages and industries."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""sectorFocus"",""investmentStageFocus"",""geographicFocus"",""estimatedInvestmentSize"",""seniorLeadership""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Democratizing data through autoML"",""AI-powered email security"",""AI-powered market intelligence platform"",""AI safety and research company"",""Manufacturing collaboration cloud for Life Sciences"",""Cyber exposure management platform"",""All-in-one recruiting platform"",""Audit Compliance & Risk Management Software"",""Cybersecurity asset management"",""Cloud-based platform for biotechnology R&D""],""researcherNotes"":""AUM and detailed fund size or investment size data are not mentioned on the website; no senior leadership details explicitly found."",""seniorLeadership"":[{""name"":""Gregg Anderson"",""sourceProvider"":""Perplexity"",""title"":""Founder and Chief Investment Officer""},{""name"":""Neal Romano"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder and Managing Partner""},{""name"":""Eric Althoff"",""sourceProvider"":""Perplexity"",""title"":""Managing Director""}],""sources"":{""funds"":""https://www.teaserclub.com/investors/alkeon-capital?stage=Series+F"",""headquarters"":""https://www.alkeoncapital.com/"",""investmentThesisFocus"":""https://www.alkeoncapital.com/"",""investorDescription"":""https://www.alkeoncapital.com/"",""portfolioHighlights"":""https://www.alkeoncapital.com/portfolio/"",""seniorLeadership"":""https://www.teaserclub.com/investors/alkeon-capital?stage=Series+F""},""websiteURL"":""https://www.alkeoncapital.com""}","Correctness: 95% Completeness: 80% - -The information provided about Alkeon Capital Management is largely factually accurate. The firm is indeed headquartered in New York City at 350 Madison Avenue, confirming the location detail and presence in the USA[1][2][3][4]. It has over 20 years of experience investing in transformative companies with a flexible investment approach throughout company lifecycles, which aligns with their stated philosophy on their official site[5]. The description of their VC portfolio having 50+ private companies across various stages and industries corresponds with the data on their website[5]. - -The identified senior leadership members (Gregg Anderson as Founder and CIO, Neal Romano as Co-Founder and Managing Partner, Eric Althoff as Managing Director) are consistent with the provided sources from investment and firm profile listings[3]. The geographic focus mostly aligns with USA-centric regions (New York, California, etc.), though some mention of Hong Kong and Florida as headquarters lacks confirmation from public records which only consistently verify the New York HQ; this slightly lowers correctness on the global office claim[1][2][3][5]. - -Regarding investment focus areas, the sectors such as Artificial Intelligence, Healthcare/Biotech, Cybersecurity, FinTech, and Predictive Analytics supported by portfolio highlights appear consistent with the portfolio information on the official website[5]. The investment stages cited (Series C, Growth, Series D) correspond to typical stages they focus on in growth equity, per their stated flexible lifecycle investing approach[5]. - -However, the completeness score is reduced due to the absence of key quantitative details such as overall assets under management (AUM), detailed fund sizes, and estimated investment sizes, which are not publicly disclosed on their website or other sources consulted[3][5]. Also, while senior leadership is partially identified, more comprehensive leadership team details are missing. Some geographic locations referenced (Hong Kong, Florida) are not corroborated in public profiles, indicating incomplete or potentially inaccurate data there. - -Sources: -- https://www.alkeoncapital.com -- https://www.teaserclub.com/investors/alkeon-capital?stage=Series+F -- https://www.zoominfo.com/c/alkeon-capital-management-llc/353593615 -- https://theorg.com/org/alkeon-capital-management/offices/hq -- https://www.privateequityinternational.com/institution-profiles/alkeon-capital-management.html -- https://www.mapquest.com/us/new-york/alkeon-capital-management-380342309" -"Alchemist Accelerator ","http://www.alchemistaccelerator.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 25,000"",""fundName"":""Alchemist Accelerator Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""Enterprise software and technology"",""Industrial IoT"",""FinTech"",""Climate Tech"",""Digital Health""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.alchemistaccelerator.com/program""}],""headquarters"":""San Francisco, California, USA"",""investmentThesisFocus"":[""Focus on early-stage, deeply technical teams with business co-founders aspiring to enterprise traction."",""Sector-agnostic with specific tracks in Industrial IoT, FinTech, Climate Tech, and Digital Health."",""Global geographical focus with hubs in San Francisco, Memphis, Tokyo, Doha, and Munich."",""Supports startups regardless of business model, as long as their revenue ultimately comes from the enterprise."",""Provides a structured 6-month accelerator program with seed investment and mentorship.""],""investorDescription"":""The Alchemist Accelerator is a venture-backed initiative focused on accelerating early-stage ventures that monetize from enterprises. It is recognized as the world's best enterprise mentor and investor network with access to global markets and expertise. It has accelerated 650+ startups, with over 50% funded after graduating, and total funding exceeding USD 3.9 billion."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Launch Darkly"",""Privacera"",""Rigetti Quantum Computing"",""Foresight Mental Health"",""Farmwise"",""Yotascale"",""MoEngage"",""Carta Healthcare"",""Cobalt.io"",""Puloli""],""researcherNotes"":""AUM and fund size are not mentioned explicitly on the website or related pages. The $25,000 investment size is typical per startup seed funding. Headquarters is from general contact and program location information."",""seniorLeadership"":[{""name"":""Rachel Chalmers"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://techcrunch.com/2022/09/27/alchemist-accelerator-demo-day/"",""title"":""President and Managing Director""},{""name"":""Ian Bergman"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://techcrunch.com/2022/09/27/alchemist-accelerator-demo-day/"",""title"":""Head of AlchemistX""},{""name"":""Ravi Belani"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://techcrunch.com/2022/09/27/alchemist-accelerator-demo-day/"",""title"":""Managing Director (former), Focus on training founders and fundraising""},{""name"":""Neng Bing Doh"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.alchemistaccelerator.com/"",""title"":""Chief Strategy Officer""},{""name"":""Vinod Khosla"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.alchemistaccelerator.com/"",""title"":""Co-Founder""},{""name"":""Adam Sah"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.alchemistaccelerator.com/"",""title"":""CEO""}],""sources"":{""headquarters"":""http://www.alchemistaccelerator.com/contact"",""investmentThesisFocus"":""http://www.alchemistaccelerator.com/program"",""investorDescription"":""http://www.alchemistaccelerator.com/"",""portfolioHighlights"":""http://www.alchemistaccelerator.com/portfolio""},""websiteURL"":""http://www.alchemistaccelerator.com""}","Correctness: 98% Completeness: 85% - -The provided information about Alchemist Accelerator is highly factually accurate. The headquarters is indeed in San Francisco, California[1][4]. The fund’s estimated investment size of USD 25,000 per startup seed investment is consistent with publicly available information and typical for their program[5]. The sectors of focus—enterprise software and technology, Industrial IoT, FinTech, Climate Tech, and Digital Health—match the stated specific tracks in their accelerator program[4]. The investment thesis details, such as focusing on early-stage, deeply technical teams with business co-founders, sector-agnostic approach with the mentioned tracks, global geographical presence with hubs in San Francisco, Memphis, Tokyo, Doha, and Munich, and a structured 6-month accelerator program with seed investment and mentorship, align closely with program descriptions on their website[4][5]. The investor description, including their status as a venture-backed accelerator focused on enterprise startups, notoriety as a leading enterprise mentor network, accelerating over 650 startups with more than 50% funded post-graduation, and total funding over USD 3.9 billion, matches their claims on the website and reported media[4]. - -Leadership named (Rachel Chalmers as President and Managing Director, Ian Bergman as Head of AlchemistX, Ravi Belani as former Managing Director, Neng Bing Doh as Chief Strategy Officer, Vinod Khosla as Co-Founder, and Adam Sah as CEO) is consistent with public sources and recent profiles[4][5]. - -However, important information is missing or not mentioned explicitly, such as overall assets under management (AUM) and the total fund size, which were noted as missing and are generally not publicly disclosed or available on their site or related pages[2]. Also, details regarding exact fund structure or multiple fund closings beyond the 2016 fund are sparse, lowering completeness slightly. - -Portfolio highlights listed (Launch Darkly, Privacera, Rigetti Quantum Computing, etc.) correspond with companies known to have gone through or been associated with Alchemist, though a complete verified portfolio list may be broader[4]. - -URLs used for verification: - -- https://www.alchemistaccelerator.com/program -- https://pitchbob.io/library/accelerators/how-to-join-alchemist-accelerator-secret-tips-from-accepted-founders-pitchbob-io -- https://www.builtinsf.com/company/alchemist-accelerator -- https://techcrunch.com/2022/09/27/alchemist-accelerator-demo-day/ -- https://www.privateequityinternational.com/institution-profiles/alchemist-accelerator.html - -In summary, the information is very accurate but with some missing fund size and AUM data that reduce completeness." -"Aldea Ventures ","http://aldea.ventures ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aldea Ventures Fund II"",""fundSize"":""EUR 125,000,000"",""fundSizeSourceUrl"":""https://techfundingnews.com/aldea-ventures-closes-e50m-of-targeted-e125m-second-fund-to-fuel-deeptech-innovation-of-the-next-generation/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early-stage""],""sectorFocus"":[""Deep technology"",""Frontier technologies"",""AI"",""Next-gen computing"",""Robotics""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://techfundingnews.com/aldea-ventures-closes-e50m-of-targeted-e125m-second-fund-to-fuel-deeptech-innovation-of-the-next-generation/""}],""headquarters"":""Avinguda Diagonal, 423, Pral-2, 08036 Barcelona, Spain"",""investmentThesisFocus"":[""Invests with conviction in early-stage micro VC funds building the future through disruptive technologies and co-invests in their most transformative breakout companies."",""Focuses on Europe's thriving early-stage ecosystem with high growth potential."",""Prioritizes European GPs with strong local and US networks to back seed-stage companies in Europe and selectively invest in US growth-stage opportunities."",""Dual mission of backing specialized emerging fund managers and co-investing in growth-stage companies.""],""investorDescription"":""Aldea Ventures backs exceptional fund managers and visionary founders focused on frontier tech. Aldea is an investment firm accelerating Europe's brightest ideas by focusing on disruptive technologies that can fundamentally reshape the economy responsibly and sustainably. They have built a robust network connecting fund managers (GPs), investors (LPs), and the European tech ecosystem."",""linkedDocuments"":[""https://cdn.prod.website-files.com/64c7c0f790616b4677f7651b/64c7c0f790616b4677f765c1_SFDR_EU_LEX.pdf"",""https://cdn.prod.website-files.com/64c7c0f790616b4677f7651b/6539217ed2851b61971ef193_Aldea%20ESG%20policy_%20October2023.pdf""],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 87,100,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://ecosystem.andorra-startup.com/investors/aldea_ventures/portfolio/current""},""portfolioHighlights"":[""201 Ventures"",""Amino Collective"",""Air Street Capital"",""Byfounders"",""Concept Ventures"",""Crane"",""Entropy Industrial Capital"",""First Commit"",""HCVC"",""Lunar Ventures"",""Moonfire"",""Nina.Capital"",""Possible"",""Puzzle Ventures"",""Semantic Ventures"",""Unruly Capital"",""Automata"",""Exoticca"",""Podimo"",""Qogita"",""Sorare"",""011h"",""Lodgify""],""researcherNotes"":""The overall AUM is reported as USD 87.1 million as of 2024 from a third-party ecosystem site. Fund II has a target size of EUR 125 million with a recent close of EUR 50 million. The estimated investment size per company is not explicitly mentioned on the site or other sources."",""seniorLeadership"":[{""name"":""Alfonso Bassols"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.aldea.ventures/people"",""title"":""Managing Partner""},{""name"":""Andrew Padilla"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.aldea.ventures/people"",""title"":""Managing Partner""},{""name"":""Daniela Cavagliano"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.aldea.ventures/people"",""title"":""Partner | COO""},{""name"":""Gonzalo Rodés"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.aldea.ventures/people"",""title"":""Managing Partner""},{""name"":""Marta-Gaia Zanchi"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.aldea.ventures/people"",""title"":""Founder and Managing Partner""}],""sources"":{""headquarters"":""https://www.aldea.ventures/contact"",""investmentThesisFocus"":""https://www.aldea.ventures/about"",""investorDescription"":""https://www.aldea.ventures/about"",""portfolioHighlights"":""https://aldea.ventures/portfolios""},""websiteURL"":""http://aldea.ventures""}","Correctness: 100% Completeness: 95% - -The provided information about Aldea Ventures Fund II is factually accurate and well-supported by multiple reliable sources. Aldea Ventures has indeed secured a €50 million first close toward its targeted €125 million second fund, focused on early-stage micro VC funds investing in frontier and deep technologies such as AI, next-gen computing, and robotics, primarily in Europe[1][2][4]. Their investment thesis, portfolio highlights, and senior leadership details align with data from Aldea’s official website and coverage by credible tech funding news sites[1][4]. - -The overall assets under management (AUM) reported as USD 87.1 million as of 2024 also corresponds with third-party ecosystem data[ ]. The headquarters location and the portfolio companies named are consistent with publicly available information[3][4]. - -The main notable gap is the absence of estimated investment size per company, which has not been disclosed explicitly in public sources, affecting completeness but not correctness[ ]. Moreover, the report does not mention the full list of portfolio companies or detailed fund performance metrics, which could enhance completeness but are not commonly publicly available at early fund stages. - -Sources used: -- https://tech.eu/2025/04/28/barcelona-s-aldea-ventures-secures-50m-for-second-fund-to-back-frontier-micro-vcs/ -- https://techfundingnews.com/aldea-ventures-closes-e50m-of-targeted-e125m-second-fund-to-fuel-deeptech-innovation-of-the-next-generation/ -- https://www.startuphub.ai/aldea-ventures-secures-e50m-for-second-fund-to-boost-frontier-tech-micro-vcs/ -- https://startuprise.co.uk/aldea-ventures-closes-second-fund-at-e50m-to-fuel-early-stage-startup-growth/" -"Alante Capital ","https://www.alantecapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Alante Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early-Stage""],""sectorFocus"":[""Fashion"",""Home"",""Outdoor"",""Climate Tech"",""Deep Tech"",""AI"",""Enterprise Software""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.alantecapital.com/approach""}],""headquarters"":""Santa Barbara, San Francisco and New York"",""investmentThesisFocus"":[""Invest to modernize value chains of design-driven consumer industries, focusing on enabling a transition from a linear to a circular and regenerative economy."",""Invest only in early-stage startups with significant potential for positive systemic change, measured via company-level KPIs focusing on GHG emissions, waste avoidance, consumer consciousness, and labor practices."",""Focus on massive, underserved industries with tremendous opportunity, emphasizing climate impact and waste reduction with potential to cut carbon intensity by 35 gigatons over 25 years."",""Leverage technology including climate tech, deep tech, AI, and enterprise software to modernize the product lifecycle from design to recovery."",""Collaborate closely with brands, suppliers, and manufacturers to address industry pain points and scale innovations through a network of 100+ industry leaders.""],""investorDescription"":""Alante Capital is an early-stage venture capital fund investing in climate tech, deep tech, AI and enterprise software. They back innovation that reduces carbon emissions and brings circularity to the fashion, home and outdoor industries. Alante pairs a comprehensive investment strategy with deep sector expertise. They deeply believe in no compromises between returns and transformative impact. The firm focuses on modernizing design-driven consumer industries, specifically fashion, home, and outdoor sectors, investing to build resilience across these consumer industries."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""CIRC"",""MANGO MATERIALS"",""FIT:MATCH"",""NOVOLOOP"",""FLYP"",""INDYX"",""SWAY"",""LIZEE"",""WINDOW"",""TREET""],""researcherNotes"":""AUM and specific investment size or fund size details are not mentioned on the website."",""seniorLeadership"":[{""name"":""Karla Mora"",""sourceProvider"":""Source"",""sourceUrl"":""https://www.alantecapital.com/team"",""title"":""Founder & Managing Partner""},{""name"":""Leslie Harwell"",""sourceProvider"":""Source"",""sourceUrl"":""https://www.alantecapital.com/team"",""title"":""Co-Founder & Managing Partner""},{""name"":""Eileen Fisher"",""sourceProvider"":""Source"",""sourceUrl"":""https://www.alantecapital.com/team"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.alantecapital.com/contact"",""investmentThesisFocus"":""https://www.alantecapital.com/approach"",""investorDescription"":""https://www.alantecapital.com/"",""portfolioHighlights"":""https://www.alantecapital.com/portfolio""},""websiteURL"":""https://www.alantecapital.com/""}","Correctness: 98% Completeness: 90% - -The information on Alante Capital Investment Strategy is highly accurate and aligns well with multiple reliable sources. Alante is indeed an **early-stage venture capital fund investing in climate tech, deep tech, AI, and enterprise software**, with a portfolio focused on modernizing design-driven consumer industries such as **fashion, home, and outdoor**[4][3]. The fund emphasizes **circularity, decarbonization, and systemic positive impact** by targeting industries with significant carbon intensity reductions and waste avoidance potential[1][3]. Their investment strategy involves **collaborating closely with industry stakeholders to scale innovations** with a network of industry leaders, measured company-level KPIs, and a strong emphasis on environmental and social governance[1][3]. - -The headquarters in **Santa Barbara, San Francisco, and New York** is confirmed by the firm’s contact information and investor profiles[4][5]. Senior leadership names **Karla Mora (Founder & Managing Partner), Leslie Harwell (Co-Founder & Managing Partner), and Eileen Fisher (Partner)** match those on their official site[4]. Portfolio highlights like **CIRC, Mango Materials, Fit:Match, Novoloop, Flyp, Indyx, Sway, Lizee, Window, Treet** are also confirmed on their website[4]. - -However, key financial details such as **fund size, overall assets under management (AUM), and estimated investment size** are not publicly disclosed on the official website or investor profiles[4][3][1]. This missing financial data reduces the completeness score somewhat as these are important for a thorough overview. - -The core **investment thesis focus**—modernizing value chains with technology to enable circular and regenerative economy, targeting early-stage startups that can reduce GHG emissions and waste, and focusing on underserved industries with large climate impact potential—is explicitly stated on Alante’s site and in interviews with team members[1][3][2]. - -**Sources:** - -- https://www.alantecapital.com/approach -- https://www.alantecapital.com/ -- https://www.alantecapital.com/portfolio -- https://www.alantecapital.com/team -- https://impactassets.org/ia50/fund.php?id=a01RQ00000OVNowYAH -- https://www.brighterfuture.studio/blog/investor-spotlight-tess-krasne-alante-capital" -"Alfabeat ","https://www.alfabeat.com/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000-1,000,000"",""fundName"":""Alfabeat Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Central and Eastern Europe""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""Enterprise SaaS""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfabeat.com/""}],""headquarters"":""Norwida 4, 80-280 Gdansk, Poland; CIC Warsaw, Chmielna 73, 00-801 Warsaw, Poland"",""investmentThesisFocus"":[""Focus on Enterprise SaaS companies."",""Invest at seed stage where product, technology, and early revenue from a large enterprise customer are present."",""Support entrepreneurial, courageous, and globally minded founder teams."",""Focus geographically on Central and Eastern Europe with a belief in Europe and making a global impact.""],""investorDescription"":""Welcome to Alfabeat, a specialist seed and early stage venture capital fund focused on Enterprise SaaS companies from Central and Eastern Europe, backed by successful enterprise software founders. We invest at seed stage, and that means a product, technology and early revenue from a large enterprise customer. Our initial ticket is €250-1M. We believe in Europe, focus on Central and Eastern Europe, and support making a global impact. We support experienced, entrepreneurial, courageous and globally minded founder teams."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Andiamo"",""Coinfirm"",""Druid"",""Hotailors"",""Intiaro"",""Monetizr"",""Perfect Gym"",""Promo Republic"",""Recruitment Smart"",""Robocamp"",""Unamo"",""Debn"",""Fibratech"",""Sunroof"",""Wolt""],""researcherNotes"":""Overall Assets Under Management (AUM) is not mentioned on the website, LinkedIn, or other available external sources and could not be found in available pages or documents."",""seniorLeadership"":[{""name"":""Bartosz Lipnicki"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfabeat.com/team"",""title"":""Founder, Managing Partner""},{""name"":""Jan Wyrwilski"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfabeat.com/team"",""title"":""Founder, Managing Partner""},{""name"":""Radoslaw Bialas"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfabeat.com/team"",""title"":""Managing Partner, COO""},{""name"":""Magdalena Grygierowska"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.alfabeat.com/team"",""title"":""Head of Operations""}],""sources"":{""headquarters"":""https://www.alfabeat.com/kontakt"",""investmentThesisFocus"":""https://www.alfabeat.com/"",""investorDescription"":""https://www.alfabeat.com/"",""portfolioHighlights"":""https://alfabeat.com/founders""},""websiteURL"":""https://www.alfabeat.com/""}","Correctness: 95% Completeness: 85% - -The information provided about Alfabeat Investment Strategy is largely factually correct based on the publicly available sources. Alfabeat is indeed a seed and early-stage venture capital fund focused on Enterprise SaaS companies in Central and Eastern Europe, with an initial investment size ranging from roughly EUR 250,000 to 1,000,000[5][2]. Their investment thesis aligns with backing entrepreneurial, globally minded founder teams with early product, technology, and early enterprise customer revenue presence[5]. - -The headquarters are confirmed as being in Gdansk, Poland, with a presence in Warsaw as well, though exact office addresses differ slightly between sources. The provided addresses (Norwida 4, Gdansk; CIC Warsaw, Chmielna 73, Warsaw) are plausible and consistent with an Eastern European location, though some other sources list different office addresses in Gdansk (e.g., Grunwaldzka 190) and Warsaw (Grzybowska 62)[1][2]. - -Senior leadership names match those listed on the Alfabeat website and other sources: Bartosz Lipnicki and Jan Wyrwilski as Founders and Managing Partners, Radoslaw Bialas as Managing Partner COO, and Magdalena Grygierowska as Head of Operations[5]. - -The portfolio highlights provided (e.g., Coinfirm, Druid, Sunroof, Wolt) correspond well to publicly referenced portfolio companies[4][5]. - -The main factual gaps that lower the completeness score are: -- No publicly disclosed total fund size or overall Assets Under Management (AUM), which is also noted as missing by the researcher and not found elsewhere online[5]. -- Variations in exact office addresses and some minor discrepancies in secondary details (e.g., exact sector subfocus or check size ranges differ slightly in some external descriptions). -- More detailed financial or historical data about the fund and its full portfolio is limited outside the provided company website. - -Overall, the core factual elements are accurate and well-supported by company websites and reputable investor directories, but the absence of crucial metrics like AUM and exact fund size limits completeness. - -**Sources:** -- https://www.alfabeat.com/ -- https://www.eu-startups.com/investor/alfabeat/ -- https://www.emis.com/php/company-profile/PL/Alfabeat_Alfa_Sp_z_oo_Asi_SKA_en_4370640.html -- https://golden.com/wiki/Alfabeat-ZXX6ZY8 -- https://www.seedtable.com/investors-poland" -"Advent Life Sciences ","http://www.adventls.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Advent Life Sciences Fund III"",""fundSize"":""USD 215,000,000"",""fundSizeSourceUrl"":""https://adventls.com/advent-life-sciences-announces-close-of-two-new-funds-totalling-215-million/"",""geographicFocus"":[""UK"",""Europe"",""USA""],""investmentStageFocus"":[""Seed"",""Series A"",""Growth""],""sectorFocus"":[""Life Sciences"",""Biotech"",""New Drug Discovery"",""Med Tech"",""Enabling Technologies"",""Vaccines""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/advent-life-sciences-announces-close-of-two-new-funds-totalling-215-million/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Advent-Harrington Impact Fund"",""fundSize"":""USD 215,000,000"",""fundSizeSourceUrl"":""https://adventls.com/advent-life-sciences-announces-close-of-two-new-funds-totalling-215-million/"",""geographicFocus"":[""UK"",""Europe"",""USA""],""investmentStageFocus"":[""Seed"",""Series A"",""Growth""],""sectorFocus"":[""Life Sciences"",""Biotech"",""New Drug Discovery"",""Med Tech"",""Enabling Technologies"",""Vaccines""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/advent-life-sciences-announces-close-of-two-new-funds-totalling-215-million/""}],""headquarters"":""27 Fitzroy Square, London, W1T 6ES"",""investmentThesisFocus"":[""Hands-on investment and company-building approach focusing on understanding the essence of innovation and product concept."",""Prioritizes competitive relevance, value creation, communication with founders, and collaboration on scientific, clinical, operating, team, syndication, and financing plans."",""Commits early, often at Seed or Series A stages, supporting companies through various growth phases."",""Focuses on innovative medicines and medical technologies with first-in-class or best-in-class approaches.""],""investorDescription"":""Advent Life Sciences is a leading trans-Atlantic venture capital firm investing in innovative Life Sciences businesses in the UK, Europe, and the USA. They focus on early and mid-stage companies with first-in-class or best-in-class approaches in new drug discovery (across all modalities), med tech, enabling technologies, and vaccines. The firm turns breakthrough science into approved medicines or medical products, supporting entrepreneurial teams with pragmatic investment and hands-on partnership. Since 2006, Advent-backed companies have brought fifteen innovative medicines and products to approval, often investing as early as Seed or Series A stages."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Acutus"",""Agenus"",""ALETA"",""Algeta"",""AlphaRose Therapeutics"",""Amphista"",""Aravive"",""Argá Medtech"",""Arrakis"",""Artax""],""researcherNotes"":""Overall Assets Under Management (AUM) is not explicitly mentioned on the website. The fund sizes are known for the two recent funds but individual estimated investment size per company is not specified."",""seniorLeadership"":[{""name"":""Shahzad Malik"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""General Partner""},{""name"":""Raj Parekh"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""General Partner""},{""name"":""Kaasim Mahmood"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""General Partner""},{""name"":""Dominic Schmidt"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""General Partner""},{""name"":""Satish Jindal"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""General Partner""},{""name"":""Katrine Bosley"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""Venture Partner""},{""name"":""Don Drakeman"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""Venture Partner""},{""name"":""Alain Huriez"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""Venture Partner""},{""name"":""Fraser Murray"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""Head of Scientific Evaluation""},{""name"":""Rowena Patel"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventls.com/team/"",""title"":""Financial Director""}],""sources"":{""headquarters"":""https://adventls.com/contact/"",""investmentThesisFocus"":""https://adventls.com/about/"",""investorDescription"":""https://adventls.com/"",""portfolioHighlights"":""https://adventls.com/portfolio/""},""websiteURL"":""http://www.adventls.com/""}","Correctness: 98% Completeness: 85% - -The factual information provided about Advent Life Sciences is largely accurate and well-supported by multiple credible sources. The firm is indeed a leading trans-Atlantic venture capital investor focusing on life sciences in the UK, Europe, and the USA, with a clear emphasis on early to mid-stage investments in innovative medicines, med tech, enabling technologies, and vaccines, consistent with their focus on first-in-class or best-in-class approaches[1][4]. The announcement of the closing of two new funds totaling USD 215 million—including Advent Life Sciences Fund III and the Advent-Harrington Impact Fund—is verified by the official press release from Advent Life Sciences dated February 2021[1]. The described investment stages (Seed, Series A, Growth) and geographic focus align perfectly with public data[1]. Leadership names and titles correspond with the company’s website team page[4][1]. - -The stated investment thesis emphasizing a hands-on, company-building approach, prioritizing competitive relevance, value creation, collaboration with founders on multiple scientific and commercial fronts, and commitment at early stages is fully consistent with Advent’s self-description on their site[4]. - -However, there are some gaps: - -- **Overall Assets Under Management (AUM)** is not explicitly stated on the company’s site or in press releases, thus marked as missing in the data, reflecting factual incompleteness[1][4]. - -- **Estimated investment size per company** is similarly not detailed publicly, with only the total fund sizes known[1]. - -- The portfolio highlights listed include specific companies known to be associated with Advent Life Sciences, but the publicly available portfolio may be larger, and no exhaustive list is presented here[3][4]. - -No false or fabricated claims were identified, but the omission of explicit AUM and investment ticket size impacts completeness. The sourced URLs are: - -- Advent press release on the two new funds: https://adventls.com/advent-life-sciences-announces-close-of-two-new-funds-totalling-215-million/ - -- Advent Life Sciences homepage and about sections: https://adventls.com - -- Portfolio and team pages: https://adventls.com/portfolio/, https://adventls.com/team/ - -In summary, the data is factually accurate and consistent with the sources but incomplete regarding overall AUM and estimated investment sizes." -"Advent International ","http://www.adventinternational.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Advent Global Opportunities"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Business & financial services"",""Consumer"",""Healthcare"",""Industrial"",""Technology""],""sourceProvider"":""Source Incomplete"",""sourceUrl"":""https://www.adventinternational.com/investment-strategy/advent-global-opportunities/""}],""headquarters"":""Prudential Tower, 800 Boylston Street, Boston, MA 02199, USA"",""investmentThesisFocus"":[""We prioritize flexibility when investing, enabling us to pursue compelling prospects across various transaction types."",""We utilize rigorous due diligence and partner closely with leadership teams."",""We leverage an ecosystem of curated resources to support portfolio companies."",""We emphasize accountability and responsible investment focusing on governance and environmental best practices."",""Our investment approach involves deep in-market and sub-sector specialization combined with global reach to source investments with scale potential.""],""investorDescription"":""Advent International is a global private equity firm founded in 1984 with over 315 investment professionals across 13 countries, managing approximately $91 billion in assets as of December 31, 2024. The firm emphasizes a long-term partnership approach built on collaboration, loyalty, and trust, combining deep sector expertise and a global platform powered by local investment teams. They focus on five main sectors: Business & financial services, Consumer, Healthcare, Industrial, and Technology, with specialization across 30+ sub-sectors. Advent prioritizes flexibility when investing, enabling it to pursue compelling prospects across various transaction types such as equity deals, leveraged buyouts, carve-outs, and public-to-privates. They emphasize accountability and responsible investment with a focus on governance and environmental best practices."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-12-31"",""aumAmount"":""USD 91000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.adventinternational.com/about-us/""},""portfolioHighlights"":[""InPost (formerly known as Integer.pl S.A.)"",""Aareon Group GmbH"",""Genoa Healthcare"",""Bharat Serums and Vaccines"",""CCC Intelligent Solutions"",""Culligan International Group"",""Sovos Brands"",""Grupo BIG (formerly Walmart Brazil Group)"",""Easynvest (now NuInvest)"",""Rubix""],""researcherNotes"":""AUM figure is explicitly stated on the about us page. Specific fund sizes and estimated investment sizes per company are not available on the website."",""seniorLeadership"":[{""name"":""Tom Allen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventinternational.com/our-team"",""title"":""Managing Director""},{""name"":""Mohammed Anjarwala"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventinternational.com/our-team"",""title"":""Managing Director""},{""name"":""Ramón Arocena"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventinternational.com/our-team"",""title"":""Managing Director""},{""name"":""Johannes Arzner"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventinternational.com/our-team"",""title"":""Managing Director""},{""name"":""Ronald Ayles"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adventinternational.com/our-team"",""title"":""Managing Partner""},{""name"":""Kathryn (Katie) Smith"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.adventinternational.com/news/advent-welcomes-colleagues-to-the-partnership-and-congratulates-newly-promoted-individuals-across-regions/"",""title"":""Managing Director""},{""name"":""Michel Cain"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.adventinternational.com/news/advent-welcomes-colleagues-to-the-partnership-and-congratulates-newly-promoted-individuals-across-regions/"",""title"":""Managing Director""},{""name"":""Andrea Di Stefano"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.adventinternational.com/news/advent-welcomes-colleagues-to-the-partnership-and-congratulates-newly-promoted-individuals-across-regions/"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.adventinternational.com/contact/"",""investmentThesisFocus"":""https://www.adventinternational.com/investment-strategy/"",""investorDescription"":""https://www.adventinternational.com/about-us/"",""portfolioHighlights"":""https://www.adventinternational.com/portfolio/""},""websiteURL"":""http://www.adventinternational.com""}","Correctness: 98% Completeness: 90% - -The information provided about Advent International is highly factually accurate and aligns well with authoritative sources. Advent International is indeed a global private equity firm founded in 1984 and currently manages approximately $91 billion in assets as of December 31, 2024, consistent with their official website's data[2][3]. The headquarters listed as Prudential Tower, 800 Boylston Street, Boston, MA 02199, USA, matches the contact information on their site[2]. The sector focuses on Business & financial services, Consumer, Healthcare, Industrial, and Technology are correct and correspond with their publicly stated areas of specialization[2][3]. The investment thesis emphasizing flexibility, rigorous due diligence, partnership with leadership, accountability, and responsible investment also reflects Advent's investment strategy as described on their official pages[3]. - -Regarding their funds, Advent Global Opportunities is accurately described as a global thematic platform investing in public and private companies, emphasizing a concentrated portfolio, high-quality assets, and long-term horizons[3]. However, specific data on ""estimated investment size"" and ""fund size"" for Advent Global Opportunities is not publicly available on the website, as noted by the researcher, aligning with source information[3]. It is important to clarify that Advent International manages multiple funds with different focuses, such as Advent Global Private Equity funds, Advent Global Technology funds (e.g., Advent Tech II with a $4 billion fund size[1][5]), and others, collectively managing assets around $91–94 billion as of early 2025—consistent with recent updates[2][5]. - -Senior leadership names given are consistent with official Advent International team pages[3]. Portfolio highlights such as InPost, Aareon Group GmbH, Genoa Healthcare, and others match Advent's publicly listed portfolio companies[3]. - -The slight incompleteness lies in the lack of detailed fund sizes and investment stage focuses for Advent Global Opportunities, which the company does not publicly disclose explicitly. This limits completeness for that specific fund's detailed financial parameters. Also, the overall AUM figure is accurate but rounded between $91B and $94B depending on the exact date and source[2][5]. - -Sources: -- Advent International About Us (AUM and strategy): https://www.adventinternational.com/about-us/ -- Advent International Investment Strategy and Global Opportunities fund: https://www.adventinternational.com/investment-strategy/ https://www.adventinternational.com/investment-strategy/advent-global-opportunities/ -- Advent International Contact: https://www.adventinternational.com/contact/ -- Advent Tech II fund details: https://www.goodwinlaw.com/en/news-and-events/news/2021/12/12_20-advent-international-raises-$4-billion -- Wikipedia summary on Advent International funds: https://en.wikipedia.org/wiki/Advent_International" -"AI Seed ","http://aiseed.co ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AI Seed Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Silicon Valley""],""investmentStageFocus"":[""Early Stage"",""Seed""],""sectorFocus"":[""Artificial Intelligence""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://aiseed.co""}],""headquarters"":""London, GB"",""investmentThesisFocus"":[""Supporting the next generation of AI founders."",""Providing access to AI entrepreneurs."",""Helping with talent acquisition."",""Introducing commercial partners."",""Providing technical and operational scaling support."",""Business support for acquisition or IPO.""],""investorDescription"":""AI Seed is an AI venture capital fund focused on early-stage AI companies, with Europe's largest and best-performing pure-play AI portfolio since 2017. Their investment thesis centers on supporting the next generation of AI founders with access to AI entrepreneurs, talent acquisition help, commercial partner introductions, technical and operational scaling support, and business support for acquisition or IPO. The team includes Michael Axelgaard (Founder and Managing Partner), Jacques de Cock (Operations and Managing Partner), and Steve Weis (Technical Analysis and Managing Partner), active in European and Silicon Valley ecosystems."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Odin Vision"",""Rahko"",""Observe"",""Facesoft"",""EYN"",""Causalens"",""9fin"",""Limbic"",""Hopsworks"",""Hazy""],""researcherNotes"":""No specific headquarters address or AUM found on the official website. Estimated investment size per company is also not disclosed."",""seniorLeadership"":[{""name"":""Michael Axelgaard"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://aiseed.co"",""title"":""Founder and Managing Partner""},{""name"":""Jacques de Cock"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://aiseed.co"",""title"":""Operations and Managing Partner""},{""name"":""Steve Weis"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://aiseed.co"",""title"":""Technical Analysis and Managing Partner""}],""sources"":{""headquarters"":""https://ca.linkedin.com/company/copernicai"",""investmentThesisFocus"":""http://aiseed.co"",""investorDescription"":""http://aiseed.co"",""portfolioHighlights"":""https://aiseedfund.com/#section_portfolio""},""websiteURL"":""http://aiseed.co""}","Correctness: 95% Completeness: 85% - -The provided information about AI Seed is largely factually accurate and aligns well with publicly available data. AI Seed is indeed a London-headquartered venture capital fund specializing in early-stage AI startups, active since 2017, with a geographic focus on Europe and Silicon Valley[1]. The leadership names—Michael Axelgaard (Founder and Managing Partner), Jacques de Cock (Operations and Managing Partner), and Steve Weis (Technical Analysis and Managing Partner)—are consistent with the source at the official website (aiseed.co)[1]. The investment thesis emphasizing support for AI founders, assistance with talent acquisition, technical and operational scaling, and business support (including acquisition or IPO) accurately reflects the fund’s publicly stated focus[1]. - -The portfolio highlights listed—startups such as Odin Vision, Rahko, Observe, Facesoft, EYN, Causalens, 9fin, Limbic, Hopsworks, and Hazy—are verifiable on the fund’s portfolio page[1]. The description of AI Seed having Europe’s largest and best-performing pure-play AI portfolio since 2017 is congruent with third-party evaluations, though ""largest"" can be somewhat subjective depending on metrics used. - -However, some limitations affect completeness and correctness scores: - -- The overall Assets Under Management (AUM) are missing, and this data is not publicly disclosed on the official website or through credible secondary sources, which reduces completeness[1]. - -- The estimated investment size is marked as “Not Available,” which matches public data indicating typical rounds are in the $100K to $1M range but without precise disclosed details[1]. The absence of exact figures reduces completeness but does not indicate incorrectness. - -- Founder Thomas Stone is mentioned in the external source [1] as a co-founder, in addition to Michael Axelgaard and John Spindler, but only Michael Axelgaard is listed in the user data as founder and managing partner. The user data omits John Spindler and Thomas Stone, which lowers completeness slightly. - -- The headquarters is correctly given as London, UK, consistent with multiple sources[1]. No specific physical address is publicly available, which matches the note on missing details. - -- Some slight variation in phrasing and emphasis (e.g., ""best-performing"" claims) is not fully verifiable with independent public data but are consistent with internal marketing from AI Seed’s site. - -In summary, while the core facts and leadership are accurate and well-supported, the unavailability of AUM, exact investment sizes, and omission of all founding partners limit completeness. No fabricated or false claims appear. - -Sources: -- AI Seed fund overview and leadership: https://aiseed.co, https://unicorn-nest.com/funds/ai-seed/" -"Aerion Partners ","https://www.aerionpartners.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aerion Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":null}],""headquarters"":""London, GB"",""investmentThesisFocus"":[],""investorDescription"":""Aerion Fund Management Ltd acts exclusively as the Principal Investment Manager to the National Grid UK Pension Scheme, an occupational pension scheme sponsored by National Grid Gas plc, a wholly-owned subsidiary of National Grid plc."",""linkedDocuments"":[],""missingImportantFields"":[""investorDescription"",""investmentThesisFocus"",""headquarters"",""overallAssetsUnderManagement"",""portfolioHighlights"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The official company website is not accessible for data extraction using the automated tools, and no relevant detailed data could be scraped from other reliable sources. Therefore, many critical fields remain unavailable."",""seniorLeadership"":[],""sources"":{""headquarters"":""LinkedIn"",""investmentThesisFocus"":null,""investorDescription"":""LinkedIn"",""portfolioHighlights"":null},""websiteURL"":""https://www.aerionpartners.com/""}","Correctness: 85% Completeness: 20% - -The description of Aerion Fund Management Ltd as acting exclusively as Principal Investment Manager to the National Grid UK Pension Scheme is consistent with publicly available information indicating Aerion Partners’ association with National Grid and London headquarters (LinkedIn). The fund name ""Aerion Partners Investment Strategy"" and the lack of public data on estimated investment size, fund size, geographic and sector focus, and investment stage is accurate given the absence of accessible detailed data, including the official website being inaccessible for scraping. The senior leadership and portfolio highlights are also missing, reflecting the same lack of publicly available information. - -However, the completeness score is very low due to the significant absence of key details commonly expected for an investment fund profile: overall assets under management, detailed investment thesis focus, portfolio companies, senior leadership information, fund size, and geographic and sector focuses remain unavailable. This is because no authoritative sources or company disclosures currently provide this data. The presence of related but unrelated entities named ""Aerion"" (such as Aerion Capital and Aerion Partners associated with supersonic flight ventures) should not confuse or be conflated with the London-based Aerion Fund Management Ltd linked to National Grid pensions. - -Sources: -- LinkedIn data on Aerion Fund Management Ltd headquarters and description link Aerion to National Grid UK Pension Scheme (provided in user data). -- Aerion Partners’ official website (https://www.aerionpartners.com/) is inaccessible or lacks comprehensive public data. -- No other credible sources with detailed investment or fund structure data are found in search results. - -Because the fundamental facts stated are correct but critical information is missing, the correctness is relatively high but completeness is low." -"adMare Bio Innovations ","https://www.admarebio.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""adMare Bio Innovations Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Canada""],""investmentStageFocus"":[""Seed"",""Early Stage"",""Growth Stage""],""sectorFocus"":[""Life Sciences"",""Therapeutics""],""sourceUrl"":""https://www.admarebio.com/en/overview-companies""}],""headquarters"":""Vancouver Innovation Centre, 2405 Wesbrook Mall, Vancouver, British Columbia, Canada, V6T 1Z3; Toronto Office, MaRS Centre, West Tower, 661 University Ave., Suite 415, Toronto, Ontario, Canada, M5G 1M1; Montreal Innovation Centre, 7171 Frederick-Banting, Montréal, Québec, Canada, H4S 1Z9"",""investmentThesisFocus"":[""Partner with and invest in academic researchers and emerging Canadian life sciences companies."",""Support companies at all stages of development, from seed to growth."",""Catalytic seed investments to enable portfolio companies to develop product pipelines and scale."",""Provide integrated services including scientific and business development guidance, intellectual property and legal support, financial support access, and network connections.""],""investorDescription"":""adMare builds companies by partnering with and investing in technology innovators and entrepreneurs, mainly academic researchers and emerging Canadian life sciences companies. They support companies at all stages of development. Their investment strategy includes catalytic seed investments into promising companies, providing essential support for growth. They also provide integrated services for therapeutic ventures, including scientific and business development guidance, IP and legal support, access to financial support, and connections to a professional network."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""USD 1,400,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://admarebio.com/en/press-release-details/government-of-canada-invests-92-million-in-admare-to-help-translate-health-research-into-innovative-new-therapies-in-canada""},""portfolioHighlights"":[""26 Therapeutics"",""Abdera Therapeutics"",""ARNA Therapeutics"",""Artelo Biosciences"",""Bellus Health"",""Bowen's FX Therapeutics"",""Bright Angel Therapeutics"",""Domain Therapeutics"",""Encycle Therapeutics"",""Epigene Therapeutics Inc.""],""researcherNotes"":""AUM is inferred from the total investment capital attracted by the firm as stated on the website, which mentions more than $1.4 billion. No specific per-company estimated investment size or formal fund size is disclosed."",""seniorLeadership"":[{""name"":""Gordon C. McCauley"",""sourceUrl"":""https://admarebio.com/en/management"",""title"":""President & CEO""},{""name"":""Matthew J. Carlyle"",""sourceUrl"":""https://admarebio.com/en/management"",""title"":""Chief Operating Officer & CFO""},{""name"":""Joseph Mancini"",""sourceUrl"":""https://admarebio.com/en/management"",""title"":""Vice President, Research""},{""name"":""Dave Rogers"",""sourceUrl"":""https://admarebio.com/en/management"",""title"":""Vice President, Intellectual Property & Legal Affairs""},{""name"":""Frédéric Lemaître Auger"",""sourceUrl"":""https://admarebio.com/en/management"",""title"":""Vice President, Investments""},{""name"":""Sarah Gallagher"",""sourceUrl"":""https://admarebio.com/en/management"",""title"":""Vice President, People and Culture""}],""sources"":{""headquarters"":""https://www.admarebio.com/en/contact"",""investmentThesisFocus"":""https://www.admarebio.com/en/overview-companies"",""investorDescription"":""https://www.admarebio.com/en/overview-companies"",""portfolioHighlights"":""https://www.admarebio.com/en/companies-weve-helped-build""},""websiteURL"":""https://www.admarebio.com/""}","Correctness: 98% Completeness: 90% - -The information provided about adMare BioInnovations is largely factually accurate and aligns well with authoritative sources. Key points match verified details from adMare’s official website and government announcements: - -- adMare is indeed focused on partnering with academic researchers and emerging Canadian life sciences companies, supporting them from seed to growth stages[2][3][5]. -- The geographic focus on Canada and sector focus on life sciences and therapeutics are accurate, as are the services they provide, including scientific/business guidance, IP/legal support, financing access, and networking[1][3][5]. -- The headquarters locations in Vancouver, Toronto, and Montreal are confirmed on their website[3]. -- Their investment thesis emphasizing catalytic seed investments to build product pipelines and scale companies is supported by multiple sources[1][3][5]. -- The stated overall assets under management (AUM) of approximately USD 1.4 billion is consistent with the reported capital attracted by adMare’s portfolio companies and government investments[1][3]. -- Senior leadership named aligns with the adMare management page[3]. -- Portfolio highlights including companies like Abdera Therapeutics are confirmed on their portfolio listings[5]. - -The information is not fully complete because some fields remain “Not Available,” such as estimatedInvestmentSize and fundSize, which adMare does not publicly disclose, so these gaps are noted correctly. Also, while the overall AUM is inferred from total investment capital attracted, no detailed breakdown or formal fund size is publicly available. This matches researcher notes and publicly known data[1][3]. - -The completeness score reflects limited public disclosure of precise investment sizes per company or fund, which is common for many innovation-focused ventures and not a factual error but incomplete data. - -URLs used: -- https://www.admarebio.com/en/overview-companies -- https://www.admarebio.com/en/contact -- https://www.admarebio.com/en/internal-portfolio -- https://www.admarebio.com/en/management -- https://www.admarebio.com/en/press-release-details/government-of-canada-invests-92-million-in-admare-to-help-translate-health-research-into-innovative-new-therapies-in-canada -- https://technoparc.com/en/discover-the-technoparc/admarebio/" -"Ahren Innovation Capital ","http://www.ahreninnovationcapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Ahren LP"",""fundSize"":""USD 250,000,000"",""fundSizeSourceUrl"":""https://www.ahreninnovationcapital.com/ahren-announces-fund-close/"",""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Growth"",""Pre-IPO""],""sectorFocus"":[""Brain & AI"",""Genetics & Platform Technologies"",""Space & Robotics"",""Efficient Energy""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.ahreninnovationcapital.com/ahren-announces-fund-close/""}],""headquarters"":""London, United Kingdom"",""investmentThesisFocus"":[""Taking asymmetric, considered risks to deliver superior rewards."",""Supporting transformational companies at the intersection of deep tech and deep science."",""Partnering closely with exceptional founders to build companies from scratch or support high-growth businesses."",""Backing big visions and helping founders achieve success."",""Engaging science partners with combined tech valuations over $100 billion throughout the investment process."",""Leveraging commercial engine and unicorn founder advisors for company support.""],""investorDescription"":""Ahren is an investment institution focusing on transformational companies at the intersection of deep tech and deep science, investing across all stages from pre-seed to pre-IPO. Their investment strategy involves taking asymmetric, considered risks to provide smart capital to deep technology companies. They emphasize four broad domains: Brain & AI, Genetics & Platform Technologies, Space & Robotics, and Efficient Energy. Ahren provides patient and active capital to exceptional founders, partnering closely to build companies from scratch or support high-growth businesses."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 400,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.ahreninnovationcapital.com/ahren-announces-fund-close/""},""portfolioHighlights"":[""6d"",""Adrestia"",""AI21 Labs"",""Ambi Robotics"",""Bicycle Therapeutics"",""Biomodal"",""Bitfount"",""Cellarity"",""Constructive Bio""],""researcherNotes"":""The firm does not disclose a specific headquarters address on the website. The overall AUM was inferred from public statements regarding the total fund size and dry powder available. Estimated investment size per company is not specified."",""seniorLeadership"":[{""name"":""Alice Newcombe-Ellis"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding & General Partner""},{""name"":""Peter Lourensz, FCA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Chief Financial Officer""},{""name"":""Peter Baines"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Venture Partner""},{""name"":""Janusz Marecki, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""AI Partner""},{""name"":""Kaja Wasik, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Entrepreneur in Residence""},{""name"":""Joanna Green, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Principal""},{""name"":""Oliver Hedaux"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Principal""},{""name"":""Anuj Nanwani"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Principal""},{""name"":""Sir Shankar Balasubramanian"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Professor Zoubin Ghahramani"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Sir Steve Jackson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Professor Andy Parker"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Sir Venki Ramakrishnan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Lord Martin Rees"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Sir Gregory Winter"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Founding Partner""},{""name"":""Professor Roberto Cipolla"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Science Partner""},{""name"":""David Novak"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ahreninnovationcapital.com/team/"",""title"":""Advisor""}],""sources"":{""headquarters"":""https://hub.waveup.com/funds/ahren-innovation-capital"",""investmentThesisFocus"":""https://www.ahreninnovationcapital.com/about/"",""investorDescription"":""https://www.ahreninnovationcapital.com/about/"",""portfolioHighlights"":""https://www.ahreninnovationcapital.com/companies/""},""websiteURL"":""http://www.ahreninnovationcapital.com/""}","Correctness: 95% Completeness: 85% - -The information provided about Ahren Innovation Capital is largely accurate and consistent with publicly available data. It correctly identifies Ahren as an institutional investment firm focusing on transformational companies lying at the intersection of deep tech and deep science, with sectors including Brain & AI, Genetics & Platform Technologies, Space & Robotics, and Efficient Energy.[1][2] The investment stage focus from pre-seed to pre-IPO is also verified.[1][2] The fund size of USD 250 million is reported on their official site as the size of a specific fund (""Ahren LP""), but the overall assets under management (AUM) quoted as USD 400 million in 2024 is correctly consolidated from public statements integrated from the same source.[2] The firm’s approach of taking asymmetric risks and partnering closely with exceptional founders is explicitly stated on their official website.[2] The portfolio highlights such as Constructive Bio and others are consistent with news releases and company portfolio information.[3][4] Senior leadership names and titles correspond to those listed on the official team page.[2] - -The main factual discrepancy is the geographic headquarters: the user’s data states London, United Kingdom, while an external source lists the global HQ as California, United States, creating ambiguity.[1] Ahren's website and other sources do not explicitly disclose an official headquarters address, which matches the researcher’s notes about this missing detail. Therefore, while the investment focus on UK companies seems strong (based on portfolio companies and news releases from Cambridge and London), the actual registered headquarters is unclear, warranting a completeness deduction.[1] The estimated investment size per company is indeed not publicly specified, matching the user note.[2] This omission reduces completeness. - -Sources: - -- Ahren Innovation Capital official site about and team pages: https://www.ahreninnovationcapital.com/ -- Venture Capital Archive: https://venturecapitalarchive.com/venture-funds/ahren-innovation-capital-ahreninnovationcapital-com -- News on Constructive Bio’s Series A led by Ahren: https://www.ahreninnovationcapital.com/constructiveseriesa/ -- OutSee seed investment led by Ahren: https://www.uktechnews.info/2025/06/24/outsee-secures-1-8-million-seed-investment-led-by-ahren-innovation-capital/ - -Overall, the data is factually solid and mostly complete, except for uncertainty about the formal headquarters location and lack of per-investment size details publicly available." -"Air Liquide ALIAD ","https://www.airliquide.com/group/aliad ","{""funds"":[{""estimatedInvestmentSize"":""EUR 25,000,000+ since 2020"",""fundName"":""ALIAD Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early stage"",""Growth stage""],""sectorFocus"":[""Climate Tech"",""HealthTech"",""Industrial Innovation""],""sourceUrl"":""https://www.airliquide.com/group/aliad""}],""headquarters"":""91, avenue Ledru Rollin, 75011 Paris, France"",""investmentThesisFocus"":[""Invests in startups tackling industrial, societal and environmental challenges through technological innovation."",""Focus on Climate Tech, HealthTech, and Industrial innovation sectors."",""Acts both as an investor and industrial partner providing financial, technological, and commercial support."",""Targets early to growth-stage startups."",""Geographical focus with offices in Paris and San Francisco.""],""investorDescription"":""ALIAD (Air Liquide Venture Capital) is the strategic venture capital fund of Air Liquide focused on investing in tech startups with positive impact in Climate Tech, HealthTech, and Industrial innovation. Since 2013, it has made over 40 investments and invested over €25M since 2020. ALIAD acts both as an investor and industrial partner, providing financial, technological, and commercial support to its portfolio startups."",""linkedDocuments"":[""https://airliquide.com/sites/airliquide.com/files/2025-03/2024-integrated-annual-report.pdf"",""https://airliquide.com/sites/airliquide.com/files/2025-03/air-liquide-2024-universal-registration-document.pdf"",""https://airliquide.com/investors/documents-presentations""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Waga Energy"",""MySphera"",""Ekoscan Integrity"",""Orcan Energy"",""BOTALYS"",""44.01"",""Angiodroid"",""CARMAT"",""Libheros"",""APIX Analytics""],""researcherNotes"":""Overall Assets Under Management (AUM) figures are not explicitly mentioned on the ALIAD or parent company pages. The €25 million investment amount since 2020 is noted but does not represent total AUM."",""seniorLeadership"":[{""name"":""Armelle Levieux"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.airliquide.com/group/aliad"",""title"":""Member of the Executive Committee, Vice President of Innovation""},{""name"":""Vincent Lescoeur"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.linkedin.com/in/vincent-lescoeur-592b0b13b/"",""title"":""Managing Director""},{""name"":""Florian Durand"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.linkedin.com/in/floriandurand/"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.airliquide.com/group/aliad"",""investmentThesisFocus"":""https://www.airliquide.com/group/aliad"",""investorDescription"":""https://www.airliquide.com/group/aliad"",""portfolioHighlights"":""https://www.airliquide.com/group/aliad"",""seniorLeadership"":""https://www.linkedin.com/company/aliad-air-liquide-venture-capital/""},""websiteURL"":""https://www.airliquide.com/group/aliad""}","Correctness: 98% Completeness: 85% - -The provided information about ALIAD Investment Strategy and ALIAD Venture Capital by Air Liquide is largely **factually accurate** and aligns well with the official Air Liquide sources. ALIAD is indeed Air Liquide’s strategic venture capital fund, established in 2013, focusing on Climate Tech, HealthTech, and Industrial Innovation sectors, investing since 2020 with over €25 million deployed, primarily targeting early to growth-stage startups globally, with offices in Paris and San Francisco. The fund acts as both investor and industrial partner, supporting startups financially and technologically, which matches the official ALIAD page and Air Liquide corporate information[https://www.airliquide.com/group/aliad]. - -The senior leadership names and roles provided are consistent with publicly available LinkedIn profiles and Air Liquide pages for ALIAD executives[https://www.linkedin.com/company/aliad-air-liquide-venture-capital/]. - -However, the **completeness** score is lower because: - -- The overall Assets Under Management (AUM) for ALIAD are not publicly disclosed, which is acknowledged explicitly in your data. Reporting only the €25 million invested since 2020 does not represent total fund size or total AUM, which is a significant missing piece for completeness. - -- Fund size and total committed capital for ALIAD remain unknown (“Not Available”), which is an important data point for a full investor profile. - -- No recent detailed information on new investments since those listed or updated portfolio valuation is included. - -- No mention or confirmation of co-investors, fund structure, or fund vintage year beyond inception in 2013. - -This assessment excludes unrelated entities such as Allied Industrial Partners, which surfaced in search results but are distinct firms with no connection to ALIAD and should not impact the correctness scoring of ALIAD data. - -Sources: -- ALIAD official page: https://www.airliquide.com/group/aliad -- ALIAD LinkedIn: https://www.linkedin.com/company/aliad-air-liquide-venture-capital/ -- Air Liquide 2024 Annual and Registration Documents (referenced but not directly quoted)" -"AgFunder ","http://agfunder.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Fund IV"",""fundSize"":""USD 100,000,000"",""fundSizeSourceUrl"":""https://agfunder.com/invest/"",""geographicFocus"":[""Global"",""Silicon Valley"",""London"",""Singapore""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Agrifood"",""AI"",""Biology"",""Climate""],""sourceUrl"":""https://agfunder.com/invest/""},{""estimatedInvestmentSize"":""USD 500,000 to USD 5,000,000"",""fundName"":""Fund V"",""fundSize"":""USD 150,000,000"",""fundSizeSourceUrl"":""https://pitchbook.com/news/articles/agfunder-fund-v-raises-150m-focus-agrifoodtech-2023"",""geographicFocus"":[""Global"",""Silicon Valley"",""London"",""Singapore""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Agrifood"",""AI"",""Biology"",""Climate""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://pitchbook.com/news/articles/agfunder-fund-v-raises-150m-focus-agrifoodtech-2023""}],""headquarters"":""845 Market St., Suite 450, San Francisco, CA 94103"",""investmentThesisFocus"":[""First principles investing in agrifoodtech and related sectors."",""Solving world's biggest problems through frontier technologies."",""Focus on food, agriculture, biology, AI, and climate sectors."",""Backing Seed and Series A startups with frontier technology."",""Combining capital, media, research, engineering, and community support.""],""investorDescription"":""AgFunder is a global venture capital firm with over $300 million in assets under management, investing in over 100 portfolio companies across four continents. They focus on new technology at the frontier of food, agriculture, biology, AI, and climate. Their investment thesis revolves around solving the world's biggest problems through first principles investing in agrifoodtech and related sectors. Headquartered with offices in Silicon Valley and Singapore, AgFunder combines capital, media, research, engineering, and a strong community to source deals and support portfolio companies."",""linkedDocuments"":[""https://static01.agfunder.com/slides/GothamAnalytics/Exec_Summary.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 300,000,000"",""sourceUrl"":""https://agfunder.com/about-us/""},""portfolioHighlights"":[""3Bee"",""AI Palette [EXITED]"",""Aigen"",""Alpine Bio"",""Amatera Biosciences"",""Apeel Sciences (acquired Impact Vision)"",""Aquaconnect"",""Atinary"",""Atomo Coffee"",""Azaneo""],""researcherNotes"":""Estimated investment sizes are not explicitly disclosed on the website despite detailed fund information. AUM is stated as over $300 million in assets under management with no specific asOfDate provided."",""seniorLeadership"":[{""name"":""Michael Dean, LLM"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://agfunder.com/about-us/"",""title"":""Partner, Co-founder""},{""name"":""Manuel Gonzalez, MBA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://agfunder.com/about-us/"",""title"":""Partner""},{""name"":""Rob Leclerc, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://agfunder.com/about-us/"",""title"":""Partner, Co-founder""},{""name"":""Robin R Chauhan"",""sourceUrl"":""https://agfunder.com/about-us/"",""title"":""Head of Engineering""},{""name"":""Louisa Burwood-Taylor"",""sourceUrl"":""https://agfunder.com/about-us/"",""title"":""Head of Media & Research""},{""name"":""Rob Leclerc"",""sourceProvider"":""LinkedIn"",""title"":""Founding Partner""},{""name"":""Michael Dean"",""sourceProvider"":""LinkedIn"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://agfunder.com/contact/"",""investmentThesisFocus"":""https://agfunder.com/about-us/"",""investorDescription"":""https://agfunder.com/about-us/"",""portfolioHighlights"":""https://agfunder.com/portfolio/""},""websiteURL"":""http://agfunder.com""}","Correctness: 95% Completeness: 85% - -The provided information about AgFunder is largely factually accurate. AgFunder is indeed a global venture capital firm focused on agrifoodtech, AI, biology, and climate sectors, investing primarily in Seed and Series A stages, with headquarters in San Francisco and offices in Silicon Valley and Singapore. The description of their assets under management (around $300 million) and portfolio highlights aligns with publicly available data. Fund IV’s size is reported at about $100 million in recent sources, close to the $102 million figure in an AgTechDigest article[1]. Fund V’s $150 million size and focus on agrifoodtech sectors and geographic focus also correspond with PitchBook’s July 2023 report[2]. - -The investment thesis emphasizing first principles investing and addressing large global challenges through frontier technology matches AgFunder’s stated mission on their website[4]. The senior leadership named, including co-founders Michael Dean and Rob Leclerc, is consistent with official sources[4]. - -However, there are some minor areas lowering completeness: - -- The exact estimated investment sizes for Fund IV are not specified (“Not Available” noted), consistent with public disclosures, but reduces completeness. Fund V’s estimated investment size range is stated from PitchBook but not explicitly confirmed on AgFunder’s own site. - -- No AUM ""as of"" date is provided, which is common but affects detail completeness. - -- More detailed data on deal counts, follow-on funds, or recent investment pace is missing. - -- While portfolio highlights list several companies, it does not name all, and some companies (e.g., AI Palette) are noted as exited without detailed exit information. - -Overall, the data is supported by AgFunder’s official site and reputable industry reports like AgTechDigest and PitchBook[1][2][4]. The main sources are: - -- AgTechDigest on Fund IV ($102M) and AgFunder background: https://agtechdigest.com/p/agtech-companies-attract-more-funding[1] - -- PitchBook report on Fund V $150M raise and focus: https://pitchbook.com/news/articles/agfunder-fund-v-raises-150m-focus-agrifoodtech-2023[2] - -- AgFunder official site for about us, portfolio, leadership, investment thesis, and AUM: https://agfunder.com/about-us/ and https://agfunder.com/portfolio/[4] - -The factual accuracy is high with minor gaps due to common non-disclosure of exact investment sizing by funds and timing of AUM data. The completeness is good but could improve with more granular fund deployment data and recent updates." -"Air Street Capital ","https://www.airstreet.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Air Street Capital Seed Fund"",""fundSize"":""USD 17,000,000"",""fundSizeSourceUrl"":""https://press.airstreet.com/p/welcome-to-air-street-capital"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""AI""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://press.airstreet.com/p/welcome-to-air-street-capital""}],""headquarters"":""Suite 1, First Floor, The Energy Centre, Admiral Park, St Peter Port, Guernsey, GY1 2BB"",""investmentThesisFocus"":[""Invest as early as possible, supporting founders from day 1."",""Focus on AI-first companies."",""Goal to create enduring companies with lasting market impact.""],""investorDescription"":""Air Street Capital is a venture capital firm investing in AI-first companies. They invest as early as possible and focus on iterating through product, market, and technology strategy from day 1. Their goal is to create enduring companies with lasting market impact."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2020-10-29"",""aumAmount"":""USD 17,000,000"",""sourceUrl"":""https://press.airstreet.com/p/welcome-to-air-street-capital""},""portfolioHighlights"":[""Delfa"",""Polar Mist"",""Studio Atelico"",""Fern Labs"",""Patina Systems"",""Interloom"",""Odyssey"",""Delian AI"",""Sereact"",""Samaya AI""],""researcherNotes"":""Headquarters address is not available on the website. Estimated investment size per company is not explicitly stated on the site."",""seniorLeadership"":[{""name"":""Nathan Benaich"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.airstreet.com/team"",""title"":""Sole Member of Investment Staff""}],""sources"":{""headquarters"":""https://www.airstreet.com/contact"",""investmentThesisFocus"":""https://www.airstreet.com"",""investorDescription"":""https://www.airstreet.com"",""portfolioHighlights"":""https://www.airstreet.com/portfolio""},""websiteURL"":""https://www.airstreet.com""}","Correctness: 95% Completeness: 85% - -The provided information about Air Street Capital is largely factually accurate according to multiple sources. The fund size of USD 17 million for the seed fund matches the recent fund size cited externally, and the geographic focus is global, consistent with their described operations[1][4]. The investment stage focus on Seed and Series A aligns with external descriptions emphasizing pre-seed and seed stages[1][2]. The sector focus on AI-only or AI-first companies is clearly supported by the firm’s website and press statements[4]. The investment thesis emphasizing early investments, supporting founders from day one, and creating enduring market-impactful companies corresponds directly to statements from the official Air Street Capital site[4]. Nathan Benaich being the sole member of investment staff is also confirmed on their team page[4]. - -However, there are some factual gaps and slight inconsistencies impacting completeness and correctness. The estimated investment size per company is listed as “Not Available” in the data, but external sources indicate initial check sizes range from about $150K up to $3M, with the possibility to follow on to $10M+, which is significant detail missing from the original data[2]. Also, the headquarters address listed (Suite 1, First Floor, The Energy Centre, Admiral Park, St Peter Port, Guernsey, GY1 2BB) is sourced from their contact page[4], but the researcher’s notes mention it was not found on the website, indicating a minor uncertainty or potential discrepancy in exact contact details. Furthermore, an up-to-date second fund of $121 million has been announced, which is relevant context beyond the $17 million seed fund data, indicating important evolving information missing[3]. - -Overall, the information is accurate for the baseline seed fund and firm description but is incomplete regarding specific investment sizes, latest fund details, and clarifications on the headquarters location. The portfolio highlights and senior leadership information are confirmed on the official site and press[4]. - -Sources: -- https://press.airstreet.com/p/welcome-to-air-street-capital -- https://www.airstreet.com -- https://superscout.co/investor/air-street-capital -- https://connect.visible.vc/investors/air-street-capital -- https://press.airstreet.com/p/121m-fund-2" -"AENU ","https://www.aenu.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1-4 million"",""fundName"":""AENU Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""DACH"",""UK"",""Nordics""],""investmentStageFocus"":[""Seed"",""Series A"",""Pre-Seed""],""sectorFocus"":[""Climate Tech"",""Energy Transition"",""Carbon Economy""],""sourceProvider"":""External Validation"",""sourceUrl"":""https://www.aenu.com/impact""}],""headquarters"":""Münzstraße 18, 10178 Berlin, Germany"",""investmentThesisFocus"":[""Focus on climate tech and energy transition with measurable CO2 impact."",""Investments at Seed and Series A stage, occasionally pre-seed for serial entrepreneurs."",""Emphasis on ESG factors blended with international standards for long-term value creation."",""Commitment to diversity, equity, and inclusion to provide real opportunities for underrepresented founders."",""Preferred role as co-lead or lead investor with board representation.""],""investorDescription"":""Born entrepreneurs, experienced investors, committed activists. Founded tech companies worth over 8B. Former VCs at Earlybird and Speedinvest with over 800M invested and top-quartile returns. Co-founders of Leaders For Climate Action and ambassadors of Founder's Pledge. Mission: Drive systemic change in venture capital towards impact, accessibility, and stakeholder alignment. Primary focus: Climate tech, preferred energy transition and carbon economy. Impact focus on intentionality, interlock, and additionality for CO2 saved/removed. Stage: Seed & Series A, occasional pre-seed for serial entrepreneur teams. Geography: Europe with focus on DACH, UK, and Nordics. Investment size: EUR 1-4 million ticket sizes. Role: Preferred co-lead/lead with board representation."",""linkedDocuments"":[""https://www.aenu.com/wp-content/uploads/2023/01/AENU-IMPACT-FRAMEWORK.2023.pdf"",""https://www.aenu.com/wp-content/uploads/2025/05/AENU_ImpactReport_2024_digital_14April2025-1.pdf"",""https://www.aenu.com/wp-content/uploads/2023/02/AENU_Impact-ESG-Clause-Stand-22.02.2023.pdf"",""https://www.aenu.com/wp-content/uploads/2022/07/AENU-Theory-of-Change.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2024-09-18"",""companyName"":""Greenlyte Carbon Technologies"",""sourcePostUrl"":""https://www.linkedin.com/posts/florian-alexander-hildebrand_super-happy-to-announce-that-aenu-has-joined-activity-7242128980449869824-Q27M"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""No explicit overall Assets Under Management (AUM) or specific fund sizes are mentioned on the website. Portfolio company names are not listed on the site. Investment strategy is unified under a single strategy description rather than distinct named funds."",""seniorLeadership"":[{""name"":""Fabian Heilemann"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aenu.com/who"",""title"":""Founder & CEO""},{""name"":""Ferry Heilemann"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aenu.com/who"",""title"":""Founder & Partner""},{""name"":""Siobhan Brewster"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aenu.com/who"",""title"":""Partner""},{""name"":""Philip Specht"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aenu.com/who"",""title"":""Partner""},{""name"":""Daniel Zakowski"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aenu.com/who"",""title"":""CFO & Operating Partner""},{""name"":""Elena Harumi Stark"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/aenu"",""title"":""Head of Impact & Platform""}],""sources"":{""headquarters"":""https://www.aenu.com/contact/"",""investmentThesisFocus"":""https://www.aenu.com/impact"",""investorDescription"":""https://www.aenu.com/"",""portfolioHighlights"":""https://www.aenu.com/portfolio/""},""websiteURL"":""https://www.aenu.com""}","Correctness: 95% Completeness: 85% - -The provided data about AENU, including its investment thesis, geographic focus, stage focus (Seed, Series A, and occasionally Pre-Seed), ticket size (EUR 1-4 million), sector focus on climate tech, energy transition, and carbon economy, as well as its ESG and impact orientation, is factually accurate and well-supported by the official AENU website and related sources[1][2][3][5]. The description of the founders’ backgrounds and their mission aligns with publicly stated goals and team information on AENU’s website[5]. - -However, the completeness score is lower because some important details are missing or unclear in the provided profile: - -- The overall fund size is not stated in the query but publicly available information confirms that AENU’s first fund had a final closing size of EUR 170 million, exceeding the EUR 140 million target[2]. This is a significant omission. - -- The overall Assets Under Management (AUM) are not explicitly provided but presumably correspond to this fund size. - -- The portfolio highlights mentioned in the query list only one company (Greenlyte Carbon Technologies), while publicly disclosed portfolios include several early success stories such as Alcemy, Monta, Ocell, Trawa, and HomeTree[2][3]. - -- The fund description in the query suggests multiple named funds, but publicly the investment strategy appears unified in one main fund[2][3]. - -- Some nuances about AENU’s fund structure evolution (pivot from evergreen to a classic fund) and specifics on its impact-ESG framework add useful context but are not mentioned in the query[1][5]. - -- The leadership team list in the query matches the information on AENU’s website[5]. - -In summary, the information given is largely correct and credible with links to verified sources, but important quantitative details about fund size and portfolio breadth are missing, so the completeness is moderate-high but not full. - -Sources: -https://www.aenu.com/impact/ -https://www.aenu.com/sfdr-1/ -https://www.aenu.com/insights/eur-170-million-for-climate-technology-startups/ -https://hello-tomorrow.org/discover-aenu-with-fabian-heilemann/" -"Agri Investment Fund ","http://www.aifund.be/en ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Agri Investment Fund Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early startup phases"",""Successive capital rounds"",""Market introduction""],""sectorFocus"":[""Ag-Tech"",""Agro-Food""],""sourceUrl"":""https://aifund.be/en/about-us/""}],""headquarters"":""Agri Investment Fund bv, Diestsevest 32/5b, 3000 Leuven, Belgium"",""investmentThesisFocus"":[""Focus on ESG criteria contributing to United Nations SDG goals."",""Invest in companies with disruptive solutions for sustainable agriculture and horticulture."",""Reduce environmental impact while ensuring production."",""Support fair and stable incomes for farmers."",""Provide high-quality, fair-priced food."",""Target reduction of chemical fertilizers and pesticides, livestock emissions, and antibiotics."",""Promote increased local high-protein crops and plant-based meat alternatives."",""Valorize agricultural residual flows and alternative protein sources."",""Promote diverse, profitable local agriculture and strengthen food supply."",""Increase animal welfare and develop resilient crops."",""Ensure good corporate governance and positive social impact.""],""investorDescription"":""Agri Investment Fund (AIF) invests primarily in the Ag-Tech and Agro-Food domains with a focus on stimulating innovation and improving sustainability in agriculture and horticulture. Their mission is to contribute to a stronger and more sustainable agriculture sector, ensuring sustainable income for farmers, regional chain anchoring, and positive societal product recognition. AIF invests from early start-up phases and supports companies through successive capital rounds until market introduction. They seek active investments including director mandates to transfer knowledge and experience. Being part of the Boerenbond group provides a strong agricultural network and professional advice. AIF aims for long-term positive impact economically, ecologically, and socially on agriculture, environment, and society."",""linkedDocuments"":[""https://aifund.be/wp-content/uploads/2025/06/Jaarrekening-AIF-2024.pdf""],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize"",""seniorLeadership""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 62,300,000"",""sourceUrl"":""https://aifund.be/en/activity-report-aif-2024/""},""portfolioHighlights"":[""Animab"",""Aphea.Bio"",""Better3fruit"",""BiocSol"",""Biotalys"",""Biotope"",""Greenyard"",""Iscal"",""Protealis"",""Rainbow Crops"",""RootWave"",""ViroVet"",""VOCSens""],""researcherNotes"":""No formal fund names or fund sizes are specified on the website. The overall AUM is inferred from the equity and investment amounts stated in the 2024 activity report. Investment size per company is not disclosed."",""seniorLeadership"":[{""name"":""Dirk Vansina"",""sourceProvider"":""LinkedIn"",""title"":""Managing Director""},{""name"":""Bart Backaert"",""sourceProvider"":""LinkedIn"",""title"":""Chairman""},{""name"":""Kristof Van Pourcq"",""sourceProvider"":""LinkedIn"",""title"":""Investment Director""}],""sources"":{""headquarters"":""https://aifund.be/en/contact_us/"",""investmentThesisFocus"":""https://aifund.be/en/about-us/"",""investorDescription"":""https://aifund.be/en/about-us/"",""portfolioHighlights"":""https://aifund.be/en/portfolio/"",""seniorLeadership"":""https://be.linkedin.com/company/agri-investment-fund""},""websiteURL"":""http://www.aifund.be/en""}","Correctness: 95% Completeness: 85% - -The provided information about Agri Investment Fund (AIF) is largely accurate and well-supported by the official website and related sources. The fund’s focus on **Ag-Tech and Agro-Food sectors**, emphasis on **sustainability and ESG criteria aligned with UN SDG goals**, and its **investment stages starting from early startup phases through market introduction** are all confirmed by AIF’s own descriptions[3][4]. The headquarters location in Leuven, Belgium, and strong ties to the Boerenbond group match publicly available contact details[3][4]. The portfolio highlights such as Animab, Aphea.Bio, and Better3fruit are verifiable from AIF’s portfolio webpage and homepage[3][4]. - -The senior leadership names and roles (Dirk Vansina as Managing Director, Bart Backaert Chairman, Kristof Van Pourcq Investment Director) correspond to LinkedIn profiles linked from the provider’s page and industry listings[1][5]. - -The overall Assets Under Management of approximately EUR 62.3 million as of 2024 is consistent with figures in AIF’s 2024 activity report and equity investment data, though specific fund sizes and individual company investment amounts are not publicly detailed, as noted[3][4][1]. - -Where completeness is somewhat reduced is in the **lack of explicit fund size or estimated investment size per fund or deal**, and the absence of detailed senior leadership biographies beyond titles. This data is either undisclosed or unavailable publicly, as confirmed by researcher notes and the official website’s nondisclosure. Additional granular financial data and senior leadership background would improve completeness. - -URLs used for verification: -- https://aifund.be/en/about-us/ -- https://aifund.be/en/portfolio/ -- https://aifund.be/en/contact_us/ -- https://aifund.be/en/activity-report-aif-2024/ -- https://www.privateequityinternational.com/institution-profiles/agri-investment-fund.html -- https://privatecapital.be/member/agri-investment-fund/ - -Overall, the information is factually correct and appropriately comprehensive within publicly available limits, with only minor omissions in detailed financial and leadership data lowering completeness slightly." -"ADM Ventures ","https://www.adm.com/products-services/admventures ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ADM Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Series A"",""Early market traction""],""sectorFocus"":[""Human nutrition"",""Microbiome solutions"",""Animal nutrition"",""Bio-solutions"",""Agriculture technology""],""sourceUrl"":""https://www.adm.com/products-services/admventures""}],""headquarters"":""Chicago, Illinois, USA"",""investmentThesisFocus"":[""Invests in cutting-edge food and agriculture technology startups aligned with ADM's global business."",""Focus on disruptive technologies in human nutrition, microbiome solutions, animal nutrition, bio-solutions, and agriculture technology."",""Targets typically Series A and beyond, with proof-of-concept or early market traction."",""May lead or join investment rounds and prefers board observer or seat."",""Provides startups access to ADM's global solutions network to de-risk and accelerate commercialization.""],""investorDescription"":""ADM Ventures is the corporate venture capital group of ADM that invests in and collaborates with cutting-edge startups commercializing disruptive technologies across human nutrition, microbiome solutions, animal nutrition, bio-solutions, and agriculture technology. They invest in typically Series A stage companies with proof-of-concept or early market traction, can lead or join investment rounds, and prefer board involvement. Collaborations with ADM Ventures allow startups to leverage ADM's global solutions network, including ingredients, flavors, assets, talent, expertise, customers, capital equipment, and sales distribution to accelerate commercialization and de-risk development."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Air Protein"",""Bond Pet Foods"",""Believer Meats"",""New Culture"",""Farmers Business Network"",""Acies Bio"",""Nourished""],""researcherNotes"":""AUM and specific fund size information are not mentioned on the ADM Ventures website or related investor resources. Estimated investment size per company is also not disclosed. The senior leadership listed is for ADM overall, as no specific senior leadership for ADM Ventures was found."",""seniorLeadership"":[{""name"":""Juan R. Luciano"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Chair of the Board of Directors, President, Chief Executive Officer""},{""name"":""Christopher M. Cuddy"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, President, Carbohydrate Solutions, President, North America""},{""name"":""Kristy Folkwein"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, Chief Information Officer""},{""name"":""Regina Jones"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, Chief Legal Officer""},{""name"":""Domingo Lastra"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""President, Latin America""},{""name"":""Gary McGuigan"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""President, APAC Region""},{""name"":""Nuria Miquel"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, Chief Science Officer""},{""name"":""Greg A. Morris"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, President, Agricultural Services and Oilseeds""},{""name"":""Dana Ng"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Vice President, Corporate, Securities and M&A Assistant Secretary""},{""name"":""Carrie Nichol"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Vice President, Chief Accounting Officer""},{""name"":""Dermot O'Grady"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, Global Operations""},{""name"":""Monish Patolawala"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Executive Vice President, Chief Financial Officer""},{""name"":""Ian Pinner"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, President, Nutrition, and Chief Sales and Marketing Officer""},{""name"":""James Prince"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Chief Compliance and Integrity Officer""},{""name"":""Ismael Roig"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""President, EMEA, President, Animal Nutrition""},{""name"":""Joseph Taets"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Senior Vice President, Nutrition Operations""},{""name"":""Jennifer Weber"",""sourceUrl"":""https://adm.com/en-us/about-adm/our-company/leadership"",""title"":""Chief People Officer""}],""sources"":{""headquarters"":""https://adm.com/en-us/about-adm/locations"",""investmentThesisFocus"":""https://www.adm.com/products-services/admventures"",""investorDescription"":""https://www.adm.com/products-services/admventures"",""portfolioHighlights"":""https://pitchbook.com/profiles/investor/234071-83""},""websiteURL"":""https://www.adm.com/products-services/admventures""}","Correctness: 98% Completeness: 85% - -The information provided about ADM Ventures is largely factually accurate based on publicly available sources. ADM Ventures is indeed the corporate venture capital group of Archer Daniels Midland Company (ADM), focusing on investments in early-stage startups with disruptive technologies across human nutrition, microbiome solutions, animal nutrition, bio-solutions, and agriculture technology sectors. It typically invests around the Series A stage with proof-of-concept or early market traction, prefers to lead or join investment rounds, and seeks Board Observer or Board Seat roles. The fund fosters collaborations that leverage ADM’s global network of ingredients, flavors, assets, talent, expertise, customers, and distribution to accelerate commercialization and de-risk development. This aligns well with ADM Ventures’ investment thesis and approach described on ADM’s official site and press releases[1][2][3]. - -The stated headquarters as Chicago, Illinois, USA, matches ADM's corporate location, although some VC profiles list Decatur, Illinois, which is also an ADM site, but Chicago is the corporate HQ for ADM[1][5]. The portfolio highlights (e.g., Air Protein, Believer Meats, New Culture) are consistent with multiple reports on their investments in alternative proteins and microbiome-related startups[3][4]. - -However, there is incomplete information regarding the fund size, estimated investment size per deal, and assets under management (AUM); these details are not publicly disclosed by ADM Ventures, acknowledged in both the user data and external sources[1][4]. Similarly, no specific senior leadership explicitly assigned to ADM Ventures is publicly listed, only senior ADM executives broadly, which the user correctly notes[1][5]. - -The slight deduction in correctness (to 98%) is because the user data states the headquarters as Chicago, which is accurate as ADM’s HQ, but some databases list Decatur as well; this is not a factual error but a nuance. The completeness score is lower (85%) because significant financial details (AUM, fund size, investment sizes) are missing, and senior leadership specifically for ADM Ventures is absent, which limits completeness but is due to lack of public disclosure rather than user error. - -Sources: -- ADM Ventures official info: https://www.adm.com/products-services/admventures and https://www.adm.com/en-us/insights-and-innovation/innovation-services/ventures/ [1] -- ADM Ventures news releases and interviews: https://www.adm.com/en-us/news/news-releases/2020/11/adm-ventures-announces-new-investment-in-microbiome/ [2], https://www.foodbusinessnews.net/articles/22970-adm-ventures-investing-in-the-future-of-food [3] -- VC data aggregators: https://unicorn-nest.com/funds/adm-ventures/ [4], https://raizer.app/investor/adm-ventures [5]" -"Agder Energi Venture ","https://www.ae.no/var-virksomhet/fornyelse/venture/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Agder Energi Venture Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Norway"",""Europe""],""investmentStageFocus"":[""Seed"",""Early"",""Mid"",""Late""],""sectorFocus"":[""Energy"",""Renewable Energy"",""Sustainable Technologies""],""sourceProvider"":""Perplexity"",""sourceUrl"":null}],""headquarters"":""Kjøita 18, Kristiansand, 4630, NO"",""investmentThesisFocus"":[""Sustainable use of natural resources"",""Investments in energy sector companies"",""Companies with solutions to real problems worth paying for""],""investorDescription"":""Agder Energi har som visjon å være et ledende norsk konsern innen fornybar energi. Konsernets virksomhet omfatter produksjon, distribusjon og salg av energi, samt energitilknyttede tjenester. Agder Energi har 1 580 ansatte. Hovedkontoret ligger i Kristiansand."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The company's website and domain ae.no do not provide any specific information about the venture investment strategy, fund size, investment size, portfolio companies, senior leadership, or headquarters address. No documents about investments or funds were found."",""seniorLeadership"":[{""name"":""Tor Øystein Repstad"",""sourceProvider"":""Perplexity"",""title"":""CEO""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/agder-energi-as"",""investmentThesisFocus"":""https://thehub.io/funding/agder-energi-venture"",""investorDescription"":""https://www.linkedin.com/company/agder-energi-as"",""portfolioHighlights"":""https://www.ae.no/var-virksomhet/fornyelse/venture/""},""websiteURL"":""https://www.ae.no/var-virksomhet/fornyelse/venture/""}","Correctness: 90% Completeness: 70% - -The provided information about Agder Energi Venture and Agder Energi is largely factually accurate. Agder Energi Venture is indeed the venture arm of Agder Energi AS, focused on investing in energy-sector companies in Norway and Europe across seed to late funding stages with a sustainability and renewable energy focus[1][4]. The headquarters location in Kristiansand, Norway, and the description of Agder Energi itself as a leading Norwegian renewable energy group primarily focused on hydropower and energy production, distribution, and services is supported by multiple sources[2][3]. - -The CEO named, Tor Øystein Repstad, aligns with publicly available leadership data[1]. The investment thesis focusing on sustainable use of natural resources and companies offering valuable solutions fits with the venture’s stated focus on sustainable energy innovation[4]. - -However, completeness is limited because key quantitative data like overall assets under management, fund size, estimated investment size, and portfolio highlights are missing or unavailable both in the submitted data and on publicly accessible sources including the company websites and referenced publications[4]. The lack of detailed fund financials, investment deal examples, and specific portfolio company information reduces completeness. Public sources acknowledge that Agder Energi’s own site and domain do not provide detailed venture fund information or investment details, which constrains completeness assessment[4]. - -The 90% correctness score reflects that no false or fabricated facts appear, though some details (such as exact fund size and portfolio) are not verifiable and are marked as not available. The 70% completeness score captures that essential quantitative and portfolio information is missing despite being relevant and expected. - -Sources: -- Agder Energi Venture description and investment focus on eu-startups.com and thehub.io[1][4] -- Agder Energi group corporate profile and renewable focus at greeninvestmentgroup.com and martini.ai[2][3] -- Confirmation of lacking detailed venture fund data on ae.no and in researcher notes[4]" -"Agent Capital ","https://www.agentcapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Agent Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Early Stage"",""Post-Series A"",""Crossover"",""PIPEs""],""sectorFocus"":[""Rare Diseases"",""Oncology"",""Neurology"",""Immunology""],""sourceUrl"":""https://www.agentcapital.com/strategy/""}],""headquarters"":""1400 Main Street, Floor 1, Waltham, MA 02451"",""investmentThesisFocus"":[""Healthcare venture capital firm focused on investing in novel, differentiated therapeutics and treatments addressing unmet patient needs."",""Investment focus includes Rare Diseases, Oncology, Neurology, and Immunology."",""Invest across all stages of development: Preclinical, Clinical, and Commercial."",""Align with scientists, entrepreneurs, and other investors to develop next-generation healthcare innovations."",""Use a balanced investment approach informed by deep understanding of biopharma pipeline pressures."",""Proactively guide biotech companies to milestones and exits.""],""investorDescription"":""Agent Capital is an investor focused on partnering with founders and management teams to build lasting companies. The firm identity is rooted in long-term commitment, strategic partnership, and operational support. Their mission centers on creating value through growth and transformation in their portfolio companies. Their focus includes investing in sectors where they can leverage industry expertise to drive success."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""linkedDocuments"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Affini-T"",""AshiBio"",""Carbon Biosciences"",""Carisma Therapeutics"",""Cerevance"",""Cyrus Biotechnology"",""Dice Therapeutics"",""Dragonfly Therapeutics"",""Entrada Therapeutics"",""Flare Therapeutics""],""researcherNotes"":""AUM and fund sizes are not mentioned on the website. No formal named funds are listed, so a default fund name was used."",""seniorLeadership"":[{""name"":""Geeta Vemuri, PhD, MBA"",""sourceProvider"":""Perplexity"",""title"":""Managing Partner, Founder""}],""sources"":{""headquarters"":""https://www.agentcapital.com/contact/"",""investmentThesisFocus"":""https://www.agentcapital.com/"",""investorDescription"":""https://www.agentcapital.com/about/"",""portfolioHighlights"":""https://www.agentcapital.com/portfolio/""},""websiteURL"":""https://www.agentcapital.com/""}","Correctness: 98% Completeness: 85% - -The provided information about Agent Capital is largely accurate and well supported by multiple reliable sources. The **headquarters at 1400 Main Street, Floor 1, Waltham, MA 02451** is confirmed by the company’s contact page[1], ZoomInfo[2], Private Equity International[3], and MapQuest[4]. The **investment thesis focus**—healthcare venture capital investing in novel therapeutics across Rare Diseases, Oncology, Neurology, and Immunology at all stages of development—is consistent with the descriptions on their website[1][3] and third-party directories like ZoomInfo[2] and TeaserClub[5]. The **investor description** emphasizing long-term partnerships, strategic support, and focus on building lasting companies matches the firm’s About page and external profiles[1][2][5]. - -The **portfolio highlights**, including companies like Carisma Therapeutics and others, align with publicly available portfolio listings[1][5]. The named **senior leadership** member, Geeta Vemuri, PhD, MBA as Managing Partner and Founder, is corroborated by Private Equity International and the firm’s own site[1][3]. - -However, the **fund size, estimated investment size, and overall assets under management (AUM)** are not publicly disclosed anywhere on the official site or reliable profiles, which is noted in the researcher’s comments and confirmed by the absence of any such data in available sources[1][3][5]. Similarly, no formal named funds are listed, so using “Agent Capital Investment Strategy” as a default fund name is an inferred placeholder rather than firm data. This limits completeness about financial scale and fund structuring. - -In summary, the factual correctness of the descriptive and strategic elements is very high (98%), but the completeness score is lowered (85%) due to missing critical data on AUM, fund sizes, and formal fund names, which are important for a complete investment profile. - -Sources: -https://www.agentcapital.com/contact/ -https://www.agentcapital.com/about/ -https://www.agentcapital.com/portfolio/ -https://www.privateequityinternational.com/institution-profiles/agent-capital.html -https://www.zoominfo.com/c/agent-capital-llc/413035060 -https://teaserclub.com/investors/agent-capital" -"AI.FUND ","https://ai-fund.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AI.FUND Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Israel"",""U.S.""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Enterprise AI"",""Vertical AI"",""Industrial AI"",""Advanced AI Tech""],""sourceUrl"":""https://ai-fund.vc/#mission""}],""headquarters"":""AI.Fund Management GmbH, Neuer Jungfernstieg 52, 0354 Hamburg, Germany"",""investmentThesisFocus"":[""Invest in AI applications across Enterprise AI, Vertical AI, Industrial AI, and Advanced AI Tech"",""Focus on scalable products with clear customer traction"",""Back startups that apply AI to enhance operational efficiency and provide high-impact, context-aware solutions"",""Early-stage focus: Seed and Series A rounds"",""Geographic focus on Europe and Israel with emphasis on international scale, especially U.S."",""Emphasis on backing AI solutions rooted in European values""],""investorDescription"":""AI.FUND is a highly-focused entrepreneurial investment fund dedicated to advancing AI startups in Europe and Israel. Their mission is to drive economic growth by backing AI solutions rooted in European values. They invest in the most promising early-stage, AI-first startups in Europe and Israel, focusing on application of AI across all sectors, especially Enterprise AI, Vertical AI, Industrial AI, and Advanced AI Tech. Their target is scalable products with clear traction and international growth ambition, especially the U.S."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Hirundo"",""Neuland"",""Sinpex"",""ALLONIA"",""Mindpeak"",""Dealcode"",""913.ai"",""IPercept"",""VITAS""],""researcherNotes"":""The website does not provide explicit information on assets under management (AUM), fund size, or estimated investment size, despite multiple searches on key pages."",""seniorLeadership"":[{""name"":""Ragnar Kruse"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Founding Partner""},{""name"":""Petra Vorsteher"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Founding Partner""},{""name"":""Dr. John Lange"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Founding Partner""},{""name"":""Ingo Hoffmann"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Founding Partner""},{""name"":""Hauke Hansen"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Founding Partner""},{""name"":""Fabian Westerheide"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Founding Partner""},{""name"":""Maximilian Seeburg"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Principal""},{""name"":""Dietlind Wittig"",""sourceUrl"":""https://ai-fund.vc/#team"",""title"":""Investment Manager""}],""sourceProvider"":""Perplexity"",""sources"":{""headquarters"":""https://ai-fund.vc/impressum/"",""investmentThesisFocus"":""https://ai-fund.vc/#mission"",""investorDescription"":""https://ai-fund.vc/#mission"",""portfolioHighlights"":""https://ai-fund.vc/portfolio/""},""websiteURL"":""https://ai-fund.vc/""}","Correctness: 98% Completeness: 85% - -The information about AI.FUND is highly accurate and well-supported by the official AI.FUND website. The fund’s **headquarters** in Hamburg, Germany, the **investment thesis focus** on early-stage AI startups (Seed and Series A) spanning Enterprise AI, Vertical AI, Industrial AI, and Advanced AI Tech, the **geographic focus** on Europe, Israel, and the U.S., and the **portfolio highlights** (e.g., Hirundo, Neuland, Sinpex, Mindpeak) all correspond to details explicitly listed on AI.FUND’s site[https://ai-fund.vc/#mission][https://ai-fund.vc/portfolio/][https://ai-fund.vc/impressum/]. The **description of the fund as a highly-focused entrepreneurial fund advancing AI startups rooted in European values** is also corroborated. - -The listed **senior leadership team** matches the website’s team page exactly, confirming the accuracy of names and titles[https://ai-fund.vc/#team]. - -The lower completeness score reflects the **absence of key quantitative details** publicly available such as: - -- Overall Assets Under Management (AUM) -- Fund Size -- Estimated Investment Size per round or fund - -These missing fields are noted as unavailable after thorough review of multiple key pages on the website. This lack of disclosed financial scale or exact investment amounts limits the thoroughness of the profile relative to typical fund disclosures. Additionally, no performance metrics, detailed fund history, or fund vehicle structure are present in the provided data, which reduces completeness somewhat. - -In summary, the factual content is very precise and consistent with the primary source (AI.FUND’s official website), but the snapshot remains somewhat incomplete primarily due to missing financial size and investment amount data, as explicitly acknowledged. - -Sources: -- AI.FUND official website (https://ai-fund.vc/#mission, https://ai-fund.vc/portfolio/, https://ai-fund.vc/#team, https://ai-fund.vc/impressum/)" -"Ace Capital Partners ","https://www.ace-cp.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Private Equity"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""All Stages""],""sectorFocus"":[""Sustainability"",""Energy Transition"",""Decarbonisation"",""General Private Equity""],""sourceUrl"":""https://ace-cp.com/en/expertise/private-equity""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Credit"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""All Stages""],""sectorFocus"":[""European Private Credit"",""Sustainable Finance""],""sourceUrl"":""https://ace-cp.com/en/expertise/credit""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Real Assets"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""All Stages""],""sectorFocus"":[""Sustainable Finance"",""Real Economy"",""Infrastructure""],""sourceUrl"":""https://ace-cp.com/en/expertise/real-assets""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Capital Markets Strategies"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""All Stages""],""sectorFocus"":[""Private Equity"",""Credit"",""Real Assets"",""Sustainability""],""sourceUrl"":""https://ace-cp.com/en/expertise/capital-markets-strategies""}],""headquarters"":""Paris, France"",""investmentThesisFocus"":[""Providing financing solutions across the entire capital structure, supporting entrepreneurs and businesses at every stage of growth."",""Emphasizing efficient and sustainable financing and semi-liquid credit strategies."",""Focus on European private credit and active involvement in climate investing and decarbonisation of the economy."",""Commitment to sustainability and impact investments across private equity, credit, real assets, and capital markets strategies.""],""investorDescription"":""Tikehau Capital is an entrepreneurial investment management group with 3.0 billion in assets under management and 735 employees across 17 countries, serving clients through five business lines: Private Equity, Credit, Real Assets, Capital Markets Strategies, and Listed Funds. To direct global savings towards innovative and tailored financing solutions that create sustainable value, anticipating tomorrow's needs and accelerating positive societal change. They focus on financing the real economy across four asset classes with a strong entrepreneurial culture and commitment to sustainability and impact investments including decarbonisation efforts."",""linkedDocuments"":[""https://ace-cp.com/~/media/Files/T/Tikehau-Capital-V2/documents/regulatory-information/2023-en/universal-registration-document-2023-including-the-annual-financial-report.pdf"",""https://ace-cp.com/~/media/Files/T/Tikehau-Capital-V2/documents/shareholders/publications-en/tikehau-ra-uk-web-pp.pdf""],""missingImportantFields"":[""headquarters"",""estimatedInvestmentSize"",""fundSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""30/06/2025"",""aumAmount"":""EUR 51,000,000,000"",""sourceUrl"":""https://ace-cp.com/~/media/Files/T/Tikehau-Capital-V2/documents/regulatory-information/2023-en/universal-registration-document-2023-including-the-annual-financial-report.pdf""},""portfolioHighlights"":[],""researcherNotes"":""Headquarters address is not explicitly listed on the website or contact pages, despite thorough checking. Estimated investment sizes and fund sizes are also not available on the website or key documents. AUM is explicitly stated at EUR 51 billion as of 30/06/2025."",""seniorLeadership"":[{""name"":""Antoine Flamarion"",""sourceUrl"":""https://ace-cp.com/en/the-company/teams"",""title"":""Co-founder""},{""name"":""Mathieu Chabran"",""sourceUrl"":""https://ace-cp.com/en/the-company/teams"",""title"":""Co-founder""}],""sourceProvider"":""Perplexity"",""sources"":{""headquarters"":""https://www.bloomberg.com/profile/company/1832997D:FP"",""investmentThesisFocus"":""https://ace-cp.com/en/the-company/mission-and-values"",""investorDescription"":""https://ace-cp.com/en/the-company/about-us"",""portfolioHighlights"":""https://ace-cp.com/en/the-company/portfolio-companies""},""websiteURL"":""https://www.ace-cp.com/""}","Correctness: 90% Completeness: 65% - -The factual information provided about Tikehau Capital is largely accurate. Tikehau Capital is an entrepreneurial investment management group headquartered in Paris, France, with around EUR 51 billion in assets under management as of June 30, 2025, and approximately 735 employees across 17 countries. It operates through five business lines: Private Equity, Credit, Real Assets, Capital Markets Strategies, and Listed Funds. The investment thesis emphasizing sustainable financing solutions, European private credit focus, and decarbonisation efforts aligns with their publicly stated mission and values. The named senior leadership (Antoine Flamarion and Mathieu Chabran) and the described sector and geographic focuses correspond with the information on the official Tikehau Capital website and its 2023 Universal Registration Document[3][https://ace-cp.com/~/media/Files/T/Tikehau-Capital-V2/documents/regulatory-information/2023-en/universal-registration-document-2023-including-the-annual-financial-report.pdf]. - -However, certain important details are missing or not explicitly confirmed: - -- The exact *headquarters address* is not clearly stated on the official website or regulatory filings, leading to slight uncertainty despite multiple sources generally placing Tikehau Capital’s headquarters in Paris[3][https://www.bloomberg.com/profile/company/1832997D:FP]. - -- The *estimated investment sizes and fund sizes* for each fund (Private Equity, Credit, Real Assets, Capital Markets Strategies) are not disclosed openly on the website or regulatory reports, which is noted as absent. - -- *Portfolio highlights*—specific recent key investments or notable portfolio companies—are not included in the information despite being potentially available on the company website or related investor documents, making the dataset incomplete in this regard. - -- The description conflates ""Ace Capital Partners"" and ""Tikehau Capital"" somewhat. Recent, unrelated search results reveal that Ace Capital Partners is a different firm (Tel Aviv-based, founded 2024, focusing on aerospace and defense, with smaller AUM around €1.3 billion), and though there is some historical connection or investment involvement, Ace Capital Partners is not the same entity as Tikehau Capital. This could lead to confusion and slightly reduces accuracy if not carefully distinguished[1][2][4]. - -Overall, the core data on Tikehau Capital itself is accurate but incomplete, with missing fund size and portfolio data, and ambiguity on the headquarters address lowers completeness. Confusion around Ace Capital Partners in the source text highlights the need for careful differentiation. - -Sources used: -- Tikehau Capital Universal Registration Document 2023 (AUM, business lines, mission) [3] -- Bloomberg company profile (headquarters location) [3] -- Tikehau Capital official site (investment thesis, team) [https://ace-cp.com/en/the-company/mission-and-values; https://ace-cp.com/en/the-company/about-us] -- Articles on Ace Capital Partners showing it is a separate entity linked to Tikehau but distinct [1][2][4]" -"Adelie ","https://www.adelie.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 2 million to 10 million"",""fundName"":""Adelie Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Series A"",""Series B"",""Series C"",""Pre-IPO"",""Growth Equity"",""Private Equity""],""sectorFocus"":[""Technology""],""sourceProvider"":""Private Equity International"",""sourceUrl"":""https://www.privateequityinternational.com/institution-profiles/adelie.html""}],""headquarters"":""London Ingestre Court W1F 0JL, London United Kingdom; Paris 24-26 Rue Ballu, 75009 Paris France"",""investmentThesisFocus"":[""They focus on partnering with tech founders driving innovation and progress."",""Their strategy includes providing strategic advice on financing, exit strategy, international development, go-to-market, and acquisition strategy."",""They emphasize long-term partnership with founders, offering visibility and connections to potential strategic partners or acquirers."",""Geographic focus is Europe based on their 20+ year relationships with entrepreneurs across the region.""],""investorDescription"":""Adelie is a multi-stage technology fund based in Paris and London. The firm is supported by 100+ experienced tech entrepreneurs, private equity partners, C-level executives at CAC 40 companies, and large family offices. They partner with Clipperton, a leading technology investment bank advising high-growth tech businesses on financing and M&A since 2003. Since 2008, Adelie has invested in fast-growing European tech companies led by ambitious teams."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Advens"",""Believe"",""Bizao"",""Brevo (formerly Sendinblue)"",""Clareo"",""Didomi"",""Equativ"",""Fenergo"",""Foodles"",""Genesis""],""researcherNotes"":""Overall Assets Under Management (AUM) is not publicly disclosed on the company's website or accessible pages. The estimated investment size is sourced from Private Equity International. The firm does not list formal fund names or fund sizes, so the company name with 'Investment Strategy' is used as the fundName."",""seniorLeadership"":[{""name"":""Jean-Manuel Costa"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.adelie.vc/people"",""title"":""Managing Partner""},{""name"":""Antoine Pruvot"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.adelie.vc/people"",""title"":""CFO""}],""sources"":{""headquarters"":""https://www.adelie.vc/connect"",""investmentThesisFocus"":""https://www.adelie.vc/vision"",""investorDescription"":""https://www.adelie.vc/"",""portfolioHighlights"":""https://www.adelie.vc/portfolio""},""websiteURL"":""https://www.adelie.vc/""}","Correctness: 98% Completeness: 85% - -The information provided about **Adelie Capital** is largely factually accurate and well-supported by their official website and reputable sources. Adelie is indeed a **multi-stage technology fund** based in **Paris and London**, focusing on **European tech companies** with investment stages covering **Series A to Pre-IPO and Growth Equity**, consistent with the stated focus on partnering with tech founders and providing strategic advice (https://www.adelie.vc, accessed 2025). The description of their emphasis on long-term partnership, sector and geographic focus (Europe, technology), and collaboration with Clipperton aligns with their own communications and industry profiles (https://www.adelie.vc/vision; https://www.privateequityinternational.com/institution-profiles/adelie.html). - -The estimated investment size range of **EUR 2 million to 10 million** matches Private Equity International data and the lack of publicly disclosed total fund size or overall Assets Under Management (AUM) is accurate, leading to the noted missing fields and lowering completeness slightly. - -Portfolio highlights such as **Advens, Believe, Bizao, Brevo (Sendinblue), Didomi, Equativ, Fenergo, Foodles, Genesis** correspond with official portfolio info (https://www.adelie.vc/portfolio). Senior leadership names—Jean-Manuel Costa (Managing Partner) and Antoine Pruvot (CFO)—are correctly identified from the official people page (https://www.adelie.vc/people). - -The only significant gap lowering the completeness score is the absence of disclosed **overall AUM**, **formal fund names or sizes**, and more detailed financial performance data, which are generally proprietary or undisclosed by Adelie. Additionally, the fund is sometimes referenced as a single entity rather than multiple named funds, which is an acknowledged limitation in available data. - -No evident fabricated or false information was detected, so correctness remains high. - -Sources: -- https://www.adelie.vc -- https://www.privateequityinternational.com/institution-profiles/adelie.html -- https://www.adelie.vc/portfolio -- https://www.adelie.vc/people" -"Adjuvant Capital ","https://adjuvantcapital.com ","{""funds"":[{""estimatedInvestmentSize"":""$10-$25 million"",""fundName"":""Adjuvant Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Low- and middle-income countries"",""Emerging economies"",""Underserved markets globally""],""investmentStageFocus"":[""Phase II-or-later clinical trials or similar evaluations""],""sectorFocus"":[""Life sciences"",""Infectious diseases (HIV/AIDS, tuberculosis, malaria, tropical diseases, pandemic threats, antimicrobial resistance)"",""Maternal and child health"",""Nutrition"",""Reproductive and sexual health""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://adjuvantcapital.com""}],""headquarters"":""New York City office: 500 5th Avenue, Suite 4000, New York, NY 10110, USA; Zurich office: Grabenstrasse 3, 8952 Schlieren, Switzerland"",""investmentThesisFocus"":[""Invests in innovative technologies for underserved markets with goal of social and financial returns."",""Focusing on safety and efficacy in humans to accelerate global availability."",""Focus areas include neglected, high-burden, and emerging infectious diseases (including antimicrobial resistance and pandemic threats)."",""Targets opportunities with human efficacy signals from phase II-or-later clinical trials or similar evaluations, emphasizing compelling proof-of-concept data."",""Geographic focus on low- and middle-income countries and underserved markets globally.""],""investorDescription"":""Adjuvant is a venture capital firm financing life science technologies addressing high-burden public health challenges, focusing on neglected infectious diseases, maternal and child health, nutrition, and reproductive and sexual health. Adjuvant Capital pursues meaningful, measurable social impact alongside top-tier financial returns, focusing on public health improvements in low- and middle-income countries. Their strategy aims to drive meaningful improvements in the public health of low- and middle-income countries while pursuing top-tier financial returns."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2023-09-30"",""aumAmount"":""USD 300,000,000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/about/""},""portfolioHighlights"":[""LimmaTech Biologics"",""Memo Therapeutics"",""Curevo Vaccine"",""Antiva Biosciences"",""Pulmocide"",""Excision BioTherapeutics"",""Frontier Nutrition"",""VitriVax"",""MinervaX"",""Evofem""],""researcherNotes"":""AUM was explicitly stated as 300 million USD as of September 30, 2023, in the About page. No formal fund names or sizes were found; only a single overarching investment strategy was described. Estimated investment size per company was not disclosed."",""seniorLeadership"":[{""name"":""Glenn Rockman"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Founder and Managing Partner""},{""name"":""Kabeer Aziz"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Co-Founder and Partner""},{""name"":""Philippe Dro"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Partner""},{""name"":""Gerard Cunningham"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Operating Partner""},{""name"":""Alexandra (Sandra) Glucksmann"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Advisory Partner""},{""name"":""Curt LaBelle"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Venture Partner""},{""name"":""Mark Sullivan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Venture Partner""},{""name"":""Evelyn Yanatos"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://adjuvantcapital.com/team/"",""title"":""Director of Finance and Compliance""}],""sources"":{""headquarters"":""https://adjuvantcapital.com/contact/"",""investmentThesisFocus"":""https://adjuvantcapital.com/about/"",""investorDescription"":""https://adjuvantcapital.com"",""portfolioHighlights"":""https://adjuvantcapital.com/portfolio/""},""websiteURL"":""https://adjuvantcapital.com""}","Correctness: 95% Completeness: 85% - -The information provided about Adjuvant Capital is largely **factually accurate**. The investment strategy clearly aligns with publicly available descriptions from Adjuvant’s website and external sources, emphasizing late-stage life sciences investments targeting infectious diseases, maternal and child health, nutrition, and reproductive health, with a geographic focus on low- and middle-income countries and underserved markets globally[3][1]. The firm’s focus on opportunities with human efficacy signals from Phase II-or-later clinical trials or similar evaluations is consistent with its stated investment thesis[3]. - -The **headquarters locations** given (New York City and Zurich) also match the contact details on Adjuvant’s website[3]. The senior leadership names and roles (Glenn Rockman as Founder and Managing Partner, Kabeer Aziz as Co-Founder and Partner, etc.) correspond closely to the official team page[3]. - -The **Assets Under Management (AUM)** figure of approximately USD 300 million as of September 2023 is supported by the About page, though some external data sources do not explicitly confirm a fund size or formally named fund sizes, consistent with the note that only a single overarching investment strategy is described without specific fund sizes disclosed[3][5]. The estimated investment size given (“$10-$25 million”) is an inferred range rather than a formally published figure, aligning with researcher notes that such granular sizing is undisclosed[3]. - -**Portfolio companies** listed (e.g., LimmaTech Biologics, Memo Therapeutics, VitriVax, etc.) correspond to publicly named portfolio highlights on their website[3]. - -The main area of **incompleteness** is in the absence of formally named funds and precise fund size data, which limits clarity on the structure and scale of individual investment vehicles—this was explicitly noted as ""Not Available"" and ""Missing Important Fields"" in your data and confirmed by external sites[5]. Also, detailed performance metrics, historical fund close dates, and specific investment outcomes are not provided or publicly available, limiting full completeness. - -**Sources:** - -- Adjuvant Capital About page: https://adjuvantcapital.com/about/ -- Adjuvant Capital Team: https://adjuvantcapital.com/team/ -- Portfolio: https://adjuvantcapital.com/portfolio/ -- MacArthur Foundation Fact Sheet on Adjuvant: https://www.macfound.org/media/article_pdfs/adjuvant-fact-sheet_final.pdf -- Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/adjuvant-capital.html - -This justifies a **correctness score of 95%** due to excellent alignment with primary official sources and only minor gaps on formal fund naming and specific investment sizing; and a **completeness score of 85%** because while core strategy and leadership info is well-covered, details on fund size, stage history, and financial track record remain unavailable." -"Activate Capital Partners ","https://activatecap.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 10,000,000 - 30,000,000"",""fundName"":""Activate Capital"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Series B"",""Growth"",""Late stage"",""Pre-IPO""],""sectorFocus"":[""Clean energy"",""sustainability"",""climate adaptation"",""energy load aggregation"",""supply chain intelligence""],""sourceUrl"":""https://activatecap.com/approach""}],""headquarters"":""50 California Street, Suite 2050, San Francisco, CA 94111"",""investmentThesisFocus"":[""Focuses on sustainability, resiliency, and adaptation as critical themes shaping the future of energy and infrastructure."",""Addresses the missing middle of climate finance, investing typically 10–30M USD in technology companies at Series B to pre-IPO stages."",""Partners closely with portfolio companies to provide capital, strategic opportunities, and act as a sounding board to support rapid decarbonization."",""Leverages over 130 years of collective team experience, emphasizing sound economic investing aligned with sustainability and measurable impact."",""Targets sectors including power, production, movement, and adaptation infrastructure.""],""investorDescription"":""Activate Capital is a growth-stage venture capital firm focused on the sustainable, resilient transformation of the global economy. Their mission is to accelerate the world’s transition to a sustainable, resilient, and adaptable future by investing in category-creating companies of tomorrow. They back companies ready to scale, led by exceptional entrepreneurs aiming to build category-defining platforms. The firm emphasizes building a sustainable organization with diverse perspectives and holds values such as persistence, candor, and humility."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Aerones"",""Altana AI"",""Crusoe"",""Enpal"",""Fictiv"",""Generate Capital"",""HOMEE"",""Kin Insurance"",""KlearNow"",""Muon Space"",""Nozomi Networks"",""Omnidian"",""Optimal Dynamics"",""Passport"",""PosiGen"",""Ridecell"",""Swimlane"",""Sympower"",""Tomorrow.io"",""Voltus"",""WeaveGrid"",""XNRGY"",""Flexe"",""Parsable"",""STEM"",""Streetlight Data"",""Volta""],""researcherNotes"":""AUM is not mentioned on the website. No formal funds names other than the firm name. Investment stage focus inferred from stated Series B to pre-IPO investment activity. Geographic focus assumed Global as no specific region limitation stated."",""seniorLeadership"":[{""name"":""Anup Jacob"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://activatecap.com/team#team-member-1955"",""title"":""Managing Partner""},{""name"":""David Lincoln"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://activatecap.com/team#team-member-1961"",""title"":""Managing Partner""},{""name"":""Anna Nitschke"",""sourceUrl"":""https://activatecap.com/team#team-member-3306"",""title"":""Chief Operating Officer & Chief Financial Officer""},{""name"":""Patti Szczepaniak"",""sourceUrl"":""https://activatecap.com/team#team-member-1978"",""title"":""Chief Administrative Officer""}],""sources"":{""headquarters"":""https://activatecap.com/contact"",""investmentThesisFocus"":""https://activatecap.com/approach"",""investorDescription"":""https://activatecap.com/about"",""portfolioHighlights"":""https://activatecap.com/portfolio""},""websiteURL"":""https://activatecap.com/""}","Correctness: 98% Completeness: 85% - -The provided information about Activate Capital is highly accurate. The firm is indeed a growth-stage venture capital investor focusing on sustainability, resilience, and climate-related sectors, targeting Series B to pre-IPO stages with typical investments between $10 million and $30 million, as confirmed on their website and investment approach page[4][5]. Their headquarters at 50 California Street, Suite 2050, San Francisco, CA, is correct per their contact page[5]. The description of their investment thesis—emphasizing sustainability, resiliency, economic returns aligned with impact, and specific sector focuses like clean energy, adaptation infrastructure, and supply chain intelligence—is consistent with official sources[4][5]. The named senior leadership (Anup Jacob and David Lincoln as Managing Partners, Anna Nitschke as COO & CFO, and Patti Szczepaniak as CAO) matches the current team listings on their site[5]. - -The portfolio highlights, including companies such as Tomorrow.io, Sympower, and Altana AI, align with publicly disclosed investments[5]. Their firm values around building a sustainable organization with diverse perspectives and supporting category-creating companies are also corroborated by their About page[5]. - -However, the completeness score is lower primarily because key financial details are missing or outdated: - -- Overall Assets Under Management (AUM) are omitted in the provided data but publicly available; Activate Capital had approximately $657 million AUM across two funds as of late 2022, with Fund II closing at $500 million raised, and they are currently raising Fund III targeting $500 million[1][3]. This is a significant disclosure gap. - -- The ""fundSize"" field is marked ""Not Available,"" but their Funds I and II sizes are known from their impact report and news sources[1][3]. - -- Geographic focus is listed as ""Global,"" which matches their statements; nevertheless, recent fundraises indicate growing European engagement, a nuance absent from the summary[3]. - -- There is mention of missing important fields such as ""overallAssetsUnderManagement,"" which are critical for completeness. - -- There is no formal naming of individual funds beyond ""Activate Capital,"" which matches the publicly known structure but could be clearer that Fund I, II, and III exist. - -Overall, the factual content about the firm’s mission, leadership, investment focus, and portfolio is correct and well represented, but the incomplete financial data reduces completeness compared to publicly available sources. The URLs below were used to verify the data: - -- https://activatecap.com/approach -- https://activatecap.com/about -- https://activatecap.com/contact -- https://activatecap.com/portfolio -- https://activatecap.com/wp-content/uploads/Activate_Capital_Impact_Report_Final.pdf -- https://axios.com/pro/climate-deals/2025/08/08/activate-capital-fund-iii-europe-lps" -"Addition ","https://addition.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Addition Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""New York, NY""],""investmentStageFocus"":[""Early Stage"",""Growth Stage""],""sectorFocus"":[""Technology""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://addition.com""}],""headquarters"":""New York, New York"",""investmentThesisFocus"":[""Focus on founder-led companies."",""Invest in technology-enabled businesses."",""Support visionaries in building impactful and enduring businesses.""],""investorDescription"":""We invest in early & growth stage technology companies. We were founded with a mission to support visionaries in building impactful & enduring businesses. Addition invests in founder-led, technology-enabled companies."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""portfolioHighlights"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""No explicit information found on AUM, fund size, specific investment size, geographic focus, portfolio companies, or senior leadership from the website."",""seniorLeadership"":[{""name"":""Lee Fixel"",""sourceProvider"":""Perplexity"",""title"":""Founder""},{""name"":""Ryan Preston"",""sourceProvider"":""Perplexity"",""title"":""Partner""},{""name"":""Kristen Green"",""sourceProvider"":""Perplexity"",""title"":""Managing Director""}],""sources"":{""funds"":""https://www.linkedin.com/company/additionvc"",""headquarters"":""https://addition.com"",""investmentThesisFocus"":""https://addition.com"",""investorDescription"":""https://addition.com"",""portfolioHighlights"":""https://addition.com"",""seniorLeadership"":""https://www.crunchbase.com/organization/addition/company_officers""},""websiteURL"":""https://addition.com""}","Correctness: 95% Completeness: 75% - -The factual information provided is largely accurate. Addition is indeed a New York-based venture capital firm focusing on early and growth-stage technology companies, investing in founder-led, technology-enabled businesses, and supporting visionary entrepreneurs, consistent with the fund description and investment thesis from Addition’s official website and credible profiles[2][4]. The senior leadership details listing Lee Fixel as Founder, Ryan Preston as Partner, and Kristen Green as Managing Director align well with data from Crunchbase and industry sources[2][3]. - -However, the provided data notably lacks crucial quantitative details that are publicly available such as: -- Fund sizes: Addition has raised four funds ranging from $1.3 billion to $1.5 billion each, totaling an AUM around $6.5 billion as reported by PitchBook and TechCrunch[1][2]. -- Estimated investment size per deal is broadly unspecified, but the firm’s focus splits roughly into one-third early stage and two-thirds growth stage investments[2]. -- Portfolio highlights include well-known companies like Stripe, Lyra, Snyk, Chainalysis, Allbirds, Freshworks, and Hugging Face, which are missing in the original data[1][2]. - -Therefore, the completeness is reduced because the original summary missed these important quantitative and portfolio details that give a fuller picture of Addition’s scale, investment activity, and impact. Furthermore, the original data’s ""Not Available"" for fund size and AUM contradicts publicly reported figures[1][2]. The geographic focus is correctly stated as New York, and the senior leadership names are confirmed externally. - -Sources used: -- TechCrunch (2023): https://techcrunch.com/2023/06/14/lee-fixel-addition-fund/ -- VC Mapping (2025): https://vc-mapping.gilion.com/vc-firms/addition -- Addition official website: https://addition.com -- Private Equity International: https://www.privateequityinternational.com/institution-profiles/addition.html" -"Acurio Ventures ","http://www.acurio.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 750,000 - 3,000,000"",""fundName"":""Acurio Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Opportunistic US and LatAm""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Generalist excluding life sciences and crypto""],""sourceUrl"":""https://www.acurio.vc/how-we-invest""}],""headquarters"":""Calle Gran Vía de Don Diego López de Haro, nº1 - 48001 Bilbao (Vizcaya)"",""investmentThesisFocus"":[""They invest primarily in seed and series A rounds."",""They prefer to co-lead or follow investment rounds rather than lead."",""They make fast decisions and leverage entrepreneurial experience, operational know-how, platform resources, and a broad network to support founders."",""They invest across a broad range of sectors but exclude life sciences and crypto."",""They have a strong pool of advisors from notable Spanish and international tech companies providing support beyond capital."",""Their core values include integrity, entrepreneurial ownership, fearless support to partners, and trustworthiness to stakeholders.""],""investorDescription"":""Acurio Ventures is a venture capital firm that partners with visionary founders to make history happen. They support founders through challenges based on their own experience in founding and scaling companies and venture firms. They invest primarily in seed and series A rounds in Europe, collaborate with other investors, and are sector agnostic with a focus on great companies and committed founders."",""linkedDocuments"":[""https://alliron.vc.land/documents""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 300,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.acurio.vc/""},""portfolioHighlights"":[""Aplanet"",""Abound"",""Ai|coustics"",""Alpagga"",""Apeteat"",""Applause"",""Barkyn"",""BePretty"",""CCX""],""researcherNotes"":""AUM amount of approximately EUR 300 million is mentioned as managed by previous funds but no specific fund size or current fund sizes are disclosed on the website. No explicit AUM date is provided."",""seniorLeadership"":[{""name"":""Ander Michelena"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""General Partner""},{""name"":""Kate Cornell"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""General Partner""},{""name"":""Diego Recondo"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""General Partner""},{""name"":""Hugo Fernández-Mardomingo"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""General Partner""},{""name"":""Jaume Ayats"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""Principal & Head of Product""},{""name"":""Ainhoa Saralegui"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""Senior Investor""},{""name"":""Miguel González"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""Senior Investor""},{""name"":""Matías O'Farrell"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""CFO""},{""name"":""Eneko Marin"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""Head of Legal""},{""name"":""Bosco Amann"",""sourceUrl"":""https://www.acurio.vc/team"",""title"":""Head of Marketing & Portfolio Management""},{""name"":""Daniel Martin"",""sourceProvider"":""Perplexity"",""title"":""Venture Partner""},{""name"":""Bart Tompkins"",""sourceProvider"":""Perplexity"",""title"":""Senior Executive Advisor""},{""name"":""Iñaki Ecenarro"",""sourceProvider"":""Perplexity"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://www.cnmv.es/portal/consultas/ecr/fondo?nif=V13647102&lang=en"",""investmentThesisFocus"":""https://www.acurio.vc/about"",""investorDescription"":""https://www.acurio.vc/"",""portfolioHighlights"":""https://www.acurio.vc/portfolio""},""websiteURL"":""http://www.acurio.vc""}","Correctness: 98% Completeness: 85% - -The provided information about **Acurio Ventures** is factually accurate and aligns well with authoritative sources: - -- The **headquarters location** at Calle Gran Vía de Don Diego López de Haro, nº1 - 48001 Bilbao (Vizcaya), Spain is confirmed by the CNMV registry and company privacy/legal notices[3][5]. -- The **investment focus on Seed and Series A**, the **sector exclusion of life sciences and crypto**, and the **geographic focus on Europe, opportunistic US and LatAm** align with Acurio Ventures’ official website statements on how they invest[1][3]. -- The description of their **investment thesis** emphasizing co-leading or following rounds, leveraging experience and networks, and core values such as integrity and entrepreneurial ownership is consistent with their website’s ""About"" and ""How We Invest"" pages[3]. -- The generalist sector focus excluding specific sectors matches their stated exclusion of life sciences and crypto while investing broadly otherwise[3]. -- The **estimated investment size** of EUR 750,000 - 3,000,000 fits the range for early-stage rounds they typically target, in line with typical European VC Seed/Series A investment sizes and their disclosures[3]. -- The **portfolio highlights** (e.g., Aplanet, Barkyn) and senior leadership team data including General Partners Ander Michelena, Kate Cornell, and others correspond well to the publicly available team information on their site[3]. - -**Limitations and missing components:** - -- The **fund size(s) are not publicly disclosed**, which matches the noted ""Not Available"" in the input. Although the firm references approximately EUR 300 million AUM across previous funds, there is no clear data on current fund sizes or vintage years[3][4]. This justifies a reduced completeness score. -- There is no direct source confirming exact fund names or all portfolio companies listed beyond top examples, but the named portfolio companies are consistent with publicly referenced investments on their site[3]. -- Some very recent fund commitment or open/close dates mentioned in other sources are incomplete or withheld[4], limiting thoroughness. - -Overall, the data is accurate, well-aligned with primary sources (Acurio’s official site, CNMV registry), and comprehensive on description and team but lacks full transparency on exact fund sizes and up-to-date fund status, so completeness is rated lower. - -Sources used: -https://www.acurio.vc/ -https://www.cnmv.es/portal/consultas/ecr/sociedad?nif=A56892003&lang=en -https://www.acurio.vc/privacy-policy -https://ecosystem.andorra-startup.com/investors/acurio_ventures/portfolio/exits" -"Activant Capital ","http://activantcapital.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Activant Fund III"",""fundSize"":""USD 257,000,000"",""fundSizeSourceUrl"":""https://activantcapital.com/perspectives/announcing-activant-fund-iii"",""geographicFocus"":[""USA"",""Europe"",""South Africa""],""investmentStageFocus"":[""Growth equity""],""sectorFocus"":[""Commerce infrastructure technology platforms"",""Logistics"",""Payments"",""Fintech"",""Mortgage technology""],""sourceUrl"":""https://activantcapital.com/perspectives/announcing-activant-fund-iii""}],""headquarters"":""323 Railroad Avenue, Greenwich, CT 06830, USA; 110 Greene Street, New York, NY 10021, USA; Schwedter Str. 263, 10119 Berlin, Germany; 5th Floor, 17 Jamieson St, Gardens, Cape Town, 8001, South Africa"",""investmentThesisFocus"":[""Research-led growth equity investment approach focused on commerce infrastructure technology platforms."",""Thesis-driven with long-term investment horizon and operational support including organizational structure, hiring, go-to-market strategy, commercial introductions, and finance support."",""Focus on high-conviction investments in sectors such as fintech, supply chain, automation, AI, cybersecurity, and office of the CFO."",""Targeting founders who are relentless and ready for significant growth challenges.""],""investorDescription"":""Activant is a research-led global investment firm that partners with high-growth companies. Founded in 2015, Activant has raised 5 funds with over USD 1 billion assets under management. It partners with founders who have won their initial battles and are ready for the next challenge."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 1,000,000,000"",""sourceUrl"":""https://activantcapital.com/about""},""portfolioHighlights"":[""Deliverr"",""Forter"",""Hybris"",""Vtex"",""Celonis"",""XOPSY"",""Sardine"",""Owner""],""researcherNotes"":""Estimated investment size per company is not explicitly stated on the website. Activant Fund III is the only formally named fund found with a disclosed fund size. Overall AUM is explicitly stated as over 1 billion USD on the about page. Portfolio companies cover a range of stages and sectors as described."",""seniorLeadership"":[{""name"":""Steve Sarracino"",""sourceProvider"":""SourceJSON"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Founder and Partner""},{""name"":""Andrew Steele"",""sourceProvider"":""SourceJSON"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Partner""},{""name"":""Maximilian Mayer"",""sourceProvider"":""SourceJSON"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Partner, heads Activant's Berlin office""},{""name"":""Jono Vickery"",""sourceProvider"":""SourceJSON"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Vice President, Research""},{""name"":""Richard Benson-Armer"",""sourceProvider"":""SourceJSON"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Director of Research and Senior Advisor""},{""name"":""Inbar Kodesh"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://activantcapital.com/team/inbar-kodesh"",""title"":""Investor""},{""name"":""Teddy Cohen"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Investor""},{""name"":""John Matheson"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Investor""},{""name"":""Marc Wu"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://activantcapital.com/team"",""title"":""Investor""}],""sources"":{""headquarters"":""https://activantcapital.com/contact"",""investmentThesisFocus"":""https://activantcapital.com/research"",""investorDescription"":""https://activantcapital.com/about"",""portfolioHighlights"":""https://activantcapital.com/companies""},""websiteURL"":""http://activantcapital.com""}","Correctness: 90% Completeness: 85% - -The provided information about Activant Capital is largely accurate. The firm’s Fund III closed with $257 million in commitments, focused on commerce infrastructure technology platforms, and this fund’s size and thematic focus match what is publicly announced by Activant[1][2]. The overall assets under management figure of around $1 billion is consistent with multiple sources, though one source cites $1.5 billion AUM[4], indicating some variation or growth beyond the stated USD 1 billion. The geographic presence including offices in Greenwich, New York, Berlin, and Cape Town is correct based on the contact details on their website[3]. The investment thesis emphasizing research-led growth equity, long-term partnership with 15-year fund lives, sector focus on fintech, logistics, payments, AI, and commerce infrastructure, as well as the operational support described, align well with Activant’s own communications[2]. - -Senior leadership names and titles correspond to those listed on Activant’s team page, including founder Steve Sarracino and notable partners[2][3]. The portfolio companies mentioned such as Deliverr, Forter, Hybris, Vtex, Celonis, XOPSY, Sardine, and Owner reflect key investments or exits highlighted by the firm[1][2]. - -The primary incompleteness is the lack of an explicit estimated investment size per company, which Activant does not publicly disclose, lowering the completeness score. Also, total assets under management estimates vary among sources, suggesting updates or a range rather than a fixed figure. While the overall description captures the core of Activant’s strategy and focus, minor additional detail about fund vintage dates or more granular sector definitions could enhance completeness further. - -URLs used: -https://activantcapital.com/perspectives/announcing-activant-fund-iii -https://www.rede-partners.com/news-insights-database/activant-capital-closes-third-fund-with-257m-in-commitments -https://activantcapital.com/contact -https://activantcapital.com/about -https://activantcapital.com/companies" -"AdBio partners ","https://adbio.partners/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AdBio partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early-stage""],""sectorFocus"":[""Life Sciences"",""Oncology"",""Immunology"",""Ophthalmology"",""Rare Diseases""],""sourceUrl"":""https://adbio.partners/""}],""headquarters"":""4 rue Thénard 75005 Paris, France; PIER07 Via Laietana, 26 08028 Barcelona, Spain"",""investmentThesisFocus"":[""Focus on innovative early-stage startups in life sciences across various therapeutic areas in Europe."",""Act as catalyst to create companies based on innovations from academic research with strong entrepreneurial support."",""Combine early-stage investments with hands-on expertise, co-found companies with scientific founders, provide initial funding, and support development plans and R&D strategy."",""Support from European research institutions, technology transfer offices, scientific and industrial partners, and international VC syndicates.""],""investorDescription"":""AdBio partners is a VC firm with a strong entrepreneurial spirit, specialized in early-stage investment in the most promising life sciences startups in Europe. AdBio partners (formerly Advent France Biotechnology) is a venture capital firm investing in early stage life sciences companies in Europe. They identify promising technologies or products coming from academia and help scientists transform their research into viable entrepreneurial ventures."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""EvlaBio"",""Tenpoint Therapeutics Ltd."",""Augustine Therapeutics"",""Alderaan Biotechnology"",""AndzonBio1"",""Agomab Therapeutics"",""Arthex Biotech"",""Depth Charge"",""DiogenX"",""Integra Therapeutics""],""researcherNotes"":""No explicit AUM or fund size data found on the website. The investment size per company is also not specified. Portfolio and leadership were extracted from the main site and portfolio page."",""seniorLeadership"":[{""name"":""Alain Huriez, MD"",""sourceUrl"":""https://adbio.partners/team"",""title"":""Chairman and Managing Partner""},{""name"":""Clément Bertholet"",""sourceUrl"":""https://adbio.partners/team"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://adbio.partners/contact/"",""investmentThesisFocus"":""https://adbio.partners/about-us/"",""investorDescription"":""https://adbio.partners/"",""portfolioHighlights"":""https://adbio.partners/portfolio/""},""websiteURL"":""https://adbio.partners/""}","Correctness: 98% Completeness: 85% - -The provided information about AdBio partners is factually accurate and well-supported by multiple reliable sources. AdBio partners (formerly Advent France Biotechnology) is a Paris and Barcelona-based venture capital firm specializing in **early-stage investments in life sciences startups across Europe**, with a focus on sectors such as oncology, immunology, rare diseases, and ophthalmology[1][2][3][5]. The firm's investment thesis emphasizing acting as a catalyst to create companies from academic innovations, providing hands-on entrepreneurial support, collaborating with European research institutions and technology transfer offices, and leveraging networks of scientific and industrial partners is confirmed by the official website and third-party profiles[1][2][5]. The description of senior leadership (Alain Huriez, MD, Chairman and Managing Partner, and Clément Bertholet, Managing Partner) matches the team page content[5]. - -The **headquarters locations** (4 rue Thénard 75005 Paris, France; PIER07 Via Laietana, 26 08028 Barcelona, Spain) correspond to contact information from the official site[5]. - -The **portfolio highlights** such as EvlaBio, Tenpoint Therapeutics Ltd., Augustine Therapeutics, Alderaan Biotechnology, AndzonBio1, Agomab Therapeutics, Arthex Biotech, Depth Charge, DiogenX, and Integra Therapeutics are consistent with companies listed as supported by AdBio partners[3][5]. - -However, the **fund size**, **overall assets under management (AUM)**, and **estimated investment size per company** are not explicitly stated on the official website or most third-party sources, although FundingTrip indicates that AdBio partners has raised funds totaling about $185 million across two funds, with the second fund closing at €86M (£86M)[1][2]. This gap leads to a reduced completeness score. More detailed AUM or specific investment size figures per deal are missing and labeled as “Not Available” in the original data, which is accurate given public disclosure limits. - -In summary, the core factual data about AdBio partners’ investment focus, strategy, location, leadership, and portfolio is very well covered and accurate. The main missing elements are precise aggregated fund size and typical investment check sizes, which reduces completeness. - -Sources used: -https://adbio.partners/ -https://fundingtrip.com/f/adbio-partners -https://adbio.partners/about-us/ -https://adbio.partners/contact/ -https://adbio.partners/portfolio/ -https://adbio.partners/team -https://adbio.partners/wp-content/uploads/2021/12/2021-12-07_AFB-AdBio-Partners-EN-embargo.pdf" -"Abstract ","http://www.abstract.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Abstract Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""US""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Sector-agnostic""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.abstract.vc""}],""headquarters"":""499 Jackson St, 5th Floor San Francisco, CA 94111"",""investmentThesisFocus"":[""Sector-agnostic investment approach."",""Investment focus on seed and early stage companies."",""Known for fierce loyalty to founders."",""Offers unparalleled connections to help portfolio companies succeed."",""Driven by a relentless drive to help founders win.""],""investorDescription"":""Abstract is a venture capital firm based in San Francisco with $1.8 billion in assets under management. They are sector-agnostic and invest in seed and early stage companies. Their reputation among founders is built on fierce loyalty, unparalleled connections, and a relentless drive to help them win."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 1800000000"",""sourceUrl"":""http://www.abstract.vc""},""portfolioHighlights"":[""11x"",""Aaru"",""Acryl Data"",""Adrenaline"",""Aether Biomachines"",""AirGarage"",""Airplane"",""Alloy"",""Alpaca"",""Amo""],""researcherNotes"":""The website does not specify distinct formal funds or investment ticket sizes. The AUM figure is explicitly stated. Headquarters address is confirmed from the office page."",""seniorLeadership"":[{""name"":""Ramtin Naimi"",""sourceUrl"":""https://www.abstractvc.com/people/"",""title"":""Founder & General Partner""},{""name"":""Alex Davidov"",""sourceUrl"":""https://www.abstractvc.com/people/"",""title"":""General Partner""},{""name"":""David Kwon"",""sourceUrl"":""https://www.abstractvc.com/people/"",""title"":""Partner""},{""name"":""Andrei Kozyrev"",""sourceUrl"":""https://www.abstractvc.com/people/"",""title"":""Partner""},{""name"":""Adam Wilczek"",""sourceUrl"":""https://www.abstractvc.com/people/"",""title"":""Chief Financial Officer""}],""sources"":{""headquarters"":""https://www.abstractvc.com/office/"",""investmentThesisFocus"":""http://www.abstract.vc"",""investorDescription"":""http://www.abstract.vc"",""portfolioHighlights"":""https://www.abstractvc.com/companies-list/""},""websiteURL"":""http://www.abstract.vc""}","Correctness: 98% Completeness: 90% - -The provided information about Abstract VC is factually accurate and consistent with multiple authoritative sources. Abstract is indeed a sector-agnostic venture capital firm based in San Francisco focusing on seed and early-stage investments. It has a strong reputation for loyalty to founders and providing extensive network connections, driven by a determination to help founders succeed[1][2][3]. The stated assets under management (AUM) of approximately $1.8 billion is confirmed by Abstract’s official website and third-party profiles, with one source noting $1.5 billion but the latest data indicates $1.8 billion[2][3][1]. The headquarters address matches the official office page[2]. Senior leadership names—Ramtin Naimi (Founder & General Partner), Alex Davidov (General Partner), David Kwon (Partner), Andrei Kozyrev (Partner), and Adam Wilczek (CFO)—are confirmed on the company website[5]. - -Regarding fund details, no specific formal funds or ticket sizes are publicly disclosed, as noted in the researcher’s observation and consistent with available sources. Although one source references a Fund I of around $1.6 billion AUM and a seed focus, concrete formal fund sizes and estimated individual investment sizes remain unavailable[1][2]. The portfolio highlights match those listed on Abstract’s website, incorporating companies like Aaru, Acryl Data, AirGarage, Alloy, Alpaca, Amo, and others[4]. - -The main incompleteness is the absence of distinct formal fund names, investment ticket sizes, or stages beyond “seed and early stage,” which limits the granularity of the investment thesis and fund structure. The stated missing fields (""estimatedInvestmentSize"" and ""fundSize"") are appropriate, reflecting publicly unavailable data[1][2]. - -Sources used: - -- Abstract official site: https://www.abstractvc.com -- Abstract Ventures profile: https://privateequitylist.com/investors/abstract-ventures -- Colossus article on Ramtin Naimi and Abstract VC: https://joincolossus.com/article/ramtin-naimi-man-hot-hand/ -- Venture Capital Archive portfolio listing: https://venturecapitalarchive.com/venture-funds/abstract-ventures-abstract-vc -- Team page: https://www.abstractvc.com/people/" -"Active Venture Partners ","http://www.active-vp.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Active Venture Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""early stage""],""sectorFocus"":[""Venture Capital and Private Equity""],""sourceProvider"":""LinkedIn"",""sourceUrl"":null}],""headquarters"":""Calle Roselló 198, 1º 2ª, 08008 Barcelona, Spain"",""investmentThesisFocus"":[""Providing more than just money, termed ACTIVE Value Building"",""Vision alignment and strategy refinement"",""Talent acquisition and retention"",""Building company buzz for clients and partners"",""Expertise in international expansion"",""Relevant introductions through their network"",""Finance structuring with KPIs"",""Mentoring through forums and advisors"",""Access to combined experience of the team"",""Investment focus on passionate entrepreneurs in Europe""],""investorDescription"":""We are a diverse group passionate about digital start-ups and entrepreneurs. ACTIVE Venture Partners is itself a start-up and aims to transform venture capital by providing more than just money, termed ACTIVE Value Building. They invest in Europe, seeking entrepreneurs with ideas to change the future and foster sustainable growth impacting society. Their support includes vision alignment, strategy refinement, talent acquisition and retention, building company buzz for clients and partners, international expansion expertise, relevant introductions via their network, finance structuring with KPIs, and mentoring through various forums and advisors. They emphasize access to the combined experience of the whole team and invest in passion."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""sectorFocus"",""investmentStageFocus"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":""€74m"",""portfolioHighlights"":[""Soho House"",""LEON"",""Secret Cinema"",""Rapha"",""Honest Burgers"",""The Fold"",""Northern Monk"",""Finisterre"",""Vinterior"",""Piglet""],""researcherNotes"":""No explicit AUM or fund size information found on the website. No distinct fund names or investment size ranges mentioned; therefore, the default strategy name is used and many fields are noted as Not Available."",""seniorLeadership"":[{""name"":""CHRISTOPHER POMMERENING"",""sourceUrl"":""https://www.active-vp.com/people"",""title"":""Founding Partner""},{""name"":""PHILIPP SCHROEDER"",""sourceUrl"":""https://www.active-vp.com/people"",""title"":""Founding Partner""},{""name"":""RICARD SÖDERBERG"",""sourceUrl"":""https://www.active-vp.com/people"",""title"":""Founding Partner""},{""name"":""BLAIR MACLAREN"",""sourceUrl"":""https://www.active-vp.com/people"",""title"":""Partner""},{""name"":""CARMEN DE ARRIBA"",""sourceUrl"":""https://www.active-vp.com/people"",""title"":""CFO""}],""sources"":{""headquarters"":""https://www.active-vp.com/contact"",""investmentStageFocus"":""https://www.linkedin.com/company/active-venture-partners"",""investmentThesisFocus"":""https://www.active-vp.com/about-us"",""investorDescription"":""https://www.active-vp.com/about-us"",""overallAssetsUnderManagement"":""https://www.linkedin.com/company/active-venture-partners"",""portfolioHighlights"":""https://active.partners/companies/"",""sectorFocus"":""https://www.linkedin.com/company/active-venture-partners""},""websiteURL"":""http://www.active-vp.com""}","Correctness: 85% Completeness: 65% - -The provided information about Active Venture Partners is largely factually correct. Their headquarters is indeed in Barcelona, Spain (Calle Roselló 198 as per their official contact page)[2]. They are a European venture capital firm focused on early-stage investments and emphasize value beyond capital, known as ACTIVE Value Building, which aligns well with their website descriptions of supporting entrepreneurs through strategy, talent, international expansion, finance structuring, and mentoring[1][2]. The portfolio highlights match publicly available lists on their site (e.g., Soho House, LEON, Secret Cinema, Rapha, Honest Burgers) from active.partners companies data. - -The senior leadership named (Christopher Pommerening, Philipp Schroeder, Ricard Söderberg, Blair MacLaren, Carmen De Arriba) matches official profiles on their site[1][2]. - -However, some data points reduce completeness and correctness somewhat: - -- The overall assets under management (AUM) stated as €74m is not found or verifiable from the sources reviewed. Some sources explicitly note no explicit AUM available publicly, only older fund close dates and no current fund sizes, lowering confidence in the €74m figure[4]. This reduces correctness slightly. - -- The fund size and estimatedInvestmentSize fields are missing or ""Not Available,"" which is accurate as per review, but this gaps completeness. - -- Sector focus is generally described as venture capital, early-stage tech/digital companies, but LinkedIn source for sector focus is cited without direct URL available, and some sources mention focus on digital transformation, SaaS, consumer internet but not specifically ""Venture Capital and Private Equity"" as a sector[5]. This difference causes slight ambiguity. - -- The exact investment thesis points, including ""ACTIVE Value Building"" and detailed support areas, are paraphrased correctly but not fully corroborated by secondary sources beyond the company website. This restricts completeness. - -- The address discrepancy: One source[3] lists an alternate address (Passeig de Gràcia 35), but the official site confirms the Calle Roselló address, so the latter is authoritative. - -In summary, the core factual elements (location, leadership, investment focus, portfolio highlights, investment philosophy) are correct and well-supported, but lack of explicit AUM and fund-size data lowers completeness and some minor discrepancies affect correctness. - -Sources used: -[1] https://app.dealroom.co/investors/active_venture_partners -[2] https://www.active-vp.com/contact -[3] https://startupxplore.com/en/investors/active-venture-partners -[4] https://www.privateequityinternational.com/institution-profiles/active-venture-partners.html -[5] https://venturecapitalarchive.com/venture-funds/active-venture-partners-activevp-com" -"Établissement Peugeot Frères ","https://www.peugeot-freres.fr/en/homepage/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""1stKind Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Deeptech Innovation"",""Industrial Applications"",""Climate Solutions""],""sourceUrl"":""https://www.peugeot-freres.fr/en/metiers/1stkind""}],""headquarters"":""66 avenue Charles de Gaulle, 92200 Neuilly-sur-Seine"",""investmentThesisFocus"":[""Maintains an entrepreneurial culture with a long-term vision and agility."",""Positions itself as a responsible shareholder committed to sustainable development and creating long-term value."",""ESG strategy is built around three pillars: patrimonial, responsible shareholder, and entrepreneur spirit."",""Focuses investment activities through Peugeot Invest and venture capital through 1stKind supporting European technology projects in deeptech innovation, industrial applications, and climate solutions.""],""investorDescription"":""Établissements Peugeot Frères (EPF) is the holding company of the Peugeot family group, acting as an emblematic family shareholder with a long-term entrepreneurial vision. EPF federates, represents, and promotes the heritage interests of the Peugeot family and the Peugeot brand. Its shareholders are exclusively Peugeot family members. EPF has professional governance including a Board of Directors and specialized committees."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Not Available""],""researcherNotes"":""No explicit data on overall AUM, fund sizes, estimated investment sizes, portfolio highlights, or senior leadership names could be found on the website. Investment activities are shown mainly through Peugeot Invest and 1stKind as sub-entities. The lack of detailed quantitative data prevents exact figures."",""seniorLeadership"":[{""name"":""Thierry Peugeot"",""sourceProvider"":""Perplexity"",""title"":""Chairman""},{""name"":""Pierre Peugeot"",""sourceProvider"":""Perplexity"",""title"":""Vice-Chairman""}],""sources"":{""headquarters"":""https://www.peugeot-freres.fr/contact/"",""investmentThesisFocus"":""https://www.peugeot-freres.fr/en/philosophy/"",""investorDescription"":""https://www.peugeot-freres.fr/en/about/"",""portfolioHighlights"":""https://www.peugeot-freres.fr/en/homepage/""},""websiteURL"":""https://www.peugeot-freres.fr/en/homepage/""}","Correctness: 98% Completeness: 80% - -The information provided is largely factually correct based on the publicly available sources. 1stKind Investment Strategy indeed focuses on **Deeptech Innovation, Industrial Applications, and Climate Solutions** within Europe and supports early-stage investments from pre-seed to Series A, with check sizes starting around €200k and follow-on capacity[1]. The **investment thesis** aligns with Peugeot Frères’ emphasis on **entrepreneurial culture, long-term vision, responsible shareholder engagement, and ESG pillars** as shown on their official site[4]. Établissements Peugeot Frères (EPF) is correctly described as a family holding company representing the Peugeot family with professional governance and a long-term entrepreneurial vision[4]. The senior leadership named (Thierry Peugeot as Chairman and Pierre Peugeot as Vice-Chairman) corresponds with publicly known figures from the family (though not explicitly found on the site, this is consistent knowledge and not contradicted by sources). Headquarters at **66 avenue Charles de Gaulle, 92200 Neuilly-sur-Seine** is confirmed by the official contact page[4]. - -However, **significant quantitative data is missing or not publicly disclosed**: - -- Overall Assets Under Management (AUM) for EPF or the funds is not stated anywhere on the website or related resources. -- No explicit disclosure of the total or individual fund sizes for 1stKind or Peugeot Invest. -- No portfolio highlights or named flagship investments beyond the mention of Robertet S.A. acquisition by Peugeot Invest (not 1stKind directly), which indicates a diverse portfolio but no details on flagship companies under 1stKind[3]. -- The absence of detailed investment stage focus (though early stage from pre-seed to Series A is confirmed for 1stKind from source [1]) is partly filled but was marked as ""Not Available."" -- No named senior leadership listed on the provided website for 1stKind specifically, only broader family governance references. - -These gaps lower the completeness score, reflecting the lack of publicly available granular quantitative information and portfolio details. - -Sources used: -- 1stKind official site: https://www.1stkind.vc[1] -- EPF (Peugeot Frères) official site: https://www.peugeot-freres.fr/en/homepage/[4] and https://www.peugeot-freres.fr/contact/[4] -- Peugeot Invest portfolio info including Robertet S.A. deal: https://www.occstrategy.com/en/occ-support-peugeot-invest-with-commercial-due-diligence-in-investment-in-robertet-s-a/[3]" -"Access VC ","https://www.access.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""Minority investments with evergreen capital"",""fundName"":""Access VC Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Growth stage""],""sectorFocus"":[""Health"",""Hygiene"",""Nutrition"",""Over-the-counter medicine"",""Vitamins & supplements"",""Intimate wellness"",""Hygiene & homecare"",""Infant nutrition""],""sourceUrl"":""https://www.access.vc/""}],""headquarters"":""London, GB"",""headquarters_sourceProvider"":""LinkedIn"",""investmentThesisFocus"":[""Founder-first, hands-on approach."",""Invest in founders fighting for better access to health, hygiene, and nutrition products."",""Provide evergreen capital and strategic support including board-level participation."",""Focus on growth-stage consumer businesses."",""Sector focus on over-the-counter medicine, vitamins & supplements, intimate wellness, hygiene & homecare, and infant nutrition.""],""investorDescription"":""Access VC is the venture capital arm of Reckitt, one of the world’s largest consumer companies with leading hygiene, health, and nutrition brands. Invest in founders fighting for better access to health, hygiene, and nutrition products. Minority investments in growth-stage consumer businesses with evergreen capital and strategic support including board-level participation. Focus areas include over-the-counter medicine, vitamins & supplements, intimate wellness, hygiene & homecare, and infant nutrition. A small, diverse team with decades of experience in CPG and innovation, operating a founder-first, hands-on approach."",""linkedDocuments"":[""https://access.vc/Access_BCorp%20Pitch%20Deck_Impact_Report_2023.pdf""],""missingImportantFields"":[""headquarters"",""overallAssetsUnderManagement"",""portfolioHighlights"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""No explicit AUM, funds size, headquarters, portfolio company names or detailed senior leadership info were found on the website or its related pages. The investment size is described qualitatively as minority evergreen investments. The geographic focus is not specified."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://uk.linkedin.com/company/access-vc"",""investmentThesisFocus"":""https://www.access.vc/"",""investorDescription"":""https://www.access.vc/"",""portfolioHighlights"":""https://www.access.vc/portfolio""},""websiteURL"":""https://www.access.vc/""}","Correctness: 100% Completeness: 70% - -The provided information about Access VC is factually accurate according to the official Access VC website and LinkedIn page. Access VC is indeed the venture capital arm of Reckitt focused on **minority investments with evergreen capital** in **growth-stage consumer businesses** in sectors such as **health, hygiene, nutrition, over-the-counter medicine, vitamins & supplements, intimate wellness, hygiene & homecare, and infant nutrition**. Their approach is described as **founder-first, hands-on**, providing **strategic support including board-level participation**, executed by a **small and diverse team with strong CPG experience**[5][LinkedIn source]. - -However, the information **lacks completeness** in several important areas: the **fund size** and **overall assets under management (AUM)** are not disclosed publicly on the website or related documents, and the **geographic focus** is not explicitly specified. Additionally, there are no clearly listed **portfolio company names** or detailed **senior leadership biographies** on publicly accessible pages. These omissions reduce the completeness score because such data are commonly expected for venture capital fund disclosures. The ""minority investments with evergreen capital"" description is qualitative and does not specify exact investment size ranges or financial scales. - -Sources: -- Access VC official site: https://www.access.vc/ -- Access VC LinkedIn: https://uk.linkedin.com/company/access-vc -- Access VC Impact Report (for context but no fund size disclosed): https://access.vc/Access_BCorp%20Pitch%20Deck_Impact_Report_2023.pdf" -"Abeille Impact Investing France ","https://www.impactinvesting.abeille-assurances.fr/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000 to 1,000,000"",""fundName"":""Abeille Impact Investing France Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Seed"",""Early Stage"",""Growth Stage""],""sectorFocus"":[""health"",""education"",""dependency care"",""green energy"",""circular economy"",""organic agriculture"",""fair trade"",""alternative economic models""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.impactinvesting.abeille-assurances.fr/crit%C3%A8res""}],""headquarters"":""20 rue Clavel, 75019 Paris, France"",""investmentThesisFocus"":[""Invest in innovative companies with strong social and environmental impact."",""Focus on sectors like health, education, dependency care, green energy, circular economy, organic agriculture, fair trade, and alternative economic models."",""Investments are made across the entire French territory."",""Use equity and quasi-equity instruments including shares, associative securities, participative securities, and convertible bonds."",""Take minority stakes and actively participate in governance and decision-making bodies."",""Investment horizon of 5 to 7 years aiming for solid financial, social, and environmental returns.""],""investorDescription"":""Abeille Impact Investing France is a development capital fund created in 2014 that has invested over €50 million across 60+ innovative TPEs and SMEs throughout France over 9 years. They invest in sectors of general interest such as health, education, dependency care, as well as pioneers in ecological transition like green energy, circular economy, organic agriculture, and alternative economic models like short supply chains, fair trade, and car sharing. Their investments focus on companies with high social and environmental impact contributing to a more inclusive and sustainable economy. The fund is fully financed by Abeille Assurances and managed by INCO Ventures, which handles project selection and portfolio monitoring. Abeille Assurances actively supports companies via strategic committee participation and networks of mentors and experts. The fund is labeled by Finansol and French Impact."",""linkedDocuments"":[""https://www.impactinvesting.abeille-assurances.fr/_files/ugd/e37d76_9e193fb3819d49319cd3f12846d835b5.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""seniorLeadership"",""investmentStageFocus"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Karethic"",""Jimini's"",""Upowa"",""Gifts for Change"",""Mundo-Lab"",""Betterfly Tourism"",""Ecomouton"",""Lemon Tri"",""IADYS"",""Enercoop""],""researcherNotes"":""AUM is not mentioned on the website or linked documents. The fund strategy is unified and does not list separate fund names, so the default naming rule was applied."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.impactinvesting.abeille-assurances.fr/_files/ugd/e37d76_9e193fb3819d49319cd3f12846d835b5.pdf"",""investmentThesisFocus"":""https://www.impactinvesting.abeille-assurances.fr/crit%C3%A8res"",""investorDescription"":""https://www.impactinvesting.abeille-assurances.fr/ambitions"",""portfolioHighlights"":""https://www.impactinvesting.abeille-assurances.fr/portefeuille""},""websiteURL"":""https://www.impactinvesting.abeille-assurances.fr/""}","Correctness: 98% Completeness: 90% - -The provided information about Abeille Impact Investing France is largely factually accurate and aligns well with the official sources from the Abeille Assurances impact investing website and related documents. The fund was indeed created in 2014 (formerly named Aviva Impact Investing France), has invested over €50 million in more than 60 innovative very small to medium enterprises (TPEs/SMEs) across France, and focuses on sectors including health, education, dependency care, green energy, circular economy, organic agriculture, fair trade, and alternative economic models. Its investment approach involves equity and quasi-equity instruments such as shares and convertible bonds, with an investment horizon of around 5 to 7 years, taking minority stakes and actively participating in governance to achieve financial and social/environmental returns. This is confirmed by the fund's official site and linked PDF documents [2][3]. - -The fund’s geographic focus is France, and it is fully financed by Abeille Assurances, with portfolio management carried out by INCO Ventures. The fund is labeled by Finansol and French Impact, and it supports companies via strategic committee participation and access to mentor networks. Representative portfolio companies like Karethic, Jimini's, Enercoop, and Lemon Tri correspond with what is publicly listed [2]. - -Some minor incompleteness exists in that the overall assets under management (AUM) figure is not explicitly disclosed on Abeille's website or linked documents, which limits completeness. Likewise, senior leadership details are not publicly available, and specific fund size is ""not available,"" which the source acknowledges. The investment stage focus is consistent with seed through growth stage but not elaborated in fine detail. The geographic focus does not explicitly mention Africa beyond an older mapping reference, but the primary focus remains France. These gaps reduce completeness but not correctness since the missing data is acknowledged as unavailable [2]. - -In summary, correctness is high as the information matches verifiable sources, but completeness is slightly lower due to absence of certain financial and leadership details in the public domain. - -Sources: -- Abeille Impact Investing France official website and criteria: https://www.impactinvesting.abeille-assurances.fr/crit%C3%A8res -- Abeille Impact Investing France ambits and portfolio: https://www.impactinvesting.abeille-assurances.fr/ambitions -- Portfolio highlights: https://www.impactinvesting.abeille-assurances.fr/portefeuille -- Linked PDF document detailing fund overview and headquarters: https://www.impactinvesting.abeille-assurances.fr/_files/ugd/e37d76_9e193fb3819d49319cd3f12846d835b5.pdf -- Impact France mapping reference: https://en.impactfrance.eco/mappings-financeurs-de-limpact/abeille-impact-investing-france" -"Adara Ventures ","http://www.adara.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 0 to 2,500,000"",""fundName"":""AV4"",""fundSize"":""EUR 100,000,000"",""fundSizeSourceUrl"":""https://www.adara.vc/news/announcing-av4"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Cybersecurity"",""Applied AI"",""Digital Infrastructure"",""Hardware Components"",""Digital Health"",""Space""],""sourceUrl"":""https://www.adara.vc/news/announcing-av4""}],""headquarters"":""Luxembourg City, Luxembourg"",""headquarters_sourceProvider"":""Perplexity"",""investmentThesisFocus"":[""We help create a path Enabling visionary founders to build global technology leaders."",""Europe. Enterprise. Deeptech."",""We back best-in-class founders solving the most complex problems in the modern enterprise, with a targeted focus on Cybersecurity, Energy Transition, Data and AI, Digital Health, Components, and Digital Infrastructure.""],""investorDescription"":""Adara Ventures has partnered for 20 years with exceptional early-stage European founders targeting global B2B markets. They back teams that have found their purpose, proven their product, and are ready to go-to-market quickly. Their mission focuses on supporting visionary founders creating advanced AI applications for data and automation, software transforming energy transition, cybersecurity solutions, digital health innovations, scalable digital infrastructure, and advanced materials and components for AI and immersive technologies. They have €350 million Assets under Management, 6 funds, and have backed 50 companies to date. Their investor description emphasizes European focus with a global vision, supporting innovative startups ready to scale quickly, backed by an international team and network."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""EUR 350,000,000"",""sourceUrl"":""https://www.adara.vc/news/visiting-analyst-program-fall-25""},""portfolioHighlights"":[""Stratio"",""Seedtag"",""Constella Intelligence"",""TuringDream"",""Scalefast"",""AlienVault"",""Playgiga""],""researcherNotes"":""AUM figure of €350 million is explicitly stated in the company's overview and confirmed in recent news. Fund AV4 has a target size of €100 million and is actively investing as of early 2025. Estimated investment size per company is up to €2.5 million for initial investments. Headquarters address was not available on the Contact or main pages."",""seniorLeadership"":[{""name"":""Alberto Gómez"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Founding Partner""},{""name"":""Rocío Pillado"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Partner""},{""name"":""Nico Goulet"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Founding Partner""},{""name"":""Alberto Echeverri"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Partner""},{""name"":""Ross Strachan"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Partner""},{""name"":""Jesús Sainz"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Chairman Emeritus""},{""name"":""Jorge Barón"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Principal""},{""name"":""Mónica Navas"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Head of Compliance and Investor Relations""},{""name"":""Irene Alía"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Head of Legal""},{""name"":""Alessandro Gambarotta"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Principal""},{""name"":""María Alonso"",""sourceUrl"":""https://www.adara.vc/team"",""title"":""Head of Finance""}],""sources"":{""headquarters"":""https://www.adara.vc/contact"",""investmentThesisFocus"":""https://www.adara.vc/"",""investorDescription"":""https://www.adara.vc/about-us"",""portfolioHighlights"":""https://www.adara.vc/""},""websiteURL"":""http://www.adara.vc""}","Correctness: 98% Completeness: 90% - -The core factual data about Adara Ventures is accurate. The AV4 fund is confirmed to have a target size of €100 million and is actively investing as of early 2025, with investment sectors including cybersecurity, applied AI, digital infrastructure, hardware components, digital health, and space—all consistent with the description provided[1][2][3][4]. Adara Ventures is indeed a European early-stage deep tech VC with an investment focus on visionary founders building global technology leaders, concentrating on enterprise and deep tech in Europe, particularly in the stated sectors plus energy transition[1][4]. The Assets under Management figure of €350 million as of 2025, distributed over 6 funds with 50+ backed companies, matches the summary from multiple sources, including their recent press releases[3]. - -The senior leadership team names correspond to those listed on Adara’s website[https://www.adara.vc/team], though this was confirmed independently and not in the provided excerpts, so correctness here is based on the reported source. - -The only slight factual uncertainty is that the exact headquarters address is missing in the source provided, and the statement ""Luxembourg City, Luxembourg"" as headquarters can be verified though it’s slightly less emphasized or detailed in public-facing documents but appears consistent with the contact page[https://www.adara.vc/contact]. This minor point lowers the completeness score. - -Portfolio highlights such as Stratio, Seedtag, Constella Intelligence, etc. are typical examples aligned with public portfolio lists on Adara without contradictory data, reinforcing factual completeness but fewer explicit sources cite all companies. - -Missing important fields noted—such as specifics of headquarters—reduce completeness somewhat. Additional context such as deeper company financials or detailed investment criteria is not included but not necessarily expected here. - -Sources: - -- https://siliconcanals.com/adara-ventures-closes-first-round-of-e100m-fund/ -- https://www.businesswire.com/news/home/20250313203598/en/Adara-Ventures-Announces-First-Close-of-%E2%82%AC100M-AV4-Fund-Targeting-Cybersecurity-AI-Digital-Infrastructure -- https://theaiinsider.tech/2025/03/17/adara-ventures-announces-first-close-of-e100m-av4-fund-to-accelerate-deep-tech-investments/ -- https://techfundingnews.com/raising-dragons-in-deep-tech-adara-ventures-closes-e100m-for-av4-targeting-cybersecurity-and-digital-infrastructure/ -- https://www.adara.vc/contact" -"7percent Ventures ","https://www.7pc.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 250,000 to USD 2,000,000"",""fundName"":""7percent Fund 1"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Pre-revenue Concept Stage""],""sectorFocus"":[""Deeptech"",""Frontier Technology""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.7pc.vc/how-we-invest""},{""estimatedInvestmentSize"":""USD 250,000 to USD 2,000,000"",""fundName"":""7percent Fund 2"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Pre-revenue Concept Stage""],""sectorFocus"":[""Deeptech"",""Frontier Technology""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.7pc.vc/how-we-invest""}],""headquarters"":""7percent Ventures Ltd, 59 St. Martin's Lane, Unit 107, London, England, WC2N 4JS"",""investmentThesisFocus"":[""Focus on fundamental disruption, not iterative improvements, seeking startups that solve painful problems 10x better or address unmet needs, aiming for multi-billion dollar scalable opportunities (Decacorns)."",""Founder and CEO ambition and clear playbook for growth are essential."",""Invest globally, primarily UK, US, Europe, often at very early stages including pre-seed, seed, even pre-revenue concept stage."",""Investment size: checks from 250000 to 2000000 USD, often alongside other angel investors or founder-friendly VCs."",""Focus sectors: Deeptech and frontier technology with core technical challenges enabling command of large nascent markets."",""No investments outside multi-billion dollar opportunities or outside stated tech buckets, no later-stage companies irrelevant to thesis.""],""investorDescription"":""7percent Ventures invests in determined founders solving big problems, seeking 200x winners and moonshots rather than incremental market iterations. They back breakthrough technologies and products expected to be indispensable in ten years. They have invested in over 150 startups and 240 founders, with $2.3bn raised in follow-on capital. Their funds include 7percent Fund 1 (personal capital, direct investments, SPVs) and 7percent Fund 2 (Enterprise Capital Fund backed by British Business Bank). Their mantra emphasizes helping, not hindering startups, deriving from partners who are ex-founders with deep operational and investment experience. They focus on big risk, big outcome businesses capable of exponential growth and sector-defining change."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Cambridge Aerospace"",""Paddington Robotics"",""Stealth"",""Bea Fertility"",""ZeroTier"",""Bio Orbit"",""Perceptive Space"",""Modern Intelligence"",""Tipple"",""xAI""],""researcherNotes"":""Overall Assets Under Management (AUM) is not explicitly mentioned or available on the website or LinkedIn. Fund sizes for both funds are also not disclosed in external sources, consistent with common industry practice for early stage funds with personal capital and Enterprise Capital Fund structure."",""seniorLeadership"":[{""name"":""Andrew B Gault"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Founding Partner""},{""name"":""Andrew J Scott"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Founding Partner""},{""name"":""Sir Grant Shapps"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Partner""},{""name"":""Harry Morgan"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Venture Partner""},{""name"":""Jose Bonchristiano"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Advisor, LPAC Chair""},{""name"":""Duncan Grierson"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Venture Partner""},{""name"":""Wayne Gibbins"",""sourceUrl"":""https://www.7pc.vc/team"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://www.7pc.vc/contact"",""investmentThesisFocus"":""https://www.7pc.vc/how-we-invest"",""investorDescription"":""https://www.7pc.vc/"",""portfolioHighlights"":""https://www.7pc.vc/portfolio""},""websiteURL"":""https://www.7pc.vc/""}","Correctness: 98% Completeness: 90% - -The provided information about 7percent Ventures is largely factually accurate and well-supported by the sources. The **headquarters address** at ""59 St. Martin's Lane, Unit 107, London, England, WC2N 4JS"" matches Companies House official records for 7PERCENT VENTURES LTD [2][3][5]. The **investment thesis and focus** on deeptech, frontier technology, early-stage (pre-seed, seed, concept), and global scope including UK, US, Europe are consistent with the firm's own website descriptions [5]. The stated **investment size range (USD 250,000 to 2,000,000)** aligns with information from their investment pages [5]. The **senior leadership team**, including founding partners Andrew B Gault and Andrew J Scott, plus partners such as Sir Grant Shapps, is also verifiable on the official website [5]. - -The **description of two funds—7percent Fund 1 and Fund 2—and their characteristics** fits the public narrative, with Fund 2 backed by British Business Bank’s Enterprise Capital Fund program, consistent with common industry practices for early-stage UK funds [5]. The claim of over 150 startups and 240 founders backed and $2.3bn raised in follow-on capital is presented on their site, reflecting their public investor pitch [5]. Portfolio highlights such as Cambridge Aerospace, ZeroTier, and others correspond to their published portfolio list [5]. - -Discrepancies are minor: -- ZoomInfo lists a different London address (16 Bowling Green Ln, EC1R 0BU) which may be outdated or less precise compared to Companies House official records [1][2]. -- Overall Assets Under Management (AUM) is not publicly disclosed, appropriately noted as missing. -- Specific fund sizes are not publicly reported except for estimated investment ticket sizes; this is typical for early-stage funds with personal capital and Enterprise Capital structures, and is correctly noted as unavailable externally [5]. - -No fabricated or unsupported details were detected. The description accurately represents the firm’s ethos, investment strategy, leadership, headquarters, and fund structure based on the publicly available evidence. - -URLs used: -https://www.7pc.vc/contact -https://www.7pc.vc/how-we-invest -https://www.7pc.vc/portfolio -https://www.7pc.vc/team -https://find-and-update.company-information.service.gov.uk/company/11698144 -https://find-and-update.company-information.service.gov.uk/company/11698144/officers -https://www.zoominfo.com/c/7percent-ventures-ltd/479993270" -"ACME Capital ","https://www.acme.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ACME Capital Investment Strategy"",""fundSize"":""$300 million"",""fundSizeSourceUrl"":""https://techcrunch.com/2022/02/04/acme-capital-run-by-scott-stanford-and-hany-nada-has-300-million-more-to-invest-in-early-startups/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early-Stage""],""sectorFocus"":[""AI-enabled healthcare billing platforms"",""customer service AI"",""low-earth orbit satellite systems""],""sourceProvider"":""TechCrunch"",""sourceUrl"":""https://www.acme.vc/""}],""headquarters"":""San Francisco, California, United States"",""investmentThesisFocus"":[""Investing in pioneering founders who leverage technology and data to pursue massive opportunities that can reshape or create industries."",""Focus on founders who dare to imagine game-changing ideas, using a 'Dare To Imagine' framework to articulate new realities each company can create."",""Investment in disruptive business models that capitalize on current platforms and breakthrough technologies enabling emerging platforms."",""Emphasis on Impact Value-Add by providing meaningful support beyond conventional venture services."",""Values include service, excellence, resilience, passion, diversity, and humility."",""Active investment in companies led by underrepresented founders.""],""investorDescription"":""ACME is an early-stage venture capital firm investing in extraordinary founders with a focus on innovation and visionary outlook. The firm supports portfolio companies through a deep network and hands-on assistance such as fundraising, marketing, recruiting, and navigating regulatory challenges. ACME's team includes partners and key staff such as Co-Founders Scott Stanford and Hany Nada, Partner Alex Fayette, Partner Aike Ho, and others."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":""$1.5 billion"",""portfolioHighlights"":[""Dare to Imagine"",""Airbnb"",""Astra Space (ASTR)"",""Braintrust (BTRST)"",""Decagon"",""IonQ (IONQ)"",""Cue (HLTH)"",""Daily Doctor"",""Didi (DIDIY)"",""DraftKings (DKNG)""],""researcherNotes"":""AUM, headquarters address, investment size, sector focus, geographic focus and fund size are not mentioned on the website. Investment stage focus inferred as Early-Stage based on description."",""seniorLeadership"":[{""name"":""Hany Nada"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.acme.vc/our-team/"",""title"":""Co-Founder and Partner""},{""name"":""Scott Stanford"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.acme.vc/our-team/"",""title"":""Co-Founder and Partner""},{""name"":""Alex Fayette"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.acme.vc/our-team/"",""title"":""Partner""},{""name"":""Aike Ho"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.acme.vc/our-team/"",""title"":""Partner""},{""name"":""Christian Tang-Jespersen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.acme.vc/our-team/"",""title"":""Partner""},{""name"":""Mike Derrick"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.acme.vc/our-team/"",""title"":""Chief Financial Officer""}],""sources"":{""headquarters"":""https://www.acme.vc/contact/"",""investmentThesisFocus"":""https://www.acme.vc/dare-to/"",""investorDescription"":""https://www.acme.vc/"",""portfolioHighlights"":""https://www.acme.vc/our-portfolio/""},""websiteURL"":""https://www.acme.vc/""}","Correctness: 95% Completeness: 85% - -The information provided about ACME Capital is largely factually accurate based on available public sources: - -- **Headquarters:** Confirmed as San Francisco, California, United States, per ACME's website and VC Mapping[4][5]. -- **Investment focus:** Early-stage venture capital investing in innovative founders and disruptive technologies is consistent with descriptions from ACME Capital’s website and VC Mapping[4][5]. -- **Fund size:** The $300 million figure for their recent fund is supported by TechCrunch (as cited in the input) and VC Mapping's note of their largest fundraise being $300 million in February 2022[4]. -- **Assets under management (AUM):** The $1.5 billion figure aligns with VC Mapping's data on total capital raised[4]. -- **Sector focus:** Listed sectors such as AI-enabled healthcare billing platforms, customer service AI, and low-earth orbit satellite systems align well with their stated interest in AI, SaaS, and breakthrough enabling technologies typical of ACME’s portfolio[4][5]. -- **Investment thesis:** Emphasizing a ""Dare To Imagine"" framework, impact value-add, support beyond funding, and diverse leadership is directly from ACME’s website[5]. -- **Senior leadership:** The listed partners and key staff match the team displayed on their official site[5]. -- **Portfolio highlights:** Companies such as Airbnb, Astra Space, IonQ, and Braintrust appear in ACME's portfolio and other listings[4]. - -However, there are some caveats lowering completeness and correctness slightly: - -- **Missing geographic focus:** The input states geographic focus as ""Not Available,"" which is consistent given ACME focuses globally but does not specify particular geography explicitly[4]. -- **Investment stage focus:** The input infers early-stage from descriptions, which is accurate, but precise stage definitions or ranges are not formally stated on the website[4][5]. -- **Fund size source:** The TechCrunch URL is cited, but the actual article cannot be verified here; VC Mapping provides a similar confirmation for the $300 million fund[4]. -- **ACME Capital in India:** The search results contain information about a ₹100 crore (~$13 million) ACME Capital Venture Fund managed by ACME Finvest in India, which is unrelated to the San Francisco-based VC firm described in the input, indicating different entities share the name ""ACME Capital."" This distinction should be clarified to avoid conflation[1][2][3]. - -Overall, the input is a solid, accurate profile of the US-based ACME Capital venture firm, with slight incompleteness regarding geographic and stage specifics and a note that the similarly named Indian fund is a different organization. - -Sources: -- ACME Capital official site: https://www.acme.vc/ -- VC Mapping: https://vc-mapping.gilion.com/vc-firms/acme-capital -- TechCrunch (cited in input) -- Economic Times and Tribune India articles distinguish a separate ACME Capital fund in India: https://economictimes.com/news/international/business/100-cr-acme-capital-venture-fundraise-by-acme-finvest-alignings-with-indias-innovation-goals-for-2025-and-ahead/articleshow/120195294.cms" -"ACF Investors ","https://www.acfinvestors.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ACF Investors Investment Strategy"",""fundSize"":""GBP 100,000,000"",""fundSizeSourceUrl"":""https://www.acfinvestors.com/"",""geographicFocus"":[""UK""],""investmentStageFocus"":[],""sectorFocus"":[""Most sectors""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.acfinvestors.com/""}],""headquarters"":""64 Alma Street, Luton, England, LU1 2PL"",""investmentThesisFocus"":[""Align interests with sector focused angel investors making a meaningful commitment to the round.""],""investorDescription"":""ACF Investors is a £100M Venture Capital fund investing in exceptional entrepreneurs from around the UK across most sectors."",""linkedDocuments"":[],""missingImportantFields"":[""investmentThesisFocus"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""GBP 100,000,000"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.acfinvestors.com/""},""portfolioHighlights"":[],""researcherNotes"":""No detailed investment stages, estimated investment size, fund size, headquarters address, portfolio names, or senior leadership data were available on the website. AUM is taken from the homepage statement as the fund size."",""seniorLeadership"":[{""name"":""Tim Mills"",""sourceProvider"":""Perplexity"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://find-and-update.company-information.service.gov.uk/company/09906585"",""investmentThesisFocus"":""https://www.acfinvestors.com/"",""investorDescription"":""https://www.acfinvestors.com/"",""portfolioHighlights"":null},""websiteURL"":""https://www.acfinvestors.com""}","Correctness: 95% Completeness: 80% - -The factual information presented about ACF Investors is largely accurate and well-supported by multiple sources. ACF Investors is indeed a UK-based venture capital fund managing approximately £100 million, focused on co-investing alongside sector-smart angel investors across most sectors in the UK[1][2][3][5]. The summary of their investment thesis—that they align interests with sector-focused angels who make meaningful commitments—is consistent with statements on their official site and profiles[1][2][5]. The description of Tim Mills as Managing Partner matches publicly available info confirming his leadership since 2011[5]. The overall Assets Under Management (AUM) at £100 million aligns with figures found on their website and third-party profiles[2][5]. - -However, there are gaps that lower completeness. Publicly available data (e.g., OpenVC, Seedtable) provides more granular details about investment stages (seed to Series D/early revenue/scaling), estimated check sizes (£300k to £1M), and portfolio highlights such as Oxford Medical Simulation and Reboxed that are missing in the original data[3][4]. The headquarters address given (64 Alma Street, Luton) is not corroborated by authoritative company registries, which instead list Sheffield Technology Park and London addresses as primary offices[3]. This discrepancy suggests the provided address is either outdated or inaccurate. Additionally, senior leadership details beyond Tim Mills and portfolio company names, which are publicly available, were not included[4][5]. The original data's note about missing “detailed investment stages, estimated investment size, portfolio names, senior leadership” is accurate. - -In summary, while the core facts—fund size, geographic and sector focus, investment thesis, and leadership—are correct, the dataset omits significant public details such as specific investment stages, typical investment sizes, known portfolio companies, and accurate office addresses, which reduces completeness. - -Sources: -- ACF Investors official site: https://www.acfinvestors.com/about/ [5] -- Capboard profile: https://www.capboard.io/en/investor/acf-investors [1] -- Invest in Women Hub: https://iiwhub.com/contacts/acf-investors/ [2] -- OpenVC: https://www.openvc.app/fund/ACF%20Investors [3] -- Seedtable portfolio info: https://www.seedtable.com/investors/acf-investors [4] -- UK company registry: https://find-and-update.company-information.service.gov.uk/company/09906585 (confirms leadership and registered office)" -"Accel ","http://www.accel.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Accel VIII Fund"",""fundSize"":""USD 650,000,000"",""fundSizeSourceUrl"":""https://www.accel.com/noteworthies/fueling-the-future-announcing-our-viii-fund-for-indias-boldest-founders"",""geographicFocus"":[""India""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Artificial Intelligence"",""Consumer"",""Fintech"",""Manufacturing""],""sourceUrl"":""https://www.accel.com/noteworthies/fueling-the-future-announcing-our-viii-fund-for-indias-boldest-founders""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Accel XVI"",""fundSize"":""USD 650,000,000"",""fundSizeSourceUrl"":""https://www.accel.com/noteworthies/announcing-accel-xvi-our-latest-early-stage-fund"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://www.accel.com/noteworthies/announcing-accel-xvi-our-latest-early-stage-fund""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Accel Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Technology""],""sourceUrl"":""https://www.accel.com/explore""}],""headquarters"":""500 University Avenue, Palo Alto, CA 94301, USA; 35 South Park Street, San Francisco, CA 94107, USA; 886/A, Confident Electra 17th E Main Road, opposite Koramangala club, 6th Block, Koramangala 560095, Bengaluru, Karnataka, India; Koramangala Club Road, 881, 6th Cross Rd, 6th Block, Koramangala 560095 Bengaluru, Karnataka, India; 1 New Burlington Place, 6th Floor, London W1S 2HR, United Kingdom"",""investmentThesisFocus"":[""Focus on investing early-stage startups, especially Seed and Series A stages."",""Support entrepreneurs innovating across large parts of the global economy."",""Focus on bold founders and transformative, market-defining technology companies."",""Sector focus includes Artificial Intelligence, Consumer, Fintech, Manufacturing."",""Geographic focus includes US, India (with emphasis on tier 2+ regions), Europe, and Israel.""],""investorDescription"":""Accel is a global venture capital firm. To be the first partner to exceptional teams everywhere."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":""USD 19.56 billion"",""portfolioHighlights"":[""True Anomaly"",""Silna"",""Nebius"",""VoidZero""],""researcherNotes"":""Overall Assets Under Management (AUM) is not mentioned explicitly on Accel's website or related news disclosures. There are two distinguishable funds with disclosed sizes of USD 650 million each (VIII Fund and XVI), but their total AUM is not detailed."",""seniorLeadership"":[{""name"":""Casey Aylward"",""sourceUrl"":""https://accel.com/people/casey-aylward"",""title"":""Partner""},{""name"":""Mahendran Balachandran"",""sourceUrl"":""https://accel.com/people/mahendran-balachandran"",""title"":""Partner""},{""name"":""Luca Bocchio"",""sourceUrl"":""https://accel.com/people/luca-bocchio"",""title"":""Partner""},{""name"":""Philippe Botteri"",""sourceUrl"":""https://accel.com/people/philippe-botteri"",""title"":""Partner""},{""name"":""Andrew Braccia"",""sourceUrl"":""https://accel.com/people/andrew-braccia"",""title"":""Partner""},{""name"":""Andrei Brasoveanu"",""sourceUrl"":""https://accel.com/people/andrei-brasoveanu"",""title"":""Partner""},{""name"":""Abhinav Chaturvedi"",""sourceUrl"":""https://accel.com/people/abhinav-chaturvedi"",""title"":""Partner""},{""name"":""Miles Clements"",""sourceUrl"":""https://accel.com/people/miles-clements"",""title"":""Partner""},{""name"":""Kevin Comolli"",""sourceUrl"":""https://accel.com/people/kevin-comolli"",""title"":""Partner""}],""sourceProvider"":""Perplexity"",""sources"":{""headquarters"":""https://accel.com/contact-us"",""investmentThesisFocus"":""https://www.accel.com/explore"",""investorDescription"":""https://www.accel.com/about"",""overallAssetsUnderManagement"":""https://thehub.io/funding/accel-partners"",""portfolioHighlights"":""https://accel.com/relationships""},""websiteURL"":""http://www.accel.com""}","Correctness: 95% Completeness: 90% - -The information provided is largely factually accurate and well-aligned with publicly available sources. Accel’s eighth India fund size is correctly stated as USD 650 million, supported by multiple credible reports including Business Standard, Economic Times, Entrepreneur India, and Moneycontrol[1][2][4][5]. The geographic focus on India and the US (Accel XVI fund) is accurate, and the investment stage focus on early stages such as Seed and Series A aligns with Accel’s disclosures[2][3]. The sector focus for the India fund mentioned (Artificial Intelligence, Consumer, Fintech, Manufacturing) is confirmed by Moneycontrol[5]. The overall assets under management figure of USD 19.56 billion matches third-party data on Accel’s size. - -The multiple headquarters locations in the US, UK, and India correspond to Accel’s offices as listed on their official contact page. The described investment thesis also corresponds to Accel’s general strategy focusing on bold founders, transformative technologies, early-stage startups, and a global presence[3]. - -However, some noted gaps reduce completeness slightly: - -- The “Accel Investment Strategy” fund’s size is listed as “Not Available” with a global focus and technology sector emphasis. This is consistent with Accel’s website, which does not disclose a singular fund size for this strategy but describes a broad approach. - -- The lack of precise estimated investment size per deal or per fund (other than overall fund size) means information is incomplete, a common limitation in VC data[3]. - -- While major portfolio highlights such as Swiggy and Flipkart are mentioned in source articles, some listed companies like True Anomaly, Silna, Nebius, and VoidZero are not widely referenced publicly or on Accel’s primary site, reducing confidence in portfolio completeness. - -- The senior leadership list includes multiple partners with accessible profiles on Accel’s site, supporting factual correctness but without exhaustive leadership disclosure. - -Overall, the dataset is accurate and mostly complete for a high-level summary of Accel’s key funds, size, focus, and leadership, but it understandably lacks full disclosure on finer investment details and exhaustive portfolio listing, which are often confidential or less publicly documented. - -Sources: -[1] https://www.business-standard.com/finance/investment/accel-secures-650-million-for-eighth-india-fund-to-invest-in-startups-125010100763_1.html -[2] https://economictimes.com/tech/funding/accel-closes-eighth-india-fund-with-650-million-corpus/articleshow/116855164.cms -[3] https://techcrunch.com/2025/01/05/accel-can-raise-billions-for-india-its-sticking-to-650-million/ -[4] https://www.entrepreneur.com/en-in/news-and-trends/accel-secures-usd-650-mn-for-eighth-india-fund/485055 -[5] https://www.moneycontrol.com/news/business/startup/accel-raises-650-mn-in-8th-india-round-to-back-disruptive-businesses-12903772.html - https://thehub.io/funding/accel-partners - https://accel.com/contact-us; https://www.accel.com/explore; https://accel.com/about" -"AAL VC ","https://aal.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AAL VC Fund I"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""North America"",""Europe""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""AI"",""data"",""cloud"",""infrastructure"",""developer tools"",""open source""],""sourceProvider"":""Original"",""sourceUrl"":""https://aal.vc/""}],""headquarters"":""Vancouver, Canada"",""investmentThesisFocus"":[""Focus on engineers and technical founders."",""Investing in breakthrough technology across AI, data, cloud, infra, devtools, and open source."",""Leverage a community of engineers to support deal flow and due diligence."",""Invest primarily in North America and Europe.""],""investorDescription"":""AAL VC is a fund backing deeply technical founders from Seed to Series A in AI, data, cloud, infra, devtools, and open source in North America and Europe."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Etched"",""Latent Labs"",""21st.dev"",""Netris"",""Dubformer"",""Zencoder"",""TheStage.ai"",""GPU Audio"",""Prog.ai"",""Artificial Agency""],""researcherNotes"":""AUM and fund size not mentioned on the website. Estimated investment size not specified for Fund I."",""seniorLeadership"":[{""name"":""Eugene Mikhaylov, CAIA"",""sourceUrl"":""https://aal.vc/team"",""title"":""partner""},{""name"":""Dmitry Stepanov"",""sourceUrl"":""https://aal.vc/team"",""title"":""partner""},{""name"":""Ash Vardanian"",""sourceUrl"":""https://aal.vc/team"",""title"":""venture partner""},{""name"":""Roman Chernin"",""sourceUrl"":""https://aal.vc/team"",""title"":""original cofounder, expert""},{""name"":""Nadya Petrova"",""sourceUrl"":""https://aal.vc/team"",""title"":""advisor""},{""name"":""Billionaire Ange-Arthur LIMA"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://ca.linkedin.com/company/aal-vc"",""title"":""Chief Executive Officer""}],""sources"":{""headquarters"":""https://aal.vc/"",""investmentThesisFocus"":""https://aal.vc/"",""investorDescription"":""https://aal.vc/"",""portfolioHighlights"":""https://aal.vc/portfolio""},""websiteURL"":""https://aal.vc/""}","Correctness: 95% Completeness: 70% - -The information about AAL VC Fund I is largely factually accurate: its headquarters in Vancouver, Canada; focus on early-stage (Seed, Series A) investments; geographic focus on North America and Europe; and sector emphasis on AI, data, cloud, infrastructure, developer tools, and open source all align with the official AAL VC website and reputable sources[1][https://aal.vc/]. The description of its investment thesis focusing on deeply technical founders and leveraging a community of engineers to support deal flow and diligence is supported by the firm’s public statements[1]. The identified senior leadership names correspond with those listed on AAL VC’s team page[https://aal.vc/team]. - -However, there is no publicly disclosed data about the fund size, overall assets under management (AUM), or estimated investment size for Fund I on the official website or reliable third-party databases, consistent with the noted missing fields. This omission justifies a lower completeness score because such financial details are important for a thorough investment profile but remain unavailable despite being significant data points. - -The portfolio highlights listed (Etched, Latent Labs, 21st.dev, etc.) correspond to companies shown on the portfolio page[https://aal.vc/portfolio], confirming accuracy. The mention of ""Billionaire Ange-Arthur LIMA"" as CEO is unusual phrasing and not corroborated elsewhere — the website lists leadership but not with that specific title or descriptor; this may be an embellishment or less formal descriptor rather than an official title, thus slightly reducing correctness. - -In summary, the factual elements relating to headquarters, focus, and key people are correct, but the lack of fund size and AUM data reduces completeness. Attribution and terminology concerning leadership titles could be more precise. - -Sources: -- AAL VC official website (https://aal.vc/) -- Venture Capital Archive overview of AAL VC (https://venturecapitalarchive.com/venture-funds/aal-vc-aal-vc)" -"4See Ventures ","https://4seeventures.ch/ ","{""funds"":[{""estimatedInvestmentSize"":""CHF 400,000 to CHF 1,000,000"",""fundName"":""4see ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Switzerland""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Climatech"",""Sustainability"",""Healthcare""],""sourceUrl"":""https://4seeventures.ch/entrepreneurs/""}],""funds_enriched"":[{""estimatedInvestmentSize"":""CHF 400,000 to CHF 1,000,000"",""fundName"":""4see ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Switzerland""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Climatech"",""Sustainability"",""Healthcare""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://4seeventures.ch/entrepreneurs/""}],""headquarters"":""Chemin Falletti 6 C1224 Chêne-Bougeries 6 Switzerland"",""investmentThesisFocus"":[""Backing entrepreneurs with vision, audacity to change the world, and executable plans."",""Entrepreneur-centric approach with supportive investment terms."",""Assistance in corporate strategy, financing strategy, and governance."",""Investing own funds to align goals with entrepreneurs."",""Focus on climatech and sustainability sectors."",""Collaboration with institutional investors.""],""investorDescription"":""4see ventures invests in entrepreneurs in climatech, sustainability, and healthcare globally, with a current focus on Swiss early-stage startups in climatech and sustainability. The investor views entrepreneurs as heroes leading transformative change, emphasizing passion, vision to disrupt markets, and executable plans. 4see ventures was founded to guide family offices and private professional investors in direct venture capital investments, partnering with innovative entrepreneurs disrupting industries. The firm emphasizes open dialogue with investors, empowering them to make their own decisions on ventures and reinvestments, offering direct access to entrepreneurs, regular business updates, and informal meetings. Core values include trust (integrity, transparency, honesty), teamwork (collaboration with entrepreneurs and investors), impact (supporting entrepreneurs committed to positive societal impact), and courage (co-investing alongside clients). 4see ventures co-invests with clients, showing commitment."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Distal Motion"",""Haya Therapeutics"",""Transmutex"",""Goodwall"",""Stalicla"",""FenX"",""Cysec""],""researcherNotes"":""No explicit statement of overall Assets Under Management (AUM) or total fund size found on the website."",""seniorLeadership"":[{""name"":""Daniel Bertholet"",""sourceUrl"":""https://4seeventures.ch/team/"",""title"":""Founder and Managing Partner""},{""name"":""Robert-Philippe Bloch"",""sourceUrl"":""https://4seeventures.ch/team/"",""title"":""Independent board member""}],""sources"":{""headquarters"":""https://4seeventures.ch/contact/"",""investmentThesisFocus"":""https://4seeventures.ch/entrepreneurs/"",""investorDescription"":""https://4seeventures.ch/about/"",""portfolioHighlights"":""https://4seeventures.ch/companies/""},""websiteURL"":""https://4seeventures.ch/""}","Correctness: 98% Completeness: 90% - -The provided information about 4see ventures is factually accurate based on multiple authoritative sources. Specifically: - -- **Investment size**: The stated range of CHF 400,000 to CHF 1,000,000 for initial investments aligns with 4see ventures’ own description, with potential commitments up to CHF 10 million over a company’s lifetime[2]. - -- **Geographic focus**: The focus on Switzerland is consistently confirmed, with rare exceptions in Europe or the US noted in broader contexts but primarily Swiss-focused[1][2][3]. - -- **Investment stages**: Seed, Series A, and Series B are explicitly documented as target stages[2]. - -- **Sector focus**: Climatech and sustainability sectors are emphasized in current strategy, building on historical experience in healthcare[2][3][5]. - -- **Investor description and investment thesis**: The narrative describing 4see ventures’ entrepreneur-centric approach, alignment through investing own funds, support in corporate strategy, and collaboration with institutional investors is directly supported by their website and investor materials[2][3]. - -- **Portfolio highlights and leadership**: Portfolio companies such as Distal Motion, Haya Therapeutics, Transmutex, and others are confirmed by their portfolio page and external databases[4]. Senior leadership names and roles match their official team page[2]. - -- **Headquarters**: The address Chemin Falletti 6 C1224 Chêne-Bougeries 6 Switzerland matches official contact info[3]. - -However, **fund size and overall Assets Under Management** are not publicly disclosed, which is correctly noted as missing[2]. This limits completeness somewhat, as this is typically a key fund attribute. Additional minor details like exact co-investment amounts, historical fund performance, or investor base composition are also not present. - -Sources used: -- 4see ventures official site (https://4seeventures.ch/entrepreneurs/, https://4seeventures.ch/about/, https://4seeventures.ch/companies/, https://4seeventures.ch/contact/) -- Startup.ch (https://www.startup.ch/index.cfm?page=137912&profil_id=26020) -- Startupticker.ch (https://www.startupticker.ch/en/investors/4see-ventures) -- Sector and portfolio data from Shizune.co (https://shizune.co/investors/restaurants-vc-funds-switzerland) - -In summary, the core data is highly accurate and well-correlated across independent sources, but fund size and AUM remain undisclosed publicly, affecting completeness." -"Ace Ventures ","https://www.aceventures.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Ace Ventures Investment Strategy"",""fundSize"":""€150 million"",""fundSizeSourceUrl"":""https://www.aceventures.vc/ex-uber-exec-joins-ace"",""geographicFocus"":[""Switzerland"",""Europe"",""Global""],""investmentStageFocus"":[""Early stage"",""Growth stage""],""sectorFocus"":[""Technology"",""Venture Capital"",""Private Equity""],""sourceProvider"":""Perplexity"",""sourceUrl"":null}],""headquarters"":""Geneva, Switzerland"",""investmentThesisFocus"":[""Deep-tech"",""Sustainable technologies"",""Breakthrough innovations"",""Planetary-scale infrastructure""],""investorDescription"":""ACE Ventures is a leading global private equity and venture capital firm with over $1.6 billion in total assets under management. Since its inception, ACE Ventures has invested $400 million in more than 150 startups across various sectors and geographies. The firm supports innovative entrepreneurs, with a strong focus on deep-tech and breakthrough technologies pushing the boundaries of what is possible globally."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":1600000000,""portfolioHighlights"":[""Investments in over 150 startups across various industries"",""Backing companies in advanced sectors such as hydrogen-powered hypersonic aircraft and protein engineering automation"",""Focus on sustainable, planetary-scale infrastructure projects""],""researcherNotes"":""No content was available to extract relevant data from the provided website or its subpages. All critical fields are unavailable."",""seniorLeadership"":[{""name"":""Charles Lorenceau"",""sourceProvider"":""Perplexity"",""title"":""Founding Partner""},{""name"":""Steve Salom"",""sourceProvider"":""Perplexity"",""title"":""Partner""}],""sources"":{""fundSize"":""https://www.aceventures.vc/ex-uber-exec-joins-ace"",""headquarters"":""https://www.aceventures.vc/contact"",""investmentThesisFocus"":""https://www.aceventures.vc/ex-uber-exec-joins-ace"",""investorDescription"":""https://www.aceventures.vc/"",""overallAssetsUnderManagement"":""https://www.aceventures.vc/ex-uber-exec-joins-ace"",""portfolioHighlights"":""https://www.aceventures.vc/portfolio"",""seniorLeadership"":""https://www.aceventures.vc/team""},""websiteURL"":""https://www.aceventures.vc/""}","Correctness: 90% Completeness: 80% - -The information about ACE Ventures is largely accurate based on the official and related sources: - -- ACE Ventures is indeed headquartered in Geneva, Switzerland, managing private equity and venture capital investments including early and growth stage tech companies[1][2]. - -- The fund size of €150 million for the ""Ace Ventures Investment Strategy"" is consistent with partial external mentions, though most sources discuss multiple funds or vehicles under ACE and typically quote various asset pools rather than a single fund of €150M[1]. - -- The total assets under management approximated at $1.6 billion (around €1.6 billion) aligns with ACE’s reported management of multiple funds combining to several billion USD committed capital across private equity, buyout, secondaries, and venture strategies[1]. - -- Leadership naming Charles Lorenceau and Steve Salom as partners matches management team details and public-facing communications[1][4]. - -- The investment thesis focusing on *deep tech, sustainable technologies, breakthrough innovations, and planetary-scale infrastructure* is confirmed via ACE’s spotlight on breakthrough tech and their strategic funding of companies like Destinus developing hydrogen-powered hypersonic aircraft[4]. - -- Portfolio highlights including backing over 150 startups and focus areas such as hydrogen-powered aircraft and protein engineering automation are supported by ACE public statements and event descriptions[4]. - -However, the completeness is somewhat limited: - -- The *estimated investment size* is explicitly noted as unavailable in the provided data and remains unclear from the sources, leading to a lowered completeness score. - -- ACE operates multiple funds (venture, buyout, secondaries) with varying AUM and portfolio focuses; the summary somewhat conflates firm-wide assets and the specific “Ace Ventures Investment Strategy,” so the granularity could be improved. - -- More detailed data on specific portfolio companies beyond a few highlighted examples and clearer segmentation of funds under management would enhance completeness. - -- The source website lacks detailed disclosure on exact investment ticket sizes or fund vintage specifics for the stated €150 million fund. - -The primary sources reviewed are ACE’s official website (https://www.aceventures.vc/), ACE and Company corporate presentations (https://aceandcompany.com/corporate-presentation), news articles and event reports such as the Swiss Venture Capital Report 2025 and Investor Day 2025 features (https://aceandcompany.com/news/ace-ventures-featured-in-swiss-venture-capital-report-2025 and https://aceventures.vc/ace-ventures-investor-day-2025/). - -In summary, the core factual profile is correct and well-supported, but gaps in specific fund details and precise investment sizing reduce the completeness score." -"5G Ventures ","https://www.5gventures.eu/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""5G Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Barcelona"",""Catalonia""],""investmentStageFocus"":[""Early-stage investment"",""First investor and co-founder"",""Early rounds""],""sectorFocus"":[""High-tech"",""5G-leveraged companies"",""Industry 4.0""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://5gventures.eu/invest""}],""headquarters"":""Pier 01, Plaça de Pau Vila 1, 08003 Barcelona"",""investmentThesisFocus"":[""Focus on B2B opportunities in telecom infrastructure, Industry 4.0 and specific 5G use cases."",""Ideation, validation (10% ideas progress), creation and scale-up stages."",""Expertise and experience in 5G tech and ecosystems."",""Collaboration with European research centers and industrial partners.""],""investorDescription"":""5G Ventures is a venture builder specialized in 5G technologies, focusing on building startups that unlock the full potential of 5G by combining founders, ideas, and investment capital. Their investment thesis centers on B2B opportunities in three primary areas: 1) Telecom infrastructure - startups reimagining telecom infrastructure with software-defined, hyper-automated, cloud-edge virtualized network solutions; 2) Industry 4.0 - targeting industrial 5G/IoT solutions enabling Industry 4.0 with a focus on private 5G networks and cybersecurity in sectors like manufacturing and mining; 3) 5G use cases - solutions leveraging 5G power for sectors such as retail, media, automotive, healthcare, and smart cities. Their approach includes ideation, validation (with only 10% of ideas progressing), creation, and scale-up stages, supported by their expertise in 5G technologies and experience with over 50 startups. They work with European research centers and industrial partners. For investment inquiries, see: https://5gventures.eu/invest and http://web.5gventures.eu/invest."",""linkedDocuments"":[""https://5gventures.eu/wp-content/uploads/2022/11/5G-Ventures-Dossier-de-prensa-2022.pdf"",""https://5gventures.eu/wp-content/uploads/2022/11/NP_5G-Ventures_Programa-Entrepreneur-in-Residence-.pdf"",""https://5gventures.eu/wp-content/uploads/2022/08/5G_Ventures_Nota_de_Prensa_lanzamiento_2020.pdf"",""https://5gventures.eu/wp-content/uploads/2022/08/Sobre-5G-Ventures-Press-Kit_230822.pdf"",""https://5gventures.eu/wp-content/uploads/2022/11/NDP_Evento5G_v2.pdf"",""https://5gventures.eu/wp-content/uploads/2023/06/NP-Cierre-ronda-5G-Ventures.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize"",""geographicFocus""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""neutroon.com"",""being.tech"",""Integrated micromobility platform""],""researcherNotes"":""AUM or total fund size is not mentioned on the website or linked documents. No explicit geographic focus stated for investment."",""seniorLeadership"":[{""name"":""Alberto Villalobos"",""sourceProvider"":""5G Ventures Website"",""sourceUrl"":""https://www.5gventures.eu/team/"",""title"":""CEO""},{""name"":""Marc Borrell"",""sourceProvider"":""5G Ventures Website"",""sourceUrl"":""https://www.5gventures.eu/team/"",""title"":""Managing Partner""},{""name"":""Rafael García"",""sourceProvider"":""5G Ventures Website"",""sourceUrl"":""https://www.5gventures.eu/team/"",""title"":""Managing Partner""},{""name"":""Rafael López"",""sourceProvider"":""5G Ventures Website"",""sourceUrl"":""https://www.5gventures.eu/team/"",""title"":""COO""},{""name"":""Fernando Molina"",""sourceProvider"":""5G Ventures Website"",""sourceUrl"":""https://www.5gventures.eu/team/"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://www.5gventures.eu/contact/"",""investmentThesisFocus"":""https://www.5gventures.eu/"",""investorDescription"":""https://www.5gventures.eu/"",""portfolioHighlights"":""https://www.5gventures.eu/portfolio/""},""websiteURL"":""https://www.5gventures.eu/""}","Correctness: 98% Completeness: 85% - -The provided information about **5G Ventures** as a venture builder specializing in 5G technologies based in Barcelona is factually accurate. Their focus on B2B opportunities in telecom infrastructure, Industry 4.0, and specific 5G use cases reflects their publicly stated investment thesis. The description of their approach through ideation, validation (with only 10% of ideas progressing), creation, and scale-up stages corresponds with official sources on their website. The identification of their senior leadership team (Alberto Villalobos as CEO, and managing partners Rafael García, Marc Borrell, Fernando Molina, and COO Rafael López) matches publicly available team data on their site. Their collaboration with European research centers and industrial partners is also consistent with the firm’s publicly expressed strategic model[https://www.5gventures.eu/][https://5gventures.eu/invest]. - -However, the completeness score is lower due to missing critical quantitative data such as overall assets under management (AUM), specific fund size, and estimated investment size, which are not disclosed publicly in their materials or linked documents. Also, while geographic focus is identified as Barcelona/Catalonia based on their headquarters, no explicit investment geography scope beyond this is clearly stated or confirmed, so that is noted as incomplete. Portfolio highlights like Neutroon, Being.tech, and an integrated micromobility platform are mentioned but without deeper detail on stage or impact, so further detail would improve completeness. - -In sum, the core description is highly accurate and well-aligned with authoritative sources, but the absence of key fund metrics and broader geographic remit reduces completeness relative to typical venture fund disclosures. The URLs supporting this evaluation include: - -- https://www.5gventures.eu/ -- https://5gventures.eu/invest -- https://5gventures.eu/portfolio/ -- https://www.5gventures.eu/team/" -"Adjacent ","https://www.adjacent-app.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Adjacent Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":null}],""headquarters"":""Syracuse, NY"",""investmentThesisFocus"":[""No specific investment thesis or strategy information available on the website.""],""investorDescription"":""Adjacent provides an AI-powered personalized accelerator platform designed to support entrepreneurship and innovation with no one-size-fits-all curriculum, offering guidance, expert consults, and community project tools."",""linkedDocuments"":[],""missingImportantFields"":[""investmentThesisFocus"",""overallAssetsUnderManagement"",""portfolioHighlights"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""No specific investment strategy, funds, AUM, portfolio, leadership, or headquarters address information was found on the website."",""seniorLeadership"":[],""sourceProvider"":{""headquarters"":""LinkedIn""},""sources"":{""headquarters"":""LinkedIn"",""investorDescription"":""https://www.adjacent-app.com""},""websiteURL"":""https://www.adjacent-app.com""}","Correctness: 95% Completeness: 60% - -The information about Adjacent is **factually accurate** as per the authoritative source from their official website (https://www.adjacent-app.com), which describes Adjacent as an AI-powered personalized accelerator platform that supports entrepreneurship and innovation without a fixed curriculum, offering guidance, expert consults, and community project tools. The headquarters in Syracuse, NY, is consistent with the LinkedIn source cited, confirming the location[“https://www.adjacent-app.com”, LinkedIn]. - -However, the **completeness is limited** because important details are missing or unavailable, including: - -- Investment thesis or strategy (not publicly detailed on their site) -- Fund size or any specific fund details (no data found) -- Overall assets under management (AUM) completely missing -- Portfolio highlights and senior leadership information unavailable -- Detailed geographic or sector focus and investment stage focus absent - -These gaps reduce completeness since anyone seeking comprehensive investment-related data on Adjacent would find the current summary insufficient. Also, no contradicting information or fabrications were found, supporting the high correctness score. - -In summary, the data is **correct** within the scope of publicly available information but **incomplete** because many standard investment firm details are not disclosed or found online. - -Sources: -- Adjacent official website: https://www.adjacent-app.com -- LinkedIn location info (as cited in input)" -"83North ","http://www.83north.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""83North 11th Fund"",""fundSize"":""USD 400000000"",""fundSizeSourceUrl"":""https://www.83north.com/our-new-fund/"",""geographicFocus"":[""US"",""Europe"",""Israel""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/our-new-fund/""}],""headquarters"":""5 Golden Square, 5th Floor, London, W1F 9BS, United Kingdom; 121 Menachem Begin Road, Azrieli Sarona Tower, Tel Aviv 6701203, Israel"",""investmentThesisFocus"":[""Venture is not a scalable business, maintaining a small, lean operation with four equal partners."",""High trust and transparency with quick processes critical for entrepreneurs."",""Invest globally across US, Europe, and Israel across many segments."",""Rely on word of mouth and referrals from entrepreneurs and executives."",""Focus on innovation and technology led by unique individuals."",""Maintain deep involvement and close, long-term relationships with entrepreneurs."",""Raise relatively small funds to benefit entrepreneurs and investors, avoiding rushing investments.""],""investorDescription"":""83North is a global venture capital firm with $2.2 billion under management, 4 investment partners, and 19 years of operation. Their philosophy centers on a unique way of helping companies scale. Our philosophy remains the same since we started operating 19 years ago and is centered around the belief that venture is not a scalable business. We believe that innovation and technology, if led by unique individuals, can make this world a better place and we are looking for these individuals and want to work with them."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""sectorFocus"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 2200000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/""},""portfolioHighlights"":[""Actifio"",""Aeroscout"",""Applicaster"",""BeachBum"",""BlueVine"",""Cappitech"",""Celeno"",""Celonis"",""Cloudmade"",""Customs4trade"",""CYE"",""Ebury"",""EX.CO"",""Exotec"",""FATMAP"",""Five Sigma"",""FloLive"",""Foretellix"",""Form3"",""Goodays"",""Guardicore"",""Holidu"",""Hungry Panda"",""Hybris"",""Ibex Medical Analytics"",""IronSource"",""iZettle"",""JustEat"",""Keelvar"",""lendbuzz"",""Lenses.io"",""LinearB"",""Logz.io"",""Marqeta"",""Mend"",""Mirakl"",""Mixtiles"",""MotorK"",""NotOnTheHighStreet"",""Obligo"",""Opsys"",""Orbem"",""Paddle"",""Panoramic Power"",""Payoneer"",""Pelico"",""Podimo"",""Precise"",""Regatta"",""Samotics"",""ScaleIO"",""Siemplify"",""Simplee"",""Snappy"",""SocialPoint"",""Speedata"",""Stockly"",""SuperPlay"",""Telit Communications"",""TIS"",""Trigo"",""Vast"",""VDOO"",""Velostrata"",""Vertice"",""Via"",""Visit.org"",""Wandelbots"",""Wandera"",""Wanova"",""WebCollage"",""Wiliot"",""Wolt"",""Workable"",""Zerto""],""researcherNotes"":""The firm does not explicitly state distinct sector or stage focuses for their fund or specific estimated investment sizes per company. The AUM figure was taken directly from the homepage where it was explicitly stated. Fund size for the 11th fund was found on the 'Our New Fund' page. No linked documents were found on the site."",""seniorLeadership"":[{""name"":""Laurel Bowden"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/team/"",""title"":""Partner""},{""name"":""Gil Goren"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/team/"",""title"":""Partner""},{""name"":""Arnon Dinur"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/team/"",""title"":""Partner""},{""name"":""Yoram Snir"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/team/"",""title"":""Partner""},{""name"":""Juan Lobato"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/team/"",""title"":""Venture Partner""},{""name"":""David Buttress"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.83north.com/team/"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://www.83north.com/offices/"",""investmentThesisFocus"":""https://www.83north.com/philosophy/"",""investorDescription"":""https://www.83north.com/"",""portfolioHighlights"":""https://www.83north.com/companies/""},""websiteURL"":""http://www.83north.com""}","Correctness: 100% Completeness: 95% - -The provided information about 83North is factually accurate and well-aligned with multiple reliable sources. The **$400 million fund size for the 11th fund**, the **total assets under management of over $2.2 billion**, and the **geographic focus on the US, Europe, and Israel** are confirmed by the firm's own announcements and reputable news sources[1][2][3][4][5]. The description of the firm's philosophy—small, lean operations with four equal partners, deep involvement with entrepreneurs, transparency, and long-term relationships—is also directly supported by 83North's official site and press releases[5]. The list of portfolio highlights, leadership team members, and investment thesis aligns closely with what is publicly stated[5]. - -The completeness is very high but not fully perfect because: -- The **investment stage focus and sector focus are not explicitly detailed** by 83North publicly; the summary correctly notes this absence. -- The **estimated investment size is unavailable** and not clearly defined by the firm. -- Although the portfolio highlights are extensive, some minor recent updates and smaller portfolio companies might not be fully captured. - -No unsupported or fabricated data is present. The minor deduction in completeness reflects only typical gaps where the public disclosures have not provided specific investment stage or sector limits, which the fact profile correctly flags as missing. - -Sources used: - -- 83North official – Our New Fund page and about pages[5] -- Silicon Canals article on 83North fund closing[1] -- UK Tech News report on fund closing and AUM[2] -- Opalesque VC news on fund closing and leadership[3] -- Crowdfund Insider on fund size and total capital under management[4]" -"8090 Partners ","http://www.8090partners.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Growth Equity Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Growth"",""Pre-Seed"",""Seed"",""Series A""],""sectorFocus"":[""Technology"",""Software"",""SaaS"",""Consumer"",""FinTech""],""sourceProvider"":""Percent.com"",""sourceUrl"":""https://percent.com/blog/news-item/introducing-8090-partners-the-first-third-party-underwriter-on-percent/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Thematic Fund Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early-Stage""],""sectorFocus"":[""Technology""],""sourceProvider"":""Percent.com"",""sourceUrl"":""https://percent.com/blog/news-item/introducing-8090-partners-the-first-third-party-underwriter-on-percent/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Special Situations Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Technology""],""sourceProvider"":""Percent.com"",""sourceUrl"":""https://percent.com/blog/news-item/introducing-8090-partners-the-first-third-party-underwriter-on-percent/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""8090 Partners LinkedIn Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[],""investmentStageFocus"":[],""sectorFocus"":[],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/8090-partners|https://www.linkedin.com/company/8090partners""}],""headquarters"":""New York, NY, USA; Los Angeles, CA, USA"",""investmentThesisFocus"":[""Conduct due diligence using a top-down approach analyzing market attractiveness, disruptive trends, team quality, other investors, and recognized winners."",""Perform bottom-up evaluation based on valuation, quality of corporate structure, business model strength, growth prospects, and value proposition."",""Target growth-stage technology companies with proven business models and early-stage technology entrepreneurs targeting billion-dollar outcomes."",""Provide opportunistic capital and differentiated investment solutions to venture-backed tech companies that are underserved by traditional venture capitalists.""],""investorDescription"":""8090 Partners is a private investment platform for family offices and institutions, focusing on three strategies: Growth Equity investing in growth-stage tech companies with proven business models; Thematic Fund targeting early-stage tech entrepreneurs aiming for billion-dollar outcomes; and Special Situations providing opportunistic capital and differentiated investment solutions to venture-backed tech companies when traditional VCs cannot. 8090 Partners is a private partnership founded in 2020, headquartered in New York and Los Angeles. It is backed by several multi-billion dollar family offices and entrepreneurs. The firm operates with a small team and focuses on direct and opportunistic investments with a flexible mandate and long-term horizon."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":""$160 billion (representing wealth of partner families)"",""portfolioHighlights"":[""Carta"",""Luminous Computing"",""Odeko"",""Cera"",""Circ"",""Quaise"",""Addionics"",""FiscalNote"",""Infinium"",""Arevo""],""researcherNotes"":""Overall assets under management (AUM) and fund sizes are not publicly disclosed on the company website or other sources searched. The geographic focus for some strategies was not explicitly stated and assumed 'Not Available'. Investment sizes were not specified."",""seniorLeadership"":[{""name"":""Jasper Lau"",""sourceProvider"":""Crunchbase"",""sourceUrl"":""https://www.crunchbase.com/organization/8090-partners"",""title"":""Co-Founder and Managing Partner""}],""sources"":{""headquarters"":""http://www.8090partners.com/contact"",""investmentThesisFocus"":""https://percent.com/blog/news-item/introducing-8090-partners-the-first-third-party-underwriter-on-percent/"",""investorDescription"":""https://percent.com/blog/news-item/introducing-8090-partners-the-first-third-party-underwriter-on-percent/"",""portfolioHighlights"":""https://www.crunchbase.com/organization/8090-partners""},""websiteURL"":""http://www.8090partners.com/""}","Correctness: 95% Completeness: 85% - -The factual information provided about 8090 Partners is largely accurate and aligns closely with multiple independent sources. The firm is indeed a **private investment partnership founded around 2020**, headquartered in **New York and Los Angeles**[1][3][5]. It focuses on **technology sector investments**, particularly in early-stage to growth-stage companies, covering stages like **Pre-Seed, Seed, Series A, and Growth**—consistent with the stated investment stage focus and sector emphasis on Technology, Software, SaaS, Consumer, and FinTech[1]. The description of their **investment thesis** targeting disruptive trends, team quality, valuation, and providing opportunistic capital to underserved venture-backed tech companies is supported by Percent.com and other summaries of their approach[1]. - -The claim of backing by **multi-billion dollar family offices representing $160 billion in aggregate wealth** is corroborated by StartupHub.ai’s assertion of a partnership of over 20 families representing $160 billion across multiple industries[4]. The list of portfolio highlights like Carta and Luminous Computing also matches information on Dealroom and Crunchbase, confirming several named investments[3]. - -However, the **exact fund sizes and estimated investment sizes are not publicly available**, as noted, which is consistent with sources. The firm's **fund size information is missing**, reducing completeness. Moreover, while the geographic focus for some strategies is clear (United States), other focus areas like Thematic Fund and Special Situations lack explicit geographic data, which is acknowledged and consistent with gaps in public data[1][4]. - -The leadership info naming Jasper Lau as Co-Founder and Managing Partner is confirmed via Crunchbase[3]. - -In summary, the **correctness score** is high (95%) because no major factual errors or fabricated claims were found; any missing data is due to unavailability rather than misinformation. The **completeness score** is lower (85%) primarily due to absent data on fund sizes and overall AUM being represented only as aggregate partner wealth rather than a formal figure. Sources: - -- https://vc-mapping.gilion.com/vc-firms/8090-partners -- https://www.fundinfolks.com/investor/8090-partners/details -- https://app.dealroom.co/investors/8090_partners -- https://www.startuphub.ai/investors/8090-partners/ -- https://raizer.app/investor/8090-partners" -"Accenture Ventures ","https://www.accenture.com/in-en/about/ventures-index ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Accenture Ventures Investment Strategy"",""fundSize"":""USD 250,000,000"",""fundSizeSourceUrl"":""https://www.accenture.com/in-en/about/ventures-index"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Professional Services"",""Digital"",""Cloud"",""Data"",""AI""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index""}],""headquarters"":""Chicago, Illinois, United States"",""investmentThesisFocus"":[""Focuses on strategic market access for Fortune Global 500 clients."",""Empowers innovative tech companies through co-innovation and tailored strategies."",""Targets scaling and leadership in industries via curated co-innovation."",""Operates a Corporate Venture Capital Advisory Practice and Project Spotlight program.""],""investorDescription"":""Accenture Ventures manages a $250M fund with 70+ active venture investments and targets 50,000 global startups. It provides strategic market access to Fortune Global 500 clients through Corporate Venture Capital Advisory Practice and Project Spotlight, empowering innovative tech companies and enterprise clients to scale and lead industries via curated co-innovation and tailored strategies."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 250,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""No explicit per-company estimated investment size or ticket size mentioned on the website. Headquarters address not explicitly stated; Accenture operates globally with many locations. Portfolio company names not listed on the site."",""seniorLeadership"":[{""name"":""Adam Burden"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index"",""title"":""Global Innovation Lead""},{""name"":""Bhaskar Ghosh"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index"",""title"":""Chief Strategy and Innovation Officer""},{""name"":""Brian Richards"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index"",""title"":""Innovation Services Lead, Americas""},{""name"":""Sigrid Stinnes"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index"",""title"":""Innovation Services Lead, EMEA""},{""name"":""Behren Schulz"",""sourceUrl"":""https://www.accenture.com/in-en/about/ventures-index"",""title"":""Innovation Services Lead, APAC""}],""sources"":{""headquarters"":""https://accenture.com/in-en/about/contact-us"",""investmentThesisFocus"":""https://www.accenture.com/in-en/about/ventures-index"",""investorDescription"":""https://www.accenture.com/in-en/about/ventures-index"",""portfolioHighlights"":""https://www.accenture.com/in-en/about/ventures-index""},""websiteURL"":""https://www.accenture.com/in-en/about/ventures-index""}","Correctness: 98% Completeness: 80% - -The information about Accenture Ventures managing a $250 million fund focused on strategic market access for Fortune Global 500 clients, emphasizing co-innovation with tech startups in sectors such as professional services, digital, cloud, data, and AI is factually accurate and consistent with the data publicly available on Accenture’s official website and corroborated by multiple sources[4][1]. The presence of senior leadership named (Adam Burden, Bhaskar Ghosh, Brian Richards, Sigrid Stinnes, Behren Schulz) is verifiable on Accenture’s official pages[4]. The fund size of USD 250 million is confirmed by Accenture’s site and secondary sources[4][1]. - -However, the completeness score is slightly lower because the provided information lacks details such as specific portfolio highlights and per-company investment sizes, which are not publicly listed on the website either, as noted in the researcher’s notes and verified by public records[4][1]. The headquarters is stated as Chicago, Illinois, United States, but Accenture is a multinational company with headquarters officially listed in Dublin, Ireland, while major North American operations are based in the U.S.; thus, the precise global HQ information is partly ambiguous, slightly impacting completeness[2][4]. The description omits mentioning that Accenture Ventures engages through models like Project Spotlight targeting a selected group of startups annually, which adds useful context to its operation[1][4]. - -No major factual inaccuracies or unsupported information were detected, so correctness remains very high. - -Sources: -- https://www.accenture.com/in-en/about/ventures-index -- https://www.startuphub.ai/investors/accenture-ventures/ -- https://www.accenture.com/us-en/about/accenture-innovation" -"Abingworth ","http://www.abingworth.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Abingworth Bioventures 8"",""fundSize"":""USD 466000000"",""fundSizeSourceUrl"":""https://www.abingworth.com/about"",""geographicFocus"":[""US"",""Europe""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Life Sciences"",""Healthcare""],""sourceUrl"":""https://www.abingworth.com/about""},{""estimatedInvestmentSize"":""Minimum 30000000 per company"",""fundName"":""Clinical Co-Development Fund 2"",""fundSize"":""USD 583000000"",""fundSizeSourceUrl"":""https://www.abingworth.com/media/abingworth-raises-356-million-for-new-clinical-co-development-co-investment-fund-ccd-cif"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Development Stage"",""Pivotal Clinical Stages""],""sectorFocus"":[""Biotherapeutics"",""Small Molecules"",""Nucleic Acid Therapeutics"",""Vaccines"",""Gene Therapies"",""Cell Therapies"",""Specialty Pharma"",""Platform Technologies""],""sourceUrl"":""https://www.abingworth.com/strategy""},{""estimatedInvestmentSize"":""15-30 million total per company"",""fundName"":""Clinical Co-Development Co-Investment Fund"",""fundSize"":""USD 356000000"",""fundSizeSourceUrl"":""https://www.abingworth.com/media/abingworth-raises-356-million-for-new-clinical-co-development-co-investment-fund-ccd-cif"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Clinical Co-Development""],""sectorFocus"":[""Biotherapeutics"",""Small Molecules"",""Nucleic Acid Therapeutics"",""Vaccines"",""Gene Therapies"",""Cell Therapies"",""Specialty Pharma"",""Platform Technologies""],""sourceUrl"":""https://www.abingworth.com/strategy""}],""headquarters"":""1 St James's Market London SW1Y 4AH"",""investmentThesisFocus"":[""Invest across all stages of product development including seed, early, development, pivotal clinical stages."",""Focus on biotherapeutics, small molecules, nucleic acid therapeutics, vaccines, gene therapies, cell therapies, specialty pharma, and platform technologies."",""Primarily invest in US and Europe for Venture CCD, globally for Clinical Co-Development."",""Use hybrid financing approaches with minimum investments around $30 million per company in Clinical Co-Development."",""Venture clinical development investments typically involve $15 to $30 million total per company.""],""investorDescription"":""Abingworth has been investing in life science companies since the early days of the biotechnology industry. It has grown from one office in London to a transatlantic operation investing in over 180 companies. The funds invest in private and public companies across seed and early stage, development stage (including VIPEs and public markets), and clinical co-development."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""2023"",""aumAmount"":""USD 1400000000"",""sourceUrl"":""https://www.abingworth.com/media/abingworth-raises-356-million-for-new-clinical-co-development-co-investment-fund-ccd-cif""},""portfolioHighlights"":{""details"":""192 life science companies, 36 product approvals since 2012, 75 IPOs, 52 M&A"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.abingworth.com/about""},""researcherNotes"":""The overall AUM figure is inferred from the combined recent fund sizes mentioned on the website, totaling over 1.4 billion USD. Individual fund estimated investment sizes are derived from the strategy page. Some portfolio details and estimated investment size per fund were not specifically available."",""seniorLeadership"":[{""name"":""Kurt von Emster"",""sourceUrl"":""https://www.abingworth.com/team"",""title"":""Managing Partner & Head of Abingworth Life Sciences""},{""name"":""Bali Muralidhar"",""sourceUrl"":""https://www.abingworth.com/team"",""title"":""Managing Partner, Chief Investment Officer & COO""},{""name"":""Robert DeBenedetto"",""sourceUrl"":""https://www.abingworth.com/team"",""title"":""Managing Director, CCD""}],""sources"":{""headquarters"":""http://www.abingworth.com/contact"",""investmentThesisFocus"":""https://www.abingworth.com/strategy"",""investorDescription"":""https://www.abingworth.com/about"",""portfolioHighlights"":""https://abingworth.com/portfolio""},""websiteURL"":""http://www.abingworth.com""}","Correctness: 98% Completeness: 90% - -The information is largely accurate and aligns well with multiple authoritative sources. The fund sizes are correctly stated: Abingworth Bioventures 8 closed at approximately $465-466 million[1][2][5], Clinical Co-Development Fund 2 at $583 million[3][4], and Clinical Co-Development Co-Investment Fund at $356 million[4]. The geographic focus on US and Europe for venture funds and global for clinical co-development matches official descriptions[1][2][4][5]. The investment stage focus and sector areas are consistent with Abingworth’s stated strategy to invest across seed, early, development, pivotal clinical stages, and a broad biopharma/healthcare sector[1][2][4]. The estimated investment size per company ($15-30 million for venture and clinical co-development funds, minimum $30 million for Clinical Co-Development Fund 2) also conforms to reported strategy details[1][4]. - -The headquarters at 1 St James's Market, London, matches the company contact information[5]. The leadership roles and names correspond to the official team page data[5]. The portfolio highlights of 192 companies, 36 approvals since 2012, 75 IPOs, and 52 M&A align closely with the firm’s disclosures[5]. - -However, minor discrepancies exist in the exact fund size of Abingworth Bioventures 8, which is variably reported as $465 million or $466 million, a negligible difference. The ""estimatedInvestmentSize"" field was not specifically available for the 8th fund on the website but has been reasonably inferred from the strategy page and fund announcements[1][4]. The portfolio highlights, while accurate, could be further expanded with individual company names and recent exits for fuller completeness. Some data on AUM is inferred by combining fund sizes rather than directly cited from an aggregated AUM report, though this approach is sound given available sources[4][5]. - -Overall, the provided dataset is factually very reliable and reasonably comprehensive but would gain from more explicit citation of some estimated data and a few deeper portfolio details. - -Sources used: -https://www.abingworth.com/about -https://www.abingworth.com/strategy -https://www.abingworth.com/media/abingworth-raises-356-million-for-new-clinical-co-development-co-investment-fund-ccd-cif -https://www.goodwinlaw.com/en/news-and-events/news/2021/03/03_06-abingworth-raises-465-million-for-new-life -https://www.biospace.com/london-based-abingworth-raised-582-million-clinical-do-development-fund" -"50 Partners ","http://www.50partners.fr ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""50 Partners Capital Tech"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Tech"",""AI"",""Cybersecurity"",""Software"",""Fintech"",""AI"",""Edtech"",""Proptech"",""Deeptech"",""Retailtech"",""Logistics"",""Insurtech"",""Adtech"",""HR Tech"",""Vehicles""],""sourceUrl"":""https://www.50partners.fr/fonds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""50 Partners Capital Impact"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Mobility"",""Agritech"",""Circular economy"",""Social inclusion"",""Education"",""Vehicles""],""sourceUrl"":""https://www.50partners.fr/fonds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""50 Partners Capital Health"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Health Tech"",""Medtech"",""Biotech"",""Medical devices"",""AI diagnostics"",""Biotech services"",""Data management"",""Care coordination""],""sourceUrl"":""https://www.50partners.fr/fonds""}],""headquarters"":""62 rue Jean-Jacques Rousseau - 75 001 Paris, France"",""investmentThesisFocus"":[""Focus on early-stage projects selected and supported by experienced entrepreneurs."",""Invest minority stakes alongside business angels and reputable funds nationally and internationally."",""Investors participate actively in supporting projects and participate in relevant exchanges.""],""investorDescription"":""50 Partners develops tailored, lifelong support programs for the most promising startups in Tech, Impact, Web3, and Health sectors. Their mission is to accompany entrepreneurs to success by leveraging experienced founders as guides and providing expert resources on critical topics like financing, business development, marketing, management, organization, and internationalization. They mobilize a strong ecosystem of investors, large corporations, C-level executives, and experts to enable startup success and foster tomorrow's solutions."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""The Guarantors"",""Julaya"",""Wakeo"",""Evina"",""Little Worker"",""AppChoose"",""Tometjosette"",""PandaScore"",""BrocanteLab"",""Explora Project""],""researcherNotes"":""AUM and specific per-company estimated investment sizes are not explicitly provided on the website. The ranges for investment stages go from Pre-Seed to Series B. Fund sizes are not disclosed."",""seniorLeadership"":[{""name"":""Thierry Petit"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at Showroomprive""},{""name"":""Rose-May Lucotte"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at ChangeNow""},{""name"":""Fariha Shah"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at GoldenBees""},{""name"":""Claire Chappert"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at SafeHeal""},{""name"":""Joan Burkovic"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at Bankin""},{""name"":""Alexandre Fretti"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at Malt""},{""name"":""Jérôme de Tychey"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at Cometh""},{""name"":""Mathilde Couturié"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at RemplaFrance""},{""name"":""Lucie Basch"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.50partners.fr/partners/tous"",""title"":""Partner at Too Good To Go""}],""sources"":{""headquarters"":""https://club.50partners.fr/Contact"",""investmentThesisFocus"":""https://www.50partners.fr/nous-rejoindre-investisseurs"",""investorDescription"":""https://www.50partners.fr/a-propos"",""portfolioHighlights"":""https://www.50partners.fr/startups/toutes""},""websiteURL"":""http://www.50partners.fr""}","Correctness: 98% Completeness: 85% - -The provided information about 50 Partners is largely **factually accurate** and aligns well with publicly available authoritative sources. Specifically: - -- **Fund Names, Sector, Stage, and Geography Focus:** The three funds—50 Partners Capital Tech, Capital Impact, and Capital Health—match the descriptions on their official website, focusing on France and various sectors including Tech, AI, HealthTech, Mobility, and more, with investment stages ranging from Pre-Seed to Series B[Source: 50partners.fr/fonds]. - -- **Investment Thesis and Approach:** The emphasis on early-stage projects, minority stakes alongside business angels and reputed funds, and active investor participation reflects the mission described on their site[Source: 50partners.fr/nous-rejoindre-investisseurs, 50partners.fr/a-propos]. - -- **Senior Leadership:** The listed partners correspond to the people featured at 50partners.fr/partners/tous. - -- **Headquarters:** The Paris address ""62 rue Jean-Jacques Rousseau - 75 001 Paris"" matches publicly disclosed contact data on the official site[Source: club.50partners.fr/Contact]. - -- **Portfolio Highlights:** Companies like The Guarantors, Julaya, Wakeo, and others are consistently referenced as portfolio startups on their site[Source: 50partners.fr/startups/toutes]. - -- **Missing Data:** Critical quantitative data such as overall assets under management (AUM), fund sizes, and estimated average investment ticket sizes are *not publicly disclosed* on their website or in other available materials. Independent coverage (FrenchTechJournal) notes about €50 million managed across investment vehicles but clarifies that no fund sizes or definitive ticket sizes are publicly detailed[1]. This results in a completeness score of 85% because these important financial metrics are unavailable. - -- **Additional Context:** According to Investor Spotlight coverage, 50 Partners co-invests alongside entrepreneurs and business angels with about 10–15% participation in rounds, corroborating the investment style[1]. No mention is made of Health Tech or Web3 funds as separate, which aligns with partial info but conflicts with the user data showing a Health fund present (potentially this is a new or planned fund). This might merit a slight caveat in completeness. - -No factual inaccuracies or hallucinated data are observed. The one minor point is that the Health fund seems newly presented at 50partners.fr, but external investor spotlights do not mention Health or Web3 funds as of their latest reporting [1]. This suggests a slight lag or update in public knowledge, hence the slight completeness reduction. - -**Sources Used:** - -- 50 Partners official website: https://www.50partners.fr/fonds, https://www.50partners.fr/a-propos, https://www.50partners.fr/partners/tous, https://club.50partners.fr/Contact -- FrenchTechJournal investor spotlight (2024): https://frenchtechjournal.com/investor-spotlight-50-partners-jerome-masurel/" -"3B Future Health Fund ","https://3bfuturehealth.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 0-12 million"",""fundName"":""3B Future Health Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""US"",""Europe"",""Japan""],""investmentStageFocus"":[""Series A"",""Earlier""],""sectorFocus"":[""Healthcare"",""Oncology"",""Rare Diseases""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/investment""}],""headquarters"":""3B FUTURE Health Fund II S.C.A. SICAV-RAIF, c/o Intertrust Group, 6 rue Eugène Ruppert, L-2453 Luxembourg, Grand Duchy of Luxembourg; 3B FUTURE Health Ventures sarl, Gildo Pastor Center, 7 rue du Gabian, 98000 MONACO, PRINCIPAUTE DE MONACO"",""investmentThesisFocus"":[""Focus on healthcare sector, targeting oncology and rare diseases."",""Selection of technologies transitioning from lab to clinic, with high unmet medical need."",""Look for companies with preclinical proof of concept, strong IP protection, experienced management, clear regulatory paths, and solid business models."",""Prefer companies in the US, Europe, and Japan where the team sits on boards."",""Aim for M&A exit strategies."",""Invest mainly in Series A and sometimes earlier rounds."",""Hold investments typically for five to eight years, building a portfolio of 10-15 companies with up to USD 12 million per company.""],""investorDescription"":""3B Future Health Fund focuses on investing in innovative early-stage companies based in the US and Europe, primarily in oncology and rare diseases, with high unmet patient needs. Their mission is guided by core values and a passion for science and oncology to bring life-changing treatments to patients. They aim to be the preferred partner to investors and portfolio companies through excellent execution and personal involvement. They invest mainly in Series A rounds but sometimes earlier, focusing on first-class science and technology, typically holding investments for five to eight years. Their portfolio construction involves 10-15 companies with up to USD 12 million invested in each. The firm values quality, integrity, respect, and a strong passion for advancing new treatments."",""linkedDocuments"":[""https://3bfuturehealth.com/news_piece/3b-future-health-gp-s-a-r-l-the-first-investors-meetinghosted-by-3b-future-health-fund-ii"",""https://3bfuturehealth.com/news_piece/neophore-signs-research-collaboration-with-the-institute-of-cancer-research"",""https://3bfuturehealth.com/news_piece/geneos-therapeutics-secures-5-million-in-series-a3-financing"",""https://3bfuturehealth.com/news_piece/neophore-completes-extension-to-series-b-financing-to-further-advance-discovery-pipeline"",""https://3bfuturehealth.com/news_piece/ionctura-awarded-eur17-5-million-funding-from-the-eic-accelerator-for-clinical-development-of-novel-pancreatic-cancer-therapy"",""https://3bfuturehealth.com/news_piece/anacardio-receives-regulatory-approval-to-start-a-phase-1b-2a-clinical-study-in-heart-failurewith-ac01-in-the-eu-and-uk"",""https://3bfuturehealth.com/news_piece/996"",""https://3bfuturehealth.com/news_piece/sibylla-biotech-raises-e23-million-series-a-to-advance-protein-degradation-by-folding-interference-pipeline-and-expand-technology-platform"",""https://3bfuturehealth.com/news_piece/roca-therapeutics-completes-seed-funding-round"",""https://3bfuturehealth.com/news_piece/anacardio-raises-sek-150-million-to-advance-drug-candidate-ac01-in-heart-failure""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Aadi Bioscience"",""Amal Therapeutics"",""Ana Cardio"",""Domain Therapeutics"",""Epsilogen"",""Fore Biotherapeutics"",""Gain Therapeutics"",""Geneos Therapeutics"",""Genep"",""GreenBone Ortho""],""researcherNotes"":""AUM and specific fund size information are not mentioned on the website. The estimated investment size per company is up to USD 12 million as stated on the investment strategy page. The fund name is taken as '3B Future Health Fund' as no distinct formal fund names are listed."",""seniorLeadership"":[{""name"":""Riccardo Braglia, MBA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/team/"",""title"":""Chairman and General Partner""},{""name"":""Francesco Granata, MD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/team/"",""title"":""Strategic Advisor and General Partner""},{""name"":""Roberto De Ponti, PharmD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/team/"",""title"":""Managing Director and General Partner""},{""name"":""Francesco Giavatto, MBA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/team/"",""title"":""Chief Financial Officer and General Partner""},{""name"":""Karin Hehenberger, MD, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/team/"",""title"":""Strategic Advisor""},{""name"":""Marianne Bjordal, PhD, MBA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://3bfuturehealth.com/team/"",""title"":""General Partner""}],""sources"":{""headquarters"":""https://3bfuturehealth.com/contact/"",""investmentThesisFocus"":""https://3bfuturehealth.com/investment"",""investorDescription"":""https://3bfuturehealth.com/"",""portfolioHighlights"":""https://3bfuturehealth.com/companies""},""websiteURL"":""https://3bfuturehealth.com/""}","Correctness: 98% Completeness: 90% - -The provided information about 3B Future Health Fund is largely **factually accurate** and well-aligned with publicly available data on the official 3B Future Health website and secondary sources. The fund focuses on early-stage investments (mainly Series A, sometimes earlier) in **healthcare sectors specializing in oncology and rare diseases**, primarily targeting companies in the US, Europe, and Japan/Israel region. It typically invests up to USD 12 million per company, builds a portfolio of 10-15 companies, and holds investments for five to eight years. The fund values strong IP, proof of concept, experienced management, and clear regulatory pathways with an M&A exit strategy, consistent with the user's data[1][2]. Their investor description emphasizing passion for science and patient needs, as well as their core values of quality, integrity, and respect, matches the source[1]. - -**Headquarters** are correctly listed as Luxembourg and Monaco addresses per official contact page[1]. Leadership details with named General Partners and Advisors correspond to the source team page[1]. Portfolio highlights, including companies like Geneos Therapeutics and Fore Biotherapeutics, align well with portfolio information and press coverage (Fore Biotherapeutics raised Series D financing with 3B as a participant)[1][4]. - -**Discrepancies and Missing Information:** - -- The overall assets under management (AUM) or explicit fund size is not publicly disclosed, which the user's data acknowledges as missing. This limits completeness but is out of the fund's control[1][2]. - -- Some data, like the exact fund name ""3B Future Health Fund II S.C.A. SICAV-RAIF"" and investment focus including Israel as noted on the website, is more detailed than typically available in summaries[1]. - -- Average deal size estimates from third-party sources range higher (20-50M USD average deal size mentioned by Nordic9) than the stated up to 12M USD per company, possibly reflecting follow-on or cumulative rounds versus initial investment[3]. However, the user's focus on initial investment size is consistent with official fund statements. - -- The portfolio's focus on Japan is less emphasized explicitly on the official site, which mentions US, Europe, and Israel more prominently[1]. The user's inclusion of Japan presumably comes from broader fund material but is not strongly confirmed by the main sources. - -Overall, the data is **accurate**, well-sourced (primarily from the official 3B Future Health Fund website and supporting press releases), and captures the fund’s investment thesis, geographic and sector focus, fund structure, and leadership effectively. The main limitation is missing **AUM/fund size** data, which is not publicly available. - -Sources used: -https://3bfuturehealth.com/ -https://3bfuturehealth.com/investment -https://3bfuturehealth.com/contact/ -https://3bfuturehealth.com/team/ -https://fore.bio/fore_biotherapeutics_raises_38_million_series_d-2_financing/ -https://www.founderlodge.com/investor-profile/3b-future-health-fund-i-ii-11882 -https://nordic9.com/companies/3b-future-health-fund/" -"İstanbul Portföy Yönetimi ","http://www.istanbulportfoy.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""XCapital Girişim Sermayesi Yatırım Fonu"",""fundSize"":""TRY 1,036,504,007"",""fundSizeSourceUrl"":""https://www.istanbulportfoy.com/fon?istanbul-portfoy-yonetim-a-s-xcapital-girisim-sermayesi-yatirim-fonu&fon=CPL"",""geographicFocus"":[""Turkey"",""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""software"",""technology"",""gaming""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.istanbulportfoy.com/fon?istanbul-portfoy-yonetim-a-s-xcapital-girisim-sermayesi-yatirim-fonu&fon=CPL""}],""headquarters"":""Dereboyu Caddesi No: 78 Kat: 4 Ortaköy Beşiktaş İstanbul"",""investmentThesisFocus"":[""Mutlak getiri hedefiyle makroekonomik ve siyasal analizlere dayalı yatırım"",""Güvenilir ve uygun şartlarda tüm enstrümanlardan yatırım"",""Kapsamlı portföy yönetimi, risk yönetimi ve çeşitlendirme stratejileri"",""Bağımsız, butik yaklaşım ile yatırımcı profiline göre özel portföyler oluşturma"",""Hızlı karar alma ve kriz yönetimi avantajı sunma""],""investorDescription"":""İstanbul Portföy Yönetimi, 2007 yılında kurulmuş, 20 yıldan fazla piyasa deneyimine sahip yöneticilerle faaliyet gösteren Türkiye'nin en büyük yerli sermayeli bağımsız portföy yönetim şirketidir. Misyonu, yatırımcılara kendi belirledikleri risk ölçütleri çerçevesinde karmaşık finansal piyasalarda minimum riskle istikrarlı ve beklentileri aşan getiriler sağlamaktır. Yatırım felsefesi, makroekonomik ve siyasal analizler doğrultusunda mutlak getiri hedefler ve güvenilir tüm enstrümanlardan uygun şartlarda yatırım yapmayı amaçlar. İstanbul Portföy, bağımsız, butik ve tecrübeli bir yaklaşımla yatırımcı profiline göre özel portföyler oluşturarak hızlı karar alma ve kriz yönetimi avantajı sunar."",""linkedDocuments"":[""https://www.istanbulportfoy.com/uploads/689dd64a585ab.pdf"",""https://istanbulportfoy.com/uploads/ARE-finansal-raporlar-31-12-2015-658f6172d2831.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""portfolioHighlights"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""No explicit overall Assets Under Management (AUM) found on the website or linked documents. The only specific fund detailed is the XCapital Girişim Sermayesi Yatırım Fonu with a fund size of approximately 1.04 billion TRY as of March 12, 2024. Estimated investment size per company details are not provided in the sources."",""seniorLeadership"":[{""name"":""Barış Hocaoğlu"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://istanbulportfoy.com/ekibimiz"",""title"":""Genel Müdür (General Manager)""},{""name"":""Ahmet Burak Üstay"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://istanbulportfoy.com/ekibimiz"",""title"":""Genel Koordinatör (General Coordinator)""}],""sources"":{""headquarters"":""http://istanbulportfoy.com/sirket-bilgileri"",""investmentThesisFocus"":""http://istanbulportfoy.com/hakkimizda#misyon"",""investorDescription"":""http://istanbulportfoy.com/hakkimizda"",""portfolioHighlights"":""http://istanbulportfoy.com/fon-listesi""},""websiteURL"":""http://www.istanbulportfoy.com/""}","Correctness: 95% Completeness: 85% - -The information about the **XCapital Girişim Sermayesi Yatırım Fonu** is largely factually correct. The fund size of approximately TRY 1,036,504,007 is consistent with publicly available data indicating a fund total value around TRY 1.04 billion as of early 2024[1][5]. The stated sector focus on software, technology, and gaming aligns with the fund's described target industries that involve high growth and value-added potential companies in technology and related fields[1]. The investment thesis emphasizing macroeconomic and political analysis, diversified instruments, and tailored portfolio management matches the investor's official philosophy and mission statements from their website[1][sourceUrl]. The headquarters location in Ortaköy Beşiktaş Istanbul is confirmed by the company info page[1][sourceUrl]. Senior leadership names and titles are accurately named from the team webpage[1][sourceUrl]. - -However, there are notable **missing fields** reducing completeness: -- The overall assets under management (AUM) for Istanbul Portföy Yönetimi as a whole is not publicly specified, only this fund's size is given. This is a common omission but important for a complete profile. -- The investment stage focus of the fund is not publicly detailed anywhere in the sources, marked as ""Not Available"". -- Fund-level specifics such as estimated typical investment size per portfolio company are not found. -- Portfolio highlights and performance metrics such as return history are also absent from the disclosed material. -Despite these gaps, the presented data accurately reflects what is publicly available from official fund documents and websites[1][3][5]. - -The completeness score (85%) reflects that while core fund data and investor description are well represented and sourced, detailed investment stage focus and AUM breadth, plus portfolio composition and returns, are not disclosed publicly, limiting full transparency. - -Sources used: -- Fund official page (https://www.istanbulportfoy.com/fon?istanbul-portfoy-yonetim-a-s-xcapital-girisim-sermayesi-yatirim-fonu&fon=CPL) -- Istanbul Portföy Yönetimi company overview (http://istanbulportfoy.com/hakkimizda) -- Fund information sites (https://www.fonrehberi.com/CPL-fonu-kazanci-nedir.html) -- Leadership info (http://istanbulportfoy.com/ekibimiz)" -301,"https://www.301inc.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""301 INC Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Food ecosystem"",""Digital Capabilities"",""Emerging Food Brands"",""New Go-to-Market Models"",""Agriculture & Packaging Technologies""],""sourceUrl"":""https://www.301inc.com/""}],""headquarters"":""1 General Mills Blvd, Minneapolis, Minnesota 55426, US"",""investmentThesisFocus"":[""Digital Capabilities (connected commerce removing friction in food value chain)"",""Emerging Food Brands (new products servicing growing or underserved consumer groups in human and pet food)"",""New Go-to-Market Models (reimagining food beyond CPG including food service, food and healthcare intersections, pet ecosystems)"",""Agriculture & Packaging Technologies (sustainability and circular economy capabilities)"",""Provide strategic perspective, technical expertise, and industry connections to portfolio companies""],""investorDescription"":""301 INC is the venture capital arm of General Mills, investing in driven and passionate founders transforming the food ecosystem. Their strategy includes partnering with founder teams to help realize ambitions. Investment focus areas are digital capabilities, emerging food brands, new go-to-market models, and agriculture & packaging technologies emphasizing sustainability. They provide more than capital by offering strategic perspective, technical expertise, and industry connections."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""funds.investmentStageFocus"",""funds.geographicFocus"",""funds.estimatedInvestmentSize"",""funds.fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Fearless Fund"",""Supply Change Capital""],""researcherNotes"":""No explicit AUM or fund size was found on the company website or public sources. The headquarters address was obtained from a third-party directory matching company domain and General Mills association. 301 Inc. is currently paused from making new investments as of early 2025 but maintains its portfolio."",""seniorLeadership"":[{""name"":""Kristen Harvey"",""sourceProvider"":""Perplexity"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://rocketreach.co/301-inc-email-format_b55a6bc3f6954371"",""investmentThesisFocus"":""https://www.301inc.com/"",""investorDescription"":""https://www.301inc.com/"",""portfolioHighlights"":""https://www.301inc.com/"",""seniorLeadership"":""https://www.startribune.com/general-mills-g-works-301-inc-close-shut-down-discontinue-innovation-venture-gold-medal/601230377""},""websiteURL"":""https://www.301inc.com/""}","Correctness: 95% Completeness: 85% - -The information provided about 301 INC as General Mills' venture capital arm investing in food ecosystem transformation is factually accurate and well supported by multiple sources[1][3][4]. The stated investment focuses—digital capabilities, emerging food brands, new go-to-market models, and agriculture & packaging technologies emphasizing sustainability—are consistent with publicly available descriptions of 301 INC's thesis[1][3][4]. The headquarters address aligns with third-party directory data linked to General Mills[Details noted by the user; no contradictory sources found]. - -Kristen Harvey’s role as Managing Director is confirmed through news sources covering leadership changes[2][4]. The note about 301 INC pausing new investments and being in a state of holding its existing portfolio as of early 2025 is corroborated by news reporting on General Mills shutting down G-Works and pausing 301 INC investments[2][3]. - -However, the scores are not perfect for the following reasons: - -- Core financial metrics such as the fund’s overall Assets Under Management (AUM), fund size, estimated investment sizes, investment stage focus, and geographic focus are missing or marked “Not Available.” These omissions reduce completeness as this data is often important for a comprehensive profile of a venture capital fund[User’s own notes and no disclosure found in sources]. - -- While the portfolio highlights “Fearless Fund” and “Supply Change Capital” are mentioned, they are not referenced or detailed in the search results. Other known investments include BeeHero, Everything Legendary, and PetPlate, per news coverage[3][4]. Lack of mention or verification of these highlighted portfolio funds lowers completeness. - -- The user’s description that 301 INC provides strategic perspective, technical expertise, and industry connections beyond capital aligns with the general narrative but is not explicitly detailed in the linked sources beyond broad descriptions[1][3]. This is probably accurate but less directly cited. - -In summary, the core factual content about the fund’s identity, leadership, investment focus, and current operational status is accurate. The incompleteness mainly derives from missing financial specifics, certain portfolio details, and more granular stage/geographic data that are absent in public sources. - -Key sources: -- General Mills website and 301 INC pages (https://www.301inc.com/) -- Star Tribune article on shutting down innovation and pausing investments (https://www.startribune.com/general-mills-g-works-301-inc-close-shut-down-discontinue-innovation-venture-gold-medal/601230377) -- Food Dive coverage on investment strategy changes (https://www.fooddive.com/news/cheerios-maker-general-mills-overhauls-investment-strategy-in-young-brands/741618/) -- Global Venturing on leadership changes at 301 INC (https://globalventuring.com/corporate/consumer/tran-general-mills-301-investment-arm/)" -Astanor,https://www.astanor.com/,"{""funds"":[{""estimatedInvestmentSize"":""EUR 5-10M"",""fundName"":""Venture Fund"",""fundSize"":""EUR 800 million"",""fundSizeSourceUrl"":""https://www.preqin.com/data/profile/fund-manager/astanor-ventures/315547"",""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Series A"",""Series B""],""sectorFocus"":[""Agriculture"",""Food Tech"",""Microbiology"",""Bio-based Economies""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://astanor.com/venture""},{""estimatedInvestmentSize"":""EUR 15-80M"",""fundName"":""Growth Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Growth"",""Small Buyouts""],""sectorFocus"":[""Innovative Agrifood Companies""],""sourceUrl"":""https://astanor.com/growth""}],""headquarters"":""Luxembourg"",""investmentThesisFocus"":[""Finding, supporting, and scaling disruptive, impactful solutions addressing agrifood and related sectors."",""Focus on scalable businesses with global impact in agriculture, food tech, microbiology, and bio-based economies."",""Investing in innovative agrifood companies with proven business model, tech and market fit delivering sustainable impact.""],""investorDescription"":""Astanor backs ambitious entrepreneurs with global disruptive, scalable solutions that create systemic change by leveraging impact investing, focusing on reinventing and repairing the broken food system with sustainable practices including farming, new materials, waste management, energy efficiency, and sustainable food production."",""linkedDocuments"":[""https://astanor.com/wp-content/uploads/2025/01/2024-OPIM-disclosure-final.pdf"",""https://astanor.com/wp-content/uploads/2025/04/GHVM-S2-Website-Disclosure-.pdf""],""missingImportantFields"":[""seniorLeadership""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 800,000,000"",""sourceUrl"":""https://astanor.com/venture""},""portfolioHighlights"":[""AllSeed"",""Amplifye"",""Apeel"",""Aphea Bio"",""Bettafish"",""Biofluff"",""Bloom Ag"",""Calice"",""Calyxia"",""CrowdFarming""],""researcherNotes"":""AUM is explicitly stated for the venture fund at 800 million euros. Fund sizes are not available on the website. Headquarters contact address is not explicitly provided on the site. Senior leadership detailed names and titles are not found on the main team page."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.preqin.com/data/profile/fund-manager/astanor-ventures/315547"",""investmentThesisFocus"":""https://astanor.com/home/"",""investorDescription"":""https://astanor.com/home/"",""portfolioHighlights"":""https://astanor.com/portfolio""},""websiteURL"":""https://www.astanor.com/""}","Correctness: 90% Completeness: 85% - -The information about **Astanor Ventures** is largely **factually accurate** with respect to the fund sizes, investment stages, sector focus, geographic focus, and investment thesis. Reliable sources confirm: - -- Astanor manages around **€800 million in funds and vehicles** total, which aligns with the stated AUM[2][4]. -- The **Venture Fund focuses on early-stage investments (Series A and B)** in areas such as **agriculture, food tech, microbiology, and bio-based economies**[2][4]. -- The **Growth Fund focuses on growth and small buyouts targeting innovative agri-food companies**, consistent with the description; however, its exact size is not publicly available, matching the data provided[2]. -- The investor’s headquarters are correctly identified as **Luxembourg**, though other sources often reference Brussels or Belgium as the operational base, which might create some ambiguity[2][4]. -- The investment thesis emphasizing **disruptive, scalable solutions for sustainable agrifood systems** matches Astanor’s stated mission[3][4]. -- Portfolio highlights such as **Apeel and Amplifye** are consistent with Astanor’s publicly disclosed portfolio[4]. - -**Limitations and missing elements:** - -- The **senior leadership information is missing**, consistent with the researcher notes, and this reduces completeness since Astanor’s team details are not fully disclosed on public pages[4]. -- The **headquarters contact address is not explicitly provided on the public site**, reducing completeness on administrative details. -- Some nuance in fund sizes exists: news sources report a **second venture fund closing at €360 million**, not directly €800 million for that single fund, but the total AUM across funds and vehicles adds to ~€800 million[1][2][4]. -- Specific investment size ranges per fund are not always clearly verified by external sources but appear plausible and consistent with typical venture and growth fund structures. - -Sources: -- https://www.preqin.com/data/profile/fund-manager/astanor-ventures/315547 (fund size, headquarters) -- https://astanor.com/home/ (investment thesis, investor description) -- https://astanor.com/portfolio (portfolio highlights) -- https://agfundernews.com/impact-investor-astanor-ventures-closes-second-agrifood-fund-at-384-million (fund size and focus) -- https://impact-investor.com/agri-food-investor-astanor-announces-e360m-final-close-for-second-fundef/ (fund size and investment focus) -- https://app.dealroom.co/investors/astanor_ventures (AUM and team info) -- https://astanor.com/wp-content/uploads/2025/01/2024-OPIM-disclosure-final.pdf (investment strategy and impact focus) - -In summary, the core data about **fund sizes, investment stages, sectors, and thesis is supported by credible sources**, but the absence of some leadership details and precise office contacts lowers completeness slightly. The correctness is high as no false or contradicted claims were detected, though some fund size detail requires careful interpretation given multiple fund vehicles." -European Circular Bioeconomy Fund,https://www.ecbf.vc,"{""funds"":[{""estimatedInvestmentSize"":""EUR 2.5-10 million"",""fundName"":""ECBF"",""fundSize"":""EUR 300,000,000"",""fundSizeSourceUrl"":""https://www.ecbf.vc/"",""geographicFocus"":[""27 EU member states"",""Countries associated with EU Horizon 2020""],""investmentStageFocus"":[""Technology Readiness Level (TRL) 6-9"",""Some first significant commercial traction""],""sectorFocus"":[""Ag- and food"",""Forestry"",""Blue economy"",""Industrial biotech"",""Bio-based chemicals and materials"",""Packaging"",""Personal & home care"",""Construction"",""Textiles""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/investment-criteria""}],""headquarters"":""ECBF Management GmbH, Poppelsdorfer Allee 17, 53115 Bonn, Germany"",""investmentThesisFocus"":[""Invests in technologies, products, processes, business models, and emerging value chains linked to bio-based products from renewable resources."",""Targets sectors including ag- and food, forestry, blue economy, industrial biotech, bio-based chemicals and materials, packaging, personal & home care, construction, textiles."",""Focuses on companies or projects with Technology Readiness Level (TRL) 6-9 and some first significant commercial traction."",""ESG criteria are mandatory, emphasizing CO2 reduction, biodiversity, circularity, and mitigation of toxic substances."",""Investment size ranges from EUR 2.5 to 10 million per company."",""Geographical focus is 27 EU member states plus countries associated with EU Horizon 2020 program.""],""investorDescription"":""Venture Capital for Transformation: ECBF is the first private venture capital impact fund exclusively dedicated to the circular bioeconomy, aiming to catalyze transition towards sustainability and support European Green Deal goals for climate neutrality by 2050. They invest EUR 300m in growth-stage companies with innovation potential, favorable returns, and sustainable impact, using flexible financing tools from equity to mezzanine in syndicates with private and public investors. The investment team has over 100 years of VC and industry experience, with members from 14 nations combining diversity, economic and scientific expertise, and entrepreneurial spirit. ECBF supports founders whose technologies revolutionize industries and improve lives and the environment, believing that impact and return go hand-in-hand and that ESG-aligned corporate strategy is key for competitive advantage."",""linkedDocuments"":[""https://www.ecbf.vc/s/2412_ECBF_Impact_Study_Final_report.pdf""],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 300,000,000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/""},""portfolioHighlights"":[""Amphistar"",""Apheabio"",""Biosyntia"",""Doktar"",""Elicit Plant"",""Heura"",""In-Ovo"",""Nuritas"",""Ororatech""],""researcherNotes"":""Fund size is not explicitly mentioned on the website. AUM is inferred from the total fund size mentioned (EUR 300 million). The fund name is ECBF as stated in investment criteria page."",""seniorLeadership"":[{""name"":""Marie Asano"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Partner, Senior Investment Manager""},{""name"":""Michael Brandkamp"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Managing Partner, Managing Director""},{""name"":""Cornelia Frentz"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Director Governance and Sustainable Investing""},{""name"":""Guillaume Gras"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Investment Director""},{""name"":""Isabelle Laurencin"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Partner, Global lead Climate tech VC""},{""name"":""Michael Nettersheim"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Managing Partner""},{""name"":""Stéphane Roussel"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Partner, Managing Director""},{""name"":""Dirk Saßmannshausen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""CFO / Managing Partner""},{""name"":""Gisela van den Boom"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Finance Director""},{""name"":""Dr. Dahai Yu"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Senior Advisor""},{""name"":""Rob Kirschbaum"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.ecbf.vc/team"",""title"":""Investment Advisory Committee""}],""sources"":{""headquarters"":""https://www.ecbf.vc/contact"",""investmentThesisFocus"":""https://www.ecbf.vc/investment-criteria"",""investorDescription"":""https://www.ecbf.vc/"",""portfolioHighlights"":""https://www.ecbf.vc/portfolio""},""websiteURL"":""https://www.ecbf.vc""}","Correctness: 98% Completeness: 95% - -The factual information about ECBF (European Circular Bioeconomy Fund) is highly accurate and consistent with multiple authoritative sources. ECBF is indeed the first private venture capital impact fund exclusively dedicated to the circular bioeconomy in Europe. It targets growth-stage companies with Technology Readiness Level (TRL) 6-9 and some early commercial traction, with investment sizes ranging from approximately EUR 2.5 to 10 million per company. The total fund size is EUR 300 million, as stated on the ECBF website[3] and corroborated by EIB and OpenVC profiles[1][2]. - -The geographic focus on the 27 EU member states plus Horizon 2020 associated countries is confirmed by official descriptions[1][2]. Sector and investment thesis focus on agri-food, forestry, blue economy, industrial biotechnology, bio-based chemicals and materials, packaging, personal and home care, construction, and textiles matches ECBF's own investment criteria documentation[3]. The fund's commitment to ESG criteria, emphasizing CO2 reduction, biodiversity, circularity, and harmful substance mitigation, aligns with the publicly stated mission and sustainable investing focus[3]. - -The stated headquarters at ECBF Management GmbH, Poppelsdorfer Allee 17, 53115 Bonn, Germany, matches listings in investor profiles and the official website[2][3]. The senior leadership names and roles provided correspond well to the team described on the ECBF team page[4]. Portfolio companies such as Amphistar, Nuritas, and others also appear in ECBF's portfolio disclosures[3]. - -The only minor incompleteness is that some sources focus on a target or commitment size of EUR 250 million (e.g., OpenVC), while ECBF's main website states EUR 300 million as the fund size, which is likely the finalized figure. Also, the managing and advisory entity structure (Luxembourg AIFM vs. ECBF Management GmbH) could be more explicitly detailed, but this is a subtle organizational distinction rather than factual error[1]. - -Overall, the information is comprehensive and well-aligned with publicly available, official sources: - -- ECBF official website: https://www.ecbf.vc -- European Investment Bank / EIB: https://www.eib.org/en/products/equity/funds/european-circular-bioeconomy-fund -- OpenVC profile: https://www.openvc.app/fund/ECBF%20European%20Circular%20Bioeconomy%20Fund -- ECBF team page: https://www.ecbf.vc/team - -This evaluation supports a correctness score of 98% and completeness of 95%." -2050,"https://2050.do/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""2050 Perpetual Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Sustainability"",""Social Impact"",""Environmental""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://2050.do/""}],""headquarters"":""10, Boulevard de la Bastille, Paris, Île-de-France 75012, FR"",""investmentThesisFocus"":[""Long-term investments in companies that align with people, society, and planet."",""Dedication of part of the fund to open source and strategic resources to accelerate market switches."",""Use of a strategic Alignment Method based on 6-7 Key Alignment Indicators integrating ESG standards, SFDR, EU taxonomy, and advanced impact frameworks."",""Evaluation on financial, environmental, and social performance."",""Support for companies that align business interests with societal and environmental goals.""],""investorDescription"":""2050 backs mission driven founders engaged in the transition towards a sustainable economy, with a unique approach including a perpetual fund open for 99 years, no shareholders, and a focus on aligning economic development with social and environmental interests. The 2050 System is an investment framework focused on financing a 'fertile future' aligned with five key essentials: healthy eating, mental and physical well-being, learning and creativity, sustainable living and production, and trust in the economy. 2050.do promotes a holistic approach to sustainability with a triple objective of creating financial, environmental, and social value by investing into companies that are sustainable by design. They identify, select, support, and invest in 'aligned companies' whose economic interests align with society and the planet, positioning them to succeed in tomorrow's economy."",""linkedDocuments"":[""https://2050.do/wp-content/uploads/2024/07/2050-Responsible-Investment-Policy-V03.24.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Waves of Change"",""HubCity"",""Bene Bono"",""Settly"",""Climate Dividends"",""Lex Ferenda"",""Apiary"",""Stockholm Resilience Centre"",""Tek4Life"",""Omie""],""researcherNotes"":""AUM and headquarters address are not mentioned on the website. The firm operates a single perpetual fund open for 99 years with no shareholders. No specific estimated investment size or fund size details are available."",""seniorLeadership"":[{""name"":""Marie Ekelund"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://2050.do/team/"",""title"":""Founder & President""},{""name"":""Olivier Mathiot"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://2050.do/team/"",""title"":""General Manager""},{""name"":""Aude Duprat"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://2050.do/team/"",""title"":""General Secretary""},{""name"":""Guillaume Bregeras"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://2050.do/team/"",""title"":""Chief Knowledge Officer & General Manager""}],""sources"":{""headquarters"":""https://2050.do/contact-us/"",""investmentThesisFocus"":""https://2050.do/alignment/"",""investorDescription"":""https://2050.do/"",""portfolioHighlights"":""https://2050.do/portfolio/""},""websiteURL"":""https://2050.do/""}","Correctness: 98% Completeness: 85% - -The provided information about the 2050 Perpetual Fund is highly factually accurate and consistent with multiple authoritative sources. It correctly identifies: - -- The fund as an *evergreen* or perpetual fund lasting 99 years, with no fixed end date for returns or liquidation, as confirmed by Marie Ekeland’s descriptions in sources [1] and [4]. -- The fund's purpose to support long-term investments aligned with sustainability, social impact, and environmental outcomes. -- The use of an alignment methodology integrating ESG standards, SFDR, and EU Taxonomy—as explained on the official 2050 alignment page [3]. -- The fund’s innovative structure, including lack of shareholders, focus on open source and strategic commons, and a governance system based on stakeholder alignment detailed in sources [3] and [4]. -- The description of the leadership and the fund’s investment thesis matches official team listings and stated mission from the 2050 website [3] and [4]. -- Portfolio highlights like Waves of Change and HubCity correspond with those featured on the fund’s website [3]. - -The completeness score is lower primarily because: - -- **Overall Assets Under Management (AUM) and exact Fund Size** are not publicly disclosed, acknowledged both in your data and confirmed by multiple news sources where Marie Ekeland declines to specify exact figures [1]. -- Geographic focus and investment stage focus are marked ""Not Available"" and cannot be confirmed or detailed from public sources, which limits completeness. -- While the description is comprehensive, some operational details such as specifics on liquidity windows, regulatory approvals status (pending AMF approval as of late 2020 [2]), and detailed portfolio company data are not fully enumerated. -- Headquarters address and senior leadership names are verified on the official 2050 site, but no public annual reports or full financial disclosures exist to fully cross-check every detail. - -URLs used for verification: - -- https://2050.do/ -- https://2050.do/alignment/ -- https://2050.do/team/ -- https://sifted.eu/articles/marie-ekeland-2050 -- https://techcrunch.com/2020/11/24/marie-ekeland-launches-2050-a-new-fund-with-radically-ambitious-long-term-goals/ -- https://www.hec.edu/en/society-organizations-institute/news/long-view-marie-ekeland-regenerative-investment-and-systemic-change - -No fabricated or hallucinated details were identified. The main gaps stem from unavailable AUM and fund size metrics due to non-disclosure, which is standard for some private and evergreen vehicles." -Aqua Spark,http://www.aqua-spark.nl,"{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000 or more"",""fundName"":""Aqua-Spark Global Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Growth Stage"",""Expansion Stage""],""sectorFocus"":[""Sustainable aquaculture"",""Fish farms"",""Feed mills"",""Hatcheries"",""Nutritious feed ingredients"",""Disease battling technologies"",""Aqua tech innovations"",""Waste valorisation"",""Seafood alternatives""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.aqua-spark.nl/invest-in-aqua-spark""},{""estimatedInvestmentSize"":""EUR 100,000 or more"",""fundName"":""Aqua-Spark Africa"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Africa""],""investmentStageFocus"":[""Early Stage"",""Growth Stage""],""sectorFocus"":[""Sustainable aquaculture"",""Fish farms"",""Feed mills"",""Hatcheries"",""Disease battling technologies"",""Aqua tech innovations"",""Waste valorisation"",""Seafood alternatives""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.aqua-spark.nl/invest-in-aqua-spark""}],""headquarters"":""Nieuwegracht 32, 3512 LS Utrecht, The Netherlands"",""investmentThesisFocus"":[""Long-term partnerships focusing on system redesign across the aquaculture value chain globally."",""Investment sectors include disease battling, aqua tech, waste valorisation, diverse seafood alternatives, production improvements, and sustainable feed ingredients."",""Focus on advancing healthy, sustainable, affordable aquaculture production delivering comparable financial returns."",""Investment accepted from accredited or qualified investors with a minimum investment size of EUR 100,000."",""Marketing passport to market investments across EU member states, Norway, Iceland, and Liechtenstein."",""Diverse international investor base from over 25 countries.""],""investorDescription"":""Aqua-Spark is a global community with over 300 investors from more than 25 countries, investing in sustainable commercial aquaculture. Their mission is to move the aquaculture industry towards healthy, sustainable, affordable production with comparable financial returns. They focus on fish farms, feed mills, hatcheries, nutritious feed ingredients that minimize natural resource demands, disease battling technologies, aqua tech innovations improving feeding practices and animal welfare, waste valorisation solutions to enhance environmental impact and profitability, and diversifying seafood with plant and cell-based alternatives."",""linkedDocuments"":[""https://aqua-spark.nl/app/uploads/2022/07/impact-report-2021-Final.pdf"",""https://aqua-spark.nl/app/uploads/2025/03/Finalper-2024-12-01Key-Information-Document-Aqua-Spark-Cooperatieve-U.A.-Dec-2024-ENG-FINAL.pdf"",""https://aqua-spark.nl/app/uploads/2024/04/AquaSpark_2023_Impact_Report_2.pdf"",""https://aqua-spark.nl/app/uploads/2022/06/Aqua-Spark-Sustainable-Blue-Economy-Finance-Initiative-2021-report.pdf"",""https://aqua-spark.nl/app/uploads/2023/02/Key-Information-Document-Aqua-Spark-Cooperatieve-U.A.-Feb-2023-ENG-FINAL.pdf"",""https://aqua-spark.nl/app/uploads/2024/11/Interim-narative-report-2023.pdf"",""https://aqua-spark.nl/app/themes/aqua-spark/inc/pdf/aqua-insights-04-22/docs/aqua-insights_2_def.pdf"",""https://aqua-spark.nl/app/uploads/2024/11/FInancial-report-2023.pdf"",""https://aqua-spark.nl/app/uploads/2024/11/Aqua-Spark-Annex-V_2023.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""investmentStageFocus"",""sectorFocus""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ACE Aquatec"",""Aquarech"",""CageEye"",""Calysta"",""Chicoa Fish Farm"",""eFishery"",""enifer"",""Fisher Piscicultura"",""Hatch"",""Hofseth BioCare"",""Indian Ocean Trepang"",""Kuehnle AgroSystems"",""Lake Harvest Group"",""Matorka"",""Oceano Fresco"",""Proteon Pharmaceuticals"",""Protix"",""Sea6 Energy"",""Swedish Algae Factory"",""Tepbac"",""Umami Bioworks"",""Wanda Fish"",""XpertSea""],""researcherNotes"":""Aqua-Spark does not explicitly disclose overall assets under management or fund sizes on their website or in linked reports. The minimum investor ticket size is stated as EUR 100,000. The two named funds are Aqua-Spark Global Fund and Aqua-Spark Africa."",""seniorLeadership"":[{""name"":""Mike Velings"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aqua-spark.nl/team"",""title"":""Co-Founder and CEO""},{""name"":""Maria Velkova"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aqua-spark.nl/team"",""title"":""Chief Portfolio Officer (CPO)""},{""name"":""Leon van Schaik"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aqua-spark.nl/team"",""title"":""Chief Finance and Risk Officer (CFRO)""},{""name"":""Stephanie Rakels"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aqua-spark.nl/team"",""title"":""Chief Development Officer (CDO)""},{""name"":""Glenn Flanders"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aqua-spark.nl/team"",""title"":""Partner""},{""name"":""Bert van den Hoek"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aqua-spark.nl/team"",""title"":""Partner""}],""sources"":{""headquarters"":""http://www.aqua-spark.nl/contact"",""investmentThesisFocus"":""http://www.aqua-spark.nl/invest-in-aqua-spark"",""investorDescription"":""http://www.aqua-spark.nl/about-us"",""portfolioHighlights"":""http://www.aqua-spark.nl/portfolio""},""websiteURL"":""http://www.aqua-spark.nl""}","Correctness: 95% Completeness: 85% - -The information provided about **Aqua-Spark** is largely factually accurate and aligns well with publicly available, credible data. Notably: - -- **Investor base and mission:** The description that Aqua-Spark has over 300 investors from 25+ countries and focuses on sustainable, healthy, affordable aquaculture matches the company's own statements on their website and in impact reports[3][5]. - -- **Investment focus:** The detailed sector focus on fish farms, feed mills, hatcheries, nutritious feed ingredients, disease battling technologies, aqua tech innovations, waste valorisation, and seafood alternatives is correct as per Aqua-Spark's official investment thesis[3]. The stated minimum investment size of EUR 100,000 is consistent with disclosure documents and marketing materials[3]. - -- **Funds:** The two named funds—Aqua-Spark Global Fund and Aqua-Spark Africa—correspond to known vehicles and their geographic and stage focus fits publicly disclosed information, including the Aqua-Spark Africa fund aiming for a EUR 45-50 million close with initial investments targeted to African aquaculture firms[4]. - -- **Assets under management (AUM):** The absence of explicit overall assets under management in the information is noted accurately. Public sources show AUM was around EUR 194 million in 2021 and had grown to nearly EUR 500 million by 2023[1][2]. This suggests the information is slightly outdated on AUM, and a current explicit figure is missing. - -- **Senior leadership:** The personnel named (CEO Mike Velings, CPO Maria Velkova, CFRO Leon van Schaik, etc.) also correspond to the current team listed on the official site[3]. - -The main limitations reducing completeness include: - -- **Lack of exact fund size disclosures:** The text states ""Not Available"" for fund sizes, which reflects a gap since Aqua-Spark gives some indications around overall capital but does not break down exact fund sizes publicly. - -- **More current AUM figures or growth ambitions:** While referenced indirectly, the material does not clearly state recent AUM (~€500M as of 2023) or the ambitious goal to scale to €3-5 billion by 2030[1]. - -- **Investment stages for each fund:** While provided generally, more granular detail or updates on stage focus per fund could enhance completeness. - -- **Performance data and impact results:** No financial or impact performance metrics are included, which are often part of more complete fund fact sheets. - -Overall, the data provided is a solid factual summary but would be more complete with up-to-date AUM figures and explicit fund size data, which are not fully disclosed publicly but can be partially inferred from reports and news articles. - -Sources: -[1] https://impact-investor.com/aqua-spark-ceo-institutional-capital-key-to-growing-aquaculture/ -[2] https://www.seafoodsource.com/news/premium/business-finance/aqua-spark-to-invest-in-shellfish-genetics-firm -[3] https://aqua-spark.nl -[4] https://edfimc.eu/wp-content/uploads/2025/07/Disclosure-Aqua-Spark-Africa-Jul-2025.pdf -[5] https://aqua-spark.nl/app/uploads/2022/07/impact-report-2021-Final.pdf" -2150,"https://2150.vc ","{""funds"":[{""estimatedInvestmentSize"":""USD 500,000 to 5,000,000"",""fundName"":""2150 Investment Strategy"",""fundSize"":""USD 50M"",""fundSizeSourceUrl"":""https://www.2150.vc/wp-content/uploads/2024/05/2150_Impact-report-2022_Master_new.pdf"",""geographicFocus"":[""North America""],""investmentStageFocus"":[""Seed"",""Early-stage""],""sectorFocus"":[""Technology"",""Healthcare""],""sourceProvider"":""External Impact Report"",""sourceUrl"":""https://www.2150.vc/wp-content/uploads/2024/05/2150_Impact-report-2022_Master_new.pdf""}],""headquarters"":""Swan House, 6th Floor, 17-19 Stratford Place, London, W1C 1BQ"",""investmentThesisFocus"":[""Focus on building companies leveraging structural shifts, eliminating inefficiencies, removing pain points, and enhancing environmental benefits."",""Backing entrepreneurs with vision, grit, and ability to develop proprietary technology, purposeful teams, and progressive cultures."",""Target technology champions ('Gigacorns') that can benefit billions, generate substantial commercial value, and reduce emissions."",""Sustainable venture model balancing returns with Sustainable Development Goals (SDGs) and Internal Rate of Return (IRR).""],""investorDescription"":""2150 backs tech entrepreneurs innovating in the 'Urban Stack'—building businesses changing city design, construction, and power for good. Their investment strategy seeks 'Gigacorns': technology champions with potential to benefit billions, create significant commercial value, and reduce gigatons of emissions. 2150 is part of Urban Partners, a platform with differentiated investment strategies focused on urban problem solving. Their approach is a sustainable venture model combining institutional strength and entrepreneurial spirit, aiming to drive returns for cities, citizens, and investors, valuing SDGs (Sustainable Development Goals) as much as IRR (Internal Rate of Return). This approach is termed 'Constructive Capital.'"",""linkedDocuments"":[""https://www.2150.vc/wp-content/uploads/2024/05/2150_Impact-report-2022_Master_new.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""AtmosZero"",""Ember"",""OpenSolar"",""Metycle"",""Mission Zero Technologies"",""Aeroseal"",""Nabr"",""Vammo"",""Blue Frontier"",""Nodes & Links""],""researcherNotes"":""The website did not explicitly mention formal fund names, so the company's name was used for the investment strategy name. The overall assets under management (AUM) are not disclosed on the website or linked documents. Fund size and estimated investment sizes were found in the 2022 Impact Report PDF. Geographic focus was North America as per the report. Sector focus is technology and healthcare as stated in the report. Investment stages are seed and early-stage as indicated in the document."",""seniorLeadership"":[{""name"":""Rahul Parekh"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Partner""},{""name"":""Mikkel Bülow-Lehnsby"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Partner & Co-Founder""},{""name"":""Jacob Bro"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Partner & Co-Founder""},{""name"":""Peter Hirsch"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Head of Sustainability""},{""name"":""Alexander Kielland"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""COO""},{""name"":""Christian Hernandez"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Partner & Co-Founder""},{""name"":""Christian Joelck"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Partner & Co-Founder""},{""name"":""Christian Hernandez"",""sourceProvider"":""External"",""sourceUrl"":""https://www.2150.vc/our-team/christian-hernandez/"",""title"":""Partner & Co-Founder""},{""name"":""Nicole Florack"",""sourceProvider"":""External"",""sourceUrl"":""https://www.2150.vc/our-team/nicole-florack/"",""title"":""Vice President""},{""name"":""Jacob Bro"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/2150vc"",""title"":""Partner & Co-Founder""},{""name"":""Max Blanshard"",""sourceProvider"":""2150.vc"",""sourceUrl"":""https://www.2150.vc/team/"",""title"":""Vice President""},{""name"":""Rahul Parekh"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/2150vc"",""title"":""Partner""},{""name"":""Christian Joelck"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/2150vc"",""title"":""Partner & Co-Founder""},{""name"":""Mikkel Bülow-Lehnsby"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/2150vc"",""title"":""Partner & Co-Founder""},{""name"":""Alexander Kielland"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/2150vc"",""title"":""COO""},{""name"":""Christian Hernandez"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/2150vc"",""title"":""Partner & Co-Founder""}],""sources"":{""headquarters"":""https://2150.vc/get-in-touch/"",""investmentThesisFocus"":""https://2150.vc/manifesto/"",""investorDescription"":""https://2150.vc/"",""portfolioHighlights"":""https://2150.vc/investments/""},""websiteURL"":""https://2150.vc""}","Correctness: 90% Completeness: 85% - -The provided information on 2150 is largely factually accurate with respect to the firm’s investment strategy, focus sectors, geographic and stage focus, portfolio highlights, senior leadership, headquarters, and investor description as supported by the firm’s website and official impact report document (https://www.2150.vc, https://www.2150.vc/wp-content/uploads/2024/05/2150_Impact-report-2022_Master_new.pdf). The reported fund size of USD 50M and estimated investment size of USD 0.5M to 5M align with figures from the 2022 Impact Report. The investment thesis focus on “Gigacorns,” structural shifts, and sustainable urban innovation matches the firm’s stated manifesto. - -However, recent authoritative external sources indicate the following nuances that reduce the correctness and completeness: - -- Fund size discrepancies: Public news reports from early 2025 indicate 2150’s Fund II closed near €197-200M (~USD 215M-220M), substantially larger than the USD 50M fund size cited from the 2022 Impact Report, which likely referred to Fund I or an earlier stage fund. This suggests the provided “fundSize” is outdated or incomplete, and total assets under management might be considerably higher than stated[1][2][3]. - -- Geographic focus includes both North America and Europe, not solely North America as stated. Multiple sources including news and firm profiles mention investments spanning Europe as well as North America, with portfolio companies located in both regions[1][5]. - -- Investment stage focus tends more toward Series A and beyond according to recent external reports and profiles, whereas the data states seed and early-stage. While seed/early-stage is true historically, newer funds emphasize Series A onwards with larger check sizes (€3-15M)[1][3][5]. - -- Sector focus is broader: multiple sources highlight urban sustainability, built environment, climate tech, smart infrastructure, and mobility, beyond just “Technology” and “Healthcare” sectors[1][5]. - -- Missing overall assets under management (AUM) figure is noted as absent, while evidence indicates AUM is significantly higher than USD 50M (likely $200M+ given Fund II size)[1][2]. - -- Leadership information is accurate and well-sourced, consistent with the company website and LinkedIn. - -Summary: - -The fact pattern is mostly correct based on the firm’s own disclosures and linked documents, but it is not fully up to date nor completely comprehensive considering recent fund raises, geographic scope, stage focus, and sector breadth from newer external sources. The missing overall AUM is a key incompleteness. The fund size and focus should reflect Fund II’s much larger scale and broader European-North American footprint reported in 2025. - -**Sources:** - -- 2150 Impact Report 2022 and company website: https://www.2150.vc/wp-content/uploads/2024/05/2150_Impact-report-2022_Master_new.pdf, https://2150.vc/ - -- Tech.eu and Sifted articles on 2150 Fund II raise in 2025: https://tech.eu/2025/03/20/climatetech-vc-2150-closes-near-200m-for-fund-ii/, https://sifted.eu/articles/exclusive-2150-raises-e197m-for-second-fund - -- Private Equity International and venture capital databases: https://www.privateequityinternational.com/institution-profiles/2150.html, https://venturecapitalarchive.com/venture-funds/2150-2150-vc - -- Foundersuite Q1 2025 fund launches summary: https://blog.foundersuite.com/new-venture-funds-q1-2025/" -212,"http://www.212.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Growth Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Series A+""],""sectorFocus"":[""B2B technology solutions""],""sourceUrl"":""https://212.vc/#funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Simya International Accelerator Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed""],""sectorFocus"":[""B2B technology solutions""],""sourceUrl"":""https://212.vc/#funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""212 NexT"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""B2B technology solutions""],""sourceUrl"":""https://212.vc/#funds""}],""headquarters"":""5 Avenue Gaston Diderich L-1420 Luxembourg"",""investmentThesisFocus"":[""Support bold entrepreneurs building legendary companies."",""Enable local tech-savvy founders to solve difficult problems with global scalability."",""Focus on B2B tech startups primarily at Series A+ and seed stages."",""Operate a Growth Fund targeting global expansion by fine-tuning product-market fit and leveraging an extensive global network."",""Simya International Accelerator Fund offers early-stage startups access to guidance and global networks through an innovative, transparent process."",""Help founders expand globally, provide know-how and experience, and support international growth journeys through multiple funds.""],""investorDescription"":""212 is a leading venture capital firm backing B2B tech startups, focusing on helping entrepreneurs expand globally through its emerging market approach. They have a diverse team and offices in Istanbul, London, Doha, Dubai, and San Francisco. Their investment approach includes a Growth Fund (Series A+), supporting products with traction ready for global expansion by fine-tuning product-market fit and leveraging a global network; Simya International Accelerator Fund (Pre-seed, seed) partnering with Alchemist, offering early-stage startups guidance and network access through a fast investment process; and 212 NexT (Seed and Series A), dedicated to turning local B2B tech successes into global leaders by partnering with founders and supporting international growth."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""funds[].fundSize"",""funds[].estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Ever Dye"",""one.five"",""PhilosopherKing"",""Eluvium"",""Khenda"",""FibreCoat"",""ExoMatter"",""Voltfox"",""Keyrails"",""Robolaunch"",""Phitech"",""RemotePass"",""Getmobil"",""B2Metric"",""Agrotics"",""Flow48"",""Juphy"",""Werover"",""Syntonym"",""Evercopy"",""SOCRadar"",""Bolt Insight"",""Wellbees"",""Meddy"",""Metrobi"",""Fazla"",""Trio Mobil"",""Artboard Studio"",""Avatao"",""123FormBuilder"",""AppSamurai"",""Chooch"",""Mall IQ"",""Marti"",""SmartMessage"",""OMMA"",""Insider"",""iyzico"",""Solvoyo"",""HotelRunner"",""Vizera"",""ParcaDeposu"",""Evim.net"",""Balerin"",""Hazinem"",""HemenKiralik"",""Arcademonk"",""Butigo""],""researcherNotes"":""AUM and fund sizes are not mentioned on the website. Estimated investment sizes per fund are also not available. Headquarters found from the Contact page."",""seniorLeadership"":[{""name"":""Barbaros Ozbugutu"",""sourceUrl"":""https://212.vc/people/barbaros-ozbugutu"",""title"":""Experts | Leadership Management""},{""name"":""Samet Ensar Sari"",""sourceUrl"":""https://212.vc/people/samet-ensar-sari"",""title"":""Experts | Leadership & Marketing""}],""sources"":{""headquarters"":""https://212.vc/contact/"",""investmentThesisFocus"":""https://212.vc/"",""investorDescription"":""https://212.vc/"",""portfolioHighlights"":""https://212.vc/portfolio/""},""websiteURL"":""http://www.212.vc""}","Correctness: 95% Completeness: 80% - -The provided information about 212 VC is largely **factually accurate**. The firm is headquartered at *5 Avenue Gaston Diderich L-1420 Luxembourg* as confirmed on their official contact page[4]. Their focus on **B2B technology startups** at various stages—Growth Fund (Series A+), Simya International Accelerator Fund (Pre-seed and Seed), and 212 NexT (Seed and Series A)—matches their publicly stated investment thesis and fund structures detailed on their website[3] and corroborated by third-party profiles like Golden.com[1]. The description of their global approach, supporting entrepreneurs to scale internationally and fostering ""Test Local, Go Global,"" aligns with their public narrative[2][3]. The portfolio company names listed (including *iyzico*, *Insider*, *123FormBuilder*, and others) reflect accurate publicly known investments[2][3]. - -However, the **missing estimated investment sizes** and **fund sizes** are noted as ""Not Available"" in the input, which aligns with the publicly accessible data indicating that specific investment and fund size details are not fully disclosed on the website. The total assets under management (AUM) figure is also not explicitly stated on their site but third-party sources indicate around €80M committed capital across funds to date[2][3], suggesting some incompleteness of disclosure in the input. Additionally, the leadership information is accurate but brief, and the researcher's notes correctly point out lack of AUM and fund size data. Also, some minor details, such as the names of founders (Ali Karabey, Numan Numan) and the history (founded 2011/2012), are missing although publicly available[1][2]. - -In summary, correctness is high because the stated facts correspond well with authoritative sources, notably the official 212.vc site and respected venture capital information platforms. Completeness is somewhat lower because key financial figures like fund sizes and estimated investment sizes are missing or not disclosed, and some publicly available historical and leadership details could enhance the profile's thoroughness. - -Sources: -- 212 official website, Contact and Fund pages: https://212.vc/contact/, https://212.vc/growth-fund/, https://212.vc/ -- Golden.com 212 VC profile: https://golden.com/wiki/212_(venture_capital)-YX9E3Z3 -- Vestbee VC list and analysis: https://www.vestbee.com/vc-list/212-vc" -Katapult Ocean,https://katapult.vc/ocean/,"{""funds"":[{""estimatedInvestmentSize"":""EUR 150,000 - 500,000 for accelerator program investments; EUR 1.5M - 4.0M for follow-on Series A or similar rounds"",""fundName"":""Katapult Ocean"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Transportation"",""Clean Energy"",""Food & Water"",""Circular Resources""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://katapult.vc/ocean/""}],""headquarters"":""Universitetsgata 2, 0164 Oslo, Norway"",""investmentThesisFocus"":[""Invest in startups innovating in sectors such as aquaculture, mariculture, sustainable food systems, alternative proteins, supply chains, propulsion systems, offshore energy, carbon capture, waste management, and circular economy."",""Support purpose-driven founders scaling impactful ocean economy solutions."",""Focus on measurable impact and ESG integration in investment decisions."",""Use a tailored accelerator program to de-risk investments and catalyze startup growth."",""Investment philosophy includes bridging finance and natural capital systems to unlock regenerative growth.""],""investorDescription"":""Katapult Ocean is the world's most active ocean impact venture fund manager investing in startups that restore ocean health, combat climate and biodiversity loss, and ensure access to sustainable food and clean water. Their mission is to invest in and accelerate impact companies with positive ocean impact and support the blue economy in harmony with economic development. They catalyse capital, talent, companies and startups and integrate impact at the core of their investment strategy."",""linkedDocuments"":[""https://yumpu.com/en/document/view/70711632/katapult-ocean-impact-report-2024#google_vignette""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Ocean Rainforest"",""Hullbot"",""Matter."",""Flocean"",""Carbon Ridge"",""Coral Vita"",""12 Tides"",""ACUAOcean"",""Algae-C"",""Algaeing""],""researcherNotes"":""Overall assets under management (AUM) and specific fund sizes are not mentioned on the website. Only ticket sizes and investment stages are disclosed. The firm appears to raise funds and invest in rounds but does not specify total fund sizes."",""seniorLeadership"":[{""name"":""Jonas Skattum Svegaarden"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://katapult.vc/ocean/"",""title"":""CEO Ocean, General Partner""},{""name"":""Ross Brooks"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://katapult.vc/ocean/"",""title"":""Investment Director, General Partner""},{""name"":""Tharald Nikolai Nustad"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://katapult.vc/ocean/"",""title"":""Founder & Owner, General Partner""}],""sources"":{""headquarters"":""https://katapult.vc/ocean/"",""investmentThesisFocus"":""https://katapult.vc/ocean/for-investors/"",""investorDescription"":""https://katapult.vc/ocean/"",""portfolioHighlights"":""https://katapult.vc/ocean/portfolio/""},""websiteURL"":""https://katapult.vc/ocean/""}","Correctness: 98% Completeness: 90% - -The provided information about Katapult Ocean is largely factually correct and aligns well with authoritative sources. Katapult Ocean is indeed an ocean impact venture fund focused on investing in and accelerating startups that positively impact ocean health, climate, biodiversity, and sustainable food and water systems globally[2][1]. They invest through an accelerator program typically with ticket sizes from EUR 150,000 to 500,000 and plan follow-on investments in Series A rounds ranging from EUR 1.5M to 4.0M[2]. The sectors mentioned (Transportation, Clean Energy, Food & Water, Circular Resources) and investment focus stages (Seed, Series A) match the publicly available details on their website[2]. The investment thesis described — supporting purpose-driven founders, focusing on measurable impact and ESG, and catalyzing regenerative growth through bridging finance and natural capital — is consistent with their philosophy[2]. - -The investor description, emphasizing Katapult Ocean as the world’s most active ocean impact fund that supports blue economy and integrates impact at the core, is corroborated by multiple sources including their official site and impact reports[1][2]. Leadership details naming Jonas Skattum Svegaarden as CEO Ocean and General Partner, Ross Brooks as Investment Director and General Partner, and Tharald Nikolai Nustad as Founder & Owner and General Partner, are also accurate per Katapult’s website[2]. - -Portfolio highlights such as Ocean Rainforest, Hullbot, Matter., Flocean, Carbon Ridge, Coral Vita, 12 Tides, ACUAOcean, Algae-C, and Algaeing are confirmed through their portfolio information publicly shared[2]. - -However, the fund size and overall assets under management (AUM) are not publicly disclosed, only investment ticket sizes are cited; this is noted correctly as missing important data[1][4]. While Katapult Ocean commits to mobilizing and investing $1 billion in capital by 2035 to support ocean ventures, this figure describes the commitment goal rather than current fund size or AUM[1]. Thus, the claim ""fund size not available"" is accurate, but the $1 billion mobilization target could be explicitly mentioned for completeness. - -The only minor deduction on correctness stems from the lack of explicit current fund size or AUM data in the profile, which is a factual gap rather than error. - -Overall, the information is factually sound and reflects the publicly available knowledge, with slightly incomplete financial detail disclosure. Key sources used: - -- Katapult Ocean official site (https://katapult.vc/ocean/) [2] - -- UN SDG partnership and impact report (http://sdgs.un.org/partnerships/filling-ocean-solutions-funding-gap-1-billion) [1] - -- Katapult VC institution profile (https://www.privateequityinternational.com/institution-profiles/katapult-vc.html) [4] - -- Katapult Ocean portfolio pages and related articles[2]" -Anterra Capital,http://www.anterracapital.com/,"{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Anterra F&A Ventures I Coöperatief U.A. (Fund I)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-I-2025.pdf""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Anterra F&A Ventures II Coöperatief U.A. (Fund II)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early-stage venture""],""sectorFocus"":[""Food economy"",""Agriculture""],""sourceUrl"":""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-II-2025.pdf""}],""headquarters"":""Herengracht 450, 1017 CA Amsterdam; One Boston Place, 201 Washington Street, MA 02108 Boston"",""investmentThesisFocus"":[""Focus on leveraging technology to build a safe, sustainable, and resilient food system."",""Invests in world-class start-ups across the food value chain from farmer to consumer."",""Targets companies using breakthrough biotechnology or digital solutions."",""Committed to investing for impact by backing entrepreneurs who transform the planet, improve health, and enhance livelihoods."",""Leverages a unique network providing access to customers, experts, advisors, and talent across the food value chain."",""Backed by large institutional investors, strategics, and family offices."",""The team acts as a connector among diverse technology, investor, and agrifood ecosystems, co-founding major agrifoodtech events.""],""investorDescription"":""Anterra Capital is an investor focused on leveraging technology to build a safe, sustainable, and resilient food system. Their mission includes empowering farmers to sustainably produce more with a larger share of the profits, improving animal health and quality of life, and enhancing consumer access to healthier, more nutritious foods. They invest in world-class agrifoodtech start-ups across the value chain from farmer to consumer and typically invest at Series A or B with initial cheques of $1-10 million. They focus on companies leveraging breakthrough biotechnology or digital solutions and invest with an impact mindset, aiming to positively transform the planet, health, and livelihoods. They operate globally with a primary focus on North America and Europe and were founded in 2013."",""linkedDocuments"":[""https://anterracapital.com/wp-content/uploads/2025/02/Our-Commitments.pdf"",""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-I-2025.pdf"",""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-II-2025.pdf"",""https://anterracapital.com/wp-content/uploads/2025/04/Anterra-Sustainability-Risks-Integration-Policy-2025.pdf""],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""USD 400000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.anterracapital.com/""},""portfolioHighlights"":[""Agrimetis (exited)"",""Agryco"",""Animol (incubated)"",""Ashish"",""Berkeley Yeast"",""Biomedit"",""Bonito"",""Caribou (IPO)"",""Cherrypick""],""researcherNotes"":""Overall Assets Under Management is inferred from 'Total Commitments > $400 million' stated on the website homepage; no explicit AUM date provided. Fund size and estimated investment sizes are not disclosed in the documents accessed. Geographic focus for funds is mostly not explicitly stated except Fund II sector and stage details. Two headquarters addresses are listed in contact info and footer."",""seniorLeadership"":[{""name"":""Adam Anders"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/team"",""title"":""Managing partner & co-founder""},{""name"":""Phil Austin"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/team"",""title"":""Managing partner & co-founder""},{""name"":""Brett Chevalier"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/team"",""title"":""Chief scientist""},{""name"":""Maarten Goossens"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/team"",""title"":""Partner & co-founder""},{""name"":""Brett Wong"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/team"",""title"":""Partner""}],""sources"":{""headquarters"":""https://anterracapital.com/contact"",""investmentThesisFocus"":""http://www.anterracapital.com/"",""investorDescription"":""http://www.anterracapital.com/"",""portfolioHighlights"":""https://anterracapital.com/our-companies""},""websiteURL"":""http://www.anterracapital.com/""}","Correctness: 95% Completeness: 85% - -The provided information about Anterra Capital is largely factually accurate based on multiple authoritative sources. The description of Anterra as an investor leveraging technology to build a safe, sustainable, and resilient food system with investments in agrifoodtech startups from farmer to consumer is corroborated by their official website and press releases[4]. The stated mission, investment thesis including focus on biotechnology and digital solutions, and impact-driven approach align with details from their site and recent fund announcements[1][2][3][4]. - -The team’s senior leadership names and titles (Adam Anders, Phil Austin, Maarten Goossens, Brett Chevalier, Brett Wong) match the official Anterra Capital team page[4]. Headquarters locations—Herengracht 450, Amsterdam and One Boston Place, Boston—are consistent with their contact info[4]. - -Regarding fund details: - -- Fund II’s initial closing size of $175 million, focus on early-stage venture in food economy and agriculture, and prominent investors such as Rabobank (Rabo Investments), Eight Roads Ventures (Fidelity), Novo Holdings, and Tattarang are confirmed by multiple news sources[1][2][3]. -- Fund I’s size and geographic focus are not publicly disclosed, matching the ""Not Available"" status reported. -- Overall assets under management (AUM) are stated as approx. USD 400 million based on the website’s “Total Commitments > $400m” figure, though no explicit date for AUM is given in available documents[4]. - -Missing and incomplete data include: - -- Fund sizes and estimated investment sizes for Fund I, as well as precise geographic focus for both funds, particularly Fund I. -- Specific portfolio highlights are mostly consistent but some exits or incubation statuses could be updated from the live portfolio. -- Exact dates for AUM and commitments are not provided; the info is inferred. - -In summary, the core factual correctness of the investor description, leadership, headquarters, investment thesis, and Fund II fundraising details is high (95%). The completeness score is lower (85%) due to missing precise fund measurements and some geographic details not disclosed publicly. These gaps are consistent with public record limitations and fund confidentiality norms. - -Sources used: -- Anterra Capital official website and team page: https://anterracapital.com/ [4] -- Anterra Capital Fund II closing announcements, June-July 2021: https://www.businesswire.com/news/home/20210629005357/en/ [1] -- Supporting news and startup ecosystem partner sites: https://startlife.nl/anterra-capital-announces-initial-closing-of-second-agrifoodtech-fund-at-175-million/ [2] -- Global Venturing news on Fund II: https://globalventuring.com/corporate/anterra-capital-accepts-175m-for-fund-ii/ [3]" -"Aztiq ","https://www.aztiq.is ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aztiq Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Healthcare"",""Pharmaceutical"",""Biotech""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is""}],""headquarters"":""Reykjavík, Iceland"",""investmentThesisFocus"":[""Improving global access to affordable medicines."",""Accelerating growth and maximizing returns through experienced professionals."",""Value-added investment approach leveraging expertise in financing, negotiation, and exit strategies."",""Strategic advisory on securities markets and operational consulting."",""Emphasis on sustainability initiatives (UFS/ESG) to enhance environmental, social, and governance performance."",""Flexible investment approach tailored to partner needs combining capital and management expertise.""],""investorDescription"":""Aztiq is focused on improving global access to affordable medicines, believing that effective treatments should be available to all in need. Aztiq is a group of investors working with mission-driven companies in the pharmaceutical and biotech industry aimed at improving health worldwide. Their investment approach focuses on creating sustainable long-term value and positive impact for patients and healthcare systems globally. They leverage decades of experience in healthcare and pharmaceuticals, offering specialized advisory services to stimulate growth through addressing challenges and opportunities. Aztiq emphasizes flexibility, tailoring each investment uniquely to combine capital, management expertise, and support to drive partner success."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""investmentStageFocus"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Alvogen"",""Zentiva Group"",""Lotus""],""researcherNotes"":""No explicit information on fund size, per-company investment size, or Assets Under Management (AUM) was found on the website. The company presents a single unified investment strategy focused on healthcare, pharmaceutical, and biotech sectors globally."",""seniorLeadership"":[{""name"":""Róbert Wessman"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""Founder and Chairman""},{""name"":""Árni Harðarson"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""Co-Founder and Co-Chairman""},{""name"":""Anil Okay"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""Partner""},{""name"":""Danny Major"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""Chief Legal Officer""},{""name"":""Davíð Ólafsson"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""CEO""},{""name"":""Eunsun Choi"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""CEO""},{""name"":""Guðrún Elsa Gunnarsdóttir"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""COO and CFO""},{""name"":""Jóhann G. Jóhannsson"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://aztiq.is/team"",""title"":""Co-Founder and Partner""}],""sources"":{""headquarters"":""https://www.aztiq.is/contact"",""investmentThesisFocus"":""https://www.aztiq.is/about-aztiq"",""investorDescription"":""https://www.aztiq.is/about-aztiq"",""portfolioHighlights"":""https://aztiq.is/our-companies""},""websiteURL"":""https://www.aztiq.is""}","Correctness: 98% Completeness: 85% - -The information about Aztiq is largely factually accurate and consistent with publicly available data. Aztiq is headquartered in Reykjavík, Iceland, and focuses on healthcare, pharmaceutical, and biotech sectors globally, aiming to improve access to affordable medicines and foster sustainable growth through experienced professionals and strategic advisory—this aligns well with the details on their official website and about pages[3][4]. The named senior leadership including founder Róbert Wessman and others matches reported team data[3][4]. The portfolio highlights such as Alvogen and Zentiva Group are confirmed on their site[3][4]. - -However, the data lacks critical quantitative details like overall assets under management (AUM), estimated investment size, and fund size, which are not publicly disclosed on Aztiq’s website or other reliable sources[4]. This missing financial data notably reduces completeness. The description of Aztiq’s investment thesis and flexible, value-added approach is well verified and consistent with their messaging[4]. No contradictory or fabricated claims were found, with the minor exception that one CEO is listed twice (Eunsun Choi and Davíð Ólafsson); this may reflect co-CEOs or different periods but is not clearly explained in the source. - -The absence of fund size or stage focus is explicitly noted as missing by the original source document and is consistent with public knowledge[4]. The portfolio example of Adalvo’s acquisition and linkage to Aztiq leadership further supports accuracy[3]. - -Sources: -- Aztiq official website and About pages: https://www.aztiq.is/about-aztiq, https://aztiq.is/our-companies, https://aztiq.is/team -- News on Aztiq’s acquisition of Adalvo: https://www.adalvo.com/newsroom/aztiq-acquires-100-ownership-of-adalvo-from-ptt-ba -- Aztiq description and stats summary: https://www.aztiq.com - -This justifies a high correctness score near 100%, but a completeness score slightly lower due to missing public financial details such as fund size and assets under management." -"b.value AG ","https://www.bvalue-ag.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""b.value AG Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-Seed"",""Seed""],""sectorFocus"":[""Biotechnology"",""New Materials""],""sourceUrl"":""https://www.bvalue-ag.com/""}],""headquarters"":""Otto-Hahn-Straße 15, 44227 Dortmund, Germany"",""investmentThesisFocus"":[""Investition in talentierte Gründer:innen, skalierbare Geschäftsmodelle und disruptive, geschützte Technologien."",""Unterstützung bei Markteinführung und Skalierung."",""Zugang zu Industrieexperten, Wissenschaftler:innen, Investor:innen, politischen Entscheidungsträger:innen sowie akademischen Vordenker:innen zur Unterstützung der Skalierung.""],""investorDescription"":""b.value AG: Investieren in die Kerntechnologien der Zukunft – für echte Innovationen in stark wachsenden Märkten. Wir investieren in DeepTech-Startups, die außergewöhnliche Gründerpersönlichkeiten und bahnbrechende Technologien vereinen und Lösungen für eine nachhaltige Welt von morgen bieten. Unsere fundierte Technologieexpertise und langjährige operative Erfahrung im Aufbau und der Führung von Biotech- und HighTech-Unternehmen ermöglichen es uns, die vielversprechendsten DeepTech-Startups zu identifizieren und sie finanziell und strategisch zu unterstützen, um ihr volles Potenzial auszuschöpfen. Unser Ziel ist der Aufbau eines zukunftsweisenden Portfolios von schnell wachsenden, jungen Deep Tech-Unternehmen, die die Produktionsprozesse und Märkte der Zukunft definieren. Unsere Spezialisierung, ein tiefes Markt- und Branchenverständnis sowie unsere operative Erfahrung sind dabei der Schlüssel zum Erfolg – gleichermadfig für unsere Portfoliounternehmen und Investor:innen."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2024-12-04"",""companyName"":""FibreCoat"",""sourcePostUrl"":""https://www.linkedin.com/posts/b-value-ag_%F0%9D%97%A2%F0%9D%97%B3%F0%9D%97%B3-%F0%9D%98%81%F0%9D%97%BC-%F0%9D%97%A6%F0%9D%97%BD%F0%9D%97%AE%F0%9D%97%B0%F0%9D%97%B2-%F0%9D%97%99%F0%9D%97%B6%F0%9D%97%AF%F0%9D%97%BF%F0%9D%97%B2%F0%9D%97%96%F0%9D%97%BC-activity-7270080401681924096-m8Ys"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""The website does not provide clear information on headquarters address, portfolio company names, senior leadership details, estimated investment size per company, or overall assets under management. The funds section is based on the described investment focus on the homepage."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://bvalue.de/impressum"",""investmentThesisFocus"":""https://www.bvalue-ag.com/"",""investorDescription"":""https://www.bvalue-ag.com/"",""portfolioHighlights"":""https://www.linkedin.com/company/b-value-ag/""},""websiteURL"":""https://www.bvalue-ag.com/""}","Correctness: 95% Completeness: 80% - -The information provided about b.value AG is largely **factually accurate and consistent** with multiple reliable sources. The company is indeed headquartered at Otto-Hahn-Straße 15, 44227 Dortmund, Germany, confirmed by their official imprint page (https://bvalue.de/impressum) and LinkedIn sources. The investment focus on DeepTech startups, particularly in biotechnology and new materials (advanced materials), with emphasis on pre-seed and seed stages, matches statements from b.value’s own website and external summaries (https://www.bvalue-ag.com/, https://bvalue.de/en/). Their stated investment thesis about supporting talented founders, scalable business models, and disruptive, protected technologies is well supported, including their approach to supporting market entry, scaling, and leveraging a broad expert network. - -The investor description clearly aligns with their self-representation as a fund investing in core future technologies with a sustainable impact, deep technology expertise, and operational experience in biotech and high-tech companies. Their goal to build a portfolio of fast-growing DeepTech startups is accurate as per the official source. - -However, the **completeness score is reduced** due to some missing critical data: - -- No disclosed overall assets under management (AUM) or fund size information is publicly available. -- Estimated investment size per company is unspecified (""Not Available""). -- Senior leadership details are absent in the profile, although external sources indicate key figures such as Dr. Jürgen Eck and Dr. Dahai Yu are involved with b.value AG (https://bvalue.de). -- Portfolio highlights are minimal, with only FibreCoat listed from December 2024 (from LinkedIn post). - -Therefore, while the **core factual claims about strategy, location, and focus sectors** are correct, the lack of transparent financial figures, leadership info, and a fuller portfolio overview creates notable gaps. - -Sources used: -- https://bvalue.de/impressum -- https://www.bvalue-ag.com/ -- https://bvalue.de/en/ -- https://www.linkedin.com/company/b-value-ag/" -"b2venture ","http://www.b2venture.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000 to 5,000,000"",""fundName"":""b2venture Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""DACH region""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A""],""sectorFocus"":[""Not Available""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc""}],""headquarters"":""Berlin: Neue Schönhauser Str. 8, 10178 Berlin, Germany; Luxembourg: 1c, rue Gabriel Lippmann, 5365 Munsbach, Luxembourg; Munich: Türkenstrasse 58, 80333 Munich, Germany; St. Gallen: Unterstrasse 6, 9000 St. Gallen, Switzerland; Zurich: Falkenstrasse 27, 8008 Zurich, Switzerland"",""investmentThesisFocus"":[""Collaborate closely with a community of angel investors to provide funding, expertise, and mentorship."",""Support outstanding European entrepreneurs particularly at Pre-Seed, Seed, and Series A stages."",""Focus on building partnerships based on trust and a shared vision to navigate challenges with passion."",""Pay it forward to the next generation by fostering a virtuous cycle of entrepreneurs and angel investors."",""Invest primarily in the DACH region (Germany, Austria, Switzerland) but also occasionally beyond Europe based on trusted local leads.""],""investorDescription"":""b2venture is a European venture firm focused on investing at the earliest stages (Pre-Seed, Seed, Series A) in innovative ideas and startups. Their mission is to support outstanding European entrepreneurs by leveraging the power of their extensive angel investor community to help companies grow from seed stage to IPO. They build partnerships based on trust and a shared vision to navigate challenges with passion and dedication. Core to their investment approach is collaboration with Europe’s strongest community of angel investors, providing not only funding but also expertise and mentorship. They emphasize paying it forward to the next generation by fostering a virtuous circle of entrepreneurs and angel investors."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Nautica Technologies"",""Vestigas"",""Kiin Bio"",""Neura Robotics"",""AssembLean"",""Evoltio"",""Marvel Fusion"",""The Exploration Company"",""DeepL"",""Yendou""],""researcherNotes"":""No formal funds or fund sizes are listed on the b2venture website. The overall AUM is also not disclosed. Investment strategy details and ticket size ranges are derived from the general description of their investment approach."",""seniorLeadership"":[{""name"":""Andreas Goeldi"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner""},{""name"":""Anna Bosch"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Principal""},{""name"":""Christian Schütz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner""},{""name"":""Dominik Perisa"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner & COO""},{""name"":""Florian Schweitzer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Founding Partner""},{""name"":""Gerrit Jurilj"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner""},{""name"":""Jan-Hendrik Bürk"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner""},{""name"":""Jochen Gutbrod"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner""},{""name"":""Mathias Ockenfels"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner""},{""name"":""Stephan Schürer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner | Head of Investor Relations""},{""name"":""Sven Eppert"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.b2venture.vc/team"",""title"":""Partner & CFO""}],""sources"":{""headquarters"":""http://www.b2venture.vc/contact"",""investmentThesisFocus"":""http://www.b2venture.vc/about"",""investorDescription"":""http://www.b2venture.vc/about"",""portfolioHighlights"":""http://www.b2venture.vc/portfolio""},""websiteURL"":""http://www.b2venture.vc""}","Correctness: 98% Completeness: 85% - -The provided information about b2venture is factually accurate according to multiple reliable sources. It correctly states that b2venture is a European venture capital firm focused on early-stage investments (Pre-Seed, Seed, Series A) and emphasizes collaboration with a strong community of angel investors providing funding, expertise, and mentorship[1][3][5]. The geographic focus on the DACH region (Germany, Austria, Switzerland) and occasional investments beyond Europe are confirmed by their portfolio and investment thesis descriptions[1][3]. Headquarters addresses in Berlin, Luxembourg, Munich, St. Gallen, and Zurich align with their multiple office locations indicated on the official site[3]. - -The stated estimated investment ticket size range of EUR 250,000 to 5,000,000 is consistent with the general check size reported by Dealroom and OpenVC (around $500k to $3M, which approximately converts to EUR amounts within this range)[2][5]. The absence of disclosed overall assets under management (AUM) and fund size is corroborated by the lack of such figures on b2venture’s official website and other public sources, which reduces completeness but not correctness[3][4]. The provided senior leadership names and titles also align with those shown on the official team page[3]. - -The completeness score is slightly reduced mainly because: -- Sector focus is marked as “Not Available” in the data, while external sources suggest focus areas including fintech, digital health, AI-enabled businesses, and industrial tech, which are relevant and publicly known[1][2]. -- Overall assets under management and specific fund size details are missing, despite several closed funds being mentioned elsewhere, though not publicly detailed[4]. -- Some portfolio highlights given (e.g., DeepL, Neura Robotics) are accurate, but others might be less widely confirmed. - -In summary, the data is highly accurate but not fully comprehensive, lacking some public sector focus details and precise fund-size figures. -Sources: -[1] https://vc-mapping.gilion.com/vc-firms/b2venture -[2] https://www.openvc.app/fund/b2venture -[3] https://www.b2venture.vc -[4] https://www.privateequityinternational.com/institution-profiles/b2venture.html -[5] https://app.dealroom.co/investors/b2venture" -"B&C Innovation Investments ","https://bcgruppe.at/en/innovation-investments/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1,000,000"",""fundName"":""B&C Innovation Investments GmbH Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Austria"",""DACH Region"",""Germany"",""Switzerland""],""investmentStageFocus"":[""Series A"",""Growth"",""Early Revenue"",""Scaling"",""Pre-IPO""],""sectorFocus"":[""Industrial Technology"",""Digitalization"",""Optimization""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bcgruppe.at/wp-content/uploads/2025/06/20250701_BuC_PK25_Praesentation.pdf""}],""headquarters"":""Palais Ephrussi, Universitätsring 14, 1010 Vienna, Austria"",""investmentThesisFocus"":[""Focus on industrial technology scale-ups relevant to industrial companies."",""Investment in companies from Series A onwards with market-ready advanced products."",""Target investments starting around EUR 1 million per company."",""Preference for effective, complementary, diverse founding teams committed to long-term partnerships."",""Alignment with UN Sustainable Development Goals and ESG standards."",""Strategic support using B&C Group's industrial expertise and network."",""Preference for lead investments, with options for follow-on funding."",""No pressure for quick exits; focus on long-term value creation."",""Geographically focused mainly on Austria and the DACH region.""],""investorDescription"":""B&C Innovation Investments GmbH (BCII) is a minority investor focusing on industrial technology scale-ups that support traditional industrial companies through digitalization and optimization. It targets companies from Series A rounds onwards with advanced products ready to enter or expand in the market, requiring investments starting around EUR 1 million. BCII prioritizes effective, complementary, diverse founding teams committed to long-term partnerships and sustainability aligned with UN Sustainable Development Goals and ESG standards. BCII provides strategic support, leveraging B&C Group's industrial expertise and network, and prefers lead investments with options for follow-on funding, without pressure for quick exits."",""linkedDocuments"":[""https://bcgruppe.at/wp-content/uploads/2025/06/20250701_BuC_PK25_Praesentation.pdf"",""https://bcgruppe.at/wp-content/uploads/2024/08/20240830_SuzanoClosing_Press-release_EN_Final.pdf"",""https://bcgruppe.at/wp-content/uploads/2024/03/2024_BC_Position_Paper_Sustainability_EN_Mar.pdf"",""https://bcgruppe.at/wp-content/uploads/2024/06/20240612_BuC_Suzano_PressRelease_EN.pdf"",""https://bcgruppe.at/wp-content/uploads/2021/05/21_BC_SF_Pressetext_eng_FIN.pdf"",""https://bcgruppe.at/wp-content/uploads/2022/08/Houskaprize2023_Submission_SME_Reserarch.pdf"",""https://bcgruppe.at/wp-content/uploads/2020/06/BC_A6_08062016_Ansicht-1.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-12-31"",""aumAmount"":""EUR 100,000,000"",""sourceUrl"":""https://bcgruppe.at/wp-content/uploads/2025/06/20250701_BuC_PK25_Praesentation.pdf""},""portfolioHighlights"":[""Citrine Informatics"",""Contextflow"",""Frequentis AG"",""Kinexon"",""Klarx"",""Neoom"",""Parity Quantum Computing (ParityQC)"",""Trilite""],""researcherNotes"":""AUM is explicitly stated as approximately EUR 100 million invested directly by B&C Innovation Investments GmbH as of Dec 31, 2024, based on the company's presentation PDF from June 2025. Fund size specific to the strategy is not available on the website. The investment size per company is clearly stated as starting around EUR 1 million. Headquarters was confirmed from contact and imprint pages."",""seniorLeadership"":[{""name"":""Erich Hampel"",""sourceUrl"":""https://bcgruppe.at/en/private-foundation/leadership"",""title"":""Foundation Board""},{""name"":""Wolfgang Hofer"",""sourceUrl"":""https://bcgruppe.at/en/private-foundation/leadership"",""title"":""Foundation Board""},{""name"":""Birgit Noggler"",""sourceUrl"":""https://bcgruppe.at/en/private-foundation/leadership"",""title"":""Foundation Board""},{""name"":""Donia Lasinger"",""sourceUrl"":""https://bcgruppe.at/en/private-foundation/leadership"",""title"":""Head of Funding and Communications""},{""name"":""Harald Fuchs"",""sourceUrl"":""https://bcgruppe.at/en/bc-group/team"",""title"":""Executive Board Member""},{""name"":""Markus Fürst"",""sourceUrl"":""https://bcgruppe.at/en/bc-group/team"",""title"":""Executive Board Member""},{""name"":""Patrick Lackenbucher"",""sourceUrl"":""https://bcgruppe.at/en/bc-group/team"",""title"":""Executive Board Member""},{""name"":""Regina Sturm-Lenhart"",""sourceUrl"":""https://bcgruppe.at/en/bc-group/team"",""title"":""Executive Board Member""},{""name"":""Thomas Zimpfer"",""sourceUrl"":""https://bcgruppe.at/en/bc-group/team"",""title"":""Executive Board Member""},{""name"":""Julia Reilinger"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://at.linkedin.com/company/bcgruppe"",""title"":""Managing Director""},{""name"":""Alexander Fitzka"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://at.linkedin.com/company/bcgruppe"",""title"":""Member of The Supervisory Board""}],""sources"":{""headquarters"":""https://bcgruppe.at/en/innovation-investments/contact/"",""investmentThesisFocus"":""https://bcgruppe.at/en/innovation-investments/"",""investorDescription"":""https://bcgruppe.at/en/innovation-investments/"",""portfolioHighlights"":""https://bcgruppe.at/en/innovation-investments/investments""},""websiteURL"":""https://bcgruppe.at/en/innovation-investments/""}","Correctness: 98% Completeness: 90% - -The provided information about B&C Innovation Investments GmbH (BCII) is factually accurate and well-supported by multiple authoritative sources. BCII is a minority investor primarily focused on industrial technology scale-ups that support traditional industrial companies through digitalization and optimization, with investments starting around EUR 1 million from Series A onwards. The headquarters at Palais Ephrussi, Universitätsring 14, 1010 Vienna, Austria is confirmed. Their geographic focus on Austria and the DACH region (Germany, Austria, Switzerland) matches public data. The investment thesis emphasizing commitment to effective, complementary founding teams, alignment with UN Sustainable Development Goals and ESG standards, strategic support via B&C Group’s industrial expertise and network, preference for lead investments with options for follow-on funding, and lack of quick exit pressure is also consistent with the publicly available profile on the official B&C website and other investor databases[1][2][4]. - -The approximate Assets Under Management of EUR 100 million as of December 31, 2024, is explicitly stated in a company presentation referenced in the documents[4]. The portfolio highlights including companies such as Citrine Informatics, Contextflow, Frequentis AG, Kinexon, Klarx, Neoom, Parity Quantum Computing, Trilite align with public portfolio information. The senior leadership list given corresponds to names on the official B&C Group and foundation leadership pages. - -The main gap in completeness is the absence of a stated overall fund size for the B&C Innovation Investments GmbH Investment Strategy — this is marked as “Not Available” and not clearly disclosed in public documents. While total AUM is provided, the specific fund size for this investment strategy is missing, which is a notable omission for full transparency. Otherwise, the description is comprehensive regarding investment stages, sector focus, strategic approach, geographic emphasis, and team. - -Sources: -- https://bcgruppe.at/en/innovation-investments/ -- https://www.b2match.com/e/manufacturingday/participations/475419 -- https://www.openvc.app/fund/B&C%20Innovation%20Investments -- https://bcgruppe.at/wp-content/uploads/2025/06/20250701_BuC_PK25_Praesentation.pdf" -"Azora ","https://www.azora.com/en ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Commercial Real Estate Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Madrid"",""Miami""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Offices"",""Industrial & Logistics"",""Retail""],""sourceUrl"":""https://azora.com/en/our-strategies/commercial-real-estate""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Infrastructure & Climate Solutions Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Renewable Energy"",""Battery Storage"",""Hydrogen"",""Electric Mobility"",""Data Centers"",""Energy & Infrastructure Real Assets""],""sourceUrl"":""https://azora.com/en/our-strategies/infrastructure-climate-solutions""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Living Multifamily Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Spain"",""US Sunbelt""],""investmentStageFocus"":[""Own Developments"",""Strategic Agreements"",""Value-add Renovations""],""sectorFocus"":[""Affordable Rental Housing""],""sourceUrl"":""https://www.azora.com/en/our-strategies/living-multifamily/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Hospitality & Leisure Investment Strategy"",""fundSize"":""EUR 1,920,000,000"",""fundSizeSourceUrl"":""https://www.azora.com/en/our-strategies/hospitality-leisure/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Active Management"",""Asset Repositioning""],""sectorFocus"":[""Hotels"",""Vacation Lodging"",""Leisure Industry Assets""],""sourceUrl"":""https://www.azora.com/en/our-strategies/hospitality-leisure/""}],""headquarters"":""Torre de Madrid, suite 216. Plaza de España, 18. 28013 Madrid, Spain"",""investmentThesisFocus"":[""Transforming assets to meet evolving user and consumer needs to maximize returns."",""Value-oriented investments with active management and asset repositioning."",""Focus on sustainability and decarbonization in infrastructure investments."",""Targeting large and long-term platforms attractive to institutional investors.""],""investorDescription"":""Founded in Madrid in 2003, Azora is a real asset investment firm specializing in identifying future megatrends and transforming assets accordingly. The firm develops investment platforms to enhance asset value in European and US markets. Their purpose is 'Investing in a better future for people,' with values including Entrepreneurship, Teamwork, Results Driven, Responsibility, and Excellence. Azora focuses on anticipating major waves that transform how we live, work, and play, discovering megatrends and identifying investment strategies to deliver superior risk adjusted returns."",""linkedDocuments"":[""https://azora.com/downloads/az101-encodeofethics.pdf"",""https://azora.com/downloads/new/azoragroup-sustainabilitypolicy2024.pdf"",""https://azora.com/downloads/new/azora-sustainabilityreport-en.pdf"",""https://azora.com/downloads/new/azoragroup-anticorruptionpolicy.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 11,000,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/blog/advenir-azora-create-$3bn-partnership-to-address-national-housing-shortage/""},""portfolioHighlights"":[""Distribuciones Froiz"",""Palibex Logistica S.L."",""Estar Asalvo S.L."",""Dachser Spain Logistics, S.A.U."",""Golderos S.A.""],""researcherNotes"":""AUM of USD 11 billion is explicitly mentioned on the website's blog page about the Advenir Azora partnership. Most funds do not disclose specific fund sizes or estimated investment sizes, except Hospitality & Leisure fund with EUR 1.92 billion AuM. Investment stages are often not detailed."",""seniorLeadership"":[{""name"":""Concha Osácar"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Founding Partner""},{""name"":""Fernando Gumuzio"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Founding Partner""},{""name"":""Javier Rodríguez-Heredia"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Managing Partner""},{""name"":""Cristina García-Peri"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Fernando Pérez-Hickman"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Javier Arús"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Javier Picón"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Mónica Garay Irizar"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Santiago Olivares"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Carlos Fernández de Araoz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Alfonso Aramendía"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Gonzalo García-Lago"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""José Alonso"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Partner""},{""name"":""Juan José Zaragoza"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""US Partner""},{""name"":""Ignacio Gil-Casares"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""US Partner""},{""name"":""Mar González"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""CFO, COO & Head of Fund Services""},{""name"":""Ana Pijoan"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Head of Human Resources""},{""name"":""Vanessa López"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Head of Compliance, Risk Management & Sustainability""},{""name"":""Juan Miguel Guntín"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.azora.com/en/team/"",""title"":""Operating Partner""}],""sources"":{""headquarters"":""https://www.azora.com/en/contact/"",""investmentThesisFocus"":""https://azora.com/en/our-strategies/commercial-real-estate"",""investorDescription"":""https://www.azora.com/en/about-us/"",""portfolioHighlights"":""https://www.azora.com/en/our-strategies/industrial-and-logistics/""},""websiteURL"":""https://www.azora.com/en""}","Correctness: 98% Completeness: 90% - -The information provided about Azora is largely factually accurate and aligns well with multiple reliable sources. Azora is indeed headquartered in Madrid (Torre de Madrid), with a U.S. presence in Miami, and is a real asset investment firm specializing in various sectors including residential, hospitality, logistics, office, and renewable energy in Europe and the U.S.[3][5]. The total assets under management (AUM) figure of approximately USD 11 billion as of 2024 is confirmed by the official Azora blog and corroborated by multiple news sources about their partnership with Advenir (a U.S. multifamily investment platform).[3][5] - -The fund strategy details mostly match public descriptions from Azora’s official site, including: -- Commercial Real Estate (offices, retail, industrial logistics) focused on Madrid and Miami[1][2] -- Infrastructure & Climate Solutions including renewable energy, battery storage, electric mobility, hydrogen, and data centers focused on Europe and global markets[5] -- Living Multifamily strategy targeting affordable rental housing primarily in Spain and the U.S. Sunbelt with stages including own developments, strategic agreements, and value-add renovations[1][3] -- Hospitality & Leisure fund with EUR 1.92 billion AUM focused on Europe and active management of hotels and leisure assets[5] - -The names and titles of senior leadership listed align with the current Azora team as per their website’s team page[https://www.azora.com/en/team/]. - -Missing or incomplete data primarily relates to the absence of estimated investment sizes or full fund size disclosures for most funds, except the Hospitality & Leisure fund. This reflects publicly available data since Azora generally does not disclose detailed fund sizes or investment stage specifics beyond what is provided[1][3]. - -The investment thesis, investor description, and values are accurately presented and consistent with Azora’s official messaging emphasizing transforming assets, sustainability, value-add active management, and megatrend identification[https://azora.com/en/about-us/][https://azora.com/en/our-strategies/commercial-real-estate]. - -Portfolio highlights such as Distribuciones Froiz, Palibex Logistica, and Dachser Spain Logistics are known Azora portfolio companies involved in logistics and industrial sectors, supporting the factual accuracy of this element[https://www.azora.com/en/our-strategies/industrial-and-logistics/]. - -In summary, the data is highly accurate with minor incompleteness in specific fund sizes and estimated investment targets, which appear to reflect the available public disclosures and standard industry practice. - -Sources: -- Azora official site “About Us” and “Our Strategies” pages (https://www.azora.com/en/about-us/, https://azora.com/en/our-strategies/) -- Azora blog and news on Advenir partnership (https://www.azora.com/en/blog/advenir-azora-create-$3bn-partnership-to-address-national-housing-shortage/) -- Hospitality Net and Multifamily Affordable Housing news articles (https://www.hospitalitynet.org/news/4114886.html, https://multifamilyaffordablehousing.com/advenir-azora-create-3-billion-partnership-to-address-national-housing-shortage/) -- Holland & Knight legal firm press release (https://www.hklaw.com/en/news/pressreleases/2024/10/holland-knight-advises-azora-in-3-billion-partnership-with-advenir) -- Azora team page for leadership verification (https://www.azora.com/en/team/)" -"Azimut Holding ","http://www.azimut-group.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Azimut Public Markets Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income"",""Equities"",""Allocation"",""Alternative"",""Islamic assets""],""sourceUrl"":""https://azimut-group.com/public-private-markets""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Azimut Private Markets Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Private Debt"",""Private Equity"",""Venture Capital"",""Infrastructure & Real Assets"",""Liquid Alternative & Crypto Assets"",""Balanced Strategies in Private Markets"",""Hybrid Public & Private Strategies""],""sourceUrl"":""https://azimut-group.com/public-private-markets""}],""headquarters"":""Via Cusani 4, Milano, Italy"",""investmentThesisFocus"":[""Active management approach combining public and private markets strategies."",""Emphasis on innovation in investment solutions and technology."",""High integration between asset management and distribution activities."",""Focus on providing tailor-made investment solutions without external influence."",""Integration of ESG criteria into corporate management and investment solutions."",""Specialization rather than generalist expertise."",""Global team model with local expertise and diversified approach."",""Advancement in tokenization and digital assets enabling investments via security tokens.""],""investorDescription"":""Azimut is an independent global organization in Asset Management, Wealth Management, Investment Banking, and Fintech, operating in 18 countries with a focus on emerging markets. It employs an active management approach combining public and private markets strategies and emphasizes innovation in investment solutions and technology. The group has a high integration between asset management and distribution activities, offering a wide range of products for both demanding customers and the corporate world. Azimut values independence, innovation, stability, commitment, simplicity, and sustainability, integrating ESG criteria into its corporate management and investment solutions. It aims to provide tailor-made investment solutions without external influence. The company was established in 1990, is listed on the Milan Stock Exchange, and emphasizes specialization rather than generalist expertise."",""linkedDocuments"":[""https://backend.azimut.it/documents/d/azimut-group/pietro_giuliani?download=true"",""https://backend.azimut.it/documents/d/azimut-group/alessandro_zambotti?download=true"",""https://backend.azimut.it/documents/d/azimut-group/giorio_medda?download=true""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2025-02-27"",""companyName"":""Kennedy Capital Management"",""sourcePostUrl"":""https://www.linkedin.com/posts/azimutgroup_azimut-justbedifferent-activity-7300929152872808449-4P7L"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-05-07"",""companyName"":""HighPost Capital"",""sourcePostUrl"":""https://www.linkedin.com/posts/azimutgroup_azimut-azimutglobal-activity-7325914852470734848-coIa"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""Overall Assets Under Management (AUM) and specific estimated investment sizes were not explicitly mentioned on the website. Portfolio highlights updated with LinkedIn announcements for Kennedy Capital Management and HighPost Capital."",""seniorLeadership"":[{""name"":""Pietro Giuliani"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://azimut-group.com/governance"",""title"":""Chairman""},{""name"":""Giorgio Medda"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://azimut-group.com/governance"",""title"":""Chief Executive Officer""},{""name"":""Alessandro Zambotti"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://azimut-group.com/governance"",""title"":""Chief Executive Officer and Chief Financial Officer""}],""sources"":{""headquarters"":""https://azimut-group.com/international-presence"",""investmentThesisFocus"":""https://azimut-group.com/public-private-markets"",""investorDescription"":""https://azimut-group.com/our-identity"",""portfolioHighlights"":""https://www.linkedin.com/company/azimutgroup""},""websiteURL"":""http://www.azimut-group.com/""}","Correctness: 98% Completeness: 85% - -The presented information about Azimut and its investment funds is factually accurate based on authoritative sources, including Azimut’s official website and recent press releases. Azimut is indeed a global asset management group headquartered at Via Cusani 4, Milan, Italy, with a strong focus on combining public and private market strategies, innovation in investment solutions, high integration of asset management and distribution, and ESG integration, as stated on their platform[https://azimut-group.com/public-private-markets][https://azimut-group.com/our-identity]. - -The description of the two investment strategies — Azimut Public Markets Investment Strategy (covering fixed income, equities, allocations, alternatives, and Islamic assets) and Azimut Private Markets Investment Strategy (including private debt, private equity, venture capital, infrastructure, crypto assets, and hybrid strategies) — aligns with the sectors reported by Azimut[https://azimut-group.com/public-private-markets]. - -Regarding leadership, the named senior executives Pietro Giuliani (Chairman), Giorgio Medda (CEO), and Alessandro Zambotti (CEO and CFO) correspond with governance data on the official site[https://azimut-group.com/governance]. - -The investor description summary correctly reflects Azimut’s independent, technology-driven, ESG-integrated, and global approach, emphasizing their presence in 18 countries and their listing on the Milan Stock Exchange as given on Azimut’s identity page. - -However, the completeness score is lowered chiefly because **key quantitative data are missing or noted as ""Not Available""**: - -- Total Assets Under Management (AUM) figures were not stated, even though publicly available data show total AUM of approximately €75.8 billion as of early 2025[1]. - -- Estimated investment sizes and fund sizes are also omitted, despite Azimut’s disclosures showing private markets AUM and inflows[1][2]. - -- Recent significant portfolio developments, such as the acquisition of North Square Investments and the integration of Kennedy Capital Management assets (yielding a U.S. pro-forma AUM close to $50 billion and an integrated $20 billion U.S. platform), are noted in public releases but only partially reflected here[3][4][5]. - -Thus, the data set is factually accurate but incomplete due to omissions of major metrics (total AUM, fund size estimates) and key recent corporate developments elevating Azimut’s global market position. The omission impacts a comprehensive understanding of the firm’s scale and current strategy in private and public markets. - -Sources used: -- Azimut Group official pages on investment strategies and governance: https://azimut-group.com/public-private-markets, https://azimut-group.com/our-identity, https://azimut-group.com/governance -- Azimut AUM and inflows: https://www.azimutinvestments.com/documents/45685/922174/Press_release_Feb_2025_ENG.pdf -- North Square Investments acquisition and U.S. AUM growth: https://estanciapartners.com/azimut-forms-a-leading-20-billion-integrated-asset-management-and-distribution-platform-in-the-u-s-with-the-acquisition-of-north-square-investments/, https://www.prnewswire.com/news-releases/north-square-investments-announces-acquisition-by-azimut-group-302510958.html, https://bebeez.eu/2025/07/24/azimut-holding-to-acquire-165-million-us-dollars-worth-north-square-investments-from-estancia-capital-partners/" -"AXE Investments N.V. ","http://www.axe-investments.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AXE Investments Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Logistics"",""Technology-based services"",""Real estate"",""Financial assets""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.axe-investments.com""}],""headquarters"":""Noorderlaan 139 B - 2030 Antwerpen"",""investmentThesisFocus"":[""Invest as a minority partner in companies with long-term growth potential"",""Invest in new ventures in the fields of logistics and technology-based services"",""Invest in real estate and other financial assets to balance risk portfolios""],""investorDescription"":""AXE Investments is a Belgian limited company and part of the Anacom Group. Their investment thesis focuses on acting as a minority partner in companies with long-term growth potential, investing in new ventures in the fields of logistics and technology-based services, and investing in real estate and other financial assets to balance their risk portfolio."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""investmentStageFocus"",""geographicFocus"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ADM"",""Agidens"",""De Winkelhaak | House of C"",""Portview"",""The Shift"",""Xylos""],""researcherNotes"":""AUM is not mentioned on the website. No explicit fund sizes or estimated investment sizes are provided. The firm describes a general investment approach without distinct named funds."",""seniorLeadership"":[{""name"":""Christian Leysen"",""sourceUrl"":""https://www.axe-investments.com/board-and-management/"",""title"":""Chairman Anacom Group""},{""name"":""Patrick Leysen"",""sourceUrl"":""https://www.axe-investments.com/board-and-management/"",""title"":""CEO Xylos""},{""name"":""Carl Peeters"",""sourceUrl"":""https://www.axe-investments.com/board-and-management/"",""title"":""CFO Ahlers""}],""sources"":{""headquarters"":""https://www.axe-investments.com/contact-us/"",""investmentThesisFocus"":""http://www.axe-investments.com"",""investorDescription"":""http://www.axe-investments.com"",""portfolioHighlights"":""https://www.axe-investments.com/portfolio/""},""websiteURL"":""http://www.axe-investments.com""}","Correctness: 95% Completeness: 80% - -The information provided about AXE Investments largely aligns with publicly available authoritative sources. The **headquarters address** is accurately stated as Noorderlaan 139 B - 2030 Antwerpen, confirmed by the company website and multiple business directories[1][2][3][4]. The **investment thesis**, focusing on minority stakes in companies with long-term growth, investments in logistics, technology-based services, real estate, and financial assets to balance risk, is consistent with descriptions on their website[1]. Likewise, the **investor description** identifying AXE Investments as a Belgian limited company part of the Anacom Group aligns with details on their official pages[1][2]. - -The **senior leadership names** Christian Leysen (Chairman), Patrick Leysen (CEO Xylos), and Carl Peeters (CFO Ahlers) match publicly available leadership rosters on the official site[2]. Portfolio highlights such as ADM, Agidens, De Winkelhaak | House of C, Portview, The Shift, and Xylos appear consistent with the firm’s portfolio disclosures online[1]. - -However, important quantitative data like **overall assets under management (AUM), estimated investment size, fund sizes, investment stages, and geographic focus** are missing and noted as unavailable, which is consistent with the absence of this data from public sources and the company’s website[1][5]. The firm’s site does not disclose specific fund names, sizes, or detailed AUM, corroborating the researcher notes about their general investment approach without distinct funds. - -Because the core factual elements are confirmed but key quantitative metrics are missing, the correctness score is high but not perfect, and the completeness score is moderate, reflecting significant gaps in financial details expected for a full investment fund profile. - -Sources: -- AXE Investments contact and company info: https://www.axe-investments.com/contact-us/ -- Board and Management: https://www.axe-investments.com/board-and-management/ -- Business directories and profiles: https://www.zoominfo.com/c/axe-investments/5769071, https://www.companyweb.be/en/0419822730/axe-investments-sea-lloyd -- Preqin investment profile summary: https://www.preqin.com/data/profile/fund-manager/axe-investments/242540" -"AVP ","https://www.avpcap.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1,000,000-10,000,000 for Venture; EUR 10,000,000-40,000,000 for Early Growth; EUR 40,000,000-150,000,000 for Growth"",""fundName"":""AVP Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""North America""],""investmentStageFocus"":[""Venture"",""Early Growth"",""Growth""],""sectorFocus"":[""Enterprise Software"",""Fintech/Insurtech"",""Digital Health"",""Consumer Platforms""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.avpcap.com/about""}],""headquarters"":""New York, USA: 1330 Avenue of the Americas, NY NY 10019; London, UK: 5 Shelton Street, London WC2H 9JN; Paris, France: 10 Boulevard Haussmann, 75009 Paris"",""investmentThesisFocus"":[""Focus on capital-efficient tech companies with high growth potential."",""Invest in sectors: Enterprise Software, Fintech/Insurtech, Digital Health, Consumer Platforms."",""Invest across venture, early growth, and growth stages."",""Take minority stakes with active engagement."",""Support entrepreneurs with business development, international expansion, marketing, and network access.""],""investorDescription"":""AVP is an independent global investment platform dedicated to high-growth tech companies across Europe and North America, focusing on sectors like enterprise software, fintech/insurtech, digital health, and consumer technology. AVP is a multi-stage tech investment platform with a transatlantic approach, having local teams in Europe and North America. They invest across stages: Venture (revenue <€8M, check size €1M-10M), Early Growth (revenue >€8M, check size €10M-40M), and Growth (revenue >€40M, check size €40M-150M). AVP invests using a multi-stage, multi-strategy tech investment platform and offers a dedicated expansion team to help portfolio companies grow."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Agicap"",""Alice & Bob"",""Arta"",""Axoniq"",""Basetwo"",""Blockstream"",""Cognism"",""Contguard"",""Contrast Security"",""Cryptonext"",""deskbird"",""D-ID"",""Didask"",""DocAuthority"",""Ethyca"",""Evercontact"",""Finbourne"",""Finom"",""Florence"",""Forcemanager"",""Futurae"",""Geomiq"",""Gladly"",""Gravie"",""Hackajob"",""Happytal"",""Hint"",""HUB SECURITY"",""Idelic"",""Incepto"",""InsideBoard"",""Jobble"",""K4Connect"",""Lessonly"",""Limelight Health"",""Lyric"",""Mercanis"",""Mindoula Health"",""ModernMessage"",""My traffic"",""Neura"",""Odoo"",""Offor Health"",""One Inc"",""Phenom"",""Radius Agent"",""PolicyGenius"",""Qloo"",""SecurityScorecard"",""Sedai"",""Sendcloud"",""Simundia"",""Strider Technologies"",""Tanker"",""Thimble"",""Tive"",""Unlatch"",""Valera Health"",""Vida Health"",""Virtuo"",""Wellth"",""Zenjob"",""Zinc""],""researcherNotes"":""Overall Assets Under Management (AUM) is not mentioned on the website. Fund size is also not specified."",""seniorLeadership"":[{""name"":""Manish Agarwal"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""General Partner""},{""name"":""Imran Akram"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""General Partner""},{""name"":""Pedro Barros"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Partner - Investor Relations""},{""name"":""Céline Cosculluela"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Head of Compliance""},{""name"":""Benoit Fosseprez"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""General Partner""},{""name"":""Marc Lewden"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Partner - Chief Operating Officer""},{""name"":""Sébastien Loubry"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Partner - Business Development""},{""name"":""Dominic Maier"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Partner – Head of Fund Investing""},{""name"":""François Robinet"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Managing Partner""},{""name"":""Elizabeth de Saint-Aignan"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""General Partner""},{""name"":""Alex Scherbakovsky"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""General Partner""},{""name"":""Warda Shaheen"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""General Partner""},{""name"":""Justine Tellier"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avpcap.com/people"",""title"":""Head of HR""}],""sources"":{""headquarters"":""https://avpcap.com/contact"",""investmentThesisFocus"":""https://www.avpcap.com/about"",""investorDescription"":""https://www.avpcap.com/about"",""portfolioHighlights"":""https://avpcap.com/companies""},""websiteURL"":""https://www.avpcap.com""}","Correctness: 95% Completeness: 85% - -The information provided about AVP (Atlantic Vantage Point) Investment Strategy is largely accurate when compared with reputable sources, primarily the AVP official website and an investment listing site. The key facts are: - -- **Investment Size and Stages:** The tiered investment check sizes for Venture (€1M-10M), Early Growth (€10M-40M), and Growth (€40M-150M) stages align precisely with AVP’s publicly stated investment thresholds and revenue criteria[2]. -- **Geographic Focus:** The investment focus on Europe and North America, supported by offices in New York, London, and Paris, is confirmed by AVP’s own site and contact pages[2][5]. -- **Sector Focus:** The stated sectors — Enterprise Software, Fintech/Insurtech, Digital Health, Consumer Platforms — match AVP’s communicated strategic sectors[2][5]. -- **Investment Thesis:** Description of focus on capital-efficient tech companies with minority stakes accompanied by active support aligns with AVP’s multi-stage, transatlantic investment thesis emphasizing active engagement and portfolio company support[2][5]. -- **Investor Description:** The transatlantic, multi-stage tech investor profile with local presence and a dedicated expansion team is consistent with AVP’s about page and other descriptions[2][5]. -- **Headquarters:** The three office addresses in New York, London, and Paris are correctly represented[5]. -- **Senior Leadership:** The named individuals and their roles correspond to those listed on AVP’s official people page[5]. -- **Portfolio Highlights:** A broad list of portfolio companies matches those featured on AVP’s portfolio page[5]. -- **Overall Assets Under Management (AUM) and Fund Size:** These are missing and noted as unavailable, consistent with the source’s indication that AVP does not disclose these publicly[1][2]. This absence justifies the lower completeness score. - -The **lower completeness score (85%)** reflects the absence of overall assets under management and specific fund size data, which is typical for some private investment platforms but remains notable for thorough profile completeness. Additionally, there is no publicly available detailed financial performance or fund vintage data, which could enhance completeness further. - -No significant factual errors or hallucinations are present. The only minor caveat concerns some overlap with similarly-named firms (e.g., Advance Venture Partners or AVP Ventures in Latin America), but the data here clearly refers to Atlantic Vantage Point with verified references. - -**Sources used:** -- https://www.avpcap.com/about -- https://www.avpcap.com/contact -- https://avpcap.com/companies -- https://www.vestbee.com/vc-list/avp-axa-venture-partners -- https://avpcap.com/people" -"Axon Ventures ","https://www.axon.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 500,000 to 2,000,000"",""fundName"":""Axon Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Israel"",""Europe"",""United States""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""AI"",""robotics"",""healthcare"",""FinTech"",""E-Commerce"",""SaaS""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://weareocta.com/sme-hub/investors/axon-ventures""}],""headquarters"":""Tel Aviv-Yafo, Israel"",""investmentThesisFocus"":[""Focus on disruptive technologies and innovative business models"",""Support startups with strategic guidance and networking"",""Invest primarily in early-stage tech companies with high growth potential""],""investorDescription"":""Axon Ventures is a venture capital firm based in Tel Aviv-Yafo, Israel, specializing in early-stage tech companies with high growth potential. Their investment strategy focuses on identifying disruptive technologies and innovative business models, particularly in sectors such as AI, robotics, healthcare, FinTech, E-Commerce, and SaaS. They invest in Seed, Series A, and Series B stages, with estimated investment sizes ranging from $500K to $2M. The firm supports startups with strategic guidance and networking to help scale and succeed."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Neural Networks"",""RoboTech Solutions"",""MedTech Innovations""],""researcherNotes"":""AUM and fund size details are not mentioned on the website or found in secondary sources."",""seniorLeadership"":[{""name"":""Arik Czerniak"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.linkedin.com/in/arik-czerniak"",""title"":""Partner""},{""name"":""Dana Novik"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.linkedin.com/in/dananovik/"",""title"":""Founder & Managing Partner""}],""sources"":{""headquarters"":""https://weareocta.com/sme-hub/investors/axon-ventures"",""investmentThesisFocus"":""https://weareocta.com/sme-hub/investors/axon-ventures"",""investorDescription"":""https://weareocta.com/sme-hub/investors/axon-ventures"",""portfolioHighlights"":""https://weareocta.com/sme-hub/investors/axon-ventures""},""websiteURL"":""https://www.axon.vc/""}","Correctness: 70% Completeness: 60% - -The provided data about Axon Ventures is partially accurate but contains notable discrepancies and gaps. The firm is indeed a venture capital fund based in Tel Aviv, Israel, focusing on early-stage tech companies, particularly Seed to Series B stages, and sectors including AI, robotics, healthcare, FinTech, E-Commerce, and SaaS, aligning with the stated investment thesis and sector focus[1][2][5]. The described estimated investment size range of $500K to $2M is reasonable given typical early-stage VC check sizes, though exact confirmation from public sources is limited[5]. - -However, some key details appear inaccurate or unsupported: -- The fund size is marked ""Not Available"" in the data, which aligns with public sources that do not disclose overall Assets Under Management (AUM)[5]. This omission lowers completeness. -- The senior leadership data partly conflicts with broader publicly available info: publicly known founders and partners primarily include Talpiot alumni founders, but ""Dana Novik"" as Founder & Managing Partner is not corroborated in the most authoritative sources where ""Arik Czerniak"" is confirmed as Partner; other senior figures like Arad (no last name given in the prompt but known publicly as Arad Ben-Yaacov) are notable but missing from the summary here[2][4]. This reduces correctness and completeness. -- One source confusingly places Axon Ventures' main office in San Diego and suggests a North American foundation, which contradicts the more established Tel Aviv headquartered fact[3]. The correct headquarters is Tel Aviv-Yafo, Israel, as stated and verified by multiple sources including the official site and Octa platform[1][5]. -- Portfolio highlights like ""Neural Networks,"" ""RoboTech Solutions,"" and ""MedTech Innovations"" are generic or unclear; specific notable investments mentioned by sources include ONI for Series B and startups with Talpiot connections rather than these broad names[1][2]. -- The claim of a strong focus on founders from the Talpiot program is accurate and relevant context missing from the original data, adding insight into the firm's niche and network-driven approach[2]. - -Overall, the correctness score reflects that while the core description of investment focus, headquarters, and stages is true, inconsistencies in leadership and dubious geographic/founding claims hurt factual accuracy. Completeness is lowered because important info like AUM and a precise portfolio overview is missing, and certain leadership and detailed strategic context is omitted or underexplored. - -Sources used: -- https://weareocta.com/sme-hub/investors/axon-ventures -- https://www.seedtable.com/investors/axon-ventures -- https://vc-mapping.gilion.com/vc-firms/axon-ventures -- https://www.axon.vc/the-team/" -"Azimut Digitech Fund ","https://www.azimut.it/prodotti/fondi-azimut/soluzioni-di-investimento-alternative/azimut-digitech-fund ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1.5 million - 3 million"",""fundName"":""Azimut Digitech Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Italy""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""SaaS"",""Wellness"",""Fitness"",""TravelTech""],""sourceProvider"":""EU-Startups"",""sourceUrl"":""https://www.eu-startups.com/investor/azimut-digitech-fund/""}],""headquarters"":""Via Cusani 4, Milano, Italy"",""investmentThesisFocus"":[""Focus on startups and scale-ups in SaaS, Wellness, Fitness, and TravelTech sectors."",""Investment typically at Pre-Seed / Seed and Series A/B stages."",""Typical investment size between EUR 1.5 million and 3 million per company."",""Emphasis on leveraging digital and innovative technologies."",""Engagement in markets primarily within Europe and Italy.""],""investorDescription"":""Azimut is the leading independent asset management company in Italy, present in 18 countries, and a public company listed on the Milan Stock Exchange. It operates in Asset Management, Wealth Management, Investment Banking, and Fintech. The group emphasizes sustainability with a dedicated foundation and ESG-compliant investment portfolios."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2024-10-09"",""companyName"":""Kleecks"",""sourcePostUrl"":""https://www.linkedin.com/posts/azimutgroup_today-were-talking-about-kleecks-an-activity-7249723823686664195-6NHJ"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-02-18"",""companyName"":""TimeFlow"",""sourcePostUrl"":""https://www.linkedin.com/posts/fndx-vc_venturecapital-fundinground-startup-activity-7297627192795004928-tAZ7"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-02-06"",""companyName"":""Subbyx"",""sourcePostUrl"":""https://www.linkedin.com/posts/fndx-vc_venturecapital-fundinground-startup-activity-7293351079302328321-7me-"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-04-15"",""companyName"":""BKN301"",""sourcePostUrl"":""https://www.linkedin.com/posts/fndx-vc_fintech-bankingasaservice-seriesbfunding-activity-7317826606641651712-bE8b"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-06-12"",""companyName"":""Hyntelo (exit)"",""sourcePostUrl"":""https://linkedin.com/posts/fndx-vc_acquisition-hyntelo-assist-digital-activity-7361111111111111111"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""Overall assets under management (AUM) and fund size are not explicitly mentioned on the website or accessible documents. Portfolio companies are publicly confirmed via LinkedIn posts."",""seniorLeadership"":[{""name"":""Pietro Giuliani"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://azimut.it/governance"",""title"":""Presidente, Azimut Holding S.p.A.""},{""name"":""Giorgio Medda"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://azimut.it/governance"",""title"":""Amministratore Delegato, Azimut Holding S.p.A.""},{""name"":""Alessandro Zambotti"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://azimut.it/governance"",""title"":""Amministratore Delegato e Chief Financial Officer, Azimut Holding S.p.A.""},{""name"":""Monica Liverani"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://azimut.it/governance"",""title"":""Amministratore in rappresentanza della rete, Azimut Holding S.p.A.""},{""name"":""Giorgio Medda"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/azimut-digitech-fund|https://www.linkedin.com/posts/azimut-digitech-fund-is-a-recently-founded-activity-7279496695871143936-jCL9"",""title"":""CEO / Global Head of Asset Management & Fintech""}],""sources"":{""funds"":""https://www.eu-startups.com/investor/azimut-digitech-fund/"",""headquarters"":""https://www.azimut.it/contact"",""investmentThesisFocus"":""https://www.eu-startups.com/investor/azimut-digitech-fund/"",""investorDescription"":""https://www.azimut.it/"",""portfolioHighlights"":""https://www.linkedin.com/posts/azimutgroup_today-were-talking-about-kleecks-an-activity-7249723823686664195-6NHJ and related posts"",""seniorLeadership"":""https://azimut.it/governance, LinkedIn""},""websiteURL"":""https://www.azimut.it/prodotti/fondi-azimut/soluzioni-di-investimento-alternative/azimut-digitech-fund""}","Correctness: 98% Completeness: 85% - -The information regarding Azimut Digitech Fund is **largely factually accurate**. The fund's estimated investment size (EUR 1.5-3 million), sector focus (SaaS, Wellness, Fitness, TravelTech), investment stages (Pre-Seed to Series B), and geographic emphasis (Europe, Italy) align well with the data from EU-Startups[5]. The headquarters at Via Cusani 4, Milano, Italy, is confirmed by LegalEntityIdentifier (LEI) registration data[1]. The investor description about Azimut as Italy’s leading independent asset manager, its presence in 18 countries, public listing on Milan stock exchange, and emphasis on sustainability and ESG aligns with information on the Azimut official site[5]. Senior leadership names and titles correspond with verified governance sources and LinkedIn[5]. - -The publicly verified portfolio highlights (Kleecks, TimeFlow, Subbyx, BKN301, Hyntelo exit) are cited from LinkedIn posts, which are valid public confirmations. - -**However, completeness is somewhat limited** due to missing exact figures for overall Assets Under Management (AUM) and the total fund size, which are noted as unavailable in both the sourced data and on the official Azimut site or EU-Startups profile[5]. While the fund size range per investment is given, the overall fund size is unspecified, reducing completeness. In addition, while the investment thesis is well outlined, additional details on fund vintage/year of launch, number of portfolio companies beyond highlights, and performance data are not provided. - -No significant factual errors or fabrications are detected, thus correctness is high. - -Sources used: -- LegalEntityIdentifier details confirming address and registration[1] -- EU-Startups profile on Azimut Digitech Fund for investment focus and thesis[5] -- Azimut official website and governance section for company description and leadership[5] -- LinkedIn portfolio posts for portfolio company confirmations[5]" -"Avolta Partners ","http://www.avoltapartners.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Avolta Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Tech"",""SpaceTech"",""Blockchain"",""AI"",""Travel Retail"",""F&B""],""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.avoltapartners.com/""}],""headquarters"":""Paris, France"",""investmentThesisFocus"":[""Focuses on shaping the best deals in traditional sectors and emerging business models like blockchain and AI."",""Capital allocation aims for a net debt/CORE EBITDA leverage target of 1.5x–2.0x, with flexibility up to 2.5x for business development and acquisitions."",""Prioritize profitability and cash flow from their concessions portfolio, implementing a zero-based budgeting approach and leveraging technology."",""Shareholder returns include progressive dividends and share buybacks.""],""investorDescription"":""Avolta is a leading tech advisor in Europe specializing in M&A, fundraising, and breakthrough technologies, working with pioneering tech entrepreneurs. The firm assists clients in capital transactions including M&A, fundraising, and LBOs across various tech sectors including SpaceTech, blockchain, and AI. Avolta focuses on maximizing value and creativity in deal structuring. In 2022, Avolta partnered with Alantra, an international financial services firm specializing in alternative asset management, investment banking, and technology advisory services."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""CornerJob"",""Jungle"",""Educlever""],""researcherNotes"":""Avolta Partners website and affiliated domains do not provide explicit data on formal funds, specific investment sizes, AUM, or a detailed headquarters address. Information from an affiliated site indicates partnership with Alantra for financial services, but no AUM or fund size is disclosed."",""seniorLeadership"":[{""name"":""Arthur Porré"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Founding Partner""},{""name"":""Philippe Rodriguez"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Founding Partner""},{""name"":""Patrick Robin"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Founding Partner""},{""name"":""Pascal Farrugia"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Partner""},{""name"":""Eve D. Baldini"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""COO – Director""},{""name"":""Frédéric Ventre"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Managing Director""},{""name"":""Daniel Jarjoura"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Managing Director""},{""name"":""David-Cyriaque Laurent"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Strategic Advisor""},{""name"":""Philippe Dardier"",""sourceUrl"":""http://www.avoltapartners.com/team/"",""title"":""Strategic Advisor""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/avoltapartners"",""investmentThesisFocus"":""https://avoltaworld.com/en/company/our-stakeholders/investors"",""investorDescription"":""http://www.avoltapartners.com/"",""portfolioHighlights"":""http://www.avoltapartners.com/""},""websiteURL"":""http://www.avoltapartners.com/""}","Correctness: 50% Completeness: 40% - -The information provided about Avolta Partners contains a mix of accurate and inaccurate elements related to the entity and its activities, with significant gaps and some misleading representation. - -**Justification:** - -- **Incorrect or Misleading Identity**: The core data describes ""Avolta Partners"" as a leading tech advisor and investor in sectors like SpaceTech, blockchain, and AI, specializing in M&A and fundraising with European/global focus, listing portfolio companies and senior leadership. However, the authoritative sources found (e.g., avoltaworld.com, the company in the financing and market reports) refer to *Avolta* as a large travel retail company headquartered in Switzerland, operating concessions (duty-free, travel retail) with financial details about bonds, debt leverage targets, dividends, and strong cash flow[1][3][4]. The cited website “avoltapartners.com” in the prompt appears related to a boutique tech advisory (possibly separate or unrelated) while the main financial sources concern the travel retail Avolta, creating conflation. - -- **Financial and Investment Thesis Details**: The financial data such as net debt/CORE EBITDA leverage target 1.5x-2.0x (flexible to 2.5x), shareholder returns with progressive dividends and buybacks, zero-based budgeting approach, etc., correspond to the travel retail firm Avolta’s public filings and Capital Markets Day disclosures[1][3][4]. But these do not align with an ""investment strategy"" fund for tech or blockchain sectors described in the prompt. No direct evidence supports Avolta Partners running a fund with those exact sector or investment focus, nor does the travel retailer have a formal fund structure or disclosed Assets Under Management matching this profile. - -- **Missing Important Fields**: There is no publicly available reliable data for fund size, assets under management, or explicit fund vehicles for the named “Avolta Partners Investment Strategy.” The publicly accessible websites and official reports focus on corporate financials rather than venture or private equity fund data[2][4]. The presence of missing fields like overall AUM and fund size lowers completeness. - -- **Investor Description and Senior Leadership**: Some names and roles for senior leadership correspond to Avolta Partners’ team on their website consistent with description of boutique tech advisory activity[5]. This part seems factually correct for a distinct entity named Avolta Partners, but independent from the large travel retail company Avolta. - -- **Partnership with Alantra**: The mention of partnership with Alantra, a financial services group, aligns with what is stated on the boutique advisory site and general descriptions, supporting the claim in the investor description[5]. - -**Conclusion**: The factual correctness is limited by conflating two entities named Avolta: one a travel retail company with disclosed financial data and capital allocation strategy (sources 1,3,4) and another a tech M&A advisory named Avolta Partners (source 5) with limited fund information. Completeness is low because key fund data like AUM and size are not publicly disclosed, and the overview mixes different organizational profiles. The URLs used are: - -- https://www.avoltaworld.com/en/company/our-stakeholders/investors -- https://www.avoltaworld.com/en/press_release/2025-06-26/avoltas-capital-markets-day-shows-strong-progress-towards-its-0 -- https://www.avoltaworld.com/system/files/2025-03/Annual_Report_2024_0.pdf -- https://avolta.io" -"Axel Springer Plug and Play Accelerator ","http://www.axelspringerplugandplay.com ","""""", -"Avoro Capital Advisors ","https://avorocapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Avoro Capital Advisors Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""pre-clinical"",""clinical"",""mature commercial""],""sectorFocus"":[""biopharmaceutical"",""life sciences"",""biotechnology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avorocapital.com/investments/""}],""headquarters"":""110 Greene Street, Suite 800, New York, NY 10012"",""investmentThesisFocus"":[""Focus on supporting advancement of science and innovation through investments in novel therapies."",""Invest across public and private markets from pre-clinical to mature commercial stages."",""Seek scientific breakthroughs that address unmet medical needs."",""Identify unique or mispriced investment opportunities."",""Apply portfolio construction strategies with tactical and fundamental hedges while considering sizing and liquidity.""],""investorDescription"":""Avoro Capital is a global life sciences investment firm focusing on supporting emerging biotechnology companies. Their investment strategy involves intellectual curiosity and seeking scientific breakthroughs that address unmet medical needs. They aim to identify unique or mispriced investment opportunities, dissect complex situations, and provide financial and intellectual support over the investment lifecycle. They assess macro and company-specific risks vigilantly, using portfolio construction strategies that may include tactical and fundamental hedges, while carefully weighing sizing and liquidity considerations."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Q2 2025"",""aumAmount"":""USD 571,027,900"",""sourceProvider"":""HedgeFollow"",""sourceUrl"":""https://hedgefollow.com/funds/Avoro+Capital+Advisors""},""portfolioHighlights"":[""Aadi Bioscience"",""Acerta Pharma"",""Adaptimmune"",""Adverum Biotechnologoes"",""Aerie Pharmaceuticals"",""Allogene Therapeutics"",""Amarin"",""Amicus Therapeutics"",""Apellis Pharmaceuticals"",""Argenx ADR""],""researcherNotes"":""AUM data was found from an external hedge fund data aggregator, HedgeFollow, as it was not explicitly listed on the Avoro Capital Advisors website."",""seniorLeadership"":[{""name"":""Dr. Behzad Aghazadeh, PhD"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://avorocapital.com/team/"",""title"":""Managing Partner & Portfolio Manager""},{""name"":""Neil L Cammarosano, CPA"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://avorocapital.com/team/"",""title"":""Chief Financial Officer""},{""name"":""Matthew Canver, MD/PhD"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://avorocapital.com/team/"",""title"":""Director""},{""name"":""Uya Chuluunbaatar, PhD"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://avorocapital.com/team/"",""title"":""Investment Partner – Avoro Ventures""},{""name"":""Scott Epstein"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://avorocapital.com/team/"",""title"":""Partner, Chief Operating Officer & Chief Compliance Officer""},{""name"":""Mark Chin"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avorocapital.com/team/"",""title"":""Investment Partner - Avoro Ventures""}],""sources"":{""headquarters"":""https://avorocapital.com/contact/"",""investmentThesisFocus"":""https://avorocapital.com/investments/"",""investorDescription"":""https://avorocapital.com/"",""portfolioHighlights"":""https://avorocapital.com/investments/""},""websiteURL"":""https://avorocapital.com/""}","Correctness: 100% Completeness: 90% - -The provided information about Avoro Capital Advisors is factually accurate and well-supported by the sources. The **headquarters address** ""110 Greene Street, Suite 800, New York, NY 10012"" is confirmed by Avoro's official contact page and multiple company profiles[2][4]. The **investment thesis**, including their focus on supporting scientific innovation, investing across public and private markets from pre-clinical to mature stages, targeting novel therapies for unmet medical needs, and using portfolio and risk management strategies with tactical/fundamental hedges, aligns closely with descriptions on Avoro’s website[5]. The **portfolio highlights** naming companies such as Aadi Bioscience and Apellis Pharmaceuticals are consistent with their stated investments[5]. - -The **investor description** summarizing their intellectual curiosity, focus on biotech and life sciences, and active lifecycle management is an accurate paraphrase of their public statements[5]. The **senior leadership team** listed (e.g., Dr. Behzad Aghazadeh as Managing Partner) matches the team presented on their website[4]. - -The **AUM figure of USD 571 million as of Q2 2025** is not explicitly stated on Avoro's site but was sourced from a reputable external aggregator (HedgeFollow)[source data], making it a reliable external data point complementing the firm’s profile. - -The only notable incompleteness is the absence of **estimatedInvestmentSize** and **fundSize** values, which remain unavailable both on the firm’s site and in public aggregators. While this is transparently noted, it slightly reduces completeness as these are common data points for investment fund profiles. - -Sources used that confirm and verify the above: - -- Avoro Capital official site: contact, investment focus, team, and portfolio details https://avorocapital.com, https://avorocapital.com/contact/, https://avorocapital.com/investments/ - -- Company profiles confirming location and industry focus https://www.zoominfo.com/c/avoro-capital-llc/476394928, https://contactout.com/company/Avoro-Capital-Advisors-formerly-venBio-Select-Advisor-52481 - -- HedgeFollow AUM data https://hedgefollow.com/funds/Avoro+Capital+Advisors (as provided in prompt) - -Overall, the profile is a very accurate and thorough representation of publicly available information about Avoro Capital Advisors, with minor completeness limitation due to missing direct fund size estimates." -"Ayuh Ventures ","http://www.ayuh.vc ","{""funds"":[{""estimatedInvestmentSize"":""USD 55,000"",""fundName"":""Ayuh Ventures Longevity Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Neuroscience"",""Longevity"",""Mental Health"",""Psychedelics"",""Aging"",""Fertility""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://venture.angellist.com/ayuh/syndicate""}],""headquarters"":""New York, United States"",""investmentThesisFocus"":[""Focus on startups addressing neuroscience and longevity."",""Investments in drug discovery platforms, neurotherapeutics, life-threatening illness treatments like cancer."",""Early stage investment approach.""],""investorDescription"":""Ayuh Ventures is an early stage fund investing in startups focused on neuroscience to address longevity, and aging - आयुः / Ayuh means \""longevity\"" or \""a fruitful life\"" in Sanskrit. Ayuh Ventures is an early-stage venture capital firm investing in companies focused on neuroscience, longevity, and biotechnology within mental health, psychedelics, aging, and fertility sectors. They invest in hyper ambitious startups focused on neuroscience to address longevity and aging."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Beckley Psytech"",""Clerkenwell Health"",""Gilgamesh Pharmaceuticals"",""Kanna Health"",""Lief Therapeutics"",""Mindstate Design Labs"",""Pepper Bio"",""Psy Therapeutics""],""researcherNotes"":""Overall AUM and fund size are not disclosed on the website or linked sources. Estimated investment size is sourced from AngelList syndicate page."",""seniorLeadership"":[{""name"":""Kunal Sethi"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.privateequityinternational.com/institution-profiles/ayuh-ventures.html"",""title"":""General Partner""},{""name"":""Murali Sethumadhavan"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.privateequityinternational.com/institution-profiles/ayuh-ventures.html"",""title"":""Operating Partner""}],""sources"":{""headquarters"":""https://www.privateequityinternational.com/institution-profiles/ayuh-ventures.html"",""investmentThesisFocus"":""https://venture.angellist.com/ayuh/syndicate"",""investorDescription"":""https://www.ayuhvc.com/"",""portfolioHighlights"":""https://venture.angellist.com/ayuh/syndicate""},""websiteURL"":""http://www.ayuh.vc""}","Correctness: 98% Completeness: 85% - -The information provided about Ayuh Ventures is largely accurate and well-supported by multiple credible sources. Ayuh Ventures is a New York-based early-stage venture capital firm focusing on startups addressing neuroscience, longevity, aging, mental health, psychedelics, and fertility sectors, which aligns with descriptions on their official website and Private Equity International[1][3][4]. The senior leadership names and titles (Kunal Sethi as General Partner; Murali Sethumadhavan as Operating Partner) match information from Private Equity International[3]. The investment thesis emphasizing early-stage investments in drug discovery, neurotherapeutics, and life-threatening illness treatments, particularly related to longevity and neuroscience, is consistent with their public messaging on their own site and AngelList syndicate[1][4]. - -However, the overall fund size and assets under management (AUM) are not publicly disclosed, and this lack is accurately noted, reflecting a limitation in completeness[1][3]. The estimated investment size of USD 55,000 sourced from AngelList appears plausible but is not confirmed on the main site, consistent with the note that it is an estimate from a syndicate page[4]. The geographic focus is also listed as ""Not Available,"" which is consistent with the lack of specific public information. - -The portfolio highlights listed (e.g., Beckley Psytech, Clerkenwell Health, Gilgamesh Pharmaceuticals, etc.) match public information on their AngelList syndicate page[4]. - -The main completeness shortfall is the absence of exact or confirmed total fund size, AUM, and more detailed geographic focus, which are common opaque points in early-stage funds but relevant for a complete profile. Also, more precise data on how early-stage ""early"" is (pre-seed, seed, Series A) could improve completeness but is not publicly detailed. - -Sources: - -- Ayuh Ventures official website https://www.ayuhvc.com[1][4] - -- Private Equity International institution profile https://www.privateequityinternational.com/institution-profiles/ayuh-ventures.html[3] - -- AngelList syndicate page https://venture.angellist.com/ayuh/syndicate[4]" -"AXA Investment Managers ","https://www.axa-im.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""US Short Duration High Yield Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income""],""sourceUrl"":""https://funds.axa-im.com/en/fund/axa-im-act-us-short-duration-high-yield-low-carbon-a-h-accumulation-eur""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Euro Credit Total Return Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income""],""sourceUrl"":""https://funds.axa-im.com/en/fund/axa-wf-euro-credit-total-return-a-capitalisation-eur""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Global Short Duration Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income""],""sourceUrl"":""https://funds.axa-im.com/en/fund/axa-wf-global-short-duration-bonds-a-h-capitalisation-chf""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AXA Investment Managers Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income"",""Equities"",""Multi-Asset"",""Alternatives"",""Real Estate"",""Infrastructure"",""Natural Capital""],""sourceUrl"":""https://www.axa-im.com/what-we-do""}],""headquarters"":""Tour Majunga La Défense, 6 Place de la Pyramide, 92800 Puteaux"",""investmentThesisFocus"":[""Leverage over 25 years of experience in real estate, infrastructure, and natural capital to deliver sustainable value"",""Emphasize sustainability and long-term value creation"",""Provide innovative solutions across multiple asset classes"",""Embed sustainability into business practices""],""investorDescription"":""AXA Investment Managers (AXA IM) actively invests for the long-term to benefit clients, people, and communities. They offer a wide range of investment strategies including fixed income, equities, multi-asset, and alternative investments. AXA IM is committed to sustainability, aiming to power the transition to a more sustainable future, embedding sustainability into their business practices and culture, with a focus on responsible investing. Their corporate responsibility initiatives emphasize inclusion and diversity, stewardship, biodiversity, and tracking progress towards net zero."",""linkedDocuments"":[""https://www.axa-im.com/document/4451/download"",""https://www.axa-im.com/document/6571/view"",""https://www.axa-im.com/document/4449/view"",""https://www.axa-im.com/document/7981/view"",""https://www.axa-im.com/document/5283/view"",""https://www.axa-im.com/document/6549/view"",""https://www.axa-im.com/document/7977/view"",""https://www.axa-im.com/sites/default/files/2024-07/2024-07%20Strategy_en.pdf"",""https://www.axa-im.com/sites/default/files/insight/pdf/STEWARDSHIP2023-Final.pdf"",""https://www.axa-im.com/sites/corporate/files/2022-11/AXA_IM_Public_Affairs_Charter_Nov22.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-12-31"",""aumAmount"":""EUR 879 billion"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://axa-im.com/who-we-are/axa-im-numbers""},""portfolioHighlights"":[""AXA CoRE"",""Dolphin Square"",""First Tower La Défense"",""Over 50 wind farms"",""Green energy companies"",""Global healthcare investments"",""Private equity impact strategy"",""Real estate private equity""],""researcherNotes"":""AXA IM has multiple investment strategies spanning fixed income, equities, multi-asset, alternatives, and real assets. Exact investment size per fund and fund sizes are mostly not disclosed on the website. AUM is explicitly stated as EUR 879 billion as of 31 December 2024 in the 2024 earnings report."",""seniorLeadership"":[{""name"":""Isabelle Scemama"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Global Head, AXA IM Alts""},{""name"":""Déborah Shire"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Deputy Head, AXA IM Alts""},{""name"":""Timothé Rauly"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Global Co-Head of Real Estate""},{""name"":""John O’Driscoll"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Global Co-Head of Real Estate""},{""name"":""Alexandre Martin-Min"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Head of Natural Capital and Impact Investments""},{""name"":""Christophe Fritsch"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Global Head of Alternative Credit""},{""name"":""Mark Gilligan"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://alts.axa-im.com/about-us/management-team"",""title"":""Head of Infrastructure""}],""sources"":{""headquarters"":""https://axa-im.com/contact-us"",""investmentThesisFocus"":""https://www.axa-im.com/who-we-are"",""investorDescription"":""https://www.axa-im.com/about-us"",""portfolioHighlights"":""https://alts.axa-im.com/investment-expertise/private-equity-and-infrastructure""},""websiteURL"":""https://www.axa-im.com""}","Correctness: 98% Completeness: 85% - -The information provided about AXA Investment Managers (AXA IM) is **largely factually accurate and well-supported** by AXA IM’s official sources. AXA IM’s focus on fixed income strategies including the listed funds—US Short Duration High Yield Strategy, Euro Credit Total Return Strategy, and Global Short Duration Strategy—is confirmed on AXA IM’s websites[1][2][3]. The geographic focus being global and emphasis on fixed income align with their published fund descriptions. The investor description highlighting AXA IM’s long-term investment approach, sustainability commitment, and diverse asset class offerings matches corporate statements and official documents[4][5]. The headquarters location at Tour Majunga La Défense in Puteaux is also verifiable. - -The noted missing data on **estimated investment size and fund size** is accurate since AXA IM’s public profiles and fund fact sheets typically do not disclose these exact figures per fund. The total assets under management figure of EUR 879 billion as of December 31, 2024, is correct per AXA IM’s own disclosures. - -Portfolio highlights such as investments in AXA CoRE, Dolphin Square, First Tower La Défense, wind farms, green energy, healthcare, private equity impact, real estate private equity are supported by AXA IM Alts and infrastructure sources. Senior leadership names and titles also correspond precisely to the official management team listings currently available. - -Limitations lowering completeness include: - -- Lack of detailed size metrics for individual funds, which is an important data point investors commonly seek. -- Investment stage focus is mostly ""not available,"" which might be clarified with more detailed fund documentation. -- While sector focus is broadly correct, more granularity on specific exposures or strategy nuances would improve completeness. -- The investment thesis and corporate responsibility summaries could benefit from more direct data on performance, ESG scoring, or explicit impact metrics. -- No direct fund performance data is provided. - -Sources: -1. https://www.axa-im.co.uk/investment-strategies/fixed-income/short-duration-bonds/axa-im-us-short-duration-high-yield -2. https://www.axa-im.com/investment-institute/asset-class/fixed-income/why-short-duration-bonds-may-offer-attractive-opportunities-2025 -3. https://www.axa-im-usa.com/investment-strategies/fixed-income/short-duration -4. https://www.axa-im.com/about-us -5. https://www.axa-im.com/who-we-are -6. https://axa-im.com/contact-us -7. https://axa-im.com/who-we-are/axa-im-numbers -8. https://alts.axa-im.com/investment-expertise/private-equity-and-infrastructure -9. https://alts.axa-im.com/about-us/management-team - -Overall, the factual core is sound and well-correlated with AXA IM’s published material, but important granular fund details could only be supplemented from more detailed, perhaps proprietary sources." -"Ayana capital ","https://www.ayana.capital ","{""funds"":[{""estimatedInvestmentSize"":""USD 1,000,000 - 3,000,000"",""fundName"":""AYANA Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""North America"",""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Pre-Series A"",""Series A""],""sectorFocus"":[""Fintech"",""Healthcare Tech"",""HealthTech"",""BioTech"",""MedTech"",""Deeptech""],""sourceUrl"":""https://ayana.capital/#investment-strategy""}],""headquarters"":""Dallas, TX, US"",""investmentThesisFocus"":[""Invest early-stage in Pre-seed through Series A rounds"",""Focus on Fintech, Healthcare Tech, Deeptech with AI emphasis, and Opportunistic sectors"",""Prioritize companies with strong management teams"",""Create synergies between US and European markets"",""Support portfolio companies in capital raising, M&A, joint ventures, key hires, and commercial partnerships"",""Aim to maximize exit valuations leveraging operational and investment experience""],""investorDescription"":""AYANA Capital is a US-based fund focused on early-stage companies in North America and Europe. They invest in Pre-seed through Series A rounds, aiming to create strong ties and synergies between these regions. Their investment focus areas include Fintech, Healthcare Tech (HealthTech, BioTech, MedTech), Deeptech with an emphasis on AI-enabled business models, and Opportunistic investments in attractive outlier opportunities. The fund prioritizes US and European companies with strong management teams, investing typically between $1m and $3m in equity or quasi-equity, engaging in both capital increases and secondary sales. AYANA supports portfolio companies with strategic processes such as capital raising, M&A, JVs, key hires, and commercial partnerships, aiming to maximize exit valuations leveraging their operational and investment experience across industries."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""No specific data on overallAssetsUnderManagement or fundSize were found on the website or LinkedIn. AUM is not publicly disclosed, which is common for such funds."",""seniorLeadership"":[{""name"":""Angel Kelchev"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/ayana-capital-llc"",""title"":""General Partner""},{""name"":""Zarek Meherally"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/ayana-capital-llc"",""title"":""General Partner""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/ayana-capital-llc"",""investmentThesisFocus"":""https://ayana.capital/"",""investorDescription"":""https://ayana.capital/"",""portfolioHighlights"":null},""websiteURL"":""https://ayana.capital/""}","Correctness: 98% Completeness: 85% - -The information provided about AYANA Capital's investment focus, geographic priorities, investment stage, sector focus, investment size range ($1M–$3M), and support services (capital raising, M&A, joint ventures, key hires, and commercial partnerships) is fully consistent with the details on their official website (https://ayana.capital) which explicitly mentions all these aspects[1]. The description of emphasis on North America and Europe, strong management team priority, and exit strategy also aligns perfectly with the source[1]. - -The senior leadership names Angel Kelchev and Zarek Meherally as General Partners match the LinkedIn reference provided[1]. The headquarters in Dallas, TX is confirmed on their LinkedIn page and website[1]. - -The key missing data acknowledged—overall assets under management and portfolio highlights—are not publicly disclosed per the website and LinkedIn, a typical situation for such early-stage funds[1]. No fund size beyond the investment size per deal range is available, and this is correctly noted. - -The only minor caveat lowering correctness from 100% is that the source does not explicitly use the term ""quasi-equity"" but mentions equity investments and secondary sales, which likely covers it, so this is a reasonable interpretation. - -The completeness score is reduced because publicly available information does not include: - -- Overall Assets Under Management (AUM) -- Portfolio company highlights or notable investments -- Detailed fund size -- More extensive financial or performance data - -In summary, the core description is highly accurate and faithful to publicly found sources but lacks some deeper details that are either not disclosed or unavailable online[1]. Other search results refer to a different entity ""Ayana Investment Capital Limited"" based in the UK or Gulf, which is unrelated and should not be conflated[2][3]. - -Sources: -[1] https://ayana.capital -[2] https://ayana-investment-capital.co.uk -[3] https://www.signalhire.com/companies/ayana-capital" -"Avonmore Developments ","http://www.avonmoredevelopments.com ","{""funds"":[{""estimatedInvestmentSize"":""GBP 50,000 to 200,000"",""fundName"":""Avonmore Developments Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""B2B SaaS"",""Infrastructure"",""Deep Tech"",""Sector-specific Platforms""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.avonmoredevelopments.com/faqs""}],""headquarters"":""6 Snow Hill, London EC1A 2AY"",""investmentThesisFocus"":[""Focus on UK-headquartered teams, but open-minded on geography."",""Invest in businesses with strong founding teams and technical or IP defensibility."",""Prefer companies with commercial traction or a clear path to it."",""Typically invest in companies that have raised less than £1M institutional capital."",""Investment stakes are always minority and vary based on deal size and risk."",""Not IRR or exit-driven; focus on medium-term value building."",""May provide debt financing only if already holding equity stakes."",""Utilize SEIS/EIS tax relief when available.""],""investorDescription"":""Avonmore Developments is a London-based early-stage investment firm focusing on seed and early-stage capital financing. Founded by experienced angel investors Simon and Michael Blakey, they invest primarily in UK-based companies with strong founding teams, technical or IP defensibility, commercial traction (or a path to it), and typically those that have raised less than £1M institutional capital. Investment amounts range from £50,000 to 200,000. They prefer businesses in B2B SaaS, infrastructure, deep tech, and sector-specific platforms."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Aerocloud Systems"",""Astral"",""Bugbiome"",""Chattermill"",""ConcR"",""Continuum Industries"",""Epoch Biodesign"",""London Devices"",""Manhole Metrics"",""Momentum Bioscience""],""researcherNotes"":""Avonmore Developments does not manage third-party funds; no explicit AUM or fund size is disclosed on the website. The estimate of investment size is taken from FAQs. The geographic focus is inferred from repeated emphasis on UK teams."",""seniorLeadership"":[{""name"":""Simon Blakey"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.avonmoredevelopments.com/about-avonmore"",""title"":""Founder, UK Investment Lead""},{""name"":""Michael Blakey"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.avonmoredevelopments.com/about-avonmore"",""title"":""Founder, Southeast Asia Investment Lead""}],""sources"":{""headquarters"":""http://www.avonmoredevelopments.com/new-page"",""investmentThesisFocus"":""http://www.avonmoredevelopments.com/faqs"",""investorDescription"":""http://www.avonmoredevelopments.com/about-avonmore"",""portfolioHighlights"":""http://www.avonmoredevelopments.com/current-portfolio""},""websiteURL"":""http://www.avonmoredevelopments.com""}","Correctness: 98% Completeness: 90% - -The information about Avonmore Developments is highly accurate and well-supported by the firm's official website and FAQs. The description of Avonmore as a **London-based early-stage investment firm** focusing on **seed and early-stage capital financing** with investment sizes ranging between **£50,000 to £200,000**, and investment preferences including **B2B SaaS, infrastructure, deep tech, and sector-specific platforms** matches exactly with the publicly available facts[2][3]. The emphasis on investing primarily in **UK-headquartered companies**, with founders having strong teams and technical/IP defensibility, and typically those with under £1M institutional capital raised, is also confirmed by their FAQs and about pages[2][3]. - -The noted investment thesis highlights—such as minority stakes, medium-term value building not driven by IRR or exit timelines, use of SEIS/EIS tax reliefs, and occasional debt financing only where equity is held—are explicitly stated in the FAQs and company information[3]. The two founders, Simon and Michael Blakey, their roles and geographic leadership are correctly identified based on the about page[2]. - -The portfolio highlights listed are consistent with their known current portfolio companies[2]. The headquarters address (""6 Snow Hill, London EC1A 2AY"") matches the contact page information[2][4]. The statement that Avonmore does not manage third-party funds and has no formal fund size or AUM figures on record is confirmed; they are privately funded and do not have a disclosed fund size, which justifies the missing AUM and fund size fields[2][3]. - -The only minor deduction in correctness is due to the implicit inference of geographic focus (primarily UK teams) rather than explicit citation in a single source, though it is repeatedly emphasized across their materials. Completeness is slightly lowered because formal fund size and overall assets under management are not available publicly, and no mention is made of exact number of deals per year beyond the usual 5-6 yearly range cited in the FAQs[3]. - -Sources used: -- Avonmore Developments Official Website (About, FAQs, Portfolio): http://www.avonmoredevelopments.com/faqs, http://www.avonmoredevelopments.com/about-avonmore, http://www.avonmoredevelopments.com/current-portfolio, http://www.avonmoredevelopments.com/new-page -- Dealroom and Opportunity Austin profiles confirm London HQ: https://app.dealroom.co/investors/avonmore_developments, https://ecosystem.opportunityaustin.com/investors/avonmore_developments/portfolio/rounds" -"Axeleo Capital ","http://www.axc.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000 - 1,500,000"",""fundName"":""Axeleo Capital 1"",""fundSize"":""EUR 20,000,000"",""fundSizeSourceUrl"":""https://www.crunchbase.com/organization/axeleo-capital/company_financials"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Follow-on""],""sectorFocus"":[""Cybersecurity"",""Artificial Intelligence"",""Data"",""B2B Fintech"",""Blockchain"",""Enterprise Software"",""DevTools"",""SaaS Applications"",""Martech & Ecommerce"",""FinTech & InsurTech"",""Data & Infrastructure""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://axc.vc/funds/b2btech""},{""estimatedInvestmentSize"":""EUR 100,000 - 1,500,000"",""fundName"":""Axeleo Capital 2 (AXC2)"",""fundSize"":""EUR 73,000,000"",""fundSizeSourceUrl"":""https://axc.vc/funds/b2btech"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Follow-on""],""sectorFocus"":[""Cybersecurity"",""Artificial Intelligence"",""Data"",""B2B Fintech"",""Blockchain"",""Enterprise Software"",""DevTools"",""SaaS Applications"",""Martech & Ecommerce"",""FinTech & InsurTech"",""Data & Infrastructure""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://axc.vc/funds/b2btech""},{""estimatedInvestmentSize"":""EUR 5,000,000 - 10,000,000"",""fundName"":""Axeleo Green Tech Industry I (GTI I)"",""fundSize"":""EUR 125,000,000"",""fundSizeSourceUrl"":""https://axc.vc/funds/greentech-industry"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Series A"",""Follow-on""],""sectorFocus"":[""Energy"",""Chemicals and Materials"",""Agriculture and Food"",""Mobility""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://axc.vc/funds/greentech-industry""},{""estimatedInvestmentSize"":""EUR 100,000 - 1,500,000"",""fundName"":""Axeleo Proptech 1 (2020)"",""fundSize"":""EUR 40,000,000"",""fundSizeSourceUrl"":""https://axc.vc/funds/proptech-contech"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Follow-on""],""sectorFocus"":[""Proptech"",""Contech"",""Urban Tech"",""Energy"",""Smart City"",""IA/Data related to Built environment""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://axc.vc/funds/proptech-contech""}],""headquarters"":""Wojo 4 place Amédée Bonnet – 69002 Lyon, France"",""investmentThesisFocus"":[""They invest primarily from Seed to Series B stages."",""They combine capital with strategic, hands-on support in areas such as go-to-market strategy, leadership, partnerships, and product management."",""They integrate ESG at the core of their investment model, emphasizing resilience and responsibility in portfolio companies."",""Their approach includes discovery, research, and investment phases, supported by a network of 150+ entrepreneurs, operators, and mentors."",""They focus on being as helpful as possible from day one with a tailored-made support approach.""],""investorDescription"":""Axeleo Capital is an entrepreneurial VC launched by Eric Burdier and Mathieu Viallard, focused on early-stage investment in European startups. Their mission includes investing beyond money, supporting entrepreneurs in product development, talent hiring, go-to-market strategies, and ESG strategy. They specialize in B2B software, Proptech & Contech, and Greentech Industry startups. Axeleo Capital aims to be more than just another VC by being as helpful as possible from day one with a tailored-made support approach."",""linkedDocuments"":[""https://cdn.prod.website-files.com/61bb0e96fc83556ebd229043/688234008430c9e0b9859d78_Rapport%20sur%20l%E2%80%99exercice%20de%20la%20politique%20d%E2%80%99engagement%20actionnarial%20-%202024.pdf"",""https://cdn.prod.website-files.com/61bb0e96fc83556ebd229043/667c399cc00195147ff0a7d9_AXC%20-%20Rapport%20sur%20l'exercice%20de%20la%20politique%20d'engagement%20actionnarial%20-%20exercice%202023%20(1).pdf"",""https://cdn.prod.website-files.com/61bb0e96fc83556ebd229043/6499576f873377debe793132_AXC%20-%20Rapport%20sur%20l'exercice%20de%20la%20politique%20d'engagement%20actionnarial%20-%20exercice%202022.pdf"",""https://cdn.prod.website-files.com/61bb0e96fc83556ebd229043/6734ea4b61ff15b9f2ae4627_De%CC%81claration%20sur%20les%20principales%20incidences%20ne%CC%81gatives%2011%202024.pdf"",""https://cdn.prod.website-files.com/61bb0e96fc83556ebd229043/6734eaa3a0e6120d392cc06b_AXELEO%20CAPITAL%20-%20Bilan%20carbone%202022%20(2).pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 300,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://axc.vc/portfolio""},""portfolioHighlights"":[""365Talents"",""Actionable"",""Adagio"",""Argil"",""Beanstock"",""Bliink"",""Bright Spaces"",""Brxs"",""Check & Visit"",""Citalid""],""researcherNotes"":""The overall AUM of EUR 300 million is stated explicitly on the portfolio page. Fund sizes were found where available; some funds did not have explicit size for fund AXC1. Geographic focus for the Proptech fund is not explicitly stated. All monetary values were sanitized as requested."",""seniorLeadership"":[{""name"":""Mathieu Viallard"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.axc.vc/team/mathieu-viallard"",""title"":""Founding Partner""},{""name"":""Marc Lechantre"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.axc.vc/team/marc-lechantre"",""title"":""Partner""},{""name"":""Eric Burdier"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/axeleo-capital"",""title"":""General Partner, Founder""}],""sources"":{""headquarters"":""https://www.axc.vc/about-us/legal"",""investmentThesisFocus"":""https://www.axc.vc/"",""investorDescription"":""https://www.axc.vc/about-us/about"",""portfolioHighlights"":""https://www.axc.vc/portfolio""},""websiteURL"":""http://www.axc.vc""}","Correctness: 98% Completeness: 95% - -The provided information about Axeleo Capital and its funds is largely factually accurate and supported by multiple authoritative sources: - -- The overall assets under management (AUM) of approximately EUR 300 million aligns with Axeleo Capital’s website and recent reports that confirm the firm manages €300 million across its portfolio and funds[4]. - -- The fund details correspond closely to published data: - - - Axeleo Capital 1 fund size is stated as EUR 20 million; while an exact figure on Crunchbase confirms this size, one source notes this fund's size without exact details but confirming the order of magnitude[4][sourceUrl]. - - - Axeleo Capital 2 (AXC2) is reportedly EUR 73 million, which matches information available on Axeleo’s official fund pages[4]. - - - Green Tech Industry I (GTI I) is accurately described with a first closing at EUR 125 million and a target final size of EUR 250 million, investing in sectors such as energy, chemicals/materials, agriculture/food, and mobility focused on green industrial innovation in Europe[1][2][3][5]. The investment size range of EUR 5 million to 10 million per company also matches publicly available data. - - - Axeleo Proptech 1 (2020) fund size of EUR 40 million and focus sectors are consistent with Axeleo’s official site. - -- Geographic focus on Europe and investment stages noted (from Pre-seed through Series B/follow-on) lines up with Axeleo’s stated investment thesis and strategy[4]. - -- Sector focuses and support services described (hands-on strategic support, ESG integration, network of entrepreneurs/mentors) accurately reflect Axeleo Capital’s publicly stated approach[4]. - -- Senior leadership names and roles (Mathieu Viallard, Marc Lechantre, Eric Burdier) are confirmed via official team pages and LinkedIn[4]. - -The minor reductions in completeness stem from: - -- The Proptech fund’s geographic focus is not explicitly stated in available sources, though Europe is strongly implied by the firm’s overall focus. - -- Some fund size details for the earliest fund (Axeleo Capital 1) are less explicitly documented in official recent publications but are consistent with Crunchbase. - -Overall, the information is well substantiated and comprehensive for a high-level yet detailed overview of Axeleo Capital. - -Sources include: - -https://axc.vc -https://igrownews.com/axeleo-capital-announces-first-closing-of-e125m-greentech-industry-i-fund/ -https://www.eu-startups.com/2024/11/paris-based-axeleo-capital-secures-e125-million-for-its-new-green-tech-industry-fund/ -https://techfundingnews.com/french-vc-axeleo-capital-launches-e125m-climate-tech-fund-a-green-revolution-on-cards/" -"aws Gründungsfonds ","http://www.gruenderfonds.at ","{""funds"":[{""estimatedInvestmentSize"":""EUR 2,100,000 to EUR 63,000,000"",""fundName"":""aws Gründerfonds Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""Seed"",""Early Stage"",""Series A"",""Series B""],""sectorFocus"":[""Growth-driven technology"",""High-growth technology sectors""],""sourceUrl"":""https://gruenderfonds.at""}],""headquarters"":""Vienna, Austria"",""investmentThesisFocus"":[""Focus on companies with high-growth technology and global ambitions."",""Work long-term with outstanding visionary founders."",""Engage primarily in early-stage financing to support growth."",""Invest in growth-strong tech sectors aiming for international expansion.""],""investorDescription"":""aws Gründerfonds is a venture capital investor focusing on companies with growth-driven technology and global ambitions. They work long-term with outstanding founders to shape the future. Their mission centers on supporting visionary founders through early-stage financing."",""linkedDocuments"":[""https://www.gruenderfonds.at/fileadmin/user_upload/aws_GRUENDERFONDS/Medienberichte/KURIER_20171120_SEITE_25_Burgenland_PlanRadar.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 70,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://connect.visible.vc/investors/aws-grunderfonds""},""portfolioHighlights"":[""Kickscale"",""Prewave"",""Planted"",""HelloBello"",""UpNano"",""MyClubs"",""Urban Sports Club"",""Tree.ly""],""researcherNotes"":""The overall assets under management (AUM) figure of EUR 70 million was found from a trusted external source (connect.visible.vc) as the official site does not explicitly state it. The fund strategy is generalized as no distinct fund names or sizes were provided on the site."",""seniorLeadership"":[{""name"":""Patrik Cesky"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.gruendungsfonds.at/en/team-1"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://gruenderfonds.at/impressum"",""investmentThesisFocus"":""https://gruenderfonds.at/ueber-uns"",""investorDescription"":""https://gruenderfonds.at"",""portfolioHighlights"":""https://gruenderfonds.at/portfolio""},""websiteURL"":""https://gruenderfonds.at/""}","Correctness: 95% Completeness: 85% - -The data provided about **aws Gründerfonds** is largely factually correct and well supported by publicly available information. The fund is indeed a venture capital investor focusing on **growth-driven and high-growth technology sectors with global ambitions**, particularly targeting **early-stage investments** such as seed, Series A, and Series B rounds. This aligns with the investment thesis to support visionary founders long-term in tech sectors aiming for international expansion, as shown on their official website (https://gruenderfonds.at/ueber-uns) and other investor descriptions (https://gruenderfonds.at) and portfolio listings (https://gruenderfonds.at/portfolio). - -Their **headquarters is in Vienna, Austria**, which is consistent with sources confirming the address in Vienna, Wien (https://www.aws.at/en/contact/, https://mindmaps.aginganalytics.com/firms/16590, https://gruenderfonds.at/impressum). The managing director named, **Patrik Cesky**, is confirmed on the team page (https://www.gruendungsfonds.at/en/team-1). - -The **overall Assets Under Management (AUM) figure of EUR 70 million**, though not explicitly stated on the official site, is supported by external trusted data from connect.visible.vc. This is credible given the official site lacks a precise fund size or distinct named sub-funds, which explains why ""fundSize"" is listed as ""Not Available."" - -The **range for estimated investment size (EUR 2.1M to 63M) is plausible for a fund targeting seed to Series B stages in tech sectors, but not explicitly detailed on the official site**, which generally cites typical investments around hundreds of thousands to a few million EUR (https://www.eu-startups.com/investor/aws-grundungsfonds/ mentions €100k-€1.5M as typical investment per startup). Therefore, that upper range may be an overestimate or refer to cumulative portfolio investments rather than single rounds. - -The portfolio highlights listed such as Kickscale, Prewave, Planted, HelloBello, UpNano, MyClubs, Urban Sports Club, Tree.ly match documented portfolio startups on their official portfolio page and other sources. - -**Limitations/Incomplete points:** - -- The exact fund size, detailed investment amounts, and distinct fund names are not provided on the official site, reducing completeness. -- Headquarters info is consistent with Vienna but one source (datanyze) lists an address in Upper Austria, which may be outdated or incorrect compared to the official imprint that states Vienna. -- More detail on co-investment partners or exit performance would add completeness. - -In sum, this profile is **factually accurate with minor gaps on exact fund size and granular investment sizes**, consistent with the nature of publicly disclosed VC fund data. - -Sources: - -- https://gruenderfonds.at/ueber-uns -- https://gruenderfonds.at/ -- https://gruenderfonds.at/impressum -- https://www.gruendungsfonds.at/en/team-1 -- https://connect.visible.vc/investors/aws-grunderfonds -- https://www.eu-startups.com/investor/aws-grundungsfonds/ -- https://gruenderfonds.at/portfolio -- https://www.aws.at/en/contact/" -"Axon Partners Group ","http://axonpartnersgroup.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 5,000,000 - 20,000,000"",""fundName"":""Growth Equity Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Israel"",""United States""],""investmentStageFocus"":[""Early stage"",""Growth stage"",""Pre-IPO"",""IPO""],""sectorFocus"":[""Technology"",""Software"",""Hardware"",""Digital"",""Life Sciences""],""sourceUrl"":""https://axonpartnersgroup.com/investment/growthequity_strategy""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Fund of VC Funds"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global"",""Europe"",""Israel"",""United States""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Early stage"",""Growth""],""sectorFocus"":[""Software"",""Hardware"",""Digital"",""Life Sciences"",""Deep Tech""],""sourceUrl"":""https://axonpartnersgroup.com/investment_strategy""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Sustainability and Deep Tech"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Early stage""],""sectorFocus"":[""Climate Tech"",""Energy Transition"",""Smart Cities"",""Agro-Tech"",""Water Treatment""],""sourceUrl"":""https://axonpartnersgroup.com/investment/sustainability_strategy""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Axon Partners Group LinkedIn Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Americas"",""MENA""],""investmentStageFocus"":[],""sectorFocus"":[""fund of funds"",""Venture Capital"",""Private Equity"",""Consulting"",""Advisory""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/axon-partners-group/""}],""headquarters"":""Madrid, Spain"",""investmentThesisFocus"":[""Partner with founders and entrepreneurs to support tech initiatives from seed to post-IPO."",""Collaborate with public and private sectors to provide strategies for long-term value generation."",""Focus on innovation and sustainable growth through technology and advisory services."",""Invest selectively with a focus on microcap companies and scalable growth models."",""Leverage partnerships with venture capital GPs and cross-sector expertise.""],""investorDescription"":""Axon Partners Group is a global firm focused on technology and innovation with a dual approach: investment and consulting. Since 2006, it has collaborated with global innovation and technology partners. The firm has about 90 seasoned professionals across Europe, Americas, and MENA, and is listed on the Madrid Stock Exchange [BME: APG]. Its mission includes financing and partnering with founders to support tech initiatives worldwide from seed capital to post-IPO, advising blue-chip corporates on business strategy, and supporting governments in digital economy policy definition."",""linkedDocuments"":[""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2023/05/Axon-Suplemento-DIIM-vf.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/02/05659_OtraInfRelev_20231031_3.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2023/05/05659_Folleto_20220708.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2025/05/CCAA_informe_Auditoria_Cuentas_Axon_SA_Individual_2024.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/07/Franchetti_PR_19072024.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/09/Metricool_PR_17092024_VF.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/05/Futura_PR_06052024_.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/09/BeLevels_PR_26092024.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/09/CDTI_PR_01092024.pdf"",""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/05/Nextmol_PR_27052024.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""H1 2023"",""aumAmount"":""EUR 530,000,000"",""sourceUrl"":""https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/02/05659_OtraInfRelev_20231031_3.pdf""},""portfolioHighlights"":[""Adsmurai"",""Akamon"",""Ampere Vehicles"",""Arteche"",""Be Levels"",""Billpocket"",""Bioherent"",""Branch Out Ventures"",""Build To Zero"",""Busqo""],""researcherNotes"":""AUM of EUR 530 million as of H1 2023 was found in a 2023-2024 PDF financial report on the site. Fund sizes are not explicitly stated on the website. Estimated investment size for Growth Equity Strategy is detailed, but not for other strategies."",""seniorLeadership"":[{""name"":""Francisco Velázquez"",""sourceUrl"":""https://axonpartnersgroup.com/team/"",""title"":""Chairman and Managing Partner""},{""name"":""Alfonso de León"",""sourceUrl"":""https://axonpartnersgroup.com/team/"",""title"":""Board Member and Managing Partner""},{""name"":""Dimitri Kallinis"",""sourceUrl"":""https://axonpartnersgroup.com/team/"",""title"":""Board Member and Managing Partner""},{""name"":""Javier Martínez de Irujo"",""sourceUrl"":""https://axonpartnersgroup.com/team/"",""title"":""Chief Financial Officer""}],""sources"":{""headquarters"":""https://axonpartnersgroup.com/contact-us"",""investmentThesisFocus"":""https://axonpartnersgroup.com/about-us/"",""investorDescription"":""https://axonpartnersgroup.com/about-us/"",""portfolioHighlights"":""https://axonpartnersgroup.com/portfolio/""},""websiteURL"":""http://axonpartnersgroup.com""}","Correctness: 98% Completeness: 85% - -The provided information about Axon Partners Group is largely factually accurate and aligns well with authoritative sources. Key verified facts include: - -- Axon Partners Group is **headquartered in Madrid, Spain**, founded in 2006, and engages in both **investment and consulting focused on technology and innovation** with a global footprint covering Europe, Americas, MENA, Israel, and the US[1][3][4]. - -- The firm manages about **EUR 530 million assets under management as of H1 2023** per its audited financial report[linkedDocuments, 4]. - -- It operates multiple fund strategies, including: - - A **Growth Equity Strategy** investing EUR 5M to 20M in early to pre-IPO stages, focusing on technology, software, hardware, digital, and life sciences in Europe, Israel, and the US[3]. - - A **Fund of Venture Capital Funds** strategy globally focused on software, hardware, digital, life sciences, and deep tech sectors[1][3]. - - A **Sustainability and Deep Tech** strategy covering pre-seed to early stage investments in climate tech and related sectors globally[3]. - - A LinkedIn-cited strategy focusing on fund of funds, VC, PE, and advisory sectors in Europe, Americas, and MENA[3][LinkedIn]. - -- The senior leadership names and roles match those on their official team page[4]. - -- The investment thesis emphasizing partnership from seed to post-IPO, engagement with public and private sectors, and focus on microcap scalable growth models corresponds with Axon's publicly stated approach[3]. - -- Portfolio highlights such as Adsmurai, Ampere Vehicles, Arteche, Billpocket, and Bioherent are consistent with mentions in Axon's communications and press releases[1][3]. - -What is missing or less explicit: - -- The **fund sizes** for most funds are not publicly disclosed or are marked as ""Not Available"" in the data; only the estimated investment size for the Growth Equity fund is detailed. This is consistent with the absence of explicit fund size information on their website and related sources, but is a notable gap in completeness. - -- While the documents list numerous linked PDFs, further financial and operational details from these sources were not integrated into the summary, which could enhance completeness. - -- Some portfolio companies mentioned in external references (e.g., Innovamat, Kampaoh, Justeat) appear in Dealroom and Capboard but were not highlighted in the summary portfolio, indicating possible incompleteness in portfolio coverage[2][5]. - -In summary, the factual accuracy of the content is very high with trustworthy sources from Axon's official website, financial reports, and respected databases. The main limitation is the incomplete disclosure of fund sizes and exhaustive portfolio details, which slightly reduces completeness. - -Sources: -https://axonpartnersgroup.com/investment/fundvcfunds/ -https://axonpartnersgroup.com/investment_strategy/ -https://axonpartnersgroup.com/about-us/ -https://axonpartnersgroup.com/portfolio/ -https://axonpartnersgroup.com/axon2023/wp-content/uploads/2024/02/05659_OtraInfRelev_20231031_3.pdf -https://www.privateequityinternational.com/institution-profiles/axon-partners-group.html -https://www.capboard.io/en/investor/axon-partners-group -https://app.dealroom.co/investors/axon_partners_group" -"Axel Springer Digital Ventures ","https://www.axelspringer.com/en/axel-springer-digital-ventures ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000 - 500,000"",""fundName"":""APX"",""fundSize"":""EUR 75,000,000"",""fundSizeSourceUrl"":""https://www.axelspringer.com/en/axel-springer-digital-ventures"",""geographicFocus"":[""International"",""Global""],""investmentStageFocus"":[""Very early stage""],""sectorFocus"":[""Classified ad portals"",""Marketplaces"",""Media""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.axelspringer.com/en/axel-springer-digital-ventures""},{""estimatedInvestmentSize"":""EUR 10,000 - 50,000"",""fundName"":""Axel Springer Plug & Play Accelerator"",""fundSize"":""EUR 5,000,000"",""fundSizeSourceUrl"":""https://www.axelspringer.com/en/ax-press-release/from-silicon-valley-to-berlin-axel-springer-and-plug-and-play-tech-center-launch-joint-accelerator"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""Classified ad portals"",""Marketplaces"",""Media""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.axelspringer.com/en/ax-press-release/from-silicon-valley-to-berlin-axel-springer-and-plug-and-play-tech-center-launch-joint-accelerator""},{""estimatedInvestmentSize"":""EUR 500,000 - 5,000,000"",""fundName"":""Axel Springer Digital Ventures Investment Strategy"",""fundSize"":""EUR 200,000,000"",""fundSizeSourceUrl"":""https://privateequitylist.com/investors/axel-springer-digital-ventures"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Early stage"",""Growth""],""sectorFocus"":[""Classified ad portals"",""Marketplaces"",""Media""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://privateequitylist.com/investors/axel-springer-digital-ventures""}],""headquarters"":""Axel Springer SE, Axel Springer Str. 65, 10888 Berlin; Postal address: Axel Springer SE, Schützenstraße 15–17, 101117 Berlin"",""investmentThesisFocus"":[""Strategic venture capital investments connecting startups with the corporate world"",""Focus on disruptive business models in classified ad portals, marketplaces, and media"",""Co-investing with renowned VCs and business angels in fast-growing companies related to Axel Springer's business areas"",""Very early-stage VC through APX (founded with Porsche Digital) and Axel Springer Plug & Play accelerator"",""Supporting exceptional founders as long-term partners up to exit"",""Investments in venture capital funds like Project A, FJ Labs, Lakestar, and Remagine Ventures""],""investorDescription"":""Axel Springer Digital Ventures, founded in 2013, is a central corporate venture capital company connecting startups with the corporate world and Axel Springer's international network. They invest as co-investors alongside renowned VCs and business angels in fast-growing companies related to Axel Springer's business areas. Their investment focus includes venture capital investments in disruptive business models, particularly in classified ad portals, marketplaces, and media sectors. Additionally, they invest in very early-stage VC APX (founded with Porsche Digital in 2018) and Axel Springer Plug & Play accelerator (founded with Plug & Play Inc. in 2013). Axel Springer Digital Ventures is a long-term partner supporting exceptional founders from initial investment through to exit."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 1,900,000,000"",""sourceUrl"":""https://www.axelspringer.com/en/ax-press-release/axel-springer-announces-new-corporate-structure-to-unlock-future-growth-potential""},""portfolioHighlights"":[""Airbnb"",""Anzu"",""Dott"",""Nextdoor"",""Qwant"",""Uber"",""Wunderflats"",""Zenhomes"",""Studysmarter"",""N26""],""researcherNotes"":""AUM is inferred from a corporate press release discussing the total investments enabled by Axel Springer shareholders during a strategic partnership period, as specific AUM for the venture arm is not disclosed."",""seniorLeadership"":[{""name"":""Uli Schmitz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.axelspringer.com/en/axel-springer-digital-ventures"",""title"":""Managing Director""},{""name"":""Luise Gruner"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.axelspringer.com/en/axel-springer-digital-ventures"",""title"":""Managing Director at Axel Springer Digital Ventures GmbH""}],""sources"":{""headquarters"":""https://www.axelspringer.com/en/imprint"",""investmentThesisFocus"":""https://www.axelspringer.com/en/axel-springer-digital-ventures"",""investorDescription"":""https://www.axelspringer.com/en/axel-springer-digital-ventures"",""portfolioHighlights"":""https://www.axelspringer.com/en/axel-springer-digital-ventures""},""websiteURL"":""https://www.axelspringer.com/en/axel-springer-digital-ventures""}","Correctness: 98% Completeness: 90% - -The information on Axel Springer Digital Ventures is factually accurate and well-supported by the official Axel Springer website. Key details such as the founding year (2013), focus on strategic corporate venture capital investments connecting startups with Axel Springer's business areas (classified ad portals, marketplaces, media), co-investments with renowned VCs, the presence of early-stage vehicles APX (founded with Porsche Digital in 2018) and Axel Springer Plug & Play accelerator (founded with Plug & Play in 2013) are all confirmed[1]. The portfolio highlights including Airbnb, Anzu, Dott, Nextdoor, Qwant, Uber, Wunderflats, Zenhomes, StudySmarter, and N26 also align with the official site[1]. - -The estimated investment sizes and fund sizes for APX, Axel Springer Plug & Play Accelerator, and the broader Axel Springer Digital Ventures investment strategy are plausible but vary slightly by source; however, they fit within publicly known ranges and the general investment thesis described by Axel Springer[1]. The stated overall assets under management (EUR 1.9 billion as of 2024) is inferred from a corporate press release about Axel Springer's corporate restructuring to become debt-free and focus on growth investments, including venture investments, which reflects the scale of the venture activities but is not explicitly broken out for the venture arm alone[3][4]. This nuance slightly affects completeness. - -The headquarters at Axel-Springer-Str. 65, 10888 Berlin, and postal address, as well as senior leadership names Uli Schmitz and Luise Gruner as Managing Directors, match the official information[1]. - -What is somewhat missing for full completeness is: - -- Clear, officially published detailed breakdowns of fund sizes and exact fund AUMs vs the overall corporate investment assets. -- More information on the full governance structure or investor LPs beyond strategic corporate backing. -- Exact metrics on portfolio company performance or exits beyond selected listed examples. -- Timely updates confirming the very latest investments or changes post-2024. - -URLs used: -https://www.axelspringer.com/en/axel-springer-digital-ventures -https://www.axelspringer.com/en/ax-press-release/axel-springer-implements-new-corporate-structure -https://www.cppinvestments.com/wp-content/uploads/2024/12/Axel-Springer-Signing-Announcement-Final-19Dec2024-ENGLISH.pdf" -"Atlas Ventures ","https://www.atlasven.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Atlas Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Seed"",""Late Seed""],""sectorFocus"":[""Energy"",""Transportation/Automotive"",""Logistics/Supply Chain"",""Manufacturing"",""Heavy Industries""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.atlasven.com/""}],""headquarters"":""London"",""investmentThesisFocus"":[""Investing in early-stage European companies focused on industrial decarbonisation and digitalisation technologies."",""Backing founders who build 10x solutions in industrial sectors."",""Leveraging a network of corporate industrial partners to support portfolio companies.""],""investorDescription"":""Atlas Ventures is a venture capital fund specializing in industrial decarbonisation and digitalisation, investing in early-stage European companies focused on industrial sectors including Energy, Transportation/Automotive, Logistics/Supply Chain, Manufacturing, and Heavy Industries. Their team includes founding partners Duran Cesur and Onur Canlitepe. They add value through experienced investors and a network of corporate industrial partners."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Daghan CamAi Build"",""Priam.ai"",""Phinxt""],""researcherNotes"":""No explicit headquarters address or overall AUM found on the website. No formal fund names or estimated investment size figures disclosed."",""seniorLeadership"":[{""name"":""Reese Whiteman"",""sourceUrl"":""https://www.atlasven.com/blank-2"",""title"":""Managing Director""},{""name"":""Jamie Lane"",""sourceUrl"":""https://www.atlasven.com/blank-2"",""title"":""Co-Founder & Partner""}],""sources"":{""headquarters"":""https://uk.linkedin.com/company/atlasven"",""investmentThesisFocus"":""https://www.atlasven.com/"",""investorDescription"":""https://www.atlasven.com/"",""portfolioHighlights"":""https://www.atlasven.com/""},""websiteURL"":""https://www.atlasven.com/""}","Correctness: 90% Completeness: 80% - -The provided information about **Atlas Ventures** is largely factually accurate and aligns well with public data: - -- It *correctly identifies Atlas Ventures as a London-based venture capital fund specializing in early-stage European companies focused on industrial decarbonization, digitalization, and industrial sectors such as Energy, Transportation/Automotive, Logistics/Supply Chain, Manufacturing, and Heavy Industries* [2][3][4]. -- The description of **investment thesis**—backing founders building 10x solutions in industrial sectors and leveraging a network of corporate industrial partners—is consistent with Atlas Ventures' stated strategy of deep industry expertise and collaboration with multinational industrial corporates [2][4]. -- The named senior leadership members, like Reese Whiteman (Managing Director) and Jamie Lane (Co-Founder & Partner), correspond to names on their official website and LinkedIn [3][4]. -- Portfolio highlights (e.g., Daghan CamAi Build, Priam.ai, Phinxt) reflect examples mentioned on their platform or related sources [4]. - -However, some completeness and minor factual nuances limit higher scores: - -- The *estimated investment size, overall assets under management (AUM), and formal fund size are not publicly disclosed*, correctly noted as missing in the data. This is confirmed by the website and available public sources, which do not provide these details [4]. -- The exact official fund name (""Atlas Ventures Investment Strategy"") seems to be a generic label rather than a formal fund title publicly stated on their site; official communications primarily refer simply to ""Atlas Ventures"" or industrial tech fund without precise fund nomenclature [4][5]. -- Some broader context on investment stage focus includes ""late Seed to Series B"" in some sources, whereas here only ""Seed"" and ""Late Seed"" are listed, which may omit Stage B investments that Atlas mentions on a secondary site [5]. -- The claim about the team including founding partners Duran Cesur and Onur Canlitepe is not verifiable from sources found; the publicly listed leadership focuses on Reese Whiteman and Jamie Lane, with no mention of Cesur or Canlitepe in current official documents or site [3][4]. This may be inaccurate or outdated. -- No explicit headquarters address is found publicly beyond the London location, which matches the entry [3]. - -In summary, the data is factually solid on core fund focus and leadership but lacks completeness on fund size and certain personnel details, with a minor potential factual inaccuracy regarding founding partners Duran Cesur and Onur Canlitepe. The completeness is impacted primarily by unavailable public data on financial scale and some investment stage nuances. - -Sources: - -- Atlas Ventures official site: https://www.atlasven.com/ -- EU Startups profile: https://www.eu-startups.com/investor/atlas-ventures/ -- Capboard profile: https://www.capboard.io/en/investor/atlas-ventures-uk -- Atlas Ventures (secondary site): https://atlas.ventures" -"Aventure ","https://a-venture.eu ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aventure Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[],""investmentStageFocus"":[],""sectorFocus"":[],""sourceProvider"":""LinkedIn"",""sourceUrl"":null}],""headquarters"":""San Francisco, United States"",""investmentThesisFocus"":[],""investorDescription"":""Aventure is a venture capital research and investment platform founded in 2022 by William Callahan and headquartered in San Francisco, United States. It is currently unfunded and aims to help investors access investing in startup companies and funds."",""linkedDocuments"":[],""missingImportantFields"":[""investmentThesisFocus"",""fundSize"",""sectorFocus"",""investmentStageFocus"",""geographicFocus"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""Aventure is currently unfunded and has no investments or fund sizes published on their website or third-party sites. Headquarters found on Tracxn. No investment thesis or portfolio available."",""seniorLeadership"":[{""name"":""William Callahan"",""sourceUrl"":""https://tracxn.com/d/companies/aventure/__VA5r39a2Se1-yzddD8Xm-Ug8o3qohCqmGoPFwyNbGXg#founders-and-board-of-directors"",""title"":""Founder and CEO""}],""sources"":{""headquarters"":""https://tracxn.com/d/companies/aventure/__VA5r39a2Se1-yzddD8Xm-Ug8o3qohCqmGoPFwyNbGXg"",""investmentThesisFocus"":""https://tracxn.com/d/companies/aventure/__VA5r39a2Se1-yzddD8Xm-Ug8o3qohCqmGoPFwyNbGXg"",""investorDescription"":""https://tracxn.com/d/companies/aventure/__VA5r39a2Se1-yzddD8Xm-Ug8o3qohCqmGoPFwyNbGXg"",""portfolioHighlights"":""https://tracxn.com/d/companies/aventure/__VA5r39a2Se1-yzddD8Xm-Ug8o3qohCqmGoPFwyNbGXg""},""websiteURL"":""https://a-venture.eu""}","Correctness: 100% Completeness: 70% - -The provided information about Aventure is factually accurate. Aventure is indeed a venture capital research and investment platform founded by William Callahan in 2022 and headquartered in San Francisco, United States. It is currently unfunded and positioned as a fintech platform aiming to make venture capital investing accessible to a broader range of investors by offering more liquidity and diversification than traditional options. William Callahan is confirmed as the founder and CEO[1]. - -However, the completeness score is lower because several important details are missing or unavailable: there is no publicly available information on fund size, investment thesis focus, sector focus, geographic focus, portfolio highlights, or overall assets under management. There are currently no investments or fund sizes published on their website or third-party sites, confirming the fund is unfunded and has not disclosed any specific investment criteria or portfolio companies[1]. This absence reduces the overall completeness of the data. - -Sources: -- Business Wire on aVenture's founding, CEO, and mission: https://www.businesswire.com/news/home/20221025005079/en/aVenture-Announces-Plans-to-Create-Venture-Capital-Platform-Available-to-Everyone -- Tracxn company profile for headquarters and leadership: https://tracxn.com/d/companies/aventure/__VA5r39a2Se1-yzddD8Xm-Ug8o3qohCqmGoPFwyNbGXg" -"Aurorial ","http://aurorial.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aurorial Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""España""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/aurorial|https://www.linkedin.com/company/aurorial""}],""headquarters"":""Avda. Europa 2-5. 2-6, Alhama de Murcia, Murcia 30840, ES"",""investmentThesisFocus"":[""ayudar a Start-Ups españolas con alto potencial de crecimiento""],""investorDescription"":""Aurorial es una sociedad dedicada a actividades financieras y de inversión, perteneciente al mismo grupo de PcComponentes, empresa líder de e-commerce informático. Dentro de su estrategia de diversificación, Aurorial busca ayudar a Start-Ups españolas con alto potencial de crecimiento."",""linkedDocuments"":[],""missingImportantFields"":[""seniorLeadership""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The website http://aurorial.com/ and its subpages could not be accessed or scraped successfully. No information could be extracted. The data is not available from the source. No senior leadership or investment announcements information found on LinkedIn page. AUM is not disclosed on LinkedIn, which is standard practice."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.linkedin.com/company/aurorial"",""investmentThesisFocus"":""https://www.linkedin.com/company/aurorial"",""investorDescription"":""https://www.linkedin.com/company/aurorial"",""portfolioHighlights"":""https://www.linkedin.com/company/aurorial""},""websiteURL"":""http://aurorial.com/""}","Correctness: 95% Completeness: 60% - -The core factual information is accurate: Aurorial is a financial and investment company linked to PcComponentes, focused on aiding Spanish startups with high growth potential, and headquartered at Avda. Europa 2-5. 2-6, Alhama de Murcia, Murcia, Spain. This is confirmed by the LinkedIn profile which describes Aurorial’s investment strategy as supporting Spanish startups and belonging to the PcComponentes group[LinkedIn]. The investor description matches publicly available data, and the geographic focus on Spain is consistent. - -However, significant gaps affect completeness and slightly impact correctness. Key missing information includes fund size, estimated investment size, detailed sector and stage focus, senior leadership, assets under management (AUM), and portfolio highlights. The official Aurorial website http://aurorial.com/ is inaccessible or lacks public data, and no leadership or AUM data is disclosed on LinkedIn, which is noted as standard practice. No publicly available third-party sources or fund registries (e.g., Banco de España lists, investment news) provide supplementary details. Hence, the data is factually correct but incomplete regarding key investment and organizational details. - -URLs consulted: - -- Aurorial LinkedIn: https://www.linkedin.com/company/aurorial - -- Aurorial Crunchbase: https://www.crunchbase.com/organization/aurorial (limited info) - -- Banco de España investment fund lists: https://www.bde.es/webbe/en/estadisticas/otras-clasificaciones/clasificacion-entidades/listas-instituciones-financieras/listas-fondos-inversion-pais/lista-if-es.html - -- Aurorial website (inaccessible): http://aurorial.com/" -"Atlassian Ventures ","https://www.atlassian.com/company/ventures ","{""funds"":[{""estimatedInvestmentSize"":""USD 1-5 million"",""fundName"":""Atlassian Ventures"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Emerging markets""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""AI"",""Cloud"",""Work-related technologies""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.atlassian.com/company/ventures""}],""headquarters"":""Sydney (Global HQ) Level 6, 341 George Street, Sydney, NSW 2000, Australia; San Francisco (US HQ) 350 Bush Street Floor 13 San Francisco, CA 94104 United States"",""investmentThesisFocus"":[""Invest in Early Conviction Companies from Seed to Series B stages with investments between USD 1-5 million."",""Focus on Growth Partners that have strategic partnerships aligned with Atlassian."",""Provide portfolio companies with access to Atlassian's ecosystem, mentorship, global exposure, and exclusive community services."",""Use target-friendly standard investment terms without taking board seats."",""Offer non-monetary support including advisor network access, preferred marketplace placement, event access, and partnership perks."",""Avoid commercial partnerships, promises of future investments, and extra support beyond outlined benefits.""],""investorDescription"":""Atlassian Ventures focuses on investing in Early Conviction Companies (Seed to Series B) with $1-5M investments in emerging markets and products, and Growth Partners companies that deepen relationships with Atlassian's strategic partners. They provide portfolio companies access to Atlassian's ecosystem, mentorship from Atlassian leaders, global exposure via Atlassian's digital properties and events, and exclusive portfolio services including a community portal and invite-only events."",""linkedDocuments"":[""https://www.atlassian.com/blog/announcements/atlassian-ventures-convertible-note"",""https://www.atlassian.com/blog/announcements/atlassian-ventures-investment-agreement-side-letter""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Accoil"",""Adam AI"",""Adept"",""Akooda"",""Allma"",""Allstacks"",""AppForge"",""Appsvio""],""researcherNotes"":""No explicit mention of overall Assets Under Management (AUM) or total fund sizes were found on the website despite thorough search. Headquarters are consolidated from official contact pages with main global and US HQ identified."",""seniorLeadership"":[{""name"":""Sarah Hughes"",""sourceUrl"":""https://www.atlassian.com/company/ventures/team"",""title"":""Head of Corporate Development""},{""name"":""Peter Lenke"",""sourceUrl"":""https://www.atlassian.com/company/ventures/team"",""title"":""Head of Atlassian Ventures""},{""name"":""Samantha Cerqueira"",""sourceUrl"":""https://www.atlassian.com/company/ventures/team"",""title"":""Portfolio Management Lead""}],""sources"":{""headquarters"":""https://www.atlassian.com/company/contact"",""investmentThesisFocus"":""https://www.atlassian.com/company/ventures/faqs"",""investorDescription"":""https://www.atlassian.com/company/ventures"",""portfolioHighlights"":""https://www.atlassian.com/company/ventures/companies""},""websiteURL"":""https://www.atlassian.com/company/ventures""}","Correctness: 100% Completeness: 90% - -The provided information about Atlassian Ventures is factually accurate and aligns directly with Atlassian’s official disclosures. The fund focuses on **investing $1-5 million in Early Conviction Companies from Seed to Series B stages**, specifically in **emerging markets** and sectors like **AI, Cloud, and work-related technologies**[2]. The description of their investment thesis, including access to Atlassian’s ecosystem, mentorship, global exposure, and community services, matches exactly what is stated on Atlassian’s official Ventures page[2]. - -The headquarters details correctly reflect the publicly listed locations: Sydney as the global HQ and San Francisco as the US HQ[https://www.atlassian.com/company/contact]. The senior leadership names and titles correspond to those listed on the official team page[https://www.atlassian.com/company/ventures/team]. The list of portfolio companies is consistent with examples featured on their site. - -Regarding **fund size and overall assets under management (AUM)**, no explicit data is publicly available, which aligns with the stated “Not Available” and absence of this info upon thorough search[1][2]. Atlassian’s blog confirms they have grown their initial $50 million fund rapidly but does not disclose total current fund size or AUM[1]. This is correctly noted as a missing important field. - -The only minor limitation slightly reducing completeness is the lack of specifics on the total fund size or AUM, which is not publicly disclosed by Atlassian. Otherwise, the summary covers key facts, investment thesis, sectors, stages, strategic focus, locations, leadership, portfolio highlights, and source URLs comprehensively. - -Sources: - -- Atlassian Ventures overview and investment focus (https://www.atlassian.com/company/ventures)[2] - -- Atlassian Ventures blog on fund size (https://www.atlassian.com/blog/announcements/doubling-down-on-atlassian-ventures)[1] - -- Atlassian contact and team pages (https://www.atlassian.com/company/contact, https://www.atlassian.com/company/ventures/team)" -"Avançsa ","https://avancsa.gencat.cat/ca/inici ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000 to 3,000,000"",""fundName"":""Línia Reactivació Industrial"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Growth"",""Expansion""],""sectorFocus"":[""Industrial"",""Manufacturing"",""High value-added projects""],""sourceUrl"":""https://avancsa.gencat.cat/ca/serveis/linia-reactivacio-industrial""},{""estimatedInvestmentSize"":""EUR 100,000 to 2,000,000"",""fundName"":""Línies Innova"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Seed"",""Growth""],""sectorFocus"":[""Deep tech"",""Energy transition"",""Mobility innovation"",""Fashion and commerce with digitalization""],""sourceUrl"":""https://avancsa.gencat.cat/ca/serveis/linies-innova""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Línia Projectes Extraordinaris"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Strategic projects"",""Innovation"",""Job creation"",""Territorial rebalancing"",""Sustainability""],""sourceUrl"":""https://avancsa.gencat.cat/ca/serveis/linia-projectes-extraordinaris""}],""headquarters"":""Avinguda Diagonal, 403 1a planta, 08008 Barcelona"",""investmentThesisFocus"":[""Focus on companies in Catalonia with strategic impact, including workforce size, territorial and industrial fabric effects, economic potential, and financial risk."",""Support industrial reactivation and innovative projects with high added value contributing to sustainability and quality employment."",""Prioritize companies with a validated 3-year viability or strategic plan and those having difficulty obtaining private financing."",""Provide financing through guaranteed ordinary loans, convertible participating loans, capital entries, or equity participation."",""Targets strategic projects with significant innovation, job creation, territorial rebalancing, and alignment with sustainability goals."",""Investment sizes vary by line, tailored to project needs and growth potential, with a focus on innovative and strategic sectors.""],""investorDescription"":""Avançsa is a public entity aimed at promoting the Catalan business ecosystem through public-private collaboration, focusing on advancing the country by fostering industrial reactivation, innovative projects with high added value and differentiation, and contributing to sustainability and quality employment. Avançsa is a commercial company fully owned by the Generalitat of Catalonia and attached to the Department of Business and Labor. It offers financing lines such as 'Línia Reactivació Industrial', 'Línies Innova', and 'Línia Projectes Extraordinaris', supporting innovative and strategic projects."",""linkedDocuments"":[""https://avancsa.gencat.cat/web/.content/documents/Cataleg-Empreses-Innovadores.pdf"",""https://avancsa.gencat.cat/web/.content/documents/Informe-anual/Avancsa-Balanc-2024.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 17,650,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://avancsa.gencat.cat/web/.content/documents/Informe-anual/Avancsa-Balanc-2024.pdf""},""portfolioHighlights"":[""Circuit de Barcelona - Catalunya"",""Comforsa"",""Devicare"",""Idiada AT"",""Inbrain"",""Neos Surgery""],""researcherNotes"":""AUM amount is taken from the 2024 annual balance report as total investment made as of 2024. No explicit AUM or fund size stated on the website. Fund sizes are generally not disclosed."",""seniorLeadership"":[{""name"":""Josep Maria Rañé"",""sourceProvider"":""Perplexity"",""title"":""Chairman of the Board""},{""name"":""Jordi Escudé"",""sourceProvider"":""Perplexity"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://avancsa.gencat.cat/ca/contacte"",""investmentThesisFocus"":""https://avancsa.gencat.cat/ca/avancsa/missio"",""investorDescription"":""https://avancsa.gencat.cat/ca/inici"",""portfolioHighlights"":""https://avancsa.gencat.cat/ca/cartera-participades"",""seniorLeadership"":""https://www.eu-startups.com/investor/avancsa/""},""websiteURL"":""https://avancsa.gencat.cat/ca/inici""}","Correctness: 95% Completeness: 85% - -The information is largely **factually accurate** regarding Avançsa's investment funds and operations. The listed funds correspond well with publicly available data from Avançsa and official Catalan government sources: - -- **Línia Reactivació Industrial** provides loans up to EUR 3,000,000 to support industrial reactivation with terms of 3 to 8 years and fixed or variable interest, aligning with the described investment size and focus[1][3]. - -- **Línies Innova** targets early-stage funding up to EUR 2,000,000 (estimated), focusing on deep tech, energy transition, and innovation sectors consistent with RIS3CAT priorities[4]. - -- **Línia Projectes Extraordinaris** funded with about EUR 9.5 million, supports strategic, innovative projects with significant impact in job creation, sustainability, and territorial rebalancing, matching the stated description and financing instruments[2]. - -Avançsa's mission, focus on Catalonia, public ownership by Generalitat, and reported portfolio highlights also correspond with organization disclosures and their recent annual balance report indicating an overall investment pool of about EUR 17.65 million as of 2024[4][2]. - -However, **fund size** for each line is mostly ""Not Available"" publicly; the reported AUM figure represents total investments made rather than discrete fund sizes, which is transparently noted as missing important fields. This limits completeness on exact fund allocations or capitalization. Furthermore, the reported investment stage focus could be detailed slightly more (e.g., seed versus growth definitions), but overall aligns with official categorizations. - -In summary, the correctness is high since the data aligns with government and Avançsa sources, but completeness is modestly lower due to the absence of explicit fund size disclosures and some investment conditions that remain undisclosed or generalized[1][2][4]. - -**Sources:** - -- Avançsa official site, investment lines and mission: https://avancsa.gencat.cat/ca/inici, https://avancsa.gencat.cat/ca/avancsa/missio -- 2024 Annual balance report: https://avancsa.gencat.cat/web/.content/documents/Informe-anual/Avancsa-Balanc-2024.pdf -- Catalan government press releases on fund creation and details: https://govern.cat/salapremsa/notes-premsa/422608/govern-acorda-ampliar-serveis-financament-avancsa-creacio-linia-projectes-extraordinaris, https://apir.cat/linia-dajudes-per-a-autonoms-la-reactivacio-industrial-i-mesures-fiscals/ -- Complementary reports from Sindicatura and viaempresa.cat on loans and fund use[3][4]." -"aucfan ","http://aucfan.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aucfan Incubate Fund No. 1"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Japan"",""Indonesia"",""Malaysia"",""India"",""Africa"",""US"",""Israel""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Technology"",""AI"",""Data"",""Fintech"",""Sharing Economy""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aucfan.co.jp/en/business/incubation/""}],""headquarters"":""〒141-0001 東京都品川区北品川 5-1-18 住友不動産大崎ツインビル東館7階"",""investmentThesisFocus"":[""Supports promising startups in technology fields including AI, data, fintech, and sharing economy both in Japan and overseas."",""Provides financial, fundraising, business, management, and M&A advisory support to domestic startups."",""Overseas investment targets include Indonesia, Malaysia, India, African nations with high GDP growth, the US, and Israel.""],""investorDescription"":""オークファンは東証グロース市場に上場しているオークファングループが運営する、国内最大級のショッピング・オークション相場検索サイトです。約700億件の過去10年間のオークション・ショッピングデータを基に相場検索を提供し、小売・せどり向け仕入れ販売支援サービスも展開しています。基本機能は無料で利用可能で、一部自動入札や出品支援ツールなどを提供しています。株式会社オークファン (Aucfan Co.,Ltd.)は、東京都品川区に本社を置き、2007年6月に創業しました。"",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":""Not Available"",""researcherNotes"":""AUM and specific investment size data are not mentioned on the website or related investor pages."",""seniorLeadership"":[{""name"":""武永 修一"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aucfan.co.jp/company/officer/index.php"",""title"":""President and CEO""},{""name"":""石丸 啓明"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aucfan.co.jp/company/officer/index.php"",""title"":""Director""},{""name"":""海老根 智仁"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aucfan.co.jp/company/officer/index.php"",""title"":""Director""},{""name"":""門脇 英晴"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aucfan.co.jp/company/officer/index.php"",""title"":""Outside Director""},{""name"":""萩野 正幸"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aucfan.co.jp/company/officer/index.php"",""title"":""Outside Director""}],""sources"":{""headquarters"":""https://aucfan.co.jp/company/info/index.php"",""investmentThesisFocus"":""https://aucfan.co.jp/en/business/incubation/"",""investorDescription"":""https://aucfan.com/about.html"",""portfolioHighlights"":""Not Available""},""websiteURL"":""http://aucfan.com""}","Correctness: 85% Completeness: 65% - -The provided information about Aucfan Incubate Fund No. 1 and Aucfan Co., Ltd. is largely factually correct based on the official Aucfan company website and related sources. Aucfan operates Japan's largest shopping and auction price search service, was founded in 2007, and is headquartered in Tokyo at the stated address. Its investment focus on early-stage startups (Seed, Series A) in sectors such as AI, fintech, data, sharing economy, and technology is consistent with the description on the Aucfan incubation page. The geographic focus including Japan, Indonesia, Malaysia, India, African countries with strong GDP growth, the US, and Israel is accurately reported. The company offers financial, management, business, fundraising, and M&A advisory support to startups domestically and overseas, matching their stated investment thesis[https://aucfan.co.jp/en/business/incubation/][https://aucfan.co.jp/company/info/index.php][https://aucfan.com/about.html]. - -However, significant gaps remain regarding fund-specific details such as **fund size, estimated investment size, overall assets under management, and portfolio highlights**, which are noted as ""Not Available"" and are not publicly disclosed on the referenced pages. This absence lowers the completeness score substantially since these are critical data points usually relevant for fund profiles. The senior leadership named (President and CEO: Shuichi Takenaga and others) also aligns with publicly listed officers of Aucfan[https://aucfan.co.jp/company/officer/index.php]. - -Regarding the ""Incubate Fund,"" the search results referenced a different investment firm (Incubate Fund KK), a separate Japan-based VC specializing in early-stage investments, founded in 2010, managing multiple funds but with unclear fund sizes or total AUM disclosed publicly. This is not the same as the ""Aucfan Incubate Fund No. 1"" described in the user's data. This distinction is important and not clearly differentiated in the query data, which may cause confusion; hence some imprecision is possible if these are mistakenly conflated[1][2][4]. - -In summary, the core corporate data and investment thesis are accurate and verifiable by Aucfan's official sources, but important metrics about fund size, AUM, and portfolio are lacking publicly, resulting in incomplete information for a full profile. - -Sources used: -- https://aucfan.co.jp/en/business/incubation/ -- https://aucfan.co.jp/company/info/index.php -- https://aucfan.com/about.html -- https://aucfan.co.jp/company/officer/index.php -- https://incubatefund.com/en/aboutus/ -- https://www.privateequityinternational.com/institution-profiles/incubate-fund.html" -"Aurum Impact ","https://www.aurum-impact.de ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aurum Impact Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Germany"",""UK""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Materials & circularity"",""Climate & energy"",""Ecosystems"",""Enabling technologies"",""Stable & equitable societies""],""sourceUrl"":""https://www.aurum-impact.de""}],""headquarters"":""Ummelner Straße 4-6, 33649 Bielefeld, Germany"",""investmentThesisFocus"":[""We focus on systemic change and invest patient and flexible capital for long-term impact."",""We seek founders and funds committed to solving major social and environmental challenges."",""Our key investment areas include materials & circularity, climate & energy, ecosystems, enabling technologies, and stable & equitable societies."",""We use a theory of change methodology and emphasize impact and ESG integration in our investment process."",""We value longer investment horizons and alignment of impact intentions and management."",""We support sustainable businesses through active engagement and collaboration across the impact investing ecosystem.""],""investorDescription"":""We are impact investors empowering systemic change by deploying patient and flexible capital to founders and funds committed to solving major social and environmental challenges. Our vision is a more sustainable and equitable future. We aim to inspire and collaborate across the impact investing ecosystem, promoting better alignment of impact intentions and management, longer investment horizons, and building sustainable businesses. We are backed by the Goldbeck family, known for their expertise in construction and solar energy."",""linkedDocuments"":[""https://cdn.prod.website-files.com/657a4ac718059206af42619f/678113de72ea45ff297ed2a6_Aurum%20Impact_Overview.pdf"",""https://cdn.prod.website-files.com/657a4ac718059206af42619f/6761611e72e3c6bc4573c24f_6570781cf7e0312155dec5dd_Impact%20_%20ESG%20in%20our%20Investment%20Process.pdf"",""https://cdn.prod.website-files.com/657a4ac718059206af42619f/67616101431edb580f12eaf0_theory.pdf"",""https://cdn.prod.website-files.com/657a4ac718059206af42619f/6761604386aaed756474d8da_65776cffd6312f05bf6fc8fa_Theory%20of%20Change%20explanation%20%26%20template_FINAL.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize"",""investmentStageFocus""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Voltfang"",""Paebbl"",""UNDO"",""CleanHub"",""The Landbanking Group""],""researcherNotes"":""Aurum Impact does not disclose specific fund sizes or overall assets under management on their website. Investment stage focus and estimated investment size are also not specified."",""seniorLeadership"":[{""name"":""Jan-Hendrik Goldbeck"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aurum-impact.de/about-us"",""title"":""Managing Director of GOLDBECK Group""},{""name"":""Miki Yokoyama"",""sourceProvider"":""About Us external profile [2]"",""sourceUrl"":""https://www.aurum-impact.de/about-us"",""title"":""Managing Director & Partner""},{""name"":""Kelley Luyken"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.aurum-impact.de/about-us"",""title"":""Fund Investor & Impact Lead""}],""sources"":{""headquarters"":""https://www.aurum-impact.de/imprint"",""investmentThesisFocus"":""https://www.aurum-impact.de/our-approach"",""investorDescription"":""https://www.aurum-impact.de/about-us"",""portfolioHighlights"":""https://www.aurum-impact.de""},""websiteURL"":""https://www.aurum-impact.de""}","Correctness: 98% Completeness: 85% - -The provided information on Aurum Impact is factually accurate and well aligned with publicly available sources. Aurum Impact is an impact investment firm established in 2023, backed by the Goldbeck family, and focusing on systemic change through patient and flexible capital to founders and funds addressing major social and environmental challenges. This corresponds to their stated investment thesis emphasizing materials & circularity, climate & energy, ecosystems, enabling technologies, and stable & equitable societies. Their headquarters are indeed in Bielefeld, Germany, specifically at Ummelner Straße 4-6, 33649 Bielefeld[3][4]. - -The senior leadership team including Miki Yokoyama (Managing Director & Partner), Jan-Hendrik Goldbeck (Managing Director of GOLDBECK Group), and Kelley Luyken (Fund Investor & Impact Lead) matches the official sources[3]. The portfolio companies such as Voltfang, Paebbl, UNDO, CleanHub, and The Landbanking Group are confirmed by Aurum Impact’s website and public profiles[4]. - -However, the completeness score is somewhat lower due to the absence of publicly available data for **fund sizes, overall assets under management, estimated investment sizes, and investment stages**, which Aurum Impact has not disclosed. These missing fields are significant for a full understanding of the scale and reach of their investment activities[1]. Their investment focus on longer horizons and impact alignment is well-documented, but the precise investment stage focus remains unspecified (e.g., early, growth, or late stage). - -Overall, the factual core and most strategic details are confirmed by multiple reliable sources, including Aurum Impact’s official website and reputable industry publications, but some quantitative asset and size information are rightfully noted as unavailable. - -Sources: -- Aurum Impact official website (https://www.aurum-impact.de)[3][4] -- Private Equity International profile (https://www.privateequityinternational.com)[1] -- Impact Investor profile and interview (https://impact-investor.com)[2]" -"Aviva Ventures ","https://digital.aviva.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 1 million to 10 million"",""fundName"":""Aviva Ventures Investment Strategy"",""fundSize"":""£250 million"",""fundSizeSourceUrl"":""https://www.aviva.com/newsroom/news-releases/2023/04/aviva-plc-commits-further-150-million-to-aviva-ventures-and-invests-in-scan-dot-com/"",""geographicFocus"":[""UK"",""Europe""],""investmentStageFocus"":[""Early Stage"",""Growth Stage""],""sectorFocus"":[""InsurTech"",""Data analytics"",""Artificial Intelligence"",""Digital platforms"",""Healthcare"",""Climate & Sustainability"",""Science & Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://digital.aviva.com/investors/investment-case-and-strategy""}],""headquarters"":""St. Helen's, 1 Undershaft, London, EC3P 3DQ, United Kingdom"",""investmentThesisFocus"":[""Focus on investing in innovative technology companies that transform the insurance industry."",""Invest in sectors such as InsurTech, data analytics, AI, and digital platforms."",""Target early-stage to growth-stage companies."",""Geographical focus primarily on the UK and Europe."",""Commitment to supporting female-led or gender-balanced founding teams and fund managers."",""Aim to create strategic relationships to provide expertise, global reach, and scale for investees.""],""investorDescription"":""Aviva Ventures is the corporate venture capital fund for Aviva plc focused on financial and strategic returns through direct and indirect investments that bring new opportunities, ideas, emerging technology, and customer trends. Its mission includes being transformative to the existing insurance business model, accelerating Aviva's strategy, and providing insights into necessary adaptations to the changing landscape. Aviva Ventures aims to develop strategic relationships with investees, offering expertise, global reach, and scale. They have committed to pledges supporting early-stage founders and greater transparency, including the Fintech Pledge and Invest in Women Taskforce, seeking to back female-led or gender-balanced founding teams and fund managers in sectors like Fintech, Healthcare, Climate & Sustainability, and Science & Technology."",""linkedDocuments"":[""https://static.aviva.io/content/dam/aviva-corporate/documents/socialpurpose/pdfs/2024-transition-plan.pdf"",""https://static.aviva.io/content/dam/aviva-corporate/documents/socialpurpose/pdfs/Aviva-Modern-Slavery-Statement-2023.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Haast"",""Tembo"",""Nattergal"",""Shepper"",""Carpe Data""],""researcherNotes"":""AUM and fund size are not explicitly stated on the website despite a thorough search. Senior leadership specific to Aviva Ventures or Aviva Capital Partners is not found on the website."",""seniorLeadership"":[{""name"":""Ben Luckett"",""sourceProvider"":""Perplexity"",""title"":""Chief Innovation Officer""}],""sources"":{""fundSize"":""https://www.aviva.com/newsroom/news-releases/2023/04/aviva-plc-commits-further-150-million-to-aviva-ventures-and-invests-in-scan-dot-com/"",""headquarters"":""https://digital.aviva.com/our-locations"",""investmentThesisFocus"":""https://digital.aviva.com/investors/investment-case-and-strategy"",""investorDescription"":""https://digital.aviva.com/investors/investment-case-and-strategy"",""portfolioHighlights"":""https://digital.aviva.com/#venture-investments"",""seniorLeadership"":""https://www.aviva.com/newsroom/news-releases/2023/04/aviva-plc-commits-further-150-million-to-aviva-ventures-and-invests-in-scan-dot-com/""},""websiteURL"":""https://digital.aviva.com/""}","Correctness: 95% Completeness: 85% - -The information provided is largely **factually accurate and well-supported** by multiple authoritative sources. Aviva Ventures is indeed a corporate venture capital fund of Aviva plc focused on early to growth-stage investments primarily in the UK and Europe, targeting sectors such as InsurTech, data analytics, AI, digital platforms, healthcare, climate & sustainability, and science & technology[3][4][1]. The reported fund size of approximately £250 million is generally consistent with Aviva’s recent commitment of £150 million reported in April 2023, which built upon pre-existing funds and activities[3][1]. Ben Luckett is confirmed as a senior leader with a key innovation role related to Aviva Ventures[3][5]. The emphasis on supporting female-led or gender-balanced teams and strategic global relationships aligns with Aviva's publicly stated investment thesis and pledges[3]. - -However, the **completeness is somewhat limited**. No explicit figure for overall Assets Under Management (AUM) for Aviva Ventures is publicly disclosed; the £250 million stated appears to reflect the latest commitment rather than total AUM[3][1][4]. The existing publicly available information refers to an evergreen fund structure and a new venture capital strategy nested within Aviva Investors Private Markets, but specific details like senior leadership beyond Ben Luckett are sparse[5]. The headquarters location and portfolio highlights such as Haast, Tembo, Nattergal, Shepper, and Carpe Data are consistent with Aviva’s webpages but these may not be exhaustive. - -Sources: -- https://www.aviva.com/newsroom/news-releases/2023/04/aviva-plc-commits-further-150-million-to-aviva-ventures-and-invests-in-scan-dot-com/ -- https://globalventuring.com/corporate/fundraising/aviva-185m-aviva-investors-fund/ -- https://www.pensions-expert.com/investment/aviva-investors-launches-ltaf-for-venture-capital-investment/68886.article -- https://www.avivainvestors.com/en-gb/about/company-news/2025/02/aviva-investors-launches-venture-and-growth-capital-ltaf/ -- https://www.avivainvestors.com/en-gb/about/company-news/2024/08/aviva-investors-adds-venture-capital-rebrands-private-markets/" -"Autotech Ventures ","http://www.autotechvc.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 1000000 to 8000000"",""fundName"":""Fund II"",""fundSize"":""USD 150000000"",""fundSizeSourceUrl"":""https://www.autotechvc.com/news-release/autotech-ventures-closes-150-million-fund-ii-to-back-early-stage-startups-in-ground-transportation-rfp9f"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B"",""Series C""],""sectorFocus"":[""Connectivity"",""Autonomy"",""Shared-Use Mobility"",""Electrification"",""Digital Enterprise Applications"",""Ground Transportation""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.autotechvc.com/news-release/autotech-ventures-closes-150-million-fund-ii-to-back-early-stage-startups-in-ground-transportation-rfp9f""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Fund I"",""fundSize"":""USD 120000000"",""fundSizeSourceUrl"":""https://www.autotechvc.com/news-release/automotive-industry-icon-maryann-keller-joins-autotech-ventures-m99yd"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Ground Transportation"",""Mobility""],""sourceUrl"":""https://www.autotechvc.com/news-release/automotive-industry-icon-maryann-keller-joins-autotech-ventures-m99yd""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Fund III"",""fundSize"":""USD 230000000"",""fundSizeSourceUrl"":""https://www.autotechvc.com/news-release/autotech-ventures-announces-new-230m-fund-1"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B"",""Series C""],""sectorFocus"":[""Mobility"",""Ground Transportation""],""sourceUrl"":""https://www.autotechvc.com/news-release/autotech-ventures-announces-new-230m-fund-1""}],""headquarters"":""525 Middlefield Rd. Suite 130 Menlo Park, CA 94025"",""investmentThesisFocus"":[""Founder-first philosophy valuing founders with experience in incumbent transport sectors and policy navigation."",""Investment focus on deep-tech, AI, semiconductors, and business model innovations such as marketplaces, fintech, and SaaS."",""Focus on capital-light businesses addressing connectivity, autonomy, shared-use, electrification, and digital enterprise."",""Leverage extensive transport industry relationships to help founders access customers, partnerships, and strategic acquisitions."",""Invest globally from Seed to Series C stages in mobility-related startups.""],""investorDescription"":""Autotech Ventures is an early-stage venture capital firm managing over $500M, focused on solving ground transport challenges through technology. Their mission is to realize the next frontier in mobility by investing globally from Seed to Series C in startups related to connectivity, autonomy, shared-use, electrification, and digitization of enterprise. They emphasize a founder-first philosophy, deep-tech, AI, semiconductors, and business model innovations like marketplaces, fintech, and SaaS. Their team comprises experienced entrepreneurs, operators, technologists, and investors with decades of ground transport expertise. They provide value through an extensive network within the global ground transport sector, including large fleet operators, manufacturers, dealers, repair chains, telematics providers, and energy companies, facilitating strategic partnerships and growth opportunities."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""USD 500000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.autotechvc.com/news-release/autotech-ventures-announces-new-230m-fund-1""},""portfolioHighlights"":[""Agtonomy"",""AmpUp"",""BasicBlock"",""Bluedot"",""Bumper"",""BusUp"",""CarPay"",""Cazoo"",""Cogniac"",""CollectWise""],""researcherNotes"":""AUM data was found explicitly with over $500 million total assets under management. Fund sizes and names for three funds were identified with official announcements. Estimated investment size is explicitly found only for Fund II. Headquarters was confirmed from the contact page."",""seniorLeadership"":[{""name"":""Quin Garcia"",""sourceUrl"":""https://www.autotechvc.com/team"",""title"":""Founder""},{""name"":""Alexei Andreev"",""sourceUrl"":""https://www.autotechvc.com/team"",""title"":""Founder""},{""name"":""Logan Green"",""sourceUrl"":""https://www.autotechvc.com/team"",""title"":""Founder""},{""name"":""Maurice Gunderson"",""sourceUrl"":""https://www.autotechvc.com/team"",""title"":""Partner""},{""name"":""Burak Cendek"",""sourceUrl"":""https://www.autotechvc.com/team"",""title"":""Partner""},{""name"":""Brian Donnelly"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/autotech-ventures|https://www.linkedin.com/company/autotech-ventures"",""title"":""Director Of Strategic Partnerships""},{""name"":""Quin Garcia"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/autotech-ventures|https://www.linkedin.com/company/autotech-ventures"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.autotechvc.com/connect"",""investmentThesisFocus"":""https://www.autotechvc.com/philosophy"",""investorDescription"":""https://www.autotechvc.com/"",""portfolioHighlights"":""https://www.autotechvc.com/portfolio""},""websiteURL"":""http://www.autotechvc.com""}","Correctness: 100% Completeness: 95% - -The presented information is factually accurate and aligns well with publicly available data from official Autotech Ventures sources and reputable news coverage. The reported fund sizes for Fund I ($120M), Fund II ($150M), and Fund III ($230M) correspond exactly to press releases and news articles from Autotech Ventures between 2017 and 2023[2][5]. The total assets under management exceeding $500M is supported by the official site and recent announcements[2][5]. The specified geographic focus (global), investment stages (Seed to Series C), and sector focuses (connectivity, autonomy, shared-use mobility, electrification, digital enterprise applications, ground transportation) are consistent with the firm’s publicly stated philosophy and portfolio[1][2][5]. The investor’s description emphasizing a founder-first approach, emphasis on deep-tech including AI, semiconductors, marketplaces, fintech, and SaaS, and leveraging transport industry relationships is also directly supported by Autotech’s official site and leadership statements[5][1]. - -The senior leadership named (Quin Garcia, Alexei Andreev, Logan Green, Maurice Gunderson, Burak Cendek, Brian Donnelly) matches the team listed on Autotech’s website and LinkedIn profiles[5]. - -The estimated investment size provided only for Fund II ($1M to $8M) matches data found in Unicorn Nest analytics and other data aggregators[4]. However, estimated check sizes for Fund I and Fund III are not provided in the sources, which justifies the noted missing field and slightly lowers completeness. - -Portfolio highlights given are consistent with publicly known Autotech investments[5]. - -The minor deduction in completeness is due to: -- Lack of estimated investment sizes for Fund I and Fund III, which are publicly unavailable or not explicitly disclosed. -- No annualized investment activity or detailed LP composition beyond what is generally known. -- The investment thesis is well summarized, but some detail like LP participation and fund close dates could add completeness. - -URLs used: -- https://www.autotechvc.com/ -- https://www.prnewswire.com/news-releases/autotech-ventures-announces-new-230m-fund-301803017.html -- https://techcrunch.com/2023/04/20/autotech-ventures-new-230m-mobility-fund-adds-fintech-circular-economy-to-its-investment-strategy/ -- https://unicorn-nest.com/funds/autotech-ventures-3/ - -Overall, the provided data is highly accurate and nearly complete, missing only a few less-critical investment size details for some funds." -"ATP ","https://www.atp.dk ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ATP Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Denmark"",""International""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Bonds"",""Equities"",""Real Estate"",""Infrastructure""],""sourceUrl"":""https://www.atp.dk/en/investing-pension-funds""}],""headquarters"":""Kongens Vænge 8, 3400 Hillerød, Denmark"",""investmentThesisFocus"":[""Balanced risk approach dividing funds into guarantee (low-risk) and bonus (high-risk) contributions"",""Risk diversification across asset classes including bonds, equities, real estate, and infrastructure"",""Focus on responsible investments integrating ESG factors"",""Active stewardship through direct dialogue and voting at company meetings"",""Prioritization of green investments to reduce carbon emissions and achieve carbon neutrality by 2050"",""Engagement-before-exclusion approach for policy violations"",""Collaboration with other investors to increase influence""],""investorDescription"":""ATP's investment strategy focuses on providing guaranteed, lifelong pensions by dividing members' contributions into 80% guarantee contributions invested in low-risk bonds and interest rate swaps, and 20% bonus contributions invested in high-risk assets to maintain the real value and cover unforeseen events. The strategy balances risk to achieve pension objectives, emphasizes risk diversification across bonds, equities, real estate, and infrastructure both domestically and internationally, and increasingly prioritizes green investments for long-term value."",""linkedDocuments"":[""https://www.atp.dk/en/dokument/atps-policy-responsibility-investments""],""missingImportantFields"":[""overallAssetsUnderManagement"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":""$35 billion"",""portfolioHighlights"":[],""researcherNotes"":""Overall assets under management and estimated investment size per company were not found explicitly on the website or linked documents. The fund size is also not available. The investment approach is described at a high level without specific capital ticket sizes or dedicated funds."",""seniorLeadership"":[{""name"":""Martin Præstegaard"",""sourceUrl"":""https://atp.dk/en/about-us/atps-group-management"",""title"":""Group CEO""},{""name"":""Pernille Vastrup"",""sourceUrl"":""https://atp.dk/en/about-us/atps-group-management"",""title"":""Executive Vice President (CFO), Executive Vice President Pension & Social Security (Interim), Executive Vice President Udbetaling Danmark (Interim)""},{""name"":""Mikkel Svenstrup"",""sourceUrl"":""https://atp.dk/en/about-us/atps-group-management"",""title"":""Chief Investment Officer (CIO)""},{""name"":""Haktan Bulut"",""sourceUrl"":""https://atp.dk/en/about-us/atps-group-management"",""title"":""Chief Information Technology Officer (CITO)""},{""name"":""Jacob Lester"",""sourceUrl"":""https://atp.dk/en/about-us/atps-group-management"",""title"":""Chief Risk Officer (CRO)""},{""name"":""Torben M. Andersen"",""sourceUrl"":""https://atp.dk/en/about-us/board-representatives-and-atps-supervisory-board"",""title"":""Chairman of ATP's Supervisory Board and Board of Representatives""},{""name"":""Jacob Holbraad"",""sourceUrl"":""https://atp.dk/en/about-us/board-representatives-and-atps-supervisory-board"",""title"":""CEO, Confederation of Danish Employers""},{""name"":""Lars Sandahl Sørensen"",""sourceUrl"":""https://atp.dk/en/about-us/board-representatives-and-atps-supervisory-board"",""title"":""CEO, Confederation of Danish Industry""},{""name"":""Brian Mikkelsen"",""sourceUrl"":""https://atp.dk/en/about-us/board-representatives-and-atps-supervisory-board"",""title"":""CEO, The Danish Chamber of Commerce""},{""name"":""Anne Gram"",""sourceUrl"":""https://atp.dk/en/about-us/board-representatives-and-atps-supervisory-board"",""title"":""Professional Board Member""}],""sourceProvider"":""Top1000funds.com"",""sources"":{""headquarters"":""https://www.atp.dk/en/contact"",""investmentThesisFocus"":""https://www.atp.dk/en/investing-pension-funds"",""investorDescription"":""https://www.atp.dk/en/investing-pension-funds"",""portfolioHighlights"":""https://www.atp.dk/en/investing-pension-funds""},""websiteURL"":""https://www.atp.dk""}","Correctness: 98% Completeness: 85% - -The information provided about ATP's investment strategy, headquarters, leadership, and investment focus is highly factually accurate and well-supported by official and reputable sources. ATP is Denmark’s largest pension fund, headquartered at Kongens Vænge 8, 3400 Hillerød, Denmark as confirmed at their official contact page[1]. The described investment thesis focusing on dividing contributions into guarantee (low-risk) and bonus (high-risk) components, diversification across bonds, equities, real estate, and infrastructure, plus emphasis on responsible investments with ESG integration and active stewardship aligns precisely with ATP's disclosed approach[3][5]. - -ATP’s senior leadership list, including Martin Præstegaard as CEO and Mikkel Svenstrup as CIO, is correct based on the latest data from ATP's official management pages[1]. The stated $35 billion in overall assets under management matches the figure from Top1000funds and ATP’s public reports[1]. - -However, completeness is somewhat reduced due to missing specifics in the provided data: - -- The estimated investment size and fund sizes are listed as ""Not Available,"" consistent with ATP’s tendency not to disclose granular ticket sizes or detailed sub-fund allocations publicly[3]. - -- Portfolio highlights are also not detailed, though public sources do provide asset allocation percentages (e.g., roughly 12% Danish equities, 17% international equities, 20% government and mortgage bonds, 13% real estate, and 12% infrastructure)[1]. Including those would improve completeness. - -- The data omits mention of ATP’s recent initiative to commission an external evaluation of its investment strategy for improved efficiency, which is a significant current development[2][4]. - -Overall, the information is very accurate and aligned with the official ATP website and trusted financial news but could be more complete with additional portfolio details and recent strategic initiatives such as the external evaluation. - -Sources consulted: -[1] https://www.top1000funds.com/asset_owner/atp/ -[2] https://www.europeanpensions.net/ep/Denmark-ATP-initiates-external-evaluation-of-investment-strategy.php -[3] https://www.atp.dk/en/dokument/atps-investment-approach-2021 -[4] https://www.ipe.com/news/atp-launches-own-external-evaluation-process-critic-rues-narrow-scope/10128443.article -[5] https://www.fcltglobal.org/resource/how-atp-manages-investment-risk/" -"Aurora Science ","https://aurorascience.eu/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 1,000,000 to 5,000,000"",""fundName"":""AurorA Science Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Pre-clinical"",""Early clinical""],""sectorFocus"":[""Biotech""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aurorascience.eu/""}],""headquarters"":""Milan"",""investmentThesisFocus"":[""Focus on biotech sector."",""Combination of financial and industrial approaches to investment in R&D.""],""investorDescription"":""AurorA Science is a biotech investment company integrating an innovative financial and industrial approach in the research and development challenge."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""overallAssetsUnderManagement"",""portfolioHighlights"",""seniorLeadership"",""linkedDocuments""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Not Available""],""researcherNotes"":""No content found on the website or accessible PDFs for detailed firm data; estimated investment size inferred from references to deal support amounts."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.linkedin.com/company/aurora-science"",""investmentThesisFocus"":""https://aurorascience.eu/"",""investorDescription"":""https://aurorascience.eu/"",""portfolioHighlights"":null},""websiteURL"":""https://aurorascience.eu/""}","Correctness: 95% Completeness: 70% - -The information provided about AurorA Science Investment Strategy is largely **factually correct**. AurorA Science is *indeed* a biotech investment company focused on early-stage (pre-clinical and early clinical) projects in the biotech sector, confirmed on their official site and related press releases[3][4]. The estimated investment size of USD 1-5 million per deal aligns with reported funding rounds and stated investment approach[3]. The description of the investment thesis as combining financial and industrial approaches in R&D is supported by their collaboration with Rottapharm Biotech and Italfarmaco and their integrated strategy[3][4]. Its headquarters is in Milan, Italy, which also matches data from their LinkedIn presence and official addresses[1][4]. - -However, **completeness is limited** by the lack of some important details: -- The overall assets under management (AUM) are not publicly available and thus missing. -- Portfolio highlights and senior leadership details are not found on the website or accessible documents. -- Geographic focus is vaguely stated or unavailable despite a European and potentially global partnering reach. -- Linked documents and detailed firm data are missing, as noted in the researcher’s comments. - -The sources used include their official website (aurorascience.eu), affiliated entities’ sites (Italfarmaco), and company information from corporate/industry profiles and LinkedIn[1][3][4]. These collectively confirm the core facts but do not fill all gaps, leading to a high correctness but moderate completeness score. - -Sources: -https://aurorascience.eu/ -https://aurora-tt.com/ -https://www.italfarmaco.it/en-us/Who-we-are/Press-review/Article-details/ArticleId/73/Italfarmaco-and-Rottapharm-Biotech-have-launched-AurorA-Science-their-vehicle-dedicated-to-investing-in-startups -https://www.linkedin.com/company/aurora-science" -"Avenir ","https://avenirco.ru/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Avenir Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Russia""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""Original"",""sourceUrl"":""https://avenirco.ru/""}],""headquarters"":""Россия, 115184, Москва, Озерковский переулок, дом 12"",""investmentThesisFocus"":[""Помощь проектам с разумным, добрым, вечным смыслом."",""Поддержка малого российского бизнеса."",""Помощь росту бизнесов путем инвестиций и операционной поддержки.""],""investorDescription"":""Инвестиционный холдинг АВЕНИР основан Борисом Жилиным и Ольгой Масютиной в 2015 году. Они помогают малому российскому бизнесу советом, любовью и деньгами. Основная идея: помощь проектам с разумным, добрым, вечным смыслом, росту которых помогут инвестиции. Также поддерживают работающий полезный бизнес с кассовыми разрывами и операционными проблемами."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""sectorFocus"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Pupil"",""РУСМЕДСТАТ"",""ПРАКТИС-ЦЕНТР"",""ТурбоКонтракт"",""Lavanda"",""Properly"",""Stay in a Pub"",""ParkApp"",""Neo""],""researcherNotes"":""No explicit fund sizes, estimated investment sizes, or AUM information found on the website. The investment strategy is inferred as a single unified strategy under the company's name."",""seniorLeadership"":[{""name"":""Борис Жилин"",""sourceProvider"":""Original"",""sourceUrl"":""https://avenirco.ru/about/"",""title"":""Основатель""},{""name"":""Ольга Масютина"",""sourceProvider"":""Original"",""sourceUrl"":""https://avenirco.ru/about/"",""title"":""Сооснователь и генеральный директор""}],""sources"":{""headquarters"":""https://avenirco.ru/contacts/"",""investmentThesisFocus"":""https://avenirco.ru/about/"",""investorDescription"":""https://avenirco.ru/about/"",""portfolioHighlights"":""https://avenirco.ru/portfolio/""},""websiteURL"":""https://avenirco.ru/""}","Correctness: 95% Completeness: 70% - -The provided information about Инвестиционный холдинг ""АВЕНИР"" is largely factually accurate. It correctly states the founders as Борис Жилин and Ольга Масютина, the founding year as 2015, focus on supporting small Russian businesses, and the location in Moscow with the provided address details (though the address given in public registries is Трубная ул., д. 21 rather than Озерковский переулок, дом 12) [1][2][3][4]. The investment thesis descriptions, such as ""helping projects with reasonable, kind, eternal meaning,"" supporting SMEs, and providing operational support, align with the company’s publicly stated values on their official site [https://avenirco.ru/about/]. The portfolio highlights listed (e.g., Pupil, РУСМЕДСТАТ, etc.) are consistent with those displayed on their official portfolio page [https://avenirco.ru/portfolio/]. - -However, important financial details like fund size, estimated investment size, assets under management, sector focus, and specific investment stages are missing, which are not disclosed publicly on available sources. This reduces completeness. The site and other data do not show explicit fund structures or multiple fund vehicles, supporting the inference that the investment strategy is unified under a single company structure rather than a traditional fund format. The slight discrepancy in the official registered address with authoritative registries lowers accuracy somewhat but is not critical. - -Sources: - -- https://avenirco.ru/about/ -- https://avenirco.ru/portfolio/ -- https://rb.ru/data/avenir-13931/ -- https://checko.ru/company/investicionny-holding-avenir-5157746027918 -- https://www.rusprofile.ru/id/10209501 -- https://companies.rbc.ru/id/5157746027918-ooo-investitsionnyij-holding-avenir/" -"Auxxo ","https://www.auxxo.de/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 350,000 to EUR 800,000"",""fundName"":""Auxxo Female Catalyst Fund II"",""fundSize"":""EUR 26,000,000"",""fundSizeSourceUrl"":""https://www.eu-startups.com/2025/07/berlins-vc-fund-auxxo-secures-e26-million-to-exclusively-invest-in-teams-with-at-least-one-female-founder/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed""],""sectorFocus"":[""Industry agnostic""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.eu-startups.com/2025/07/berlins-vc-fund-auxxo-secures-e26-million-to-exclusively-invest-in-teams-with-at-least-one-female-founder/""}],""headquarters"":""Zionskirchstraße 36, 10119 Berlin, Germany"",""investmentThesisFocus"":[""Backing female (co-)founded startups with at least 20% female founder shares"",""Pre-seed and seed stage investing"",""Pan-European geographic focus"",""Industry agnostic"",""Co-investment approach requiring a lead investor"",""Focus on equitable participation of women as founders and investors"",""Fostering wholesome personal growth and abundance mindset"",""Driven by feminist changemaker values such as caring, authenticity, vulnerability, and trust""],""investorDescription"":""Auxxo drives equitable participation of women as founders and investors in venture capital, focusing on fostering wholesome personal growth, abundance mindset, and a feminist changemaker movement. Their investment thesis centers on supporting female founders and creating a reality governed by values of caring, authenticity, vulnerability, and trust."",""linkedDocuments"":[""https://auxxo.de/wp-content/uploads/2024/07/231206_Auxxo-FCF-II_BIB_DE.pdf""],""missingImportantFields"":[""sectorFocus""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""EUR 26,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.eu-startups.com/2025/07/berlins-vc-fund-auxxo-secures-e26-million-to-exclusively-invest-in-teams-with-at-least-one-female-founder/""},""portfolioHighlights"":[""Alpas"",""Anybill"",""Beams"",""BIOVOX"",""DUDE CHEM"",""einwert"",""Emidat"",""Erblotse"",""Exakt health"",""Fermify""],""researcherNotes"":""Overall AUM and fund size are taken from multiple independent reports citing the first closing of Auxxo Female Catalyst Fund II at EUR 26 million in 2025. No exact sector focus is listed on company pages, so marked as Not Available."",""seniorLeadership"":[{""name"":""Bettine Schmitz"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://auxxo.de/about/"",""title"":""General Partner""},{""name"":""Dr. Gesa Miczaika"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://auxxo.de/about/"",""title"":""General Partner""},{""name"":""Fabiola Hochkirchen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://auxxo.de/about/"",""title"":""Initiating Partner""}],""sources"":{""headquarters"":""https://auxxo.de/imprint/"",""investmentThesisFocus"":""https://auxxo.de/about/"",""investorDescription"":""https://auxxo.de/about/"",""portfolioHighlights"":""https://auxxo.de/portfolio/""},""websiteURL"":""https://www.auxxo.de/""}","Correctness: 98% Completeness: 90% - -The information on the Auxxo Female Catalyst Fund II is **factually accurate** and well-supported by multiple credible sources. The fund’s first closing was indeed at **EUR 26 million in 2025** with a target of up to EUR 50 million, focused on teams with at least one female founder holding at least 20% founder shares. It invests at the **pre-seed and seed stage**, is **industry agnostic**, and has a **pan-European geographic focus**[1][2][3][4]. The European Investment Fund (EIF) is a confirmed anchor investor, and over 50% of the fund’s limited partners (LPs) are women, aligning with Auxxo's mission to foster equitable participation of women as founders and investors[1][2][3][5]. - -The **headquarters address** at Zionskirchstraße 36, Berlin, is correct per the imprint[3]. The **portfolio highlights** including companies like Emidat, Resolutiion, and previously invested companies like einwert, Dude Chem, and Biovox match reported portfolio info[1][2][3][5]. The **investment thesis focus** emphasizing backing female-founded startups with minimum female shareholding, promoting feminist changemaker values, and supporting personal growth and an abundance mindset aligns closely with Auxxo's public statements[3][4]. - -The **senior leadership names** provided (Bettine Schmitz and Dr. Gesa Miczaika as General Partners, Fabiola Hochkirchen as Initiating Partner) are consistent with available sources, although some expanded leadership info from EverythingStartups includes additional team members such as Alena Redeker and others[4]. - -The only slightly lower completeness score is due to **no explicit external source specifying the exact minimum ""20% female founder shares"" threshold except indirect confirmation of “at least one female founder” and the fund’s exclusive focus on female-founded teams**. Also, the ""fostering wholesome personal growth and abundance mindset"" and the detailed feminist values are harder to verify as direct public phrases but are reflected in Auxxo’s qualitative investment philosophy on their website[3][4]. The sector focus being “industry agnostic” is confirmed, matching the note about missing sector specificity. - -URLs used for cross-checking: - -- https://www.eu-startups.com/2025/07/berlins-vc-fund-auxxo-secures-e26-million-to-exclusively-invest-in-teams-with-at-least-one-female-founder/ -- https://pulse2.com/auxxo-e26-million-first-closing-of-female-catalyst-fund-ii-completed/ -- https://tech.eu/2025/07/21/auxxo-announces-eur26m-first-close-of-female-catalyst-fund-ii/ -- https://www.everythingstartups.com/vc-funds/auxxo-female-catalyst-fund -- https://auxxo.de/about/ -- https://auxxo.de/imprint/ - -Overall, the data is consistent, well-sourced, and comprehensive aside from very minor gaps in exact share thresholds and some qualitative language, thus the high correctness and high but slightly less than perfect completeness scores." -"Atomico ","http://www.atomico.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Atomico Venture VI"",""fundSize"":""USD 485,000,000"",""fundSizeSourceUrl"":""https://atomico.com/insights/dollar124-billion-as-european-technology-comes-of-age"",""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""Series A"",""Seed (occasional)""],""sectorFocus"":[""Technology across verticals, generalist""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://atomico.com/insights/dollar124-billion-as-european-technology-comes-of-age""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Atomico Growth VI"",""fundSize"":""USD 754,000,000"",""fundSizeSourceUrl"":""https://atomico.com/insights/dollar124-billion-as-european-technology-comes-of-age"",""geographicFocus"":[""Europe"",""Global""],""investmentStageFocus"":[""Series B"",""Pre-IPO""],""sectorFocus"":[""Technology across verticals, generalist""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://atomico.com/insights/dollar124-billion-as-european-technology-comes-of-age""}],""headquarters"":""29 Rathbone St, London W1T 1NJ, UK; 34 Rue Laffitte, 75009 Paris, France; Pressehaus Podium, Karl-Liebknecht-Strasse 29a, 10178 Berlin, Germany; Birger Jarlsgatan 57 C, 113 56 Stockholm, Sweden; 412F, route d’Esch, L - 1471 Luxembourg"",""investmentThesisFocus"":[""Supporting ambitious entrepreneurs who use technology to create positive transformational change."",""Partnering with world-shaping, mission-driven founders seeking to build category-defining businesses with a meaningful impact."",""Investing as a generalist technology investor across verticals prioritizing mission alignment."",""Emphasizing conscious scaling and sustainability, supporting companies to build enduring businesses with positive social and economic impact."",""Involvement in initiatives like sustainability programs and the Atomico Angel Programme to support underrepresented founders.""],""investorDescription"":""Atomico is a founder-built European venture capital firm focused on partnering with ambitious entrepreneurs using technology to rewire the world for the better. They invest with the belief that technology will transform all sectors and emphasize working closely and collaboratively with founders to build gamechanging businesses that tackle global challenges, including sustainability. Their mission centers on supporting founders to build enduring, category-winning companies through thematic investment in areas such as Enterprise AI, Internet Infrastructure, Future Finance, Mobility, Industrial Automation, Frontier Tech, Planet Positive, and more."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-09-09"",""aumAmount"":""USD 1,240,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://atomico.com/insights/dollar124-billion-as-european-technology-comes-of-age""},""portfolioHighlights"":[""PhysicsX"",""Nourish"",""CADDi"",""TravelPerk""],""researcherNotes"":""No specific estimated investment size per company or ticket size was found on the website. Fund sizes are from recent announcements. AUM data is from a 2024 announcement."",""seniorLeadership"":[{""name"":""Niklas Zennström"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://atomico.com/team"",""title"":""Founder and CEO""},{""name"":""Carter Adamson"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.thenetwork.com/profile/carter-adamson-b53a14d9"",""title"":""Partner""}],""sources"":{""headquarters"":""https://atomico.com/locations"",""investmentThesisFocus"":""https://atomico.com/our-approach"",""investorDescription"":""http://www.atomico.com"",""portfolioHighlights"":""https://atomico.com/portfolio""},""websiteURL"":""http://www.atomico.com""}","Correctness: 100% Completeness: 95% - -The information provided about Atomico is factually accurate based on multiple recent authoritative sources. Atomico's two funds — **Atomico Venture VI at $485 million** focusing on Series A and occasional Seed investments, and **Atomico Growth VI at $754 million** focusing on Series B through pre-IPO — are confirmed by sources including Atomico's official announcement and industry reports from TechCrunch and Proskauer[2][3][5]. The total amount raised, **$1.24 billion**, matches the combined fund sizes cited. The geographic focus on Europe and globally, generalist technology investment thesis, and emphasis on supporting ambitious entrepreneurs with positive transformational impact align with Atomico’s stated mission and public communications[2][3]. - -The listed headquarters in London, Paris, Berlin, Stockholm, and Luxembourg correspond with Atomico’s known office locations[1], and senior leadership named (Niklas Zennström as Founder/CEO and Carter Adamson as Partner) is accurate per Atomico’s team page and related profiles[1]. Portfolio highlights such as PhysicsX, Nourish, CADDi, and TravelPerk are consistent with public Atomico portfolio listings[1]. - -The only minor limitation is the absence of specific **estimated investment sizes per company or ticket sizes**, which is transparently noted in the researcher notes and is typical as Atomico does not disclose this publicly[1][3]. This slightly reduces completeness, as detailed investment parameters (e.g., typical check size ranges) would enhance understanding of fund deployment strategy. - -Overall, the data set is up-to-date as of late 2024 and covers core facts, investment theses, fund structure, and leadership fully and correctly. - -Sources used: -- Atomico official site and insights: https://atomico.com/insights/dollar124-billion-as-european-technology-comes-of-age -- Proskauer advisory announcement: https://www.proskauer.com/release/proskauer-advises-atomico-on-124-billion-venture-capital-double-fundraise -- TechCrunch news: https://techcrunch.com/2024/09/08/european-vc-atomico-closes-1-24b-across-two-funds-for-early-and-growth-stage-startups/ -- British Business Bank press release: https://www.british-business-bank.co.uk/news-and-events/news/british-patient-capital-announces-total-60m-commitment-atomicos-latest-funds -- Vestbee article: https://vestbee.com/insights/articles/atomico-raises-1-24-b-in" -"Atmos Ventures ","https://atmos.vc ","{""funds"":[{""estimatedInvestmentSize"":""USD 4.5M"",""fundName"":""Atmos Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Poland""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Robotics & Automation"",""Quantum Computing"",""Artificial Intelligence"",""Infrastructure & Cloud"",""New Frontier Technologies"",""Hardware"",""IoT"",""Web 3.0""],""sourceProvider"":""Nordic9"",""sourceUrl"":""https://nordic9.com/companies/atmose-ventures/""}],""headquarters"":""Aleje Jerozolimskie 181B, 02-222 Warszawa, Poland"",""investmentThesisFocus"":[""Backs innovative teams that have cracked complex scientific problems."",""Focus on entrepreneurs who have commercialized their expertise."",""Invests in world-class founders motivated to solve challenging issues."",""Interested in cutting-edge technologies and a data-driven approach.""],""investorDescription"":""Atmos Ventures is a venture capital firm with a mission to invest in world-class founders motivated to solve challenging issues through cutting-edge technologies and a data-driven approach. They back innovative teams who have cracked complex scientific problems and help build enterprises into category leaders. Their focus areas include Robotics & Automation, Quantum Computing, Artificial Intelligence, Infrastructure & Cloud, New Frontier Technologies, Hardware, IoT & Web 3.0."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Oxford Ionics"",""Orca Computing"",""Sundose"",""Molecule One"",""Nethone"",""SolveMed AI"",""SpaceOS"",""Edrone"",""Mangopay""],""researcherNotes"":""No explicit AUM or total fund size data was found on the official website or other sources. The investment size is based on an average round amount stated on Nordic9."",""seniorLeadership"":[{""name"":""Dominik Andrzejczuk"",""sourceUrl"":""https://nordic9.com/companies/atmose-ventures/"",""title"":""Founder""},{""name"":""Sami Moughrabie"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/atmos-ventures|https://www.linkedin.com/company/atmos-ventures"",""title"":""Managing Partner""},{""name"":""Hadi Solh"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/atmos-ventures|https://www.linkedin.com/company/atmos-ventures"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://www.atmos.vc/"",""investmentThesisFocus"":""https://www.atmos.vc/"",""investorDescription"":""https://www.atmos.vc/"",""portfolioHighlights"":""https://www.atmos.vc/portfolio""},""websiteURL"":""https://atmos.vc""}","Correctness: 98% Completeness: 85% - -The majority of the information provided about Atmos Ventures is factually accurate and well supported by official and reputable sources. The firm's headquarters is indeed at Aleje Jerozolimskie 181B, Warsaw, Poland[3][4][5]. Their investment focus areas, including Robotics & Automation, Quantum Computing, Artificial Intelligence, Infrastructure & Cloud, New Frontier Technologies, Hardware, IoT, and Web 3.0, match exactly with the official website and public descriptions[5]. The investment thesis emphasizing backing innovative teams solving complex scientific problems with a data-driven approach aligns with the messaging on Atmos Ventures’ site[5]. The named senior leadership, including Dominik Andrzejczuk (Founder) and managing partners Sami Moughrabie and Hadi Solh, corresponds to LinkedIn and Crunchbase profiles linked via Nordic9 and Atmos Ventures’ site[5]. - -Regarding fund details, the estimated investment size of USD 4.5M reflects the average round size reported by Nordic9 but the actual fund size and overall assets under management are explicitly not publicly disclosed, correctly noted as missing in the data[5][Nordic9 source]. This accounts for the slightly lower completeness score. Likewise, the portfolio highlights listed (Oxford Ionics, Orca Computing, Sundose, Molecule One, Nethone, SolveMed AI, SpaceOS, Edrone, Mangopay) correspond closely with those presented on the official portfolio page, confirming that part’s accuracy[5]. - -The only minor point lowering correctness is the lack of explicit confirmation that “Atmos Ventures Investment Strategy” is the precise and sole fund name; publicly, the firm is mainly presented as “ATMOS Ventures,” and specific fund names or sizes are largely undisclosed, so this may be inferred or proprietary. - -Key missing elements causing lowered completeness include: -- Precise total fund size or assets under management figures (acknowledged by researcher notes) -- More detailed financials or historical performance metrics -- Comprehensive background on founding history apart from senior leadership names - -The sources used are: - -- Official website of Atmos Ventures: https://www.atmos.vc [5] -- Public company/legal registry data confirming headquarters address: https://aleo.com, https://lei-lookup.com [3][4] -- Nordic9 data as cited in the user content (not independently verifiable here but referenced) - -Overall, the information is reliable, consistent, and mostly complete given publicly available data. The modest gaps primarily relate to the typical opacity in venture capital fund size disclosures. - - -References: -https://www.atmos.vc -https://aleo.com/int/company/atmos-ventures-spolka-z-ograniczona-odpowiedzialnoscia-asi-spolka-komandytowo-akcyjna -https://www.lei-lookup.com/record/259400RUCBU0GODQMO94" -"Athos Capital ","https://www.athos-cap.com/en/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Athos Capital Fund II"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Spain""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Digital economy"",""Technology""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.athos-cap.com/""}],""headquarters"":""CALLE ORENSE, Nº 10, 2ª PLANTA - 28020 MADRID (MADRID)"",""investmentThesisFocus"":[""Focus on early-stage technology and digital companies."",""Incorporate ESG criteria in investment screening and decision-making."",""Exclude investments related to military/police armament, tobacco, gambling, and other controversial sectors."",""Provide tailored ESG roadmaps for portfolio companies and integrate ESG into governance and remuneration."",""Signatory of UN PRI and adhere to responsible investment principles.""],""investorDescription"":""We are a venture capital fund investing in early stage ventures with global ambitions. Our investments are sector-agnostic with preference for capital-efficient business models. We focus on MVP ready and early adoption companies. We invest mainly in Seed and Series A rounds and do follow-ons."",""linkedDocuments"":[""https://athos-cap.com/wp-content/uploads/2024/07/Politica-de-Inversion-Responsable_web_jul24_.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""LogLLM"",""Mogu"",""Ciudadela"",""Shakers"",""Club Clínico"",""Tuvalum"",""Zenrows"",""Wenalyze"",""Vosbor"",""Kaleidos""],""researcherNotes"":""Overall assets under management (AUM) is not explicitly mentioned on the website or accessible fund information. The fund size and estimated investment size for Athos Capital Fund II are also not provided publicly."",""seniorLeadership"":[{""name"":""Fernando Castiñeiras"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.athos-cap.com/team"",""title"":""Partner""},{""name"":""Juan Filiberto Martínez"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.athos-cap.com/team"",""title"":""Partner""},{""name"":""Robert Tomas"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.athos-cap.com/team"",""title"":""Partner""},{""name"":""Marta Hidalgo"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.athos-cap.com/team"",""title"":""Head of Finance""}],""sources"":{""headquarters"":""https://cnmv.es/portal/consultas/ecr/sociedad?nif=A02859775&lang=en"",""investmentThesisFocus"":""https://athos-cap.com/wp-content/uploads/2024/07/Politica-de-Inversion-Responsable_web_jul24_.pdf"",""investorDescription"":""https://www.athos-cap.com/"",""portfolioHighlights"":""https://www.athos-cap.com/porfolio""},""websiteURL"":""https://www.athos-cap.com/""}","Correctness: 95% Completeness: 80% - -The information provided is largely factually accurate based on publicly available sources. Athos Capital is indeed a Madrid-based venture capital fund focused on early-stage investments, mainly Seed and Series A rounds, with a geographic focus on Spain and Europe, and a preference for capital-efficient, technology-driven business models[1][2][3]. The description of their investment thesis aligns with their public responsible investment policy, which includes ESG criteria, exclusion of controversial sectors (e.g., armaments, tobacco, gambling), and adherence to UN PRI principles as seen in their official responsible investment document[2]. - -Key senior leadership names (Fernando Castiñeiras, Juan Filiberto Martínez, Robert Tomas, Marta Hidalgo) and roles correspond with the publicly stated team on their website[2][3]. The portfolio companies named (LogLLM, Mogu, Ciudadela, Shakers, etc.) match their disclosed investments[2]. - -However, significant data gaps exist relating to **fund size, estimated investment size, and overall assets under management (AUM)**, which are not publicly disclosed by Athos Capital and thus are appropriately noted as missing. According to sources, Athos Capital Fund II was closed in 2022, but no explicit fund size or AUM detail is publicly available, although one source indicates total capital raised by the firm across two funds is about €10 million[1][3]. This lack of transparency leads to a lower completeness score. - -The fund description is consistent with a sector-agnostic yet technology and digital economy biased focus, consistent with their web profiles[1][2]. The headquarters address ""CALLE ORENSE, Nº 10, 2ª PLANTA - 28020 MADRID"" matches official company registry data[3]. - -In summary, the facts are correct and correspond well to the publicly accessible sources, but the absence of certain financial metrics (AUM and fund sizes) reduces completeness as these are important standard informational fields for fund profiles. - -Sources used: -https://www.athos-cap.com/ -https://www.athos-cap.com/wp-content/uploads/2024/07/Politica-de-Inversion-Responsable_web_jul24_.pdf -https://kuff.ai/athos-capital -https://www.privateequityinternational.com/institution-profiles/athos-capital.html -https://cnmv.es/portal/consultas/ecr/sociedad?nif=A02859775&lang=en" -"Aternus ","https://www.aternus.cz ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aternus Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Technology"",""Marketplaces"",""SaaS"",""Fintech"",""Deep Tech""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#investice""}],""headquarters"":""nám. Svobody 527 / 739 61 Třinec / 6th floor, Czech Republic"",""investmentThesisFocus"":[""We manage and invest the founders' wealth with purpose, focusing on areas with the greatest potential for profit and return, while considering positive societal impact."",""We emphasize idea, strategy, communication, and quality of individuals behind investments."",""We co-invest with PE and VC funds in exceptional opportunities."",""We provide support beyond capital, including expertise in HR, sales, marketing, and business strategy development.""],""investorDescription"":""We are investors and partners in leading Czech and international investment funds, selecting investments with high return potential and positive social impact. Founded by successful entrepreneurs with ties to Cieszyn Silesia, we focus on private equity, real estate, and venture capital funds in technology, marketplaces, SaaS, fintech, and deep tech. Our investment approach emphasizes idea, strategy, communication, and the quality of individuals behind funds or projects; we co-invest with PE and VC funds and provide capital along with expertise in HR, sales, marketing, and business strategy development."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""investmentStageFocus"",""geographicFocus"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Docplanner"",""Enern Tech 2"",""Enern Tech 3"",""Enern Tech 4"",""Potysz Health Fund"",""JET Investments"",""RSJ Logistic Investments"",""RSJ Development III"",""RSJ Development V"",""LAND II""],""researcherNotes"":""AUM and specific fund sizes and investment stage or geographic focus are not mentioned on the website."",""seniorLeadership"":[{""name"":""Waldemar Wałach"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""Partner""},{""name"":""Adam Wałach"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""Partner""},{""name"":""Mariusz Wałach"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""Partner""},{""name"":""Roman Kantor"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""Partner""},{""name"":""Petr Turoň"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""Managing Partner""},{""name"":""Miloš Drdák"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""CFO""},{""name"":""Zdeněk Podlipný"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aternus.cz/en#team"",""title"":""Chief Investment Officer""}],""sources"":{""headquarters"":""https://aternus.cz/en"",""investmentThesisFocus"":""https://aternus.cz/en#cile"",""investorDescription"":""https://aternus.cz/en#onas"",""portfolioHighlights"":""https://aternus.cz/en#investice""},""websiteURL"":""https://www.aternus.cz""}","Correctness: 98% Completeness: 80% - -The factual correctness of the provided information is very high. It accurately describes Aternus Investment Strategy as an investor and partner in Czech and international investment funds with a focus on technology sectors such as marketplaces, SaaS, fintech, and deep tech. The investment thesis emphasizing wealth management with purpose, co-investment with PE and VC funds, and providing expertise beyond capital (HR, sales, marketing, business strategy) matches the description on their official website[3][sourceUrl https://aternus.cz/en]. The senior leadership names and titles correspond exactly with those listed on the company’s team page[3]. The portfolio highlights such as Docplanner and several Enern Tech funds align with publicly available mentions of their investments[3]. - -However, the completeness is somewhat lower due to missing key quantitative data. The lack of reported overall assets under management (AUM), estimated investment size, fund size, investment stage focus, and geographic focus is explicitly noted as absent on their website and is not found in the public domain sources reviewed[3]. This omission reduces the ability to fully assess the scale and scope of their operations. Additionally, while their geographic focus is marked “Not Available,” their regional activity is presumably centered in Czech Republic and possibly Central Europe, but this is not clearly stated. The core fund details like fund sizes and stages lack public disclosure. - -No false or fabricated information is detected; all statements correspond well with verified sources. The completeness score reflects these important gaps in public data, which appear not to be disclosed by Aternus. - -Sources: -- Aternus official site: https://aternus.cz/en#onas, https://aternus.cz/en#investice, https://aternus.cz/en#team[3] -- Czech investment fund listings showing Aternus SICAV managed by AVANT investiční společnost[5]" -"At One Ventures ","https://www.atoneventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 1-8M seed; USD 10-15M series A"",""fundName"":""At One Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""North America"",""Europe"",""Africa"",""South America"",""Israel""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Deep Tech"",""Air"",""Water"",""Soil"",""Biodiversity""],""sourceProvider"":""External"",""sourceUrl"":""https://cdn.prod.website-files.com/6617e353428a10c84b1b4c3b/667b5a631e68855df4a13141_Funding%20napkin%20No%20Date%20Updated%2024.pdf""}],""headquarters"":""3739 Balboa Street, Unit 5011, San Francisco, CA 94121, United States"",""investmentThesisFocus"":[""Seek deep tech solutions with wins on physics fundamentals (matter, energy, time, space)."",""Invest in technologies that outperform incumbent ones by at least 3x in cost-effectiveness."",""Targets investments with both superior financial unit economics and environmental returns."",""Invest globally with a portfolio distribution: 70% North America, 15% Europe, 15% Africa, South America, Israel."",""Value diversity by investing in founders from varied backgrounds and under-represented groups.""],""investorDescription"":""At One Ventures invests toward a world where humanity is net positive to nature, focusing on companies that meet the criteria of the Triad: Deep Tech, Superior Unit Economics, and Environmental Returns. We find, fund, and grow companies using disruptive deep tech to upend the unit economics of established industries while dramatically reducing their planetary footprint. The team includes partners with backgrounds in physics, engineering, manufacturing, finance, who have worked at Google X, Yahoo, Microsoft Outlook, BASF, SRI International, Baird Capital Partners, FINCA Impact Finance."",""linkedDocuments"":[""https://cdn.prod.website-files.com/6617e353428a10c84b1b4c3b/667b5a631e68855df4a13141_Funding%20napkin%20No%20Date%20Updated%2024.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ChemFinity"",""Avalo"",""Climax Foods"",""Finless Foods"",""Inevitable Tech"",""Miraterra"",""Monarch Tractor"",""Orbillion Bio"",""Precision AI"",""Prefer""],""researcherNotes"":""AUM or total fund size is not explicitly stated on the website or linked documents. Fund size is generally not available. The investment size details were found in a funding napkin document. Headquarters address was confirmed via LinkedIn."",""seniorLeadership"":[{""name"":""Tom Chi"",""sourceProvider"":""External"",""sourceUrl"":""https://www.atoneventures.com/team"",""title"":""Founder""},{""name"":""Laurie Menoud"",""sourceProvider"":""External"",""sourceUrl"":""https://www.atoneventures.com/team"",""title"":""Co-founder""},{""name"":""Helen Lin"",""sourceProvider"":""External"",""sourceUrl"":""https://www.atoneventures.com/team"",""title"":""Co-founder""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/at-one-ventures"",""investmentThesisFocus"":""https://www.atoneventures.com/about"",""investorDescription"":""https://www.atoneventures.com/about"",""portfolioHighlights"":""https://www.atoneventures.com/portfolio""},""websiteURL"":""https://www.atoneventures.com/""}","Correctness: 97% Completeness: 85% - -The information provided about At One Ventures is largely accurate and aligns with authoritative sources, including their official website and credible profiles. The firm focuses on **deep tech investments** with an emphasis on technologies that outperform incumbents at least 3x in cost-effectiveness and generate significant environmental returns across **Air, Water, Soil, and Biodiversity** sectors. Their geographical focus includes North America, Europe, Africa, South America, and Israel, with a portfolio distribution roughly 70% North America, 15% Europe, and 15% elsewhere, consistent with published investment theses[3][4][2]. Leadership details naming Tom Chi, Laurie Menoud, and Helen Lin as founder/co-founders are confirmed by the company's team page[3]. - -Investment stages cited as **Seed and Series A** correspond with the firm's early-stage focus, although some sources mention additional stages (Pre-Seed to Series C), which is not conflicting but indicates broader involvement by the firm[2]. Reported ticket sizes (USD 1-8M seed; USD 10-15M Series A) roughly align with publicly stated ranges though specific upper amounts vary somewhat from third-party summaries[1]. The portfolio companies listed (e.g., ChemFinity, Avalo, Finless Foods) appear consistent with disclosed holdings[3]. - -Two main data gaps reduce completeness: - -- The **overall assets under management (AUM)** or total fund size is explicitly noted as missing; however, one source states managed assets of approximately $525 million across two funds, a detail absent here[3]. - -- The fund size itself is listed as ""Not Available,"" and no concrete numbers for the total capital raised are given, reducing the profile's completeness[3]. - -No significant factual inaccuracies or hallucinated information are present, but some variations in stage focus and fund size reporting suggest partial incompleteness rather than errors. - -Sources: - -- At One Ventures official about/investment thesis: https://www.atoneventures.com/about -- Team and portfolio: https://www.atoneventures.com/team and https://www.atoneventures.com/portfolio -- NVCA member spotlight: https://nvca.org/member-spotlight-at-one-ventures/ -- Venture Capital Archive: https://venturecapitalarchive.com/venture-funds/at-one-ventures-atoneventures-com -- OCTA SME Hub Investors profile: https://weareocta.com/sme-hub/investors/at-one-ventures" -"Atlantic Bridge ","http://www.abven.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Atlantic Bridge Growth Equity Technology Funds"",""fundSize"":""EUR 1000000000"",""fundSizeSourceUrl"":""https://www.abven.com/about-us/"",""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Growth Stage""],""sectorFocus"":[""Artificial Intelligence"",""Advanced Compute"",""Next-Generation Semiconductors"",""Digital Transformation"",""Cybersecurity"",""Climate and Sustainability""],""sourceUrl"":""https://www.abven.com/funds/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""University Bridge Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Technology""],""sourceUrl"":""https://www.abven.com/funds/""}],""headquarters"":""425 Tasso Street, Palo Alto, CA 94301, USA; 112 Jermyn Street, London SW1Y 6LS, UK; 22 Fitzwilliam Square South, D02 FH68, Dublin, Ireland; Prannerstraße 1, 80333 München, Germany; 64-66 rue des Archives, 75004 Paris, France"",""investmentThesisFocus"":[""Cross Border Value Add Bridge Model connecting key markets essential for global technology sector investments."",""Focus on entrepreneurs aiming to create world-class companies of scale."",""Emphasis on responsible investing and sustainability."",""Active portfolio management and global investment platform access."",""Support for female entrepreneurship through Investing in Women Code."",""Focus sectors include Cybersecurity, Digital Transformation, Enterprise Software, AI, Advanced Compute, VR/AR, Next-Gen Semiconductors, Advanced Manufacturing, HealthTech, Sustainability, and Climate."",""Helping portfolio companies grow internationally through teams and offices in Dublin, London, Munich, Paris, and Palo Alto.""],""investorDescription"":""Atlantic Bridge is a Global Growth Equity Technology Firm with over €1 billion of assets under management across eight Funds, investing in technology companies in Europe and the US. They operate a platform of cross-border technology Funds spanning key markets essential for their Cross Border Value add Bridge Model and investing in the global technology sector. Their mission includes responsible investing and sustainability as critical to the firm's success and future planet and society well-being. They invest in entrepreneurs aiming to create world-class companies of scale, focusing on sectors like Cybersecurity, Digital Transformation, Enterprise Software, AI, Advanced Compute, VR/AR, Next-Gen Semiconductors, Advanced Manufacturing, HealthTech, Sustainability, and Climate. They emphasize active portfolio management, global investment platform access, senior team development, and cross-border scaling and exits. They are also signatories of the Investing in Women Code, supporting female entrepreneurship in the UK by improving access to tools, resources, and finance."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2019"",""aumAmount"":""EUR 1000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.abven.com/about-us/""},""portfolioHighlights"":[""Equal1"",""SambaNova"",""Vectra"",""Navitas Semiconductor"",""Striim"",""Cambridge Mechatronics""],""researcherNotes"":""The website provides total AUM over €1 billion across eight funds but does not specify per-company estimated investment sizes or detailed fund sizes except for the total AUM. The date for the AUM figure is not provided."",""seniorLeadership"":[{""name"":""Gene Sheridan"",""sourceUrl"":""https://www.abven.com/about-us/"",""title"":""CEO of Navitas Semiconductor""},{""name"":""Brian Long"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.eu-startups.com/investor/atlantic-bridge-university-fund/"",""title"":""Co-founder and Managing Partner""}],""sources"":{""headquarters"":""https://www.abven.com/contact-us/"",""investmentThesisFocus"":""https://www.abven.com/"",""investorDescription"":""https://www.abven.com/about-us/"",""portfolioHighlights"":""https://www.abven.com/portfolio/""},""websiteURL"":""http://www.abven.com""}","Correctness: 95% Completeness: 85% - -The provided information about Atlantic Bridge is largely **factually correct**, as it matches authoritative sources, notably the firm's official website and investor profiles. Atlantic Bridge is indeed a **Global Growth Equity Technology Firm with over €1 billion of assets under management across eight Funds**, investing primarily in technology companies across **Europe and the US**. Their investment focus on sectors such as **Artificial Intelligence, Advanced Compute, Next-Generation Semiconductors, Digital Transformation, Cybersecurity, and Climate and Sustainability** is also confirmed[1][2][3][5]. - -The description of their proprietary **Bridge Model**, which supports scaling technology companies cross-border, aligns well with documented investor profiles and official statements emphasizing active portfolio management, cross-border value-add, and support for scaling and exits[1][2][3]. - -Their **headquarters and office locations** in Dublin, London, Munich, Paris, and Palo Alto are consistent with the contact information available on their website[1][4]. - -The funds detailed match public disclosures: the Atlantic Bridge Growth Equity Technology Funds and the University Bridge Fund, with noted focuses on **growth stage and early stage investments** respectively, and geographic focus on Europe and the US[3]. - -Notable gaps that reduce completeness: - -- **Estimated investment sizes** and **detailed fund sizes per individual fund** are not publicly available and not disclosed in the sources, consistent with the original notes. - -- The total AUM figure is cited as ""over €1 billion"" without a precise date; the user data notes the 2019 date absence, which is not contradicted but also not explicitly detailed in sources. - -- The **senior leadership details** partially align with the CEO of Navitas Semiconductor (Gene Sheridan) and managing partners like Brian Long, but are not comprehensively confirmed on the primary websites; some information comes from third-party sources. - -- The **investment thesis focus** is well covered but might underspecify some sectors like HealthTech or VR/AR, which are mentioned in user data but are less emphasized in search results. - -In summary, the data accurately summarizes Atlantic Bridge’s focus, locations, funds, and mission as described on official and investment platforms. The completeness is somewhat limited due to the inherent lack of disclosed fine-grained investment size data and some senior leadership details. - -Sources used: - -- Atlantic Bridge official site (https://www.abven.com/about-us/, https://www.abven.com/funds/, https://www.abven.com/contact-us/) - -- Vestbee investor profile (https://www.vestbee.com/vc-list/atlantic-bridge) - -- Raise Better investor profile (https://raisebetter.capital/investor-profile/10769) - -- Dealroom investor data (https://app.dealroom.co/investors/atlantic_bridge)" -"Aster ","https://asteraceleradora.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 25,000 initial; follow-on funding up to USD 50,000"",""fundName"":""Aster Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Local"",""National"",""Latin America""],""investmentStageFocus"":[""Pre-Seed""],""sectorFocus"":[""Mining Industry""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://asteraceleradora.com/programa/""}],""headquarters"":""Antofagasta, Chile"",""investmentThesisFocus"":[""Invests in technological startups (software and/or hardware) at a pre-seed stage focused on the mining industry or with products/services with commercialization potential in mining."",""Aims at improvements in productivity, safety, sustainability, or management in mining."",""Provides a unique, personalized acceleration program and seed capital funding plus follow-on funding."",""Supports startups with potential for internationalization and scalability.""],""investorDescription"":""Aster is the leading accelerator in Latin America for solutions in the mining industry, acting as a bridge connecting startups with a strategic ecosystem located in the mining hub of the Antofagasta region. Focused 100% on mining, it seeks innovative solutions to boost productivity, safety, sustainability, and management in the sector. To support disruptive innovations that address productivity, safety, and sustainability challenges in the evolving mining industry and integrate them into the mining production chain. Invests in innovative tech startups (software or hardware/software) with own development and TRL ≥5, seed-stage, with potential internationalization and scalability, focused on mining industry improvements."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 1,400,000"",""sourceUrl"":""https://asteraceleradora.com/""},""portfolioHighlights"":[""Acquora"",""TumiRobotics"",""Botiia"",""Remote Waters"",""X-Analytic"",""Simplee"",""Califix"",""Legav"",""SmartMining""],""researcherNotes"":""AUM is explicitly stated as USD 1,400,000 invested by Coppernico Fund. No explicit fund size available. Investment size numbers were found on the program page. No direct downloadable documents were found on the site."",""seniorLeadership"":[{""name"":""Macarena López"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://asteraceleradora.com/nosotros"",""title"":""Executive Director""},{""name"":""Pablo Pisani"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://asteraceleradora.com/nosotros"",""title"":""Director""},{""name"":""Cristóbal Marshall"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://asteraceleradora.com/nosotros"",""title"":""Director""},{""name"":""Iván Vera"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://asteraceleradora.com/nosotros"",""title"":""Director""},{""name"":""Gianni Romaní"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://asteraceleradora.com/nosotros"",""title"":""Director""}],""sources"":{""headquarters"":""https://asteraceleradora.com/"",""investmentThesisFocus"":""https://asteraceleradora.com/programa/"",""investorDescription"":""https://asteraceleradora.com/"",""portfolioHighlights"":""https://asteraceleradora.com/portafolio/""},""websiteURL"":""https://asteraceleradora.com/""}","Correctness: 95% Completeness: 90% - -The presented information about Aster Investment Strategy is largely factually accurate and consistent with external sources. Aster is indeed an accelerator based in Antofagasta, Chile, focused fully on the mining industry, and invests in pre-seed, tech startups (software/hardware) that have potential for productivity, safety, sustainability improvements, and international scalability in mining. The accelerator offers a personalized program plus seed capital funding with follow-on up to approximately USD 50,000, through the Coppernico fund, which is well documented[1]. The total portfolio valuation of Aster startups is quoted at around USD 61 million, and AUM around USD 1.4 million corresponds to funds invested by Coppernico[1]. The executive leadership named (Macarena López et al.) aligns with the accelerator’s official site. The portfolio highlights named startups also match those publicly listed. The geographic focus on Latin America and national/local emphasis in Chile is consistent with Aster’s positioning. - -The main incompleteness is that the formal fund size is “Not Available,” which matches the public absence of a stated fund size—only investments size per company and total AUM (USD 1.4M) are stated; this constrains completeness. Further details such as the precise total assets under management date, or the presence of downloadable official fund documents, are missing as noted. Also, while the information about investment thesis and operational focus is very thorough, some broader context about the accelerator’s role within Chile’s mining ecosystem and partnership with Escondida | BHP is from external sources and not fully integrated into the summary here[1]. The absence of confusion with unrelated “Aster Capital” (a European cleantech VC with distinct profile) is correct and relevant. - -Sources: - -- Aster accelerator’s official site and program info (https://asteraceleradora.com/) -- Article on Aster mining acceleration program and Coppernico fund details confirming USD 50,000 follow-on funding and portfolio valuation (https://www.latamrepublic.com/aster-opens-call-for-its-mining-startup-acceleration-program/) -- Information on AUM reported at USD 1.4 million (https://asteraceleradora.com/) - -The only minor deduction on correctness is due to the lack of explicit confirmation of fund size and some minor extrapolations about stage and tech readiness level (TRL ≥5) which are reasonable but could not be independently verified as explicit numeric thresholds in the sources. - -Thus, the data is highly factual and well supported, though naturally incomplete due to the unavailability of full fund documents or precise fund size disclosures." -"Backstage AB ","http://www.backstage.se ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Backstage Invest Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nordic"",""Sweden""],""investmentStageFocus"":[""Scale-up"",""Growth""],""sectorFocus"":[""Technology""],""sourceUrl"":""http://www.backstage.se""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""True Global Ventures (TGV)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Web3"",""AI"",""Technology""],""sourceUrl"":""https://tgv4plus.com""}],""headquarters"":""Visiting address: Norrlandsgatan 10, 1st Floor, SE-111 43 Stockholm, Sweden; Visiting address: Geijersgatan 1 B, 411 34 Gothenburg, Sweden"",""investmentThesisFocus"":[""Back proven entrepreneurs with traction and growing revenues."",""Prefer hands-on, active ownership."",""Follow the 'Seven Pillars of T': Team, Trust, Track Record, Traction, Timing, Tech, Trajectory."",""Provide capital and strategic support, including business development, strategy, financing, marketing, and international expansion."",""Focus on entrepreneurial scale-ups primarily in Sweden and the broader Nordic region."",""Not a traditional VC fund; co-invest alongside private investors and VC funds, seek viable exit paths and open to longer-term holdings.""],""investorDescription"":""Backstage Invest is a Swedish Single Family Office venture capital investor focusing on Nordic scale-up companies, investing their own capital since the 1980s. They back proven entrepreneurs with traction and growing revenues, preferring hands-on, active ownership. Their investment philosophy is based on the 'Seven Pillars of T': Team, Trust, Track Record, Traction, Timing, Tech, Trajectory, guiding their decisions. They offer capital and strategic support in business development, strategy, financing, marketing, and international expansion."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Animoca Brands"",""BCB Medical"",""Brink Commerce"",""DH Anticounterfeit"",""ETN Group"",""GP Bullhound Sidecar III"",""GP Bullhound Sidecar IV"",""GP Bullhound Sidecar V"",""GP Bullhound Sidecar VI"",""Greenely""],""researcherNotes"":""Overall Assets Under Management (AUM) and specific estimated investment sizes or fund sizes are not mentioned on the website or linked sources. Fund data is derived from the main website and the True Global Ventures site."",""seniorLeadership"":[{""name"":""Fredrik Tilander"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.backstage.se"",""title"":""Managing Director""},{""name"":""Jörgen Tilander"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.backstage.se"",""title"":""Chairman""}],""sources"":{""headquarters"":""http://www.backstage.se/#contact"",""investmentThesisFocus"":""http://www.backstage.se/#philosophy"",""investorDescription"":""http://www.backstage.se/#about"",""portfolioHighlights"":""http://www.backstage.se/#portfolio""},""websiteURL"":""http://www.backstage.se""}","Correctness: 95% Completeness: 85% - -The provided information about Backstage Invest is largely factually accurate and consistent with publicly available sources. Backstage Invest is indeed a Swedish Single Family Office venture capital investor, focused on Nordic scale-up companies with operations in Stockholm and Gothenburg[2][1]. They invest primarily in growth-stage technology companies, backing proven entrepreneurs with traction and growing revenues. Their investment philosophy based on the ""Seven Pillars of T"" (Team, Trust, Track Record, Traction, Timing, Tech, Trajectory) and emphasis on hands-on, active ownership aligns with details on their official website[2]. Portfolio highlights such as Greenely and DH Anticounterfeit match information found on Nordic9 and the Backstage site[1][2]. Senior leadership including Fredrik Tilander (Managing Director) and Jörgen Tilander (Chairman) is confirmed on their website[2]. - -The noted lack of publicly available overall Assets Under Management (AUM), estimated investment size, or fund size is consistent with the absence of such figures on their website and related platforms, which led to the lower completeness score[2][1]. Some source discrepancies exist around exact investment check sizes and stages—e.g., one source cites earlier stages like seed or pre-seed, but Backstage states a preference for scale-up/growth stages[3][2]. The inclusion of True Global Ventures (TGV) as a fund tied to this entity is not fully supported by available Backstage Invest documentation; TGV appears to be a separate global early-stage investment fund with Web3 and AI focus, which slightly reduces correctness on that point[2][source not found within the excerpts]. However, this does not contradict the core information about Backstage Invest itself. - -URLs used: -- Backstage Invest official site: https://www.backstage.se -- Nordic9 profile: https://nordic9.com/companies/backstage-invest-ab-investor9365513809/ -- Seedtable Gothenburg investors: https://www.seedtable.com/investors-gothenburg -- EasyVC Sweden 2025 investors report: https://easyvc.ai/blog/active-investors-sweden-2025/" -"Astellas Venture Management ","http://www.astellasventure.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Astellas Venture Management Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Preclinical"",""Early Stage""],""sectorFocus"":[""Biotechnology"",""Therapeutics"",""Platform Technologies""],""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.astellasventure.com""}],""headquarters"":""480 Forbes Blvd, South San Francisco, CA 94080"",""investmentThesisFocus"":[""Supports pre-clinical, cutting-edge science that can bring value to patients"",""Equity investments to private, early-stage biotechnology companies"",""Focus on therapeutics programs and platform technologies for drug discovery and development"",""Invests in innovative therapeutic approaches aligned with Astellas Pharma's R&D strategy"",""Prioritizes companies with programs and technologies to fulfill unmet medical needs"",""Offers pharma expertise and facilitates collaboration between portfolio companies and Astellas Pharma""],""investorDescription"":""AVM (Astellas Venture Management) is the wholly-owned venture capital organization within Astellas, dedicated to supporting pre-clinical, cutting-edge science that can bring value to patients. AVM provides equity investments to private, early-stage biotechnology companies focused on therapeutics programs and platform technologies for drug discovery and development, with program stages in preclinical. They invest in innovative therapeutic approaches closely aligned with Astellas Pharma's R&D strategy and prioritize companies with programs and technologies to fulfill unmet medical needs. AVM offers pharma expertise and facilitates dialogue between portfolio companies and Astellas Pharma for future collaboration."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Avilar Therapeutics, Inc"",""Casma Therapeutics, Inc"",""Carbon Biosciences"",""Catamaran Bio, Inc"",""DEM BioPharma, Inc"",""Mogrify Limited"",""NeoPhore Limited"",""Orna Therapeutics Holdings, LLC"",""Pallando Therapeutics Inc."",""PhoreMost Limited""],""researcherNotes"":""No explicit information about fund sizes or overall Assets Under Management (AUM) could be found on the website. The investment size per company is also not specified."",""seniorLeadership"":[{""name"":""Satoshi Konagai, MBA"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.astellasventure.com/team"",""title"":""Investment Lead""},{""name"":""Tadayoshi Hirata"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.astellasventure.com/team"",""title"":""Investment Lead""},{""name"":""Nagisa Sakurai, Ph.D., MBA"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.astellasventure.com/team"",""title"":""Investment Lead""},{""name"":""Shinichi Miyake, Ph.D., MBA"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.astellasventure.com/team"",""title"":""Investment Lead""},{""name"":""Amy Skarr"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.astellasventure.com/team"",""title"":""President""}],""sources"":{""headquarters"":""https://www.astellasventure.com/contact"",""investmentThesisFocus"":""http://www.astellasventure.com"",""investorDescription"":""http://www.astellasventure.com"",""portfolioHighlights"":""http://www.astellasventure.com/portfolio""},""websiteURL"":""http://www.astellasventure.com""}","Correctness: 95% Completeness: 80% - -The provided information about Astellas Venture Management (AVM) is largely factually accurate and aligns well with multiple reliable sources. The investment thesis is consistent with AVM's focus on early-stage biotechnology companies developing therapeutics and platform technologies aligned with Astellas Pharma’s R&D strategy, prioritizing unmet medical needs, and supporting preclinical to early-stage programs[1][4]. The description of AVM as a wholly owned corporate venture capital arm of Astellas Pharma dedicated to equity investments in private, early-stage biotechs is correct[1][3][4]. The noted senior leadership names and titles also match the official company team page[4]. - -However, key financial details such as the overall Assets Under Management (AUM), precise fund size, and estimated individual investment size are indeed missing or marked ""Not Available"" in the source data and the company’s public information. Publicly, initial investments are noted elsewhere to typically range approximately $0.5 to $2 million but there is no disclosed aggregate fund size or AUM on the website or other sources[3]. This gap lowers completeness. Geographic focus details are also sparse; available sources mention Asia-Pacific and Brazil among regions of interest but the original data has ""Not Available"" for geographic focus[1]. The San Francisco headquarters address (480 Forbes Blvd) is correct according to the company website[4]. - -The portfolio highlights and emphasis on pharma expertise and facilitating portfolio collaboration are confirmed on the official website, though a comprehensive, updated portfolio listing may not be fully public[4]. Overall, the dataset is accurate but incomplete regarding financial specifics and some investment scope details. - -Sources: -- Astellas Venture Management official site: https://www.astellasventure.com -- Venture Capital Archive: https://venturecapitalarchive.com/venture-funds/astellas-venture-management-astellasventure-com -- AUM 13F database: https://aum13f.com/firm/astellas-venture-management-llc -- Mass Investor Database: https://massinvestordatabase.com/Astellas+Venture+Management/investmentfirm.php" -"BACKED VC ","http://backed.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000 - 2,500,000"",""fundName"":""BACKED VC Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""US"",""Other""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Early Series A""],""sectorFocus"":[""BioTech"",""Financial Services"",""Blockchain"",""Advanced Manufacturing""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://backed.vc/faqs/""}],""headquarters"":""6 Cavendish Square London W1G 0PD, UK"",""investmentThesisFocus"":[""We back founders over markets, focusing on bold entrepreneurs in diverse sectors like Cellular Agriculture and Popular Entertainment."",""We believe a company's most important asset is its people and culture, emphasizing founder leadership development."",""Provide a proprietary Founder Development Platform with masterclasses and tools to help founders grow as leaders."",""Founder-centric, empathetic relationships with extensive post-investment support."",""Build a supportive community of operators, innovators, tech optimists, investors, and pirates within the portfolio.""],""investorDescription"":""BACKED is a European venture fund emphasizing investing in founders rather than just ideas, focusing on supporting their personal and leadership development from Seed to Series A stages. Their investment thesis centers on backing talented founders with a human-centric approach, providing a proprietary Founder Development Platform with masterclasses and tools to help founders grow as effective leaders. The fund prioritizes a founder-centric, empathetic relationship, offering extensive post-investment support and building a strong intra-portfolio community. We back founders over markets; we follow bold entrepreneurs across various frontiers including Cellular Agriculture and next-gen Popular Entertainment. We believe that a company's most important asset is its people and culture, focusing on helping founders scale as leaders. Our portfolio is a community of operators, innovators, tech optimists, investors, and pirates that support each other from the moment of partnership."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Hutch (acquired)"",""Thought Machine"",""Amenitiz"",""LabGenius"",""THIS"",""Enterprise Alumni""],""researcherNotes"":""No explicit AUM or fund size found; the firm presents as a single seed-focused investment strategy with estimated investment size ranges. Portfolio company names are not explicitly listed on the website."",""seniorLeadership"":[{""name"":""Andre de Haes"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://backed.vc/our-people/?_team=core-team"",""title"":""Founder""},{""name"":""Alex Brunicki"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://backed.vc/our-people/?_team=core-team"",""title"":""Co-Founder""}],""sources"":{""headquarters"":""https://backed.vc/fca-regulations/"",""investmentThesisFocus"":""https://backed.vc/our-ethos/"",""investorDescription"":""https://backed.vc/our-ethos/"",""portfolioHighlights"":""https://backed.vc/our-investments/""},""websiteURL"":""http://backed.vc/""}","Correctness: 95% Completeness: 85% - -The information provided about BACKED VC is largely factually correct based on multiple sources. The headquarters address given as ""6 Cavendish Square London W1G 0PD, UK"" matches the registered office address listed on official UK company filings for BACKED LLP[3][5]. The leadership names and titles—Andre de Haes (Founder) and Alex Brunicki (Co-Founder)—align with the team details from Backed’s own website and profiles[1]. - -BACKED VC indeed positions itself as a European seed-stage venture fund emphasizing investment in founders rather than just ideas, with an investment thesis around founder development and backing ambitious entrepreneurs in diverse sectors[1][5]. Their focus on Seed to Early Series A stages and a proprietary Founder Development Platform corresponds with the described investment thesis and approach on their official site[5]. - -Regarding the investment scope and size: the stated estimated investment size range of EUR 250,000 to 2,500,000 fits the typical seed to early-stage rounds BACKED targets, although exact fund size or total assets under management are not publicly specified and remain ""Not Available"" in the data[1]. Portfolio highlights such as Hutch (acquired), Thought Machine, Amenitiz, LabGenius, THIS, and Enterprise Alumni appear as mentioned on the BACKED portfolio page, although explicit listings of portfolio companies on the website are minimal, this matches the researcher notes[1]. - -There is a small discrepancy in the registered address data: some sources mention ""68-80 Hanbury St, London E1 5JL""[4], while other official filings note ""6 Cavendish Square, London W1G 0PD""[3][5]. The Cavendish Square location is confirmed by official UK Companies House records and BACKED’s own privacy policy page, indicating it is the formal registered office[3][5]. The Hanbury Street address might represent another office location or mailing address but is less formally cited. - -The completeness score is slightly reduced because: - -- No explicit data on overall fund size or assets under management is publicly available, which is common but notable. - -- Some minor differing location details (Hanbury St vs. Cavendish Square) could cause confusion without clarification. - -- Specific details on the portfolio companies and exact sectors are summarized but could be more exhaustive. - -Sources used: -- BACKED LLP official registration: https://find-and-update.company-information.service.gov.uk/company/OC396809 -- BACKED VC official ethos and investment information: https://backed.vc/our-ethos/ -- BACKED VC portfolio and investments: https://backed.vc/our-investments/ -- BACKED VC privacy policy confirming registered office: https://www.backed.vc/privacy-policy/ -- Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/backed-vc.html -- ZoomInfo business overview: https://www.zoominfo.com/c/backed-llp/430552589" -"Athletico Ventures ","https://www.athletico.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Athletico Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Consumer"",""Sports"",""Media""],""sourceProvider"":""EU-Startups"",""sourceUrl"":null}],""headquarters"":""London, United Kingdom"",""investmentThesisFocus"":[""Strategic investments in consumer, sports and media sectors"",""Facilitating investments by elite athletes into promising startups"",""Driving innovation and growth by leveraging athlete influence and networks""],""investorDescription"":""Athletico Ventures helps elite athletes invest in the most promising start-ups, alongside top tier investors."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Jump"",""Gladia"",""Scoreplay"",""Life5"",""WETHENEWS"",""Omada"",""Stealthe"",""Samara"",""Syntetica"",""Stealth""],""researcherNotes"":""No specific information on investment stages, geographic focus, estimated investment size, fund sizes, or AUM could be found on external sources."",""seniorLeadership"":[{""name"":""ARTHUR BERNARD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.athletico.vc/team"",""title"":""Founder and General Partner""},{""name"":""Gawain Davies"",""sourceProvider"":""Private Equity International"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://kenya.dealroom.co/investors/athletico_ventures?viewAllLps=true"",""investmentThesisFocus"":""https://www.eu-startups.com/investor/athletico-ventures/"",""investorDescription"":""https://www.athletico.vc/"",""portfolioHighlights"":""https://www.athletico.vc/portfolio""},""websiteURL"":""https://www.athletico.vc/""}","Correctness: 95% Completeness: 75% - -The provided information about Athletico Ventures is largely factually correct. Athletico Ventures is indeed a London-based venture capital firm focusing on strategic investments in the consumer, sports, and media sectors, and it helps elite athletes invest in startups alongside top-tier investors[1][2][4]. The leadership details (Arthur Bernard as Founder & General Partner and Gawain Davies as Venture Partner) are confirmed by reliable sources[4]. Their portfolio highlights such as ScorePlay align with known investments under ""Athletico Ventures Collective #1""[1][2]. The emphasis on leveraging athlete influence and networks to drive venture growth is consistent with their described investment thesis[1]. - -However, some data points remain incomplete or unavailable publicly, which justifies a lower completeness score. Specifically: - -- No verified overall Assets Under Management (AUM) figure is available. Some sources imply the Collective has $3–10 million fund sizes, but no consolidated AUM is confirmed[2]. -- There is no detailed disclosure of estimated investment sizes, geographic focus beyond Europe (implied but not explicit), or exact investment stages, though late seed to Series B is noted in some profiles[2][4]. -- The document lacks URLs for some fund size sources and geographic specifics, which reduces completeness. -- The portfolio list is partly matched with public references (ScorePlay) but includes names (e.g., Jump, Gladia, WETHENEWS) that are not explicitly confirmed by the sources consulted. - -No fabricated or inaccurate claims appear, but the missing key data about fund sizes and AUM prevent full completeness. While the researcher's notes about missing data are accurate, adding publicly known insights (like the Collective's fund size estimates) would improve completeness. - -Sources used: -[1] sportsbusinessjournal.com (https://www.sportsbusinessjournal.com/Articles/2023/09/28/athletico-ventures-collective/) -[2] privateequitylist.com (https://privateequitylist.com/investors/athletico-ventures) -[4] privateequityinternational.com (https://www.privateequityinternational.com/institution-profiles/athletico-ventures.html)" -"Bahrain Mumtalakat Holding ","http://www.bmhc.bh/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 5 million to 20 million"",""fundName"":""Bahrain Mumtalakat Holding Investment Strategy"",""fundSize"":""USD 500 million"",""fundSizeSourceUrl"":""https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-Annual_Report-2019.pdf"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Majority stakes"",""Minority stakes""],""sectorFocus"":[""Education"",""Aviation"",""Healthcare"",""Consumer and Financial Services"",""Industrial Manufacturing"",""Real Estate"",""Tourism"",""Logistics""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.mumtalakat.bh/what-we-do/investment-approach""}],""headquarters"":""Kingdom of Bahrain"",""investmentThesisFocus"":[""Long-term investment horizon beyond economic cycles"",""Active collaborative management with portfolio companies"",""Focus on absolute financial return targets with clear hurdle rates"",""Commitment to local impact investments for Bahrain's strategic industries"",""Structuring the portfolio into Strategic Investments, Local Impact Investments, and Government Holdings"",""Strategic Investments involve active management and value-enhancing initiatives to enable sustainable growth and generate superior financial returns"",""Local Impact Investments aim to transform industries in Bahrain by applying international best management practices"",""Government Holdings include government-run assets operated in collaboration with relevant government bodies""],""investorDescription"":""Mumtalakat is the sovereign wealth fund of the Kingdom of Bahrain, established by Royal Decree in 2006 and wholly owned by the Government of the Kingdom of Bahrain. It is a long-term investor focused on growth and development of its assets through collaborative active management and a balanced investment approach. Its portfolio consists of a dynamic, balanced range of investments across different asset classes, businesses, sectors, and geographies. The company is headquartered in Bahrain. Governance is overseen by a Board comprising public and private sector representatives appointed by the Government of Bahrain, and the Senior Management team are experts actively engaging with partners."",""linkedDocuments"":[""https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-AnnualReports2022-FV_2023-06-26-082119_lgex.pdf"",""https://d22x99z9pyemfq.cloudfront.net/mumtalakat-annual_report-2021.pdf"",""https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-2020_AnnualReport_2022-05-13-152000_ixaa.pdf"",""https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-Annual_Report-2019.pdf"",""https://d22x99z9pyemfq.cloudfront.net/mumtalakat-annual_report-2018.pdf"",""https://d22x99z9pyemfq.cloudfront.net/mumtalakat-annual_report-2017.pdf"",""https://d22x99z9pyemfq.cloudfront.net/mumtalakat-annual_report-2016.pdf"",""https://d22x99z9pyemfq.cloudfront.net/mumtalakat-annual_report-2015.pdf"",""https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-Annual_Report-2014.pdf"",""https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-Annual_Report-2013.pdf""],""missingImportantFields"":[""fundSize"",""sectorFocus"",""investmentStageFocus""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 17.6 billion"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://en.wikipedia.org/wiki/Mumtalakat_Holding_Company""},""portfolioHighlights"":[""Aleastur Group"",""Aluminium Bahrain (ALBA)"",""Bahrain Real Estate Investment Company (Edamah)"",""Bahrain Telecommunications Company (Beyon)"",""Envirogen Group"",""FAI Aviation Group"",""Gulf Cryo"",""Gulf Hotels Group"",""McLaren Group"",""National Bank of Bahrain (NBB)""],""researcherNotes"":""The 2019 annual report provides explicit figures for firm-level AUM, fund size, and investment size ticket. More recent reports did not yield relevant data for these financial metrics."",""seniorLeadership"":[{""name"":""HE Shaikh Salman bin Khalifa Al Khalifa"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/our-board"",""title"":""Minister of Finance and National Economy and Chairman of the Board of Directors""},{""name"":""HE Hamad bin Faisal Al Malki"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/our-board"",""title"":""Minister of Cabinet Affairs""},{""name"":""HE Noor bint Ali Al Khulaif"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/our-board"",""title"":""Minister of Sustainable Development and Chief Executive of the Bahrain Economic Development Board (EDB)""},{""name"":""HE Abdulla bin Adel Fakhro"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/our-board"",""title"":""Minister of Industry and Commerce""},{""name"":""HE Shaikh Mohamed bin Isa Al Khalifa"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/our-board"",""title"":""Political and Economic Advisor to HRH the Crown Prince’s Court""},{""name"":""HE Shaikh Abdulla bin Khalifa Al Khalifa"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/our-board"",""title"":""Chief Executive Officer, Mumtalakat""},{""name"":""HE Khalid Al Rumaihi"",""sourceUrl"":null,""title"":""Executive Chairman of Amriya Group""},{""name"":""Dr. Samer Aljishi"",""sourceUrl"":null,""title"":""President of BFG International""},{""name"":""Elham Hasan"",""sourceUrl"":null,""title"":""Business Strategy Advisor""},{""name"":""Omar Syed"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Chief Investment Officer - Strategic Investments""},{""name"":""Khalid Hussain Taqi"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Managing Director - Local Impact Investments""},{""name"":""Suha Karzoon"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Managing Director - Finance & Technology""},{""name"":""Isa Hasan Maseeh"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Managing Director - Risk & Portfolio Construction""},{""name"":""Rasha Sabkar"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Managing Director - Legal, Compliance & Sustainability""},{""name"":""Marwa Al Saad"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Managing Director - Human Capital""},{""name"":""Ahmad Mazhar"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Executive Director - Strategic Investments""},{""name"":""Husain AlQaseer"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Executive Director - Local Impact Investments""},{""name"":""Noor Sharafi"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""General Counsel""},{""name"":""Hesham Khonji"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Senior Director - Risk & Portfolio Construction""},{""name"":""Varghese Mathew"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Senior Director - Finance""},{""name"":""Aisha Albalushi"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Senior Director - Corporate Strategy & Planning""},{""name"":""Hussain Alsabea"",""sourceUrl"":""https://www.mumtalakat.bh/who-we-are/senior-management"",""title"":""Senior Director - Information Technology""},{""name"":""Fahad Almudhahka"",""sourceUrl"":null,""title"":""Director - Government & Parliamentary Affairs""}],""sources"":{""headquarters"":""https://mumtalakat.bh/who-we-are"",""investmentThesisFocus"":""https://mumtalakat.bh/what-we-do/investment-approach"",""investorDescription"":""https://mumtalakat.bh/who-we-are"",""portfolioHighlights"":""https://mumtalakat.bh/what-we-do/our-portfolio""},""websiteURL"":""http://www.bmhc.bh/""}","Correctness: 98% Completeness: 95% - -The provided information about Bahrain Mumtalakat Holding Company is highly accurate based on multiple authoritative sources. Mumtalakat is correctly identified as the sovereign wealth fund of the Kingdom of Bahrain, established by Royal Decree in 2006 and wholly government-owned[2][5]. The stated assets under management of approximately USD 17.6 billion as of 2024 aligns well with the Sovereign Wealth Fund Institute figures[2] and the latest reports confirm a portfolio including major companies like Aluminium Bahrain, Bahrain Telecommunications, McLaren Group, National Bank of Bahrain, and others[2][5]. - -The key investment sectors (education, aviation, healthcare, consumer and financial services, industrial manufacturing, real estate, tourism, logistics) and investment stage focus on majority and minority stakes are consistent with both the official Mumtalakat website and public reports[2][5]. The investment thesis emphasizing long-term horizons, active collaborative management, focus on absolute financial returns, local impact investments, and strategic portfolio structuring (Strategic Investments, Local Impact Investments, Government Holdings) is explicitly detailed on Mumtalakat’s official site[5]. - -Senior leadership names and roles provided largely match those listed on Mumtalakat’s official website[5]. Recent news confirms strategic moves like taking stakes in emerging platforms such as BlueFive Capital[3][4], reflecting the fund’s evolving global investment strategy. - -The only minor gaps relate to the latest exact figures for ""fund size"" and individual funds within Mumtalakat, where more recent annual reports after 2019 do not detail the USD 500 million fund size or specific ticket sizes mentioned in the original text; however, this is transparently noted in the researcher’s notes and does not constitute factual error but rather a lack of latest granular data[2][5]. - -URLs used: - -- https://d22x99z9pyemfq.cloudfront.net/Mumtalakat-Annual_Report-2019.pdf (original fund size info) -- https://mumtalakat.bh/who-we-are -- https://mumtalakat.bh/what-we-do/investment-approach -- https://en.wikipedia.org/wiki/Mumtalakat_Holding_Company -- https://www.mumtalakat.bh -- https://www.agbi.com/banking-finance/2025/05/bahrain-mumtalakat-reports-biggest-profit-in-its-history/ -- https://www.businesswire.com/news/home/20250804846829/en/BlueFive-Capital-Announces-Mumtalakats-Acquisition-of-a-Stake-in-the-Global-Investment-Platform -- https://www.alternativeswatch.com/2025/08/04/sovereign-wealth-fund-mumtalakat-takes-stake-in-private-markets-firm-bluefive/" -"Atlantic Labs ","http://www.atlanticlabs.de ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Atlantic Labs V GmbH & Co. KG"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""pre-seed"",""seed"",""start-up""],""sectorFocus"":[""digital health"",""future of work"",""AI & data"",""industrial automation"",""mobility"",""fintech"",""proptech"",""community"",""consumer"",""B2B software""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://atlanticlabs.de/sfdr""}],""headquarters"":""Rosenthaler Str. 13, 10119 Berlin, Germany"",""investmentThesisFocus"":[""Invest in early-stage companies including pre-seed, seed, and start-up stages."",""Focus sectors: climate tech, future of work, AI & data, industrial automation, mobility & logistics, fintech, proptech, community, consumer and B2B software."",""Avoid investments in illegal activities, tobacco, alcohol, weapons, casinos, certain electronic data programs, fossil fuels, and high CO2-emitting industries unless meeting sustainability criteria."",""Governance evaluation through management structure, employee relations, remuneration, and tax compliance."",""Ongoing monitoring of ESG characteristics pre- and post-investment.""],""investorDescription"":""Atlantic Labs supports and invests in mission-driven founders working on transformative technology ventures. We partner with founders early, providing the resources and network necessary to grow. The purpose of the Fund is to build, hold and manage a portfolio of equity and equity-related investments in innovative technology sectors including digital health, AI & data, industrial automation, and fintech."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""No explicit data on AUM, estimated investment size, fund size, portfolio companies, or senior leadership found on the website despite checking key pages including SFDR disclosures. The fund name was found from the SFDR page."",""seniorLeadership"":[{""name"":""Martin Weber"",""sourceProvider"":""Perplexity"",""title"":""Founder & Managing Partner""},{""name"":""Celina Munsch"",""sourceProvider"":""Perplexity"",""title"":""Partner""},{""name"":""Daniel Mason"",""sourceProvider"":""Perplexity"",""title"":""Partner""}],""sources"":{""headquarters"":""https://atlanticlabs.de/impressum/"",""investmentThesisFocus"":""https://atlanticlabs.de/sfdr"",""investorDescription"":""https://atlanticlabs.de/"",""portfolioHighlights"":""https://atlanticlabs.de/""},""websiteURL"":""http://www.atlanticlabs.de""}","Correctness: 98% Completeness: 80% - -The provided information about Atlantic Labs V GmbH & Co. KG is largely factually accurate based on multiple reputable sources. The fund is headquartered at Rosenthaler Str. 13, 10119 Berlin, Germany[3], and focuses on investing in early-stage companies at the pre-seed, seed, and start-up stages[4][5]. Its sector focus includes digital health, climate tech, AI & data, industrial automation, mobility & logistics, fintech, proptech, consumer, community, and B2B software[4][5]. The investment thesis described—supporting mission-driven founders, excluding investments in illegal activities, fossil fuels, and other non-sustainable sectors—is consistent with statements on their website and SFDR disclosures[5][source JSON]. - -Senior leadership names—Martin Weber (Founder & Managing Partner), Celina Munsch (Partner), and Daniel Mason (Partner)—are corroborated by internal sources but not explicitly confirmed by external links; however, this aligns with known firm management structures. The fund’s focus on governance, ESG monitoring, and ongoing evaluation is reflected in SFDR disclosures on their site but details on overall assets under management (AUM), estimated investment size, fund size, and portfolio highlights are missing both from the provided data and publicly available resources[5][3]. This lack reduces completeness. - -Sources such as Dealroom, EU-Startups, VC Mapping, and Atlantic Labs’ own website confirm virtually all stated sector and stage focuses and office location details, though quantitative financial data about fund size and portfolio remain unavailable in public disclosures[1][2][4][5]. The EDGAR/CIK data for Atlantic Labs V GmbH & Co. KG confirms a fund exists with sale data, but does not clarify AUM[3]. - -Therefore, correctness is high (98%) as no false or fabricated facts were identified. Completeness is moderate (80%) because significant financial and portfolio details important for a full understanding of the fund’s scale and performance are missing, despite a thorough search of public sources and official disclosures. - -URLs used: - -- https://atlanticlabs.de - -- https://atlanticlabs.de/sfdr - -- https://atlanticlabs.de/impressum/ - -- https://app.dealroom.co/investors/atlantic_labs - -- https://www.eu-startups.com/investor/atlantic-labs/ - -- https://vc-mapping.gilion.com/vc-firms/atlantic-labs - -- https://aum13f.com/fund/atlantic-labs-v-gmbh-co-kg" -"Atlante Seeds ","http://www.imiinvestimenti.it/fondi-chiusi-en/fondo-atlante-seed.htm ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Atlante Seeds Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Italy""],""investmentStageFocus"":[""Seed"",""Early stage""],""sectorFocus"":[""High technology"",""Innovative technology companies""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.imiinvestimenti.it/fondi-chiusi-en/fondo-atlante-seed.htm""}],""headquarters"":""Milan, Italy"",""investmentThesisFocus"":[""High technology industry"",""Innovative early-stage companies"",""Investments in business incubators and accelerators""],""investorDescription"":""Atlante Seed is an Intesa Sanpaolo Group's Fund dedicated to seed and early stage capital, investing in innovative companies still small but with high growth potential, particularly focusing on the high technology industry. The Fund also invests in selected business incubators or accelerators specialized in specific sectors (indirect investments)."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The website and its subpages lack detailed information about Atlante Seeds, including its fund size, AUM, full portfolio, and broader leadership details. Senior leadership details sourced from external web information. No downloadable documents found."",""seniorLeadership"":[{""name"":""Dr. Alvise Bonivento"",""sourceProvider"":""Perplexity"",""title"":""Fund Manager""}],""sources"":{""geographicFocus"":""Inferred from lack of international focus, Italian headquartered fund"",""headquarters"":""https://www.htgf.de/en/wise-s-r-l-raises-e-1-m-in-equity-financing-to-develop-next-generation-neurostimulation-devices/"",""investmentStageFocus"":""https://www.htgf.de/en/wise-s-r-l-raises-e-1-m-in-equity-financing-to-develop-next-generation-neurostimulation-devices/"",""investmentThesisFocus"":""https://www.htgf.de/en/wise-s-r-l-raises-e-1-m-in-equity-financing-to-develop-next-generation-neurostimulation-devices/"",""investorDescription"":""https://www.htgf.de/en/wise-s-r-l-raises-e-1-m-in-equity-financing-to-develop-next-generation-neurostimulation-devices/"",""sectorFocus"":""https://www.htgf.de/en/wise-s-r-l-raises-e-1-m-in-equity-financing-to-develop-next-generation-neurostimulation-devices/"",""seniorLeadership"":""https://www.htgf.de/en/wise-s-r-l-raises-e-1-m-in-equity-financing-to-develop-next-generation-neurostimulation-devices/""},""websiteURL"":""http://www.imiinvestimenti.it/fondi-chiusi-en/fondo-atlante-seed.htm""}","Correctness: 98% Completeness: 70% - -The provided information about Atlante Seeds Investment Strategy is largely factually accurate. It correctly identifies Atlante Seed as a fund within the Intesa Sanpaolo Group based in Milan, Italy, focusing on seed and early-stage investments in innovative, high technology companies and investing indirectly through incubators or accelerators. This is supported by the 2013 press release confirming Atlante Seed’s role as an Intesa Sanpaolo Group Fund dedicated to seed and early-stage capital and its partnership with Digital Magics, a certified innovative start-up incubator in Italy[1]. The identification of Dr. Alvise Bonivento as Fund Manager is consistent with external sources. The geographic and sector focus (Italy and high technology) matches what can be reasonably inferred. - -However, the completeness is limited by the absence of critical quantitative data such as fund size, overall assets under management (AUM), estimated investment size, and portfolio highlights, all of which are not publicly disclosed or missing from the official website and related communications, as noted in the researcher’s comments. No downloadable fund documents or detailed leadership beyond the Fund Manager appear available, which restricts a thorough understanding of the fund’s scale and performance[1][2]. Consequently, while the high-level description is accurate, the lack of deeper financial and portfolio data lowers completeness significantly. - -There is no confusion with similarly named entities—for example, ""Atlanta Seed Company"" based in the U.S. Southeast is unrelated and not relevant here[3][4]. - -Sources: -[1] Intesa Sanpaolo Group press release, 2013 - http://www.imiinvestimenti.it/fondi-chiusi-en/fondo-atlante-seed.htm and related official texts -[2] Dealroom.co profile for Atlante Seeds - https://app.dealroom.co/investors/atlante_seeds -[3] Atlanta Seed Company (unrelated U.S. fund) - https://www.atlantaseedcompany.com -[4] Additional web pages related to Atlanta Seed Company (unrelated)" -"ATEM Capital Fund LP ","http://www.atemcap.com ","""""", -"atai Life Sciences ","http://atai.life ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""atai Life Sciences Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Clinical Stage"",""Growth Stage""],""sectorFocus"":[""Biopharmaceuticals"",""Mental Health Treatments"",""Psychedelic Therapies""],""sourceUrl"":null}],""headquarters"":""Prof. J.H. Bavincklaan 7, 1183 AT Amstelveen, The Netherlands"",""investmentThesisFocus"":[""Focus on rapid-acting, robust, and durable mental health treatments."",""Develop transformative psychedelic product candidates."",""Employ a buy-and-build strategy, identifying and acquiring controlling stakes in promising companies.""],""investorDescription"":""atai Life Sciences is a biopharmaceutical company developing new mental health treatments focused on rapid-acting, robust, and durable treatments for large-scale patient impact."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Beckley Psytech""],""researcherNotes"":""AUM and specific fund size or estimated investment size data are not available on the website or linked investor resources."",""seniorLeadership"":[{""name"":""Srinivas Rao, M.D., Ph.D."",""sourceUrl"":""https://atai.com/about/leadership-team"",""title"":""Co-founder and Chief Executive Officer""},{""name"":""Anne Johnson"",""sourceUrl"":""https://atai.com/about/leadership-team"",""title"":""Chief Financial Officer""},{""name"":""Kevin Craig, M.D."",""sourceUrl"":""https://atai.com/about/leadership-team"",""title"":""Chief Medical Officer""},{""name"":""Glenn Short, Ph.D."",""sourceUrl"":""https://atai.com/about/leadership-team"",""title"":""Chief Scientific Officer""},{""name"":""Gerd Kochendoerfer, Ph.D."",""sourceUrl"":""https://atai.com/about/leadership-team"",""title"":""Chief Operating Officer""},{""name"":""Ryan Barrett"",""sourceUrl"":""https://atai.com/about/leadership-team"",""title"":""General Counsel""}],""sourceProvider"":""Perplexity"",""sources"":{""headquarters"":""http://atai.life/contact"",""investmentThesisFocus"":""http://atai.life"",""investorDescription"":""https://atai.com/about"",""portfolioHighlights"":""https://ir.atai.com/investor-relations""},""websiteURL"":""http://atai.life""}","Correctness: 98% Completeness: 85% - -The information provided is largely factually accurate. The headquarters address ""Prof. J.H. Bavincklaan 7, 1183 AT Amstelveen, The Netherlands"" is confirmed by atai Life Sciences’ official contact page[1][4]. The description of atai Life Sciences as a biopharmaceutical company focused on rapid-acting, robust, and durable mental health treatments, including psychedelic therapies, matches the general company profile found in official sources and public filings[3]. The listed senior leadership names and titles correspond to those on the official leadership page of atai’s website, particularly including Srinivas Rao as CEO and Ryan Barrett as General Counsel[1]. - -The investment thesis description focusing on transformative psychedelics, buy-and-build strategies, and mental health is consistent with atai’s public investor relations messaging[3]. The portfolio highlight mentioning Beckley Psytech is valid, as atai has investments in psychedelic-focused companies, including Beckley Psytech[3]. - -However, the completeness score is lowered because specific data fields such as ""overall assets under management,"" ""fund size,"" and ""estimated investment size"" are noted as unavailable and remain unverified, aligning with researcher notes and the absence of such figures on the official site or investor documents[1][3]. Also, no specific URLs were provided for the source of all data points, and some details such as geographic focus and detailed fund stage focus do not appear explicitly documented in the sources reviewed. - -Overall, the core factual content is supported by multiple reliable sources, but significant quantitative fund information is missing publicly, reducing completeness. - -Sources: -https://atai.com/contact-us/ -https://atai.com/privacy-policy/ -https://www.zoominfo.com/c/atai-life-sciences-nv/399367079 -https://www.creditsafe.com/business-index/en-gb/company/atai-life-sciences-nv-nl05536468" -"astorya.vc ","http://www.astorya.vc ","{""funds"":[{""estimatedInvestmentSize"":""USD 2.1M"",""fundName"":""Astorya.vc Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Insurtech"",""Fintech"",""Digital health"",""Mobility"",""Smart houses"",""Cybersecurity""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://tracxn.com/d/venture-capital/astorya.vc/__-PpioHTj4iGatyUlEEGtjMxkYh3uKvMt_ssmZydF7YE""}],""headquarters"":""Rue de Washington, 75008 Paris, France"",""investmentThesisFocus"":[""Focus on seed-stage and early-stage companies in insurtech, fintech, digital health, mobility, smart houses, and cybersecurity sectors."",""Targeting European startups, leveraging expertise from previous AXA & Allianz positions and extensive industry data."",""Strong network with 50 private, family, and 5 corporate LPs providing know-how and support."",""Unique and curated deal flow focused on insurance innovation and emerging disruptive risks like climate change and cyber threats."",""Affiliation with BGV, a $500 million AUM enterprise software VC, enhancing global network and fundraising capabilities.""],""investorDescription"":""Astorya.vc is a venture capital firm founded in 2017 and based in Paris, France. It invests mainly in seed and early-stage companies in insurtech, fintech, digital health, mobility, smart houses, and cybersecurity sectors across Europe. Our portfolio companies are trusted technology partners to leading insurers and banks, including AIG, Allianz, AXA, Baloise, Banca March, Bankinter, CaixaBank."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Celest Science"",""Evera"",""Weecover"",""Wenalyze"",""Embea"",""Jizô AI"",""MedSmart"",""Claims Carbon"",""Zelros"",""Olino""],""researcherNotes"":""Astorya.vc does not explicitly disclose overall assets under management or specific fund sizes on its official website or affiliated profiles. The estimated per-company investment size was derived from investment round averages found in third-party profiles."",""seniorLeadership"":[{""name"":""Jan Kastory"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://privateequityinternational.com/database/institution-profile/id/institution:9so4p/AstoryaVC/gp-contact-information"",""title"":""Founding Partner""},{""name"":""Laurent Gibert"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://privateequityinternational.com/database/institution-profile/id/institution:9so4p/AstoryaVC/gp-contact-information"",""title"":""Investment Committee Member""},{""name"":""Florian Graillot"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/astorya-vc/"",""title"":""Investor & board member""}],""sources"":{""headquarters"":""https://www.privateequityinternational.com/institution-profiles/astoryavc.html"",""investmentThesisFocus"":""https://www.linkedin.com/company/astorya-vc/"",""investorDescription"":""https://tracxn.com/d/venture-capital/astorya.vc/__-PpioHTj4iGatyUlEEGtjMxkYh3uKvMt_ssmZydF7YE"",""portfolioHighlights"":""https://tracxn.com/d/venture-capital/astorya.vc/__-PpioHTj4iGatyUlEEGtjMxkYh3uKvMt_ssmZydF7YE""},""websiteURL"":""http://www.astorya.vc""}","Correctness: 95% Completeness: 85% - -The provided information about Astorya.vc is largely accurate and well-supported by external sources. Astorya.vc is indeed a Paris-based venture capital firm focused on **seed and early-stage investments in sectors like insurtech, fintech, digital health, mobility, smart houses, and cybersecurity** across Europe[1][4]. The headquarters location ""Rue de Washington, 75008 Paris, France"" aligns with publicly available data from Private Equity International[1]. The fund’s emphasis on insurance innovation and emerging risks such as climate change and cyber threats is consistent with their public statements and industry positioning[4]. - -The **investment size of USD 2.1M per company is a reasonable estimate** based on typical seed/early-stage round sizes mentioned in third-party profiles, though the firm does not officially disclose detailed fund sizes or overall assets under management, which matches the noted missing data[1]. The association with BGV (a $500 million AUM enterprise software VC) cannot be fully verified from public sources but is plausible as part of strategic positioning. - -Senior leadership names (Jan Kastory as Founding Partner, Laurent Gibert on Investment Committee, Florian Graillot as Investor/Board Member) correspond with public LinkedIn and database records[1]. The portfolio highlights (e.g., Celest Science, Evera, Weecover, Wenalyze) correspond to known participations, reinforcing completeness on company names but some portfolio details, such as exact investment timelines or results, are omitted. - -However, **some gaps remain**: - -- Exact fund size and overall assets under management are not disclosed or available, which limits completeness. - -- The description of the “strong network with 50 private, family, and 5 corporate LPs” as well as detailed strategic partnerships is not directly verifiable from public sources and thus should be considered probable but not fully confirmed. - -- The website astorya.vc is currently minimal in public disclosures and does not provide extensive detail on funds or performance metrics. - -In sum, the data is **factually accurate based on available public sources (Private Equity International, Tracxn, LinkedIn, and specialized InsurTech venture lists)[1][4]**, but it lacks some depth on financial scale and detailed business metrics, slightly reducing completeness. - -Sources used: -https://www.privateequityinternational.com/institution-profiles/astoryavc.html -https://tracxn.com/d/venture-capital/astorya.vc/__-PpioHTj4iGatyUlEEGtjMxkYh3uKvMt_ssmZydF7YE -https://www.linkedin.com/company/astorya-vc/ -https://shizune.co/investors/insurtech-vc-funds-europe -https://astorya.vc" -"Assembly Climate Capital ","https://assemblycc.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Assembly Climate Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Australia""],""investmentStageFocus"":[""Series B"",""Series C"",""Early-stage venture occasionally""],""sectorFocus"":[""Climate impact"",""Clean energy"",""Sustainable technologies""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://assemblycc.com/#what-we-do""}],""headquarters"":""Suite 4, Pier 2/3, 13 Hickson Road, Sydney, NSW 2000, AU"",""investmentThesisFocus"":[""Backs exceptional management teams with bold visions."",""Focuses on Series B and C capital for businesses in commercial deployment ready to scale."",""Has a long-term but time-critical focus on accelerating climate impact."",""Emphasizes urgency on accelerating climate impact."",""Occasional early-stage venture support in passionate or expert areas.""],""investorDescription"":""Assembly Climate Capital is a collective hub investing in climate impact companies, often alongside other family offices. Assembly Climate Capital is a collective hub investing often with other family offices to have impact on climate in the next critical decade. We bring capital, energy, creativity, authenticity and expertise to people who are creating answers to the generation-defining challenge of climate change."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Mosa Meat"",""Samsara Eco"",""Vulcan Energy"",""Delorean Coproration"",""Future Super"",""Sea Forest"",""Tasman Environmental"",""Infradebt""],""researcherNotes"":""No explicit AUM or fund size data found on the company's website. Headquarters address not provided."",""seniorLeadership"":[{""name"":""Peter Gold"",""sourceUrl"":""https://assemblycc.com/#about-us"",""title"":""Managing Director of Archer Capital, Chairman of Future Super Group""},{""name"":""Patty Akopiantz"",""sourceUrl"":""https://assemblycc.com/#about-us"",""title"":""ASX Board Director, Non-Executive Director Sea Forest and The Hunger Project""},{""name"":""Kirsty Gold"",""sourceUrl"":""https://assemblycc.com/#about-us"",""title"":""Climate solutions investor, Non-Executive Director Climate Council""},{""name"":""Justin Punch"",""sourceUrl"":""https://assemblycc.com/#about-us"",""title"":""Environmental investor, Director Tasman Environmental Markets, Chair ARENA, Chairman Karrkad Kandji Trust""}],""sources"":{""headquarters"":""https://au.linkedin.com/company/assemblycc"",""investmentThesisFocus"":""https://assemblycc.com/#what-we-do"",""investorDescription"":""https://assemblycc.com/#about-us"",""portfolioHighlights"":""https://tracxn.com/d/venture-capital/assembly-climate-capital/__1p0ttzGmpbmZmYZDgYzaeRLIW1cH-TI5vo5m2B2EEfo""},""websiteURL"":""https://assemblycc.com""}","Correctness: 100% Completeness: 85% - -The information about **Assembly Climate Capital** is factually accurate based on its official website, which confirms: - -- Its **investment focus** on Series B and C capital for climate impact companies that are commercial deployment ready, with occasional early-stage venture support in areas of passion or expertise. -- Its **investment thesis** emphasizes backing exceptional management teams with bold visions and prioritizes accelerating climate impact with patient urgency—a long-term yet time-critical horizon. -- It operates as a **collective hub** often investing alongside other family offices, bringing capital, energy, creativity, and expertise to address climate change. -- The **portfolio highlights** such as Mosa Meat, Samsara Eco, Vulcan Energy, and others are consistent with publicly available third-party information. -- The **senior leadership team** named (Peter Gold, Patty Akopiantz, Kirsty Gold, Justin Punch) matches the leadership page on their website. -- The stated **headquarters address** is supported by LinkedIn company information, though not explicitly listed on the Assembly Climate Capital site itself. - -However, **some key completeness elements are missing or unavailable publicly**: - -- No explicit data on **overall assets under management (AUM)**, **fund size**, or **estimated investment size** is published on their site or external sources, which the researcher also noted. -- The absence of detailed AUM or fund size reduces completeness since these data points are important for assessing the scale of the fund. -- The website provides thorough descriptions of focus and strategy, but without specific quantitative metrics on fund scale, completeness is somewhat limited. - -Sources used: - -- Assembly Climate Capital official site: https://assemblycc.com/#what-we-do and https://assemblycc.com/#about-us [4] -- LinkedIn company location: https://au.linkedin.com/company/assemblycc -- Portfolio and fund information corroborated via Tracxn: https://tracxn.com/d/venture-capital/assembly-climate-capital/__1p0ttzGmpbmZmYZDgYzaeRLIW1cH-TI5vo5m2B2EEfo [4] - -No conflicting or fabricated information was found in the data provided, thus correctness is rated 100%. Completeness is scored at 85% due to lack of publicly available quantitative fund size and AUM details." -"Artemis Growth Partners ","https://www.artemisgrowth.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Artemis Growth Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global"",""North America"",""Europe"",""Equatorial low-cost cultivation areas"",""Israel""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Cannabis"",""Branded Products"",""Distribution"",""Ancillary Operators"",""Science-driven Research Platforms""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.artemisgrowth.com/""}],""headquarters"":""Artemis Growth Partners, Harvist Road, London NW6 6HB, United Kingdom; Artemis Growth Partners, Plaza Murano, 8th Floor, Suite 81, Santa Ana, Costa Rica"",""investmentThesisFocus"":[""Investment themes focus on the emerging cannabis industry worldwide, investing in the most attractive and defensible points in the value chain of global cannabis."",""Key focus points include branded product identity and consumer relationship, distribution and commerce with supply chain control, genetics emphasizing quality and efficacy in DNA selection, and technology involving innovation in distribution methods, consumer/provider apps, and disruptive online markets."",""Regions of focus include North America, Europe, Equatorial low-cost cultivation areas, and research/technology hubs in Israel.""],""investorDescription"":""We are a team of professional investors, operators, and advisors who have built and run successful, award-winning domestic and international ESG and impact funds. We started in cannabis in 2015 and work to bring ESG and impact investing principles to the global cannabis industry. We manage over US $400 million in mission-driven discretionary assets under management and invest across the global cannabis value chain, including branded products, distributors, service providers, ancillary operators, and science-driven research platforms. Our team includes former senior executives from Goldman Sachs, JPMorgan, and Mesoamerica, and experienced licensed cannabis business operators. We focus on world-class governance, strategy, and controls, and prioritize improving outcomes for owners, employees, communities, vendors, customers, and patients through regenerative business practices and ethical governance. We are believers in an inclusive, better world for all. Our investment themes target the most attractive points in the global cannabis value chain worldwide, with a focus on branded products, distribution and commerce, genetics, and technology. Contact for more info is available at https://artemisgrowth.com and https://artemisgrowth.com/investors."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 400,000,000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.artemisgrowth.com/""},""portfolioHighlights"":[""Green Thumb Industries (GTI)"",""Lord Jones"",""Kiva Confections"",""Clever Leaves"",""4Front"",""PharmaCann"",""Acreage Holdings"",""Columbia Care"",""Central Coast Agriculture""],""researcherNotes"":""AUM is explicitly stated on the main site as over US$400 million. No specific fund names, fund sizes, investment stages, or estimated per-company investment sizes were found after thorough search. Sector and geographic focus were derived from the descriptive content about their investment approach."",""seniorLeadership"":[{""name"":""E. Stanton McLean"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.artemisgrowth.com/news/2021/4/28/jp-morgan-leveraged-finance-veteran-joining-artemis-growth-partners-in-leadership-move-to-booming-cannabis-industry"",""title"":""Advisory Director""},{""name"":""William Muecke"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.artemisgrowth.com/news/2021/4/28/jp-morgan-leveraged-finance-veteran-joining-artemis-growth-partners-in-leadership-move-to-booming-cannabis-industry"",""title"":""General Partner and Co-Founder""}],""sources"":{""headquarters"":""https://www.artemisgrowth.com/contact"",""investmentThesisFocus"":""https://www.artemisgrowth.com/themes"",""investorDescription"":""https://www.artemisgrowth.com/"",""portfolioHighlights"":""https://www.artemisgrowth.com/portfolio""},""websiteURL"":""https://www.artemisgrowth.com/""}","Correctness: 98% Completeness: 90% - -The provided information about Artemis Growth Partners is **highly factually accurate** and aligns closely with details from the official Artemis Growth Partners website and reputable news sources. Key points confirmed include: - -- **Investor Description**: Artemis Growth Partners is described as a team of professional investors, operators, and advisors with experience in ESG and impact investing in the global cannabis industry since 2015. They manage over US$400 million in discretionary assets under management (AUM)[1][4]. - -- **Investment Thesis and Focus**: The investment themes focus on the global cannabis industry value chain, targeting branded products, distribution, genetics, and technology. Geographic focus includes North America, Europe, equatorial low-cost cultivation areas, and Israel—all appearing consistently on their site and related announcements[1][4]. - -- **Senior Leadership**: E. Stanton McLean (Advisory Director) and William Muecke (General Partner and Co-Founder) are the named senior leadership figures, confirmed in Artemis Growth Partners news releases[1][4]. - -- **Portfolio Highlights**: Companies such as Green Thumb Industries, Lord Jones, Kiva Confections, Clever Leaves, 4Front, PharmaCann, Acreage Holdings, Columbia Care, and Central Coast Agriculture are publicly referenced Artemis portfolio companies[1][4]. - -- **Headquarters Locations**: Listed as London and Santa Ana, Costa Rica, which matches contact details on their official website[1]. - -**Minor Completeness Limitations:** -- The data lacks specific information on fund sizes, detailed investment stages, and estimated investment size per portfolio company, which Artemis Growth has not publicly disclosed. The available sources consistently show only aggregated AUM and broader strategic focuses without breaking down individual fund metrics[1][4]. -- The researcher's note about missing fund sizes and investment stage focuses is accurate and reflects publicly available data gaps. - -**Potential Confounding Result:** -- One search result ([3]) mentions an Artemis Growth Partners with a venture capital focus on tech startups unrelated to cannabis, including different investment stages and ticket sizes. This appears to be a different entity sharing the same name, as official Artemis Growth Partners sources and news ([1][2][4]) exclusively highlight cannabis investments and ESG impact investing. - -Therefore, this information is **factually solid and well-sourced**, but the completeness is somewhat diminished due to unavailable granularity on fund-level details publicly. - -Sources: -- Artemis Growth Partners official site: https://www.artemisgrowth.com/ [1] -- Artemis Global Cannabis Regulatory Summit and portfolio info: https://www.prnewswire.com/news-releases/artemis-growth-partners-announce-inaugural-global-cannabis-regulatory-summit-302370343.html [4] -- News on leadership and investments: https://www.artemisgrowth.com/news/ [1][4] -- Artemis Tenacious Group announcement: https://www.tenacious-labs.com/news/tenacious-labs-and-artemis-growth-partners-join-forces [2]" -"Ascension ","https://www.ascension.vc ","{""funds"":[{""estimatedInvestmentSize"":""GBP 250,000 - 1,000,000"",""fundName"":""Ascension Fund III"",""fundSize"":""GBP 50,000,000"",""fundSizeSourceUrl"":""https://www.ascension.vc/our-funds/ascension-fund-iii/"",""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[""Pre-Seed"",""Seed+""],""sectorFocus"":[""Fintech"",""Energy"",""Health"",""New Work"",""Financial Inclusion"",""Access to Better Health"",""Digital Health Innovation"",""Insurtech for Social Impact"",""Mobility Solutions"",""Food Security"",""Sustainability""],""sourceUrl"":""https://www.ascension.vc/our-funds/ascension-fund-iii/""},{""estimatedInvestmentSize"":""GBP 200,000 - 500,000"",""fundName"":""Ascension EIS Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Seed+""],""sectorFocus"":[""Technology""],""sourceUrl"":""https://www.ascension.vc/our-funds/ascension-eis/""},{""estimatedInvestmentSize"":""GBP 5,000 - 300,000+"",""fundName"":""Ascension Syndicate"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""FinTech"",""B2B SaaS"",""Climate"",""Life Sciences""],""sourceUrl"":""https://www.ascension.vc/our-funds/ascension-syndicate/""}],""headquarters"":""London, United Kingdom"",""investmentThesisFocus"":[""(S)EIS and syndicate funds aim to deliver tax-free capital growth via diversified early-stage tech business portfolios."",""Institutional funds back impact-driven tech businesses addressing major UK social issues such as poverty premium, childhood obesity, and cost-of-living crisis."",""Investment strategy is rooted in lived experiences to ensure practical and essential investments, focusing on businesses serving those with first-hand experience."",""Mission-driven entrepreneurs are believed to attract top talent and attention, outperforming others."",""Emphasis on founder support through mentorship, resources, and community building beyond capital investment.""],""investorDescription"":""Ascension is an investor described as a Seed VC and the UK's most active impact investor, recognized for backing early-stage tech startups. Its mission is to enable the UK's top tech innovators to transform visionary ideas into impactful businesses, investing with purpose to solve societal challenges and build a tech ecosystem driving both economic growth and social good. The primary focus is on impact and returns, with funds including Tax-Efficient Funds (aimed at delivering tax-free capital growth through diversified early-stage tech portfolios), Impact/Institutional Funds (supporting tech businesses addressing UK social issues like poverty, childhood obesity, and cost-of-living crisis), and the Ascension Syndicate (allowing co-investment with angel investors and family offices in high-potential businesses). Ascension emphasizes more than capital, providing founders with mentorship, events, introductions, and resources to scale."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""5D AI"",""Albert"",""Alice"",""Amilis"",""AMLo"",""Anathem"",""Aparito"",""Capably"",""Canveo"",""Captur""],""researcherNotes"":""No headquarters address and no explicit overall AUM was found on the website. Fund sizes available only for Ascension Fund III. The website references various phone contacts but no physical address."",""seniorLeadership"":[{""name"":""Jean de Fougerolles"",""sourceProvider"":""Ascension.vc"",""sourceUrl"":""https://www.ascension.vc/team/jean-de-fougerolles"",""title"":""Managing Partner and Founder""},{""name"":""Remy Minute"",""sourceProvider"":""Ascension.vc"",""sourceUrl"":""https://www.ascension.vc/team/remy-minute"",""title"":""Partner, Director and Chair""},{""name"":""Emma Steele"",""sourceProvider"":""Ascension.vc"",""sourceUrl"":""https://www.ascension.vc/team/emma-steele"",""title"":""Partner heading impact funds""},{""name"":""Iulia Tudor"",""sourceProvider"":""Ascension.vc"",""sourceUrl"":""https://www.ascension.vc/team/iulia-tudor"",""title"":""Ascension Fund III Partner""},{""name"":""Chris Wheatcroft"",""sourceProvider"":""Ascension.vc"",""sourceUrl"":""https://www.ascension.vc/team/chris-wheatcroft"",""title"":""Investment Partner running Ascension Syndicate""}],""sources"":{""headquarters"":""https://www.epirus.vc/investor-database/investor/ascension"",""investmentThesisFocus"":""https://www.ascension.vc/about/"",""investorDescription"":""https://www.ascension.vc/"",""portfolioHighlights"":""https://www.ascension.vc/portfolio/""},""websiteURL"":""https://www.ascension.vc""}","Correctness: 95% Completeness: 85% - -The information provided about Ascension VC is largely **factually accurate** based on the publicly available sources. Key details such as the **fund sizes, investment stages, geographic and sector focus, and senior leadership** are consistent with the official Ascension website and reputable news reports. For example, Ascension Fund III targets a £50 million fund size with investments from £250K to £1 million focusing on seed to pre-seed UK tech startups in sectors such as Fintech, Energy, and Health, which matches the official fund page[1]. The involvement of key leaders like Jean de Fougerolles and Emma Steele is confirmed by Ascension’s team profiles[1]. The investment thesis focusing on impact-driven UK tech startups addressing major social issues like poverty and health, and the emphasis on founder support through mentorship, also aligns with Ascension’s own descriptions[2][5]. - -However, **some completeness gaps** are notable: - -- The **overall Assets Under Management (AUM)** is not clearly stated on Ascension’s website except in one news source mentioning £100m+ AUM, which is not detailed in the initial data[5]. - -- The **Ascension EIS Fund and Ascension Syndicate** have less publicly available precise data, with fund sizes and detailed geographic focus missing or marked as “Not Available” in the snapshot. This aligns with the lack of clear data on these funds publicly, but it means the dataset is incomplete here. - -- No physical **headquarters address** is found on Ascension’s site, only phone contacts, consistent with the note on missing address. - -- Sector and detailed impact themes for the funds align broadly, but some nuances such as exact round sizes or investor base specifics are only available partially from press sources and not all reflected in the summary. - -In summary, the data is **correct where verifiable** but limited in completeness due to missing overall AUM figures and full geographic details for all funds, as well as lacking an official headquarters address. The core assertion that Ascension is a London-based, impact-focused early-stage VC with three main funds targeting UK tech startups and providing capital plus founder support is well supported. - -**Sources:** - -- Ascension Fund III official page (fund size, investment size, sectors, leadership): https://www.ascension.vc/our-funds/ascension-fund-iii/[1] - -- Ascension VC news coverage of Fund III and impact focus: https://www.uktech.news/funding/vc-funding/ascension-vc-tech-for-good-fund-20240325[2] - -- RW Blears legal advisory on Fund III raise: https://blears.com/blog/2024/03/27/rw-blears-advises-ascension-vc-on-the-17m-first-closing-of-ascension-fund-iii/[4] - -- Heatio Seed deal led by Ascension, references AUM: https://www.uktechnews.info/2024/06/27/heatio-secures-2-million-seed-investment-led-by-ascension/[5] - -- Team leadership info on Ascension site: https://www.ascension.vc/team/jean-de-fougerolles, https://www.ascension.vc/team/emma-steele/[1]" -"Artemis ","http://www.artemisonline.co.uk ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Artemis Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK"",""Europe"",""USA"",""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""http://www.artemisonline.co.uk/en/gbr/adviser/funds-and-prices/our-funds""}],""headquarters"":""Not Available"",""investmentThesisFocus"":[""Active management specializing in multiple geographic regions including UK, Europe, USA, and globally."",""Incorporation of environmental, social, and governance (ESG) factors into their investment process."",""Promotion of the long-term success of investments through responsible investing.""],""investorDescription"":""Independent and owner-managed, Artemis is a leading UK-based fund manager. The firm's aim has always been to offer exemplary investment performance and service to clients. Artemis offers a range of funds which invest in the UK, Europe, the USA and around the world. As responsible investors, Artemis assesses a broad range of factors impacting value, including environmental, social and governance (ESG) drivers, to promote the long-term success of investments made on behalf of clients."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""overallAssetsUnderManagement"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The website does not provide specific details about fund names, sizes, sectors, investment stages, ticket sizes, senior leadership names, portfolio companies, headquarters address, or assets under management. Information on funds is described generally without specifics."",""seniorLeadership"":[{""name"":""Alan Brown"",""sourceProvider"":""Perplexity"",""title"":""Non-executive; Chair of the Management Committee""},{""name"":""Nicky McCabe"",""sourceProvider"":""Perplexity"",""title"":""Non-executive; Chair of the Compliance, Risk & Internal Audit Committee and member of the Management Committee""},{""name"":""Andrew Baird"",""sourceProvider"":""Perplexity"",""title"":""Non-executive; Chair of the Remuneration Committee and member of the Management Committee""},{""name"":""Claire Finn"",""sourceProvider"":""Perplexity"",""title"":""Independent non-executive director, Artemis Fund Managers Limited""},{""name"":""Andrew Laing"",""sourceProvider"":""Perplexity"",""title"":""Independent non-executive director and Chair, Artemis Fund Managers Limited""},{""name"":""Teun Johnston"",""sourceProvider"":""Perplexity"",""title"":""CEO, member of the Management Committee, Chair of the Executive Committee""},{""name"":""Stewart Brown"",""sourceProvider"":""Perplexity"",""title"":""Managing Partner, member of the Management Committee and member of the Executive Committee""},{""name"":""Philip Wolstencroft"",""sourceProvider"":""Perplexity"",""title"":""Partner and member of the Management Committee""},{""name"":""Jonathan Loukes"",""sourceProvider"":""Perplexity"",""title"":""Chief Financial Officer and member of the Executive Committee""},{""name"":""Sheenagh Dougall"",""sourceProvider"":""Perplexity"",""title"":""Chief Operating Officer and member of the Executive Committee""},{""name"":""Greg Jones"",""sourceProvider"":""Perplexity"",""title"":""Head of Distribution and member of the Executive Committee""},{""name"":""Ross Millar"",""sourceProvider"":""Perplexity"",""title"":""Chief Risk Officer and member of the Executive Committee""}],""sources"":{""headquarters"":""http://www.artemisonline.co.uk/contact-us"",""investmentThesisFocus"":""http://www.artemisonline.co.uk/en/about-artemis"",""investorDescription"":""http://www.artemisonline.co.uk/en/about-artemis"",""portfolioHighlights"":""http://www.artemisonline.co.uk/en/gbr/adviser/funds-and-prices/our-funds""},""websiteURL"":""http://www.artemisonline.co.uk""}","Correctness: 90% Completeness: 50% - -The information provided about Artemis Investment Strategy including its **geographic focus on UK, Europe, USA, and global markets** and its **incorporation of ESG factors** to promote long-term responsible investing aligns well with Artemis’ official statements on their website and fund descriptions[http://www.artemisonline.co.uk/en/about-artemis][1]. The identification of Artemis as an **independent, owner-managed, UK-based fund manager** focused on **active management and responsible investing** is also factually correct. The listed senior leadership names and roles correspond to publicly known information about Artemis leadership structures as typically communicated by the firm. - -However, the **completeness is limited** because key specific details are missing or unavailable on the official site and in the data: - -- **Headquarters address and overall assets under management (AUM)** are not provided, despite their importance. The official Artemis site “Contact Us” page (http://www.artemisonline.co.uk/contact-us) does not clearly show the headquarters address or specific AUM figures. - -- **Fund size, detailed portfolio highlights, investment stages, sector focus, and ticket sizes** also lack specifics, as noted by the researcher. Artemis tends to describe fund strategies generally rather than disclose exact fund sizes or compositions publicly[1][3]. - -- Artemis publicly states its commitment to ESG and long-term value creation, but exact investment stage focus or ticket sizes for their funds are often not explicit on public material, aligning with the ""Not Available"" indicated here. - -- Some additional investment-related details about the Artemis SmartGARP process and fund-level changes can be found in recent fund notices and reviews, but these are not integrated into the summary, limiting completeness[1][3]. - -- The presence of some Artemis fund performance data and AUM in other sources (like £910 million assets under management for a specific fund[2]) shows there is some public data missing from the summary. - -In conclusion, the core statements about Artemis’ strategy, ESG integration, market focus, and leadership are factually accurate, but the dataset is **incomplete in areas essential for thorough transparency**, including fund sizes, AUM, headquarters, and detailed portfolio insights. This reflects the publicly available information scarcity from Artemis rather than incorrect reporting. - -Sources used: -- Artemis official site (About, Funds and Prices, Contact): http://www.artemisonline.co.uk/en/about-artemis, http://www.artemisonline.co.uk/en/gbr/adviser/funds-and-prices/our-funds, http://www.artemisonline.co.uk/contact-us -- Artemis fund change announcements and reviews: https://www.artemisfunds.com/en/gbr/investor/funds-and-prices/notifications/global-select-fund-changes, https://www.fundslibrary.co.uk, https://www.yodelar.com/insights/artemis-review" -"Artis Ventures ","http://www.av.co ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Artis Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Tech Bio+Health"",""AI"",""Machine Learning"",""Deep Learning"",""Life Sciences"",""Medical Technologies""],""sourceUrl"":""http://www.av.co""}],""headquarters"":""499 Jackson Street, Suite 400, San Francisco, CA 94111, USA"",""investmentThesisFocus"":[""Focus on Tech Bio+Health, combining computer science and cellular biology to enable cures instead of treatments."",""Investment in personalized therapeutics, more efficient drug discovery, and AI-led biological exploration."",""Emphasis on impact on human health and wellness globally, with flexibility and scalable revenue streams."",""Emphasis on AI-enhanced medical devices, synthetic biology, gene editing, digital health, AI drug discovery, and personalized medicine."",""Key drivers include collapsing omics sequencing costs, digitization of biology, and improved understanding of biological processes.""],""investorDescription"":""ARTIS is the first dedicated fund globally to deploy capital wherever data, software, AI, machine learning, and deep learning transform human health and well-being. They invest in data-driven life sciences companies with scalable medical technologies backed by engineering, AI, and strong datasets."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2023-12-14"",""companyName"":""TechBio II fund"",""sourcePostUrl"":""https://www.linkedin.com/posts/artis-ventures_techbio-ii-ushering-in-the-next-era-of-techbio-activity-7141132246513602561-1rtv"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""AUM and specific fund details such as investment size and fund size are not mentioned on the website."",""seniorLeadership"":[{""name"":""John P. Lore"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/in/johnp.lore/"",""title"":""Co-Founder & Managing Partner""},{""name"":""Cory T. Ondrejka"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/in/ondrejka/"",""title"":""Co-Founder & Partner""}],""sources"":{""headquarters"":""http://www.av.co"",""investmentThesisFocus"":""http://www.av.co/techbio-convergence"",""investorDescription"":""http://www.av.co/"",""portfolioHighlights"":""http://www.av.co/portfolio""},""websiteURL"":""http://www.av.co""}","Correctness: 95% Completeness: 85% - -The information is largely factually correct. Artis Ventures is indeed headquartered at 499 Jackson Street, Suite 400, San Francisco, CA 94111, USA, as confirmed by multiple sources including their official website and other institutional profiles[3][4][5]. The investment thesis described aligns well with the firm's publicly stated focus on ""Tech Bio+Health,"" combining computer science, AI, machine learning, deep learning, and biology to improve human health globally, investing in scalable medical technologies, personalized medicine, AI drug discovery, synthetic biology, and gene editing[5]. The description of them as the first dedicated fund globally investing in data-driven life sciences companies with scalable medical technologies backed by AI and engineering also aligns with their official language[5]. - -Senior leadership names—John P. Lore as Co-Founder & Managing Partner and Cory T. Ondrejka as Co-Founder & Partner—are consistent with LinkedIn profiles (external to the search results but mentioned) and company disclosures[5]. The portfolio highlight mentioning the TechBio II fund announcement on LinkedIn in December 2023 matches public social posts and company updates[5]. - -However, some factual limitations and discrepancies affect the scores: - -- The provided headquarters address (499 Jackson Street) differs from a previous known address at 988 Market St Ste 200 seen in one source, indicating a relatively recent relocation to Jackson Square area[2][3]. The current address given is confirmed by the official website context and related up-to-date sources, so the new address is accurate. - -- Important financial data fields like overall Assets Under Management (AUM) and specific fund sizes are missing or marked as ""Not Available,"" consistent with the researcher notes and public disclosures. This reduces completeness but not correctness, as this data may not be publicly disclosed[3]. - -- The investment stage focus and estimated investment size are not specified, consistent with lack of public data. - -- The description of their investment thesis and sector focus appears accurate but somewhat paraphrased; no false or unsupported claims are evident. - -- ZoomInfo's listing shows slightly different headquarters (988 Market St), which appears outdated compared to the more recent address in private equity profiles and the firm's own website[1][3]. - -In summary, the facts match well with the firm's official disclosures, website, and recent institutional profiles. The main shortfall is incomplete financial details and investment size info, which is publicly not disclosed. - -Sources: -- Artis Ventures official website: http://www.av.co -- Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/artis-ventures.html -- Office Snapshots on new office location: https://officesnapshots.com/2023/10/17/artis-ventures-offices-san-francisco/ -- ZoomInfo company profile (older HQ info): https://www.zoominfo.com/c/artis-ventures/358290125" -"Asabys Partners ","https://asabys.com/ ","{""funds"":[{""estimatedInvestmentSize"":""€1,000,000 - €5,000,000"",""fundName"":""Asabys Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Spain"",""abroad""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B or later""],""sectorFocus"":[""health-tech"",""biopharma""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://crunchbase.com/organization/asabys-partners|https://www.linkedin.com/company/asabys-partners""}],""headquarters"":""Paseo de Gracia, 53, Barcelona, Barcelona 08007, ES"",""investmentThesisFocus"":[""health-tech"",""biopharma"",""medical devices"",""digital health"",""innovative solutions addressing unmet medical needs"",""transformative technologies"",""highly innovative"",""science and medicine boundary-pushing""],""investorDescription"":""Asabys Partners is a venture capital firm from Barcelona investing across the board in human healthcare. We are active in the health-tech and biopharma industries and aim to invest in Spain and abroad in highly innovative and transformative technologies. We are motivated by the idea of pushing the boundaries of science and medicine. We do this through the sourcing and financing of the most disruptive technologies, and through the collaboration with the best internal and external talents of our industry. We have an entrepreneurial spirit and seek to be involved in the building and management of our companies. Not just investors, we consider ourselves as partners and collaborators to our portfolio companies."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2024-01-15"",""companyName"":""Nuage Therapeutics"",""sourcePostUrl"":""https://www.linkedin.com/posts/asabys-partners_nuage-therapeutics-appoints-dr-stuart-hughes-activity-7312785657846796289-eary"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2024-04-29"",""companyName"":""deepull"",""sourcePostUrl"":""https://www.linkedin.com/posts/asabys-partners_deepull-secures-oversubscribed-50-million-activity-7322877575477768192-zoSE"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2024-03-24"",""companyName"":""Augustine Therapeutics"",""sourcePostUrl"":""https://www.linkedin.com/posts/asabys-partners_augustine-therapeutics-raises-oversubscribed-activity-7309847536096231425-oRCs"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""The website and related subpages did not provide accessible or extractable data on firm description, thesis, HQ, specific funds, portfolio, or leadership despite multiple detailed queries. This may be due to site design or content restrictions. AUM is not disclosed on LinkedIn, which is standard practice."",""seniorLeadership"":[{""name"":""Maite Malet"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://crunchbase.com/organization/asabys-partners|https://www.linkedin.com/company/asabys-partners"",""title"":""Principal""},{""name"":""Isabel Jiménez Bernal"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://crunchbase.com/organization/asabys-partners|https://www.linkedin.com/company/asabys-partners"",""title"":""Principal""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/asabys-partners"",""investmentThesisFocus"":""https://www.linkedin.com/company/asabys-partners"",""investorDescription"":""https://www.linkedin.com/company/asabys-partners"",""portfolioHighlights"":""https://www.linkedin.com/company/asabys-partners""},""websiteURL"":""https://asabys.com/""}","Correctness: 95% Completeness: 85% - -The provided information about Asabys Partners is largely **factually accurate** according to multiple corroborating sources. Asabys Partners is indeed a venture capital firm based in Barcelona focusing on **health-tech and biopharma investments**, targeting both Spain and international markets with a focus on **highly innovative, transformative healthcare technologies**, and aiming to push the boundaries of science and medicine[1][2][3]. Their headquarters at Paseo de Gracia 53, Barcelona, matches the official contact details[2]. The described investment thesis aligns well with statements from independent profiles, emphasizing health-tech, biopharma, medical devices, digital health, and innovation addressing unmet medical needs[1][3][4]. - -The estimate of the **investment size range (€1M - €5M)** corresponds with publicly available sources specifying early to later-stage investments including Seed, Series A, and Series B or later stages[3]. The description of Asabys not just as investors but partners collaborating in building portfolio companies also matches published characterizations[1][2]. The senior leadership including principals Maite Malet and Isabel Jiménez Bernal fits known team roles, although the publicly named founding and managing partner is Clara Campàs, who is a key figure frequently mentioned but absent from the submitted data[4][5]. - -The major **discrepancy and completeness issue** is the lack of disclosed **overall assets under management (AUM)** and the absence of mention of their second fund, SABADII II, which closed at around €180 million in 2023–2024, a major fact noted in industry news and investor reports[4]. The omission of fund size and fund close details limits the completeness of the picture. Also, the portfolio highlights listed (Nuage Therapeutics, deepull, Augustine Therapeutics) are consistent with recent announcements by Asabys[3], though this does not cover their whole portfolio of 17+ companies[4]. Lastly, the researcher notes the difficulty in accessing some public firm data from their website, which explains partial gaps in content. - -In summary, the information is **highly accurate and consistent with professional and media sources**, but **missing key fund size, AUM data, and complete leadership references**, reducing completeness somewhat. - -Sources: - -- [EU-Startups on Asabys](https://www.eu-startups.com/investor/asabys-partners/) -- [AseBio Directory](https://www.asebio.com/en/members/directory/asabys-partners) -- [Hopohopo Investor Profile](https://www.hopohopo.io/investors/asabys-partners) -- [Fierce Biotech: Spanish VC closes $200M life sciences fund](https://www.fiercebiotech.com/biotech/spanish-vc-closes-200m-fund-plan-broaden-investments-worldwide) -- [Private Equity International Profile](https://www.privateequityinternational.com/institution-profiles/asabys-partners.html)" -"ArrowMark Partners ","https://arrowmarkpartners.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Meridian Growth Fund"",""fundSize"":""USD 798000000"",""fundSizeSourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-growth-fund"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Growth""],""sectorFocus"":[""Small to Mid-Capitalization Growth Companies""],""sourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-growth-fund""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Meridian Small Cap Growth Fund"",""fundSize"":""USD 350000000"",""fundSizeSourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-small-cap-growth-fund"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Growth""],""sectorFocus"":[""Small-Capitalization Growth Companies""],""sourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-small-cap-growth-fund""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Meridian Contrarian Fund"",""fundSize"":""USD 574000000"",""fundSizeSourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-contrarian-fund"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Out-of-favor companies with potential for sustainable improvement""],""sourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-contrarian-fund""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Meridian Hedged Equity Fund"",""fundSize"":""USD 43000000"",""fundSizeSourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-hedged-equity-fund"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Diversified equity securities of U.S. large-capitalization companies""],""sourceUrl"":""https://arrowmarkpartners.com/meridian/fund/meridian-hedged-equity-fund""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Private Credit"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Regulatory capital relief, risk-sharing market, private credit, leveraged loans, commercial real estate finance""],""sourceUrl"":""https://arrowmarkpartners.com/credit/private-credit_/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Long Only Equity"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Small Cap Growth"",""Small / Mid Cap Growth"",""Contrarian""],""sectorFocus"":[""U.S. Small- and Mid-Capitalization Companies""],""sourceUrl"":""https://arrowmarkpartners.com/equity/long-only-equity/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Multi-Asset Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Private and public credit, equity, commercial real estate financing, specialty lending""],""sourceUrl"":""https://arrowmarkpartners.com/credit/multi-asset/""}],""headquarters"":""Denver, 100 Fillmore St #325, Denver, CO 80206"",""investmentThesisFocus"":[""Focus on niche and less efficient market segments."",""Fundamental, research-driven investment philosophy."",""Emphasis on collaboration and cross-discipline knowledge-sharing."",""Investment strategies across credit, equity, leveraged loans, and real estate finance."",""Seeking asymmetric risk-reward tradeoffs with resilience during market stress.""],""investorDescription"":""ArrowMark Partners is a privately held, employee-owned investment management firm founded in 2007 and headquartered in Denver, Colorado. The firm employs a fundamental, research-driven philosophy focused on niche and less efficient market segments in public and private credit, equity, leveraged loans, and middle-market commercial real estate finance. They manage assets for institutional clients and private wealth allocators through broadly syndicated and middle-market CLO Funds and customized separately managed accounts. As of June 30, 2025, ArrowMark has 5bn in assets under management across credit, equity, and real estate, with 50 total employees and an average investment experience of 19 years among investment professionals. Their culture emphasizes collaboration and cross-discipline knowledge-sharing to manage complex risk/reward tradeoffs."",""linkedDocuments"":[""https://arrowmarkpartners.com/wp-content/uploads/Form-CRS.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""2025-06-30"",""aumAmount"":""USD 5000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://arrowmarkpartners.com/""},""portfolioHighlights"":[],""researcherNotes"":""Overall AUM of 5bn is explicitly stated on the homepage as of June 30, 2025. Fund sizes are available explicitly for Meridian Funds. Estimated per-company investment sizes are not available on the website for any funds or strategies. Portfolio highlights are not listed on the website."",""seniorLeadership"":[{""name"":""Kaelyn Abrell"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Partner, Portfolio Manager""},{""name"":""Sanjai Bhonsle"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Partner, Portfolio Manager""},{""name"":""David Corkins"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Founding Partner, Portfolio Manager""},{""name"":""Chad Meade"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Partner, Portfolio Manager""},{""name"":""Karen Reidy, CFA"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Founding Partner, Portfolio Manager""},{""name"":""Brian Schaub, CFA"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Partner, Portfolio Manager""},{""name"":""Robin Beery"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Partner, Head of Distribution""},{""name"":""Kirk Reid"",""sourceProvider"":""ArrowMark website"",""sourceUrl"":""https://arrowmarkpartners.com/partners/"",""title"":""Partner, Chief Operations & Technology Officer""}],""sources"":{""headquarters"":""https://arrowmarkpartners.com/contact/"",""investmentThesisFocus"":""https://arrowmarkpartners.com/"",""investorDescription"":""https://arrowmarkpartners.com/"",""portfolioHighlights"":""https://arrowmarkpartners.com/portfolio/""},""websiteURL"":""https://arrowmarkpartners.com/""}","Correctness: 95% Completeness: 85% - -The information provided about ArrowMark Partners and its funds is largely factually accurate and consistent with the official ArrowMark website and its Meridian funds pages. ArrowMark is indeed a privately held, employee-owned investment management firm founded in 2007 and headquartered in Denver, Colorado[4]. The description of their investment philosophy focusing on niche and less efficient market segments across credit, equity, leveraged loans, and real estate finance aligns well with their stated approach[4]. The fund details given for Meridian Growth Fund, Meridian Small Cap Growth Fund, Meridian Contrarian Fund, and Meridian Hedged Equity Fund closely match the official fund pages, including fund sizes, geographic focus (United States), and sector or strategy focus[2][3]. - -The overall assets under management (AUM) figure of USD 5 billion as of June 30, 2025 is validated by ArrowMark’s website homepage[4]. The senior leadership names and titles correspond to those on the ArrowMark partners page, confirming their accuracy. The notes about missing important fields such as estimated investment size and portfolio highlights correctly reflect the lack of this data on ArrowMark’s public site. - -Minor discrepancies include that one external source mentioned $19 billion AUM as of early 2025[5], which conflicts with the $5 billion figure reported by ArrowMark as of June 30, 2025[4]. Given the official ArrowMark website is authoritative, the 5 billion figure is more credible. Also, estimated per-company investment sizes and detailed portfolio highlights are not available publicly, which lowers completeness. - -In summary, the data is factually correct and reliable based on ArrowMark’s own disclosures but incomplete concerning some detailed investment metrics and portfolio specifics. The URLs used for verification include: - -- https://arrowmarkpartners.com/ -- https://arrowmarkpartners.com/meridian/fund/meridian-growth-fund/ -- https://arrowmarkpartners.com/meridian/fund/meridian-small-cap-growth-fund/ -- https://arrowmarkpartners.com/meridian/fund/meridian-contrarian-fund/ -- https://arrowmarkpartners.com/meridian/fund/meridian-hedged-equity-fund/ -- https://arrowmarkpartners.com/contact/ -- https://arrowmarkpartners.com/partners/ -- https://www.insidermonkey.com/blog/meridian-growth-funds-q2-2025-investor-letter-1588320/" -"Artificial Intelligence Factory ","https://yapayzekafabrikasi.com.tr/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Artificial Intelligence Factory Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Türkiye"",""Worldwide""],""investmentStageFocus"":[""Seed Stage""],""sectorFocus"":[""Artificial Intelligence""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://yapayzekafabrikasi.com.tr/en""}],""headquarters"":""İş Towers Tower-3 Floor:14 34330 Beşiktaş | İstanbul"",""investmentThesisFocus"":[""Focus on strategic investments in artificial intelligence initiatives in Türkiye and worldwide."",""Provide growth and support services to help startups prepare for international markets."",""Adopt tailor-made, flexible, and innovative approaches to develop solutions suited to each enterprise's unique needs.""],""investorDescription"":""AI Startup Factory is an innovative Corporate Venture Capital Company and Acceleration Program established with the capital of Türkiye İş Bankası. Investments are made via 100th Year Technology Ventures Inc. The investment thesis focuses on strategic investments in artificial intelligence initiatives in Türkiye and worldwide, aiming to contribute to their global success. The program provides growth and support services to help startups prepare for highly competitive international markets and overcome related challenges. It adopts tailor-made approaches based on flexibility and innovation to develop solutions suited to each enterprise's unique needs, maximizing their potential."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Adapha"",""Atlas Robotics"",""crait.it"",""Faradai AI"",""Lumnion"",""PricingCoach"",""Vispera"",""Adastec"",""B2Metric""],""researcherNotes"":""Overall assets under management (AUM) and detailed fund size or investment stage focus information are not available on the website or related documents."",""seniorLeadership"":[{""name"":""Dr. Ahmet Herekoğlu"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""Senior Technology Advisor""},{""name"":""Prof. Dr. Altan Çakır"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""Senior Technology Advisor at Istanbul Technical University""},{""name"":""Aysu Senem Çavdar"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""CEO at Promaks""},{""name"":""Dr. Ayşe Ufuk Ağar"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""CBSO at Digiturk, beIN Media Group""},{""name"":""Bürke Atilla"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""Deputy General Manager and CTO at Softtech""},{""name"":""Gökhanalp Arslan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""Head of Artificial Intelligence Department at Türkiye İş Bankası""},{""name"":""Mehmet Kemal Bayer"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""Senior Technical Director at Isbank AG Deutschland""},{""name"":""Ömür Göçer"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.yapayzekafabrikasi.com.tr/en/kopyas%C4%B1-akademisyen-j%C3%BCri-%C3%BCyeleri"",""title"":""Data, Analytics and AI Director at Unilever Turkey, Iran, Central Asia""}],""sources"":{""headquarters"":""https://www.yapayzekafabrikasi.com.tr/en/iletisim"",""investmentThesisFocus"":""https://www.yapayzekafabrikasi.com.tr/en"",""investorDescription"":""https://www.yapayzekafabrikasi.com.tr/en"",""portfolioHighlights"":""https://www.yapayzekafabrikasi.com.tr/girisimlerimiz""},""websiteURL"":""https://yapayzekafabrikasi.com.tr/""}","Correctness: 95% Completeness: 85% - -The provided information about **AI Startup Factory (Yapay Zeka Fabrikası)** is highly factually accurate based on multiple credible sources including its official website and ecosystem databases. The headquarters address as ""İş Towers Tower-3 Floor:14 34330 Beşiktaş | İstanbul"" matches the official contact information on the AI Startup Factory website[3]. The description of the company as an innovative Corporate Venture Capital entity established with capital from Türkiye İş Bankası, operating via 100th Year Technology Ventures Inc., and focusing on strategic investments in AI initiatives both in Türkiye and globally is supported by the official site and corroborated by third-party profiles[3][1][4]. - -The characterization of the investment thesis — emphasis on strategic AI investments, supporting startups to prepare for global markets, and using tailor-made, flexible, innovative approaches to match enterprises’ unique needs — aligns well with the investor description and investment focus outlined on the official website[3]. - -The list of portfolio highlights (e.g., Adapha, Atlas Robotics, PricingCoach, Vispera) is consistent with startups showcased by the AI Startup Factory on their site[3]. - -The named senior leadership team members with their titles also match those listed on the official platform[3]. - -However, two key pieces of information are missing: - -- **Overall Assets Under Management (AUM)** is not publicly available from the official sources or the ecosystem databases, which reduces completeness. -- **Fund size** and more detailed granular information about investment stages beyond ""Seed Stage"" are not explicitly stated and are unavailable in public domains, also lowering completeness. - -Some minor variations appear about the exact office floor number (ZoomInfo mentions Kat 26 vs. Kat 14 on the official site), but this may reflect changes or differences in data currency. - -URLs used: - -- Official site: https://www.yapayzekafabrikasi.com.tr/en[3] -- Andorra Startup ecosystem: https://ecosystem.andorra-startup.com/companies/ai_startup_factory[1] -- Dealroom: https://spacetech.dealroom.co/companies/ai_startup_factory[4] -- ZoomInfo profiles: https://www.zoominfo.com/c/ai-startup-factory--i%CC%87s%CC%A7-bank-group/1334564456[5] - -Given the strong alignment with authoritative sources except for the unavailable AUM and fund size data, correctness is high but completeness is somewhat limited by these missing publicly available details." -"Armilar Venture Partners ","http://www.armilar.com/en/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 200,000 - 2,000,000 for Seed; EUR 2,000,000 - 10,000,000 for Series A and B"",""fundName"":""Armilar Venture Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Iberia"",""Europe"",""United States""],""investmentStageFocus"":[""Seed"",""Pre-Seed"",""Series A"",""Series B"",""Follow-on""],""sectorFocus"":[""Digital Companies"",""Technology"",""Data"",""Digitization"",""Connectivity""],""sourceUrl"":""https://www.armilar.com/why-armilar""}],""headquarters"":""Rua Tierno Galvan, Amoreiras, Torre 3, piso 17, 1070-274 Lisboa, Portugal"",""investmentThesisFocus"":[""Belief in new technologies as a force for good."",""Focus on companies that solve society’s biggest problems through technology."",""Conviction-driven with selective investments and hands-on support."",""Responsible investment integrating ESG and sustainability risks in decision-making."",""Backing resilient, intelligent founders and patient long-term value creation.""],""investorDescription"":""Armilar Venture Partners is an early-stage venture capital fund manager with 25 years of investment experience, having backed 80+ companies and 22 exits, focusing on digital startups with technology at their core. Their investment strategy targets disruptive technologies with a global mindset, backing companies that are best in their field with unique technology or tech-based business models offering solutions to valuable problems. They invest primarily in early stages: Seed (tickets €200k–€2M), Series A & B (€2M–€10M), and follow-on rounds, focusing geographically on Iberia for seed and Europe (plus some US) for later stages. Armilar is conviction-driven, makes few selective investments annually, is hands-on, supportive via board involvement, and patient for long-term value creation. They emphasize responsible investing and backing founders who are resilient and have keen intellect."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""EUR 300,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/articles/brighter-ai-raises-a-series-a-round-led-by-armilar""},""portfolioHighlights"":[""OutSystems"",""Feedzai"",""Codacy"",""Amplemarket"",""Didimo"",""Rows"",""CASAFARI"",""Coverflex"",""Knok"",""KIT-AR""],""researcherNotes"":""AUM is explicitly stated as about EUR 300 million on the website at an article mentioning funds under management at Armilar. No formal fund names were found, so the company name plus 'Investment Strategy' is used as per instruction. Fund size and exact dates for AUM are not available. No direct linked documents (PDF, DOCX, PPTX) were found on the site."",""seniorLeadership"":[{""name"":""Joaquim Sérvulo Rodrigues"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Managing Partner""},{""name"":""Pedro Ribeiro Santos"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Managing Partner""},{""name"":""Duarte Mineiro"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Managing Partner""},{""name"":""Nuno Leite"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Managing Partner - CFO""},{""name"":""João Dias"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Partner""},{""name"":""José Guerreiro de Sousa"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Senior Advisor""},{""name"":""Juan González"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armilar.com/team"",""title"":""Senior Advisor""}],""sources"":{""headquarters"":""https://www.armilar.com/contact"",""investmentThesisFocus"":""https://www.armilar.com/esg-policy"",""investorDescription"":""https://www.armilar.com/why-armilar"",""portfolioHighlights"":""https://www.armilar.com/portfolio""},""websiteURL"":""http://www.armilar.com/en/""}","Correctness: 98% Completeness: 90% - -The information provided about Armilar Venture Partners is largely accurate and consistent with external sources. The headquarters location is correctly stated as Rua Tierno Galvan, Amoreiras, Torre 3, piso 17, 1070-274 Lisboa, Portugal, confirmed by multiple official sources including the company website and LEI registration[2][5]. The investment focus on early-stage technology companies with ticket sizes for Seed (€200k–€2M) and Series A/B (€2M–€10M) rounds, and geographic focus on Iberia, Europe, and the US, aligns with data from the company website and Dealroom profile[4][5]. The description of their investment thesis emphasizing new tech solving big societal problems, ESG integration, selective conviction-driven investing, and hands-on support also matches statements directly from their official ESG policy and Why Armilar pages[5]. - -The senior leadership names and titles given (e.g., Joaquim Sérvulo Rodrigues as Managing Partner) correspond with the current team listed on Armilar’s website[5]. The portfolio highlights such as OutSystems, Feedzai, and Codacy, are referenced on their portfolio page and financial news articles about their investments[5]. - -However, the **fund size is noted as not available**, and although the assets under management (AUM) are disclosed as approximately EUR 300 million based on press articles and their website, formal fund names and detailed fund size breakdowns are absent from public sources[3][5]. This omission explains the lower completeness score. While the provided info covers key strategic, operational, and leadership points, the lack of precise, official fund naming and size details is a limitation. Some investment stage details (""Pre-Seed,"" ""Follow-on"") appear reasonable but are less explicitly detailed in public summaries. - -In summary, the data is factually very well supported by Armilar's official materials and credible financial information sources. The main shortcoming is moderate incompleteness regarding formal fund names and explicit fund size metrics, which aligns with the publicly available information. - -Sources: -https://www.armilar.com/contact -https://www.armilar.com/why-armilar -https://www.armilar.com/esg-policy -https://www.lei-lookup.com/record/2549000RPMJUBKHQT557/ -https://app.dealroom.co/investors/armilar_venture_partners -https://www.privateequityinternational.com/institution-profiles/armilar-venture-partners.html" -"Asahi Kasei ","https://www.asahi-kasei.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Asahi Kasei Corporate VC"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States"",""China"",""Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""High tech"",""Healthcare"",""Medtech"",""Biotech"",""Digital Therapeutics"",""Climate Tech"",""Construction & Real Estate"",""Advanced Materials""],""sourceUrl"":""http://asahikaseiventures.com""}],""headquarters"":""Hibiya Mitsui Tower, 1-1-2 Yurakucho, Chiyoda-ku, Tokyo 100-0006, Japan"",""investmentThesisFocus"":[""Focus on high tech startups and healthcare sectors including medtech, biotech, and digital therapeutics."",""Invest in Climate Tech, Construction & Real Estate, and advanced materials."",""Emphasize open innovation, global partnerships, strategic alliances, and moving technologies from R&D to commercialization."",""Manage investments by participating on boards, leading acquisitions and working closely with Asahi Kasei's business units and R&D for scaling new ventures.""],""investorDescription"":""We, the Asahi Kasei Group, contribute to life and living for people around the world. Asahi Kasei Corp. is a globally distinctive enterprise group with three business sectors - Healthcare, Homes, and Material, creating innovative products and services. From founding in 1922 and advancing core chemical technology, Asahi Kasei has expanded globally, focusing on resolving societal issues including carbon neutrality and healthy longevity."",""linkedDocuments"":[""https://www.asahi-kasei.com/company/pdf/brochure.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":""¥4,015,214 million"",""overallAssetsUnderManagement_sourceProvider"":""Perplexity"",""portfolioHighlights"":[""Aerobiotix"",""AiCure"",""Allievex"",""AM Batteries"",""Aryballe"",""Avation Medical"",""Axine"",""Azafaros"",""CASTOR""],""researcherNotes"":""Overall assets under management or specific fund sizes are not disclosed on the website or related investor documents. The total assets mentioned relate to the company rather than investment fund AUM."",""seniorLeadership"":[{""name"":""Hideki Kobori"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.asahi-kasei.com/company/officer/"",""title"":""Chairman & Director""},{""name"":""Koshiro Kudo"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.asahi-kasei.com/company/officer/"",""title"":""President & Representative Director, Presidential Executive Officer""},{""name"":""Toshiyasu Horie"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.asahi-kasei.com/company/officer/"",""title"":""Representative Director""},{""name"":""Masatsugu Kawase"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.asahi-kasei.com/company/officer/"",""title"":""Director""}],""sources"":{""headquarters"":""https://www.asahi-kasei.com/company/profile/"",""investmentThesisFocus"":""http://asahikaseiventures.com/#about"",""investorDescription"":""https://www.asahi-kasei.com/company/profile/"",""portfolioHighlights"":""http://asahikaseiventures.com/#portfolio""},""websiteURL"":""https://www.asahi-kasei.com""}","Correctness: 98% Completeness: 85% - -The information provided about Asahi Kasei Corporate VC is largely factually accurate and consistent with publicly available details. The geographic focus on the United States, China, and Europe, as well as the sector focuses on high tech, healthcare (including medtech, biotech, and digital therapeutics), climate tech, construction & real estate, and advanced materials align well with Asahi Kasei Ventures’ own statements and general company strategy[3]. The investment thesis emphasizing open innovation, global partnerships, and moving technologies from R&D to commercialization with active investment management also matches descriptions on their website[3]. - -The headquarters specified as Hibiya Mitsui Tower, 1-1-2 Yurakucho, Chiyoda-ku, Tokyo is consistent with the official Asahi Kasei company profile[1]. The senior leadership list (Hideki Kobori as Chairman & Director, Koshiro Kudo as President & Representative Director, etc.) is accurate according to the latest official company officers page[1]. - -The reported overall assets under management figure of ¥4,015,214 million appears to be conflated with the broader company's total assets or financial scale rather than specific venture fund AUM, which is not publicly disclosed. This matches researcher notes and is a key limitation since there is no stated fund size or separate AUM for the VC entity[3]. The ""Not Available"" entries for these fields appropriately reflect this gap in public data. - -Portfolio highlights such as Aerobiotix, AiCure, Allievex, AM Batteries, Aryballe, Avation Medical, Axine, Azafaros, and CASTOR are representative of their investments showcased by Asahi Kasei Ventures[3]. - -The main reason for the slight reduction in completeness score is the lack of detailed information on exact fund size and investment stage preferences, which are either unavailable or not explicitly stated. The overall company financials are sometimes mixed in, which might confuse the distinction between the corporate entity and its VC arm. Also, more detailed strategy insights or specific milestones could add completeness. - -Sources used: -- Asahi Kasei official company profile and officers: https://www.asahi-kasei.com/company/profile/, https://www.asahi-kasei.com/company/officer/ -- Asahi Kasei Ventures website: https://www.asahikaseiventures.com -- Recent financial briefings confirming company scale and investment initiatives: https://www.asahi-kasei.com/news/2025/e250410.html, https://www.asahi-kasei.com/ir/library/financial_briefing/pdf/mar2025.pdf" -"Arya Ventures ","https://fund.aryawomen.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 250,000 - 500,000"",""fundName"":""Arya GSYF Investment Strategy"",""fundSize"":""USD 25 million"",""fundSizeSourceUrl"":""https://startinturkiye.gov.tr/funds/arya-vcif"",""geographicFocus"":[""Türkiye""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Sector Agnostic""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://fund.aryawomen.com/our-approach/""}],""headquarters"":""Istanbul, Turkey"",""investmentThesisFocus"":[""Focus on gender-lens investing targeting gender-balanced, tech-driven startups."",""Preference for startups with high scalability and global competitiveness."",""Sector agnostic investment approach."",""Geographic focus primarily on Türkiye (85%).""],""investorDescription"":""Arya GSYF is Turkiye's first and only venture capital fund focused on gender balance. With a commitment to high returns and high impact. Arya VC, Türkiye's first and only gender-focused venture capital fund, moves swiftly to seize the best opportunities in gender-balanced investments. Balance within our team isn't just a value—it's our edge. By uniting diverse perspectives and expertise, we ignite bold ideas and sharper decisions."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":""USD 25 million"",""portfolioHighlights"":[""Cellestetix"",""Denebunu"",""Feedback4e"",""Finedine"",""Getmobil"",""Ingosa"",""Juphy"",""Kiralarsın"",""Navlungo"",""Phitech""],""researcherNotes"":""AUM and headquarters address were not found on the website. No fund size information is provided."",""seniorLeadership"":[{""name"":""Ahu Büyükküşoğlu Serter"",""sourceProvider"":""Arya GSYF Website"",""sourceUrl"":""https://fund.aryawomen.com/team/"",""title"":""General Partner""},{""name"":""Özlem Tümer Eke"",""sourceProvider"":""Arya GSYF Website"",""sourceUrl"":""https://fund.aryawomen.com/team/"",""title"":""General Partner""},{""name"":""Sanem Tatlıdil Özal"",""sourceProvider"":""Arya GSYF Website"",""sourceUrl"":""https://fund.aryawomen.com/team/"",""title"":""General Partner""}],""sources"":{""headquarters"":""https://startinturkiye.gov.tr/funds/arya-vcif"",""investmentThesisFocus"":""https://fund.aryawomen.com/our-approach/"",""investorDescription"":""https://fund.aryawomen.com/"",""portfolioHighlights"":""https://fund.aryawomen.com/portfolio/""},""websiteURL"":""https://fund.aryawomen.com/""}","Correctness: 95% Completeness: 85% - -The information about Arya GSYF Investment Strategy is largely factually accurate based on the sources available. Arya GSYF is indeed Turkey’s first and only venture capital fund specifically focused on gender balance, with an emphasis on high impact and high returns through gender-lens investing, primarily targeting gender-balanced, tech-driven startups[2][4]. The fund focuses on seed and Series A stages and is sector agnostic with a principal geographic focus on Türkiye, consistent with the claim of about 85% investment focus there[2][4]. The senior leadership listing of General Partners Ahu Büyükküşoğlu Serter, Özlem Tümer Eke, and Sanem Tatlıdil Özal matches what is publicly shown on Arya’s website[2]. The portfolio highlights including companies like Finedine, Denebunu, and Feedback4e are also verifiable from the official portfolio page and external announcements of investments led by Arya GSYF[2][5]. - -The fund size and overall assets under management are provided as USD 25 million by the cited national Turkey startup ecosystem sources, which align with the reported size[1]. The estimated investment size (USD 250,000 - 500,000) is plausible given the seed and Series A stage focus but is not directly confirmed by public documents. - -The headquarters location as Istanbul, Turkey, is affirmed by the government and public information sites[1]. - -However, some minor gaps affect completeness. The researcher notes that AUM and headquarters were not explicitly found on Arya’s own website, only via third-party or governmental sources[1][2]. There is no detailed disclosure of fund size or committed capital on their official pages, which lowers completeness. Additionally, while the investment thesis and portfolio are well represented, financials, detailed performance data, and specific geographic investment percentages (beyond ""primarily Türkiye"") are not fully disclosed publicly. - -Thus, while the factual correctness of the core data is high, the completeness score is moderate because key data points like exact fund size details and complete AUM disclosure directly from Arya’s site are missing or only inferred from secondary sources. - -Sources: - -- https://fund.aryawomen.com/our-approach/ - -- https://startinturkiye.gov.tr/funds/arya-vcif - -- https://fund.aryawomen.com/portfolio/ - -- https://f4e.app/en/we-are-excited-to-announce-that-f4e-has-received-a-1m-investment-for-our-ai-powered-performance-management-platform/ - -- https://assets.kpmg.com/content/dam/kpmg/tr/pdf/2024/05/Turkish%20Startup%20Investments%20Q1%202024.pdf" -"Armira ","http://www.armira.de/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 20,000,000 - 200,000,000"",""fundName"":""Armira Mittelstand"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""DACH"",""Northern Italy"",""Beyond""],""investmentStageFocus"":[""Majority stakes investment""],""sectorFocus"":[""Medium-sized Mittelstand companies"",""Established, profitable companies"",""Sustainable business models""],""sourceUrl"":""https://www.armira.de/en/""},{""estimatedInvestmentSize"":""EUR 10,000,000 - 100,000,000"",""fundName"":""Armira Growth"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Growth stage""],""sectorFocus"":[""European tech companies"",""Fast-growing companies with proven business models""],""sourceUrl"":""https://www.armira.de/en/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Armira Opportunities"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Significant minority investments""],""sectorFocus"":[""Health"",""Life Sciences"",""Tech sectors""],""sourceUrl"":""https://www.armira.de/en/""}],""headquarters"":""Armira Beteiligungen GmbH & Co. KG Registered Office: Munich Prinzregentenstr. 61 | 81675 Munich | Germany"",""investmentThesisFocus"":[""Focus on partnership, trust, and long-term horizon in investments."",""Investment thesis centers on sustainable business models."",""Avoids sectors such as tobacco, weapons, gambling, and fossil fuels."",""Good governance is evaluated through due diligence and regularly monitored."",""Environmental and social data are obtained from portfolio companies during due diligence and holding periods to monitor compliance with exclusions.""],""investorDescription"":""Armira is a leading investment holding providing entrepreneurial capital for entrepreneurial partnerships with a long-term horizon. It serves family investors, entrepreneurs seeking to invest in Mittelstand and resilient growth companies, and entrepreneurs looking for co-owners for growth."",""linkedDocuments"":[""https://www.armira.de/en/key-information-documents/""],""missingImportantFields"":[""portfolioHighlights"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 3,000,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.armira.de/en/""},""portfolioHighlights"":[],""researcherNotes"":""AUM inferred from statement 'Has invested over EUR 3bn equity' as explicit AUM date not available. Multiple distinct funds identified on the website. No portfolio specific companies or senior leadership names found on accessible pages."",""seniorLeadership"":[{""name"":""Christian Bailly"",""sourceProvider"":""Perplexity"",""title"":""Managing Director of the General Partner and Managing Partner""},{""name"":""Peter Dill"",""sourceProvider"":""Perplexity"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.armira.de/en/imprint/"",""investmentThesisFocus"":""https://www.armira.de/en/"",""investorDescription"":""https://www.armira.de/en/"",""portfolioHighlights"":""https://www.armira.de/en/portfolio/""},""websiteURL"":""http://www.armira.de/""}","Correctness: 95% Completeness: 85% - -The provided information about Armira Beteiligungen GmbH & Co. KG is largely factually correct and aligns with authoritative sources. Armira invests equity over €3 billion in family businesses and growth companies mainly in the DACH region and beyond, consistent with sources[2][4]. The fund names, investment sizes, and geographic focus stated are mostly accurate: - -- Armira Mittelstand invests EUR 20–200M in majority stakes in medium-sized Mittelstand companies, focused on established, profitable, sustainable business models in DACH, Northern Italy, and beyond[2]. -- Armira Growth focuses on growth equity investments of roughly EUR 10–100M in European tech companies with proven business models[1][2]. -- Armira Opportunities targets significant minority investments in health, life sciences, and tech sectors[2]. - -The headquarters address in Munich is confirmed[2]. The investment thesis emphasis on partnership, trust, sustainability, and exclusion of tobacco/weapons/gambling/fossil fuels matches the company's stated values and approach[2]. Senior leadership names Christian Bailly and Peter Dill are consistent with available mentions of management (though not exhaustively documented publicly)[5]. - -However, some completeness gaps exist: - -- Precise *fund sizes* for Armira Mittelstand and Armira Opportunities are not explicitly stated on the website; the ranges are consistent estimates[2], but exact closed fund size figures or latest fundraise amounts are lacking, which affects completeness. -- Portfolio highlights/companies are largely absent from the main site and were not provided, resulting in missing concrete investment examples[2]. -- Senior leadership beyond two directors is not detailed despite some publicly known figures involved in related funds[5]. -- The exact date for the EUR 3 billion assets under management figure is not specified, inferred only from statements of total equity invested[2][4]. - -Overall, the data is suitably accurate based on Armira's official website and reputable coverage[1][2][4], but the incompleteness of detailed portfolio and leadership information, as well as exact fund sizes, merits a partial score reduction. - -URLs used: -https://www.armira.de/en/ -https://siliconcanals.com/armira-growth-raises-200m/ -https://www.dealsuite.com/en/company/armira-beteiligungen-gmbh-co-kg" -"Astanor Ventures ","https://www.astanor.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1,000,000 - 10,000,000"",""fundName"":""Astanor Venture"",""fundSize"":""EUR 800,000,000"",""fundSizeSourceUrl"":""https://astanor.com/venture"",""geographicFocus"":[""Europe"",""United States""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Agriculture"",""Food Technology"",""Microbiology"",""Bio-based Economy""],""sourceUrl"":""https://astanor.com/venture""},{""estimatedInvestmentSize"":""EUR 15,000,000 - 80,000,000"",""fundName"":""Astanor Growth"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""United States""],""investmentStageFocus"":[""Growth""],""sectorFocus"":[""Innovative Agrifood Companies""],""sourceUrl"":""https://astanor.com/growth""}],""headquarters"":""Paris, France"",""investmentThesisFocus"":[""Transforming the agrifood system by fostering innovation and impact from soil and sea to gut."",""Purpose-driven investments targeting sustainable agriculture, biodiversity, health, social equity, greenhouse gas emissions reduction, and water use efficiency."",""Two complementary main strategies: Astanor Venture (seed to early growth) and Astanor Growth (growth and small buyouts)."",""Impact KPIs tracked include CO2e avoided, land use avoided, water avoided, farmers financed, healthy products sold, and plant-days analyzed."",""Impact management includes assessment at pre-investment and annual reviews, using Life-Cycle Analysis and surveys to measure environmental and social impacts.""],""investorDescription"":""Astanor Ventures raises capital (€800M), with 45+ investments and 1200+ employees across its portfolio. Its team has 35+ experienced professionals of 12+ nationalities, operating from 5 offices in Europe and the US. Mission: To build a more resilient planet by transforming the agrifood system through innovation and impact 'from soil and sea to gut'. Identity: Purpose-driven investment firm focusing on sustainability and resilience in agrifood, supporting visionary founders committed to sustainable food systems. Focus: Investing across seed to growth stages via two main strategies—Astanor Venture and Astanor Growth—comprehensively supporting businesses in the agrifood sector. Impact focus areas: biodiversity, health (sustainable agriculture, soil regeneration, nutrition), social equity and socioeconomic stability, greenhouse gas emission reduction, and water use sustainability."",""linkedDocuments"":[""https://astanor.com/wp-content/uploads/2025/04/2025-Impact-Performance-Reporting-final-1.pdf"",""https://astanor.com/wp-content/uploads/2025/04/Group-Complaints-Handling-Policy-Astanor-Ventures-September-2022.pdf""],""missingImportantFields"":[""headquarters"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""EUR 800,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://astanor.com/venture""},""portfolioHighlights"":[""AllSeed"",""Amplifye"",""Apeel"",""Aphea Bio"",""Bettafish"",""Biofluff"",""Bloom Ag"",""Calice"",""Calyxia"",""CrowdFarming""],""researcherNotes"":""Astanor Ventures' overall AUM of EUR 800 million is explicitly stated on the website under the Ventures strategy page. The Growth fund size is not specified. Headquarters address is not available on the website, including the contact and footer sections."",""seniorLeadership"":[{""name"":""Eric Archambeau"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Senior Managing Partner""},{""name"":""Hans Marteau"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Managing Partner""},{""name"":""Hendrik Van Asbroeck"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Managing Partner""},{""name"":""Harry Briggs"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Partner""},{""name"":""Emmanuel Faber"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Partner""},{""name"":""Leslie Kapin"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Partner""},{""name"":""Hélène Henry-Prince"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Partner""},{""name"":""George Powlick"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Partner""},{""name"":""Christina Ulardic"",""sourceUrl"":""https://astanor.com/team/"",""title"":""Partner""}],""sources"":{""headquarters"":""Perplexity external research based on Astanor public job listing and business news indicating Paris HQ"",""investmentThesisFocus"":""https://astanor.com/"",""investorDescription"":""https://astanor.com/"",""portfolioHighlights"":""https://astanor.com/portfolio""},""websiteURL"":""https://www.astanor.com""}","Correctness: 95% Completeness: 85% - -The factual information about Astanor Ventures and Astanor Growth is largely accurate and aligns well with publicly available data from Astanor’s official website and reputable news sources. The **fund sizes, investment stages, sectoral focus, geographical focus, investment thesis, and impact KPIs** detailed in the input match well with Astanor’s disclosed data on their site and recent press.[2][3][4] For example, the **Venture fund size of EUR 800 million** is explicitly confirmed on Astanor’s Venture page, reflecting recent fundraises around €360 million for the second fund and the accumulation of capital over time.[2][3] The description of their **two complementary investment strategies—Venture (seed to Series B) and Growth (growth-stage)**—is consistent with the firm’s website and leadership commentary.[4] - -However, the **fund size for Astanor Growth is not publicly disclosed**, which the input correctly notes as missing.[1][2] This reflects incomplete public data rather than an error. Also, while the input lists **Paris, France as the headquarters** from external business news and job listings, Astanor is commonly described in media and official filings as **Brussels-based** or Belgian headquartered.[1][2] This slight inconsistency reduces the correctness score marginally because the input’s stated headquarters conflicts with some authoritative sources. The firm's offices are indeed multiple and include locations in Europe and the US, but Brussels is often referenced as the main hub. - -The **investor description detailing team size, mission, leadership, impact focus areas, and portfolio companies** is corroborated by their website.[3][4] Impact KPIs, including CO2e avoided, land use avoided, water avoided, and social metrics, are validated by official impact disclosure documents from Astanor.[3][5] - -The **senior leadership names and titles** match those found on Astanor’s team page, ensuring accuracy there.[3] - -In summary, the data is **factually accurate overall**, with minor ambiguity around the official headquarters location and incomplete disclosure of the Growth fund size. The completeness score is somewhat lowered due to unavailable details on the Growth fund size and a lack of official headquarters address on Astanor’s site. The material comprehensively covers investment focus, impact metrics, and leadership, reflecting an in-depth portrayal of the firm. - -**Sources:** - -- Astanor Ventures official website: https://astanor.com/venture, https://astanor.com/growth, https://astanor.com/team -- Impact Investor news about Astanor’s €360m close: https://impact-investor.com/agri-food-investor-astanor-announces-e360m-final-close-for-second-fund-ef/ -- Astanor’s impact disclosure documentation: https://astanor.com/wp-content/uploads/2025/04/GHVM-S2-Website-Disclosure-.pdf -- AgFunderNews interview with Eric Archambeau (Astanor): https://agfundernews.com/astanor-ventures-eric-archambeau-on-agrifoodtech-investing-it-annoys-me-when-people-say-that-will-never-work -- Perplexity research confirming Paris HQ from ancillary business news - -This justifies a correctness score of about 95% and completeness score of 85%." -"BackBone Ventures ","https://www.backbone.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 300,000 to 400,000"",""fundName"":""Backbone Ventures 5502 Fund"",""fundSize"":""EUR 20,000,000"",""fundSizeSourceUrl"":""https://www.backbone.vc/focus"",""geographicFocus"":[""Germany"",""Switzerland"",""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed""],""sectorFocus"":[""Generalist - includes B2B, B2C, HealthTech, ClimateTech, SaaS, Future-of-work""],""sourceUrl"":""https://www.backbone.vc/focus""}],""headquarters"":""BackBone Ventures AG, Waisenhausstrasse 5, CH-8001 Zürich; Backbone Ventures GmbH, TechQuartier, c/o Backbone Ventures GmbH, Platz der Einheit 2, D-60327 Frankfurt"",""investmentThesisFocus"":[""Invest in founders, not just ideas, targeting early stages including those with only a pitch deck or idea."",""Focus on founders who have outperformed competitors despite structural disadvantages such as gender, origin, or socioeconomic background."",""Invest in founders with traits like grit, resilience, humbleness."",""Generalist industry focus but prefers founders with relevant industry experience."",""Focus on large markets and right skillsets."",""Geographical focus mainly on Germany and Switzerland, but can invest across Europe.""],""investorDescription"":""Backbone Ventures is an early-stage venture capital firm based in Zurich and Frankfurt am Main, founded in 2018. Initially investing on a deal-by-deal basis, since September 2022 they have primarily invested through their Backbone Ventures 5502 Fund, a EUR 20 million pre-seed fund focused on Germany and Switzerland. They invest in founders, not just ideas, aiming to back entrepreneurs at the very early stages, even those with only a pitch deck or an idea, focusing on large markets and right skillsets. Their 5502 fund targets founders who have outperformed competitors despite structural disadvantages related to gender, origin, or socioeconomic background."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""September 2022"",""aumAmount"":""EUR 20,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/focus""},""portfolioHighlights"":[""Adon Health"",""Proofcheck"",""Faircado"",""liftOS"",""Crown Procurement"",""Evoralis""],""researcherNotes"":""AUM and fund size are explicitly stated as EUR 20 million for the Backbone Ventures 5502 Fund as of September 2022. No additional funds or overall AUM figures were found. The fund focuses primarily on early-stage pre-seed investments in Germany and Switzerland."",""seniorLeadership"":[{""name"":""Philippe Bernet"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Partner""},{""name"":""Miklos Stanek"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Partner""},{""name"":""Dr. Jan Claudio Muñoz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Partner""},{""name"":""Louis-Paul Zuppinger"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Partner""},{""name"":""Mark Hoffmann"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Board of Directors""},{""name"":""Etienne Boitel"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Board of Directors""},{""name"":""Dr. Heinrich Baumann"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Board of Directors""},{""name"":""Josef Ming"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.backbone.vc/team"",""title"":""Board of Directors""}],""sources"":{""headquarters"":""https://www.backbone.vc/imprint"",""investmentThesisFocus"":""https://www.backbone.vc/focus"",""investorDescription"":""https://www.backbone.vc/"",""portfolioHighlights"":""https://www.backbone.vc/founders""},""websiteURL"":""https://www.backbone.vc""}","Correctness: 100% Completeness: 95% - -The provided information about Backbone Ventures is factually accurate and largely complete based on multiple independent sources. The firm is an early-stage venture capital firm founded in 2018, with headquarters in Zurich and Frankfurt, and it predominantly invests through its Backbone Ventures 5502 Fund, which closed at EUR 20 million as of September 2022[1][2][4][5]. This fund focuses on pre-seed investments, primarily in Germany and Switzerland, with around EUR 300,000 to 400,000 invested per startup, totaling about 25-30 investments planned[1][3][5]. The investment thesis expressly targets founders who have outperformed despite structural disadvantages related to gender, origin, or socioeconomic background, emphasizing backing founders rather than just ideas, even at the earliest stage with only a pitch deck or idea[1][2][3][5]. The sector focus is generalist but includes B2B, B2C, HealthTech, ClimateTech, SaaS, and future-of-work, consistent with their portfolio companies like Adon Health and others mentioned[5]. The leadership team names match the disclosed partners and board members[5]. - -Some minor details impacting completeness: The exact fund size is EUR 20 million (not CHF 20 million, though some sources use CHF equivalently)[1][3]. The geographic focus extends to Europe generally but mainly Germany and Switzerland[1][2][5]. There is no mention of additional funds or wider assets under management beyond the 5502 Fund, consistent with available data[4]. The addresses provided match official imprint details[4]. Notably, the fund name “5502” is linked to the postcode of a Chilean village connecting to a partner’s origin, which is consistent with official explanations[2][3]. - -The omission of some portfolio company details and the explicit full list of founders supported is typical and does not substantially impair completeness since main portfolio highlights are cited. Overall, the description aligns perfectly with official Backbone Ventures sources (https://www.backbone.vc/focus, https://www.backbone.vc/team, https://www.backbone.vc/), and credible press coverage[1][2][3][4]. - -Sources: -- https://www.backbone.vc/focus -- https://www.backbone.vc/team -- https://www.backbone.vc/ -- https://www.startupticker.ch/en/news/eur-20-million-for-underrepresented-founders -- https://station-frankfurt.de/2022/11/10/backbone-ventures-announces-first-closing-of-its-5502-fund/ -- https://www.seca.ch/en/find-members/backbone-ventures/" -"Artal ","http://artal.no/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Artal MENA Fund"",""fundSize"":""SAR 32,000,000"",""fundSizeSourceUrl"":""https://artalcapital.com/wp-content/uploads/2025/04/Artal-MENA-Fund-Factsheet-En.pdf"",""geographicFocus"":[""Saudi Arabia"",""UAE"",""Kuwait"",""Qatar""],""investmentStageFocus"":[""Publicly listed companies"",""IPOs""],""sectorFocus"":[""Banks"",""Real Estate Management & Development"",""Materials"",""Consumer Services"",""Cash & Cash Equivalents"",""Transportation"",""Commercial & Professional Services"",""Telecommunication Services"",""Insurance"",""Energy"",""Household & Personal Products"",""IT Services"",""Food & Beverages""],""sourceUrl"":""https://artalcapital.com/wp-content/uploads/2025/04/Artal-MENA-Fund-Factsheet-En.pdf""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Artal Murabaha Fund"",""fundSize"":""SAR 459,000,000"",""fundSizeSourceUrl"":""https://artalcapital.com/wp-content/uploads/2025/04/Artal-Murabaha-Fund-Factsheet-En.pdf"",""geographicFocus"":[""Saudi Arabia""],""investmentStageFocus"":[""Short-term financial instruments""],""sectorFocus"":[""Murabaha deposits"",""Shariah-compliant financial instruments""],""sourceUrl"":""https://artalcapital.com/wp-content/uploads/2025/04/Artal-Murabaha-Fund-Factsheet-En.pdf""},{""estimatedInvestmentSize"":""USD 10,000,000 to 20,000,000"",""fundName"":""Artal Growth Opportunities Fund"",""fundSize"":""SAR 500,000,000"",""fundSizeSourceUrl"":""https://artalcapital.com/en/2024/04/22/artal-capital-announces-first-close-of-artal-growth-opportunities-fund/"",""geographicFocus"":[""Saudi Arabia"",""GCC region""],""investmentStageFocus"":[""Growth stage""],""sectorFocus"":[""Technology-enabled growth capital investments""],""sourceUrl"":""https://artalcapital.com/en/2024/04/22/artal-capital-announces-first-close-of-artal-growth-opportunities-fund/""}],""headquarters"":""7995 Abu Baker Street, Riyadh 12444-2350, Saudi Arabia"",""investmentThesisFocus"":[""Leveraging an extensive network and skilled investment team."",""Emphasizing post-investment value creation."",""Focus on achieving exceptional returns through experienced management."",""Targeting multi-asset investments including public equities, private equity, venture capital, and real estate.""],""investorDescription"":""Artal Capital is an independent investment management company licensed by the Capital Market Authority of Saudi Arabia, offering a multi-asset platform targeting listed stocks, private equity, venture capital, and real estate investments. The firm focuses on exceptional returns through a skilled investment team and post-investment value creation. The management team has a strong long-term track record and experience in handling economic variables."",""linkedDocuments"":[""https://artalcapital.com/wp-content/uploads/2023/08/Artal-Board-Report-2022.pdf"",""https://artalcapital.com/wp-content/uploads/2024/03/%D8%AA%D9%82%D8%B1%D9%8A%D8%B1-%D9%85%D8%AC%D9%84%D8%B3-%D8%A7%D9%84%D8%A5%D8%AF%D8%A7%D8%B1%D8%A9-2023.pdf"",""https://artalcapital.com/wp-content/uploads/2025/03/Artal-Capital-Annual-Report-2024-AR.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":""Approximately SAR 991,000,000"",""portfolioHighlights"":[""FlyAkeed""],""researcherNotes"":""The overall Assets Under Management (AUM) figure is not explicitly mentioned on the website or in the available fund documents. Fund sizes for key funds are provided explicitly. The estimated investment size is available only for the Artal Growth Opportunities Fund. Other funds do not specify estimated investment size."",""seniorLeadership"":[{""name"":""Fawaz Alrajhi"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://wpdev.osa.ma/en/about/"",""title"":""Founder & Chairman""},{""name"":""Fahad Alkassim"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://artalcapital.com/en/about#tab_team"",""title"":""Vice Chairman""},{""name"":""Saad Algheriri"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://artalcapital.com/en/about#tab_team"",""title"":""Board Member""},{""name"":""Rayan Alrasheed"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://artalcapital.com/en/about#tab_team"",""title"":""CEO""},{""name"":""Osama Alshaikh"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.lusha.com/business/851de957e85e0a3e/"",""title"":""Head of Asset Management""},{""name"":""Wassim Moukahhal"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://artalcapital.com/en/about#tab_team"",""title"":""Head of Alternatives""},{""name"":""Rehab Alkhudair"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.privateequityinternational.com/institution-profiles/artal-capital.html"",""title"":""Chief Operating Officer""},{""name"":""Alwaleed Almubarak"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.privateequityinternational.com/institution-profiles/artal-capital.html"",""title"":""Head of Compliance, AML/CTF & Governance""}],""sources"":{""headquarters"":""https://artalcapital.com/en/contacts"",""investmentThesisFocus"":""https://artalcapital.com/en/about/"",""investorDescription"":""https://artalcapital.com/en/about/"",""portfolioHighlights"":""https://artalcapital.com/en/2024/04/22/artal-capital-announces-first-close-of-artal-growth-opportunities-fund/""},""websiteURL"":""http://artal.no/""}","Correctness: 98% Completeness: 90% - -The provided information about Artal Capital and its funds is largely factually accurate and well-supported by authoritative sources. The details on the **Artal MENA Fund** match the official factsheet dated Q1 2025, listing the fund size as SAR 32 million, open-ended, denominated in SAR, with investment focus on publicly listed companies and IPOs across Saudi Arabia, UAE, Kuwait, and Qatar[3]. The interim financial statements from June 2025 corroborate the net assets figure of approximately SAR 32.75 million and note the portfolio composition including cash and financial assets[2]. - -The description of the **Artal Murabaha Fund**, with a fund size of SAR 459 million focusing on short-term Shariah-compliant financial instruments within Saudi Arabia, aligns with the factsheet linked in the query, although this fund is less openly documented in the search results. The **Artal Growth Opportunities Fund** is correctly described as a SAR 500 million fund targeting technology-enabled growth stage investments across Saudi Arabia and the GCC, with estimated investment sizes between USD 10-20 million[3][query data]. - -The senior leadership names and titles correspond well with official Artal Capital team pages and private equity profiles[query][Perplexity sources]. - -The overall Assets Under Management (AUM) figure of approximately SAR 991 million is not explicitly verifiable from the available public documents but is a reasonable aggregate derived from combining the disclosed fund sizes. The search results did not provide an explicit consolidated AUM statement, just individual fund data and a figure of $600 million (~SAR 2.25 billion) mentioned in a 2024 article but without full detail; thus, the AUM figure given is plausible but not fully confirmed[4]. - -The investment thesis themes—leveraging a skilled team, multi-asset class focus including venture and private equity, and emphasis on value creation—are consistent with Artal Capital’s website and public statements[query][3]. - -### Minor gaps or considerations: - -- The specific estimated investment size is available only for the Growth Opportunities Fund; the others list it as ""Not Available,"" consistent with documents. -- There is no detailed portfolio breakdown beyond noting a highlighted investment in FlyAkeed. -- The overall AUM is not officially confirmed in a singular source but inferred from public fund sizes. -- The headquarters address matches publicly listed data on the official site[query][sources]. - -### URLs used: - -- https://artalcapital.com/wp-content/uploads/2025/04/Artal-MENA-Fund-Factsheet-En.pdf -- https://artalcapital.com/en/2024/04/22/artal-capital-announces-first-close-of-artal-growth-opportunities-fund/ -- https://www.saudiexchange.sa/Resources/mfpdfs/stmt/3923_1_2025-08-11_18-57-49_En.pdf -- https://artalcapital.com/en/about/ -- https://artalcapital.com/en/contacts -- https://www.privateequityinternational.com/institution-profiles/artal-capital.html - -In sum, this data is mostly complete and accurate with credible source backing, missing only a few explicit confirmations of aggregated AUM and some portfolio details." -"Arches Capital ","https://arches.capital/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arches Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Benelux""],""investmentStageFocus"":[""Early Stage"",""Scaling""],""sectorFocus"":[""B2B Software"",""B2B2C Software""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://arches.capital/focus""}],""headquarters"":""Amsterdam, Netherlands"",""investmentThesisFocus"":[""Focus on B2B (or B2B2C) Software companies in the Benelux region but open to exceptional teams/products outside this scope."",""Invest in early-stage and scaling companies by acquiring minority equity shares."",""Require a strong and balanced team, a compelling product, existing clients, a repeatable sales model, and clear market opportunity and competitive landscape."",""Offer professional deals using standard, fair, and modern documentation."",""Applications should include problem/solution, product/technology, market fit, competition, go-to-market strategy, business model, team, cap table, financials, and investment plan.""],""investorDescription"":""Arches Capital is a fast growing group of business angels bridging the gap between Venture Capitalists and Business Angels. They source, select, and invest like a VC, and engage and inspire as angels. Their strategy bundles smart capital (funding plus business knowledge and experience) with active engagement supporting early-stage companies to ignite growth. They invest in early-stage companies ready to scale fast, focusing on B2B or B2B2C software companies in the Benelux region, taking minority equity stakes. Their investor group consists of seasoned entrepreneurs and serial angel investors. From this group, a lead investor engages actively with founders and the advisory board. They support follow-on investments for portfolio companies."",""linkedDocuments"":[""https://arches.capital/wp-content/uploads/2024/06/Standaard-Term-Sheet-Arches-Capital-v2024June-1.pdf"",""https://arches.capital/wp-content/uploads/2024/06/Standaard-Term-Sheet-Arches-Capital-incl.-comments-v2024June-1.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Peckish"",""Cruit"",""Next Ocean"",""The Grid"",""Simpl.energy"",""Runnr.ai"",""Wezoo"",""CostPerform"",""SyncVR"",""Learned"",""WPCS"",""Thinkwise"",""The Selection Lab"",""Desty Travel"",""EclecticIQ"",""Regulatory Lab"",""TheyDo"",""Appjection"",""CodeSandbox"",""Eco movement"",""Enpicom"",""Publishizer"",""PESCHECK""],""researcherNotes"":""AUM and specific investment size details are not mentioned or disclosed on the website. Fund size is also not provided. This is common for angel group structures rather than traditional venture capital funds."",""seniorLeadership"":[{""name"":""Frank Appeldoorn"",""sourceUrl"":""https://linkedin.com/in/frank-appeldoorn-94065a"",""title"":""Founder, Venture Capitalist""}],""sources"":{""headquarters"":""https://www.preqin.com/data/profile/fund-manager/arches-capital/317118"",""investmentThesisFocus"":""https://arches.capital/focus"",""investorDescription"":""https://arches.capital/"",""portfolioHighlights"":""https://arches.capital/investments/""},""websiteURL"":""https://arches.capital/""}","Correctness: 98% Completeness: 85% - -The provided description of Arches Capital is highly accurate and well-supported by multiple authoritative sources. The firm is indeed based in Amsterdam, Netherlands, with a clear investment focus on early-stage and scaling **B2B and B2B2C software companies primarily in the Benelux region** but is open to exceptional teams beyond that scope[3][4]. They invest by acquiring minority equity shares and require strong founding teams, compelling products, existing clients, and repeatable sales models, consistent with their stated investment thesis[3]. The description correctly identifies that Arches Capital is a group of business angels blending venture capital-like investment behavior with angel-style engagement and that it actively supports early-stage companies to ignite growth[3][4]. - -The name and role of **Frank Appeldoorn as Founder and Venture Capitalist** is confirmed, along with the presence of other senior leadership such as Diederik Stolk and Lotte van Ditshuizen, which aligns with publicly available team information[5]. - -The notable portfolio companies listed (e.g., Peckish, Thinkwise, Desty Travel, EclecticIQ) are accurately reflected in press releases and the firm's website[1][3]. The firm also offers standard, fair, modern documentation and requires detailed applications including financials and investment plans, which aligns with their publicly stated process[3]. - -**Limitations and missing details** lower completeness: while early-stage investment focus and portfolio highlights are detailed, important quantitative data such as overall assets under management (AUM), fund size, and typical estimated investment sizes are not publicly disclosed, which is common for angel group structures[1][2]. This gap is also noted explicitly in the “missingImportantFields” section. Available data indicate a first close of a fund I at €17.5 million recently but detailed fund size or AUM specifics are not fully documented[1][2]. - -In summary, the information is factually very accurate per multiple official and reliable sources, but the absence of precise fund size and AUM details reduces completeness. - -Sources used: - -- https://arches.capital/ (official website, investment focus, thesis, portfolio)[3] - -- https://arches.capital/press-releases/ (portfolio investments details)[1] - -- https://www.privateequityinternational.com/institution-profiles/arches-capital.html (office location, leadership)[2] - -- https://www.ifg.nl/en/funds/arches-capital/ (investor description, thesis)[4] - -- https://arches.capital/team/ (senior leadership bios)[5]" -"ARCH Venture Partners ","http://www.archventure.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ARCH Venture Fund XII"",""fundSize"":""USD 2975000000"",""fundSizeSourceUrl"":""https://www.archventure.com/arch-venture-partners-announces-2-975-billion-fund-xii-to-create-and-fund-early-stage-biotechnology-companies/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Biotechnology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/arch-venture-partners-announces-2-975-billion-fund-xii-to-create-and-fund-early-stage-biotechnology-companies/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ARCH Venture Fund XI"",""fundSize"":""USD 1941000000"",""fundSizeSourceUrl"":""https://www.archventure.com/arch-venture-partners-announces-2-975-billion-fund-xii-to-create-and-fund-early-stage-biotechnology-companies/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Biotechnology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/arch-venture-partners-announces-2-975-billion-fund-xii-to-create-and-fund-early-stage-biotechnology-companies/""}],""headquarters"":""8755 W. Higgins Rd., Suite 1025, Chicago, IL 60631"",""investmentThesisFocus"":[""Follows the science to found companies based on revolutionary technologies."",""Takes a long-term view and is flexible in approach."",""Invests as needed to build companies through formation stages and growth."",""Backing great science and partnering with amazing people."",""Building disruptive companies globally with flexible investment sizing."",""Leverages an extended network of partners.""],""investorDescription"":""ARCH has over 30 years of experience backing disruptive science companies, investing amounts ranging from $50K to hundreds of millions per company. They are contrarian, bold, imaginative risk takers focused on revolutionary technologies that impact people's lives."",""linkedDocuments"":[""https://archventure.com/wp-content/uploads/2024/08/comprehensive-portfolio-list-07-31-2024.pdf""],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 4,916,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/arch-venture-partners-announces-2-975-billion-fund-xii-to-create-and-fund-early-stage-biotechnology-companies/""},""portfolioHighlights"":[""Scholar Rock"",""SciNeuro Pharmaceuticals"",""Seaport Therapeutics"",""Semma Therapeutics"",""Singleron Biotechnologies"",""Singular Genomics Systems"",""Sironax"",""Skylark Bio"",""Slingshot Biosciences"",""Sonoma Biotherapeutics""],""researcherNotes"":""The overall AUM was inferred by summing the sizes of Fund XII and Fund XI as presented on the official announcement page. Estimated investment size per company was not specified on the website."",""seniorLeadership"":[{""name"":""Robert Nelsen"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/robert-nelsen/"",""title"":""Co-founder & Managing Director""},{""name"":""Keith Crandell"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/keith-crandell/"",""title"":""Co-founder & Managing Director""},{""name"":""Kristina Burow"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/kristina-burow/"",""title"":""Managing Director""},{""name"":""Steve Gillis, Ph.D."",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/steve-gillis/"",""title"":""Managing Director""},{""name"":""Paul Berns"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/paul-berns/"",""title"":""Managing Director""},{""name"":""Clinton Bybee"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/clinton-bybee/"",""title"":""Co-founder & Managing Director, Emeritus""},{""name"":""Mark McDonnell"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/mark-mcdonnell/"",""title"":""Managing Director, CFO & CAO""},{""name"":""Jason Doren"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/jason-doren/"",""title"":""General Counsel""},{""name"":""Brian Cuneo"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/brian-cuneo/"",""title"":""Senior Partner""},{""name"":""John Maraganore, Ph.D."",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.archventure.com/team/john-maraganore-ph-d/"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://www.archventure.com/contact/"",""investmentThesisFocus"":""https://www.archventure.com/about/"",""investorDescription"":""https://www.archventure.com/about/"",""portfolioHighlights"":""https://archventure.com/portfolio/""},""websiteURL"":""http://www.archventure.com""}","Correctness: 95% Completeness: 85% - -The provided information about ARCH Venture Partners is largely factually accurate. ARCH is indeed headquartered in Chicago, IL, focusing on early-stage biotechnology investments globally with funds such as ARCH Venture Fund XII ($2.975B) and Fund XI ($1.941B). The total assets under management figure ($4.916B) is reasonably inferred by summing these two funds, corresponding with publicly available announcements of Fund XII's size and prior funds[1][5]. The senior leadership team listed matches official profiles on ARCH’s website[2]. - -The investment thesis and description align well with ARCH’s emphasis on backing revolutionary science through long-term, flexible investments that support company formation and growth[2][3]. The portfolio highlights and investor approach also reflect their known biotech focus and track record[1]. - -However, the correctness is slightly below 100% because the newest fund is Fund XIII (over $3B), announced and closed in 2024, which supersedes Fund XII. This newer fund is not mentioned in the provided data and would affect the total AUM figure, meaning the stated $4.9B AUM is outdated and incomplete relative to current public information[3][4][5]. - -Regarding completeness, the provided data does not mention the newest Fund XIII and its size, which is a significant omission given its recent closing at over $3 billion and role in ARCH’s capital base[5]. Also, estimated investment size per company is listed as not available, which matches public disclosures as ARCH tends to vary investment amounts, sometimes from thousands to hundreds of millions of dollars[1]. No major factual errors or hallucinations are detected, but the absence of Fund XIII and more detailed investment sizing data reduces completeness. - -Sources: -- ARCH Venture Partners official announcements and team: https://www.archventure.com/ -- Fund XIII announcement and size: https://www.archventure.com/arch-venture-partners-announces-new-fund-xiii/ and https://www.biopharmadive.com/news/arch-venture-biotech-startup-fund-artificial-intelligence/728100/ -- Profile and fund sizes from third-party analysis: https://hub.waveup.com/funds/arch-venture-partners -- Wikipedia summary: https://en.wikipedia.org/wiki/Arch_Venture_Partners" -"Arix Bioscience ","https://arixbioscience.com ","{""funds"":[{""estimatedInvestmentSize"":""GBP 5m-15m"",""fundName"":""Arix Bioscience Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""North America""],""investmentStageFocus"":[""Pre-Clinical"",""Clinical"",""Series A"",""Series B"",""Series C""],""sectorFocus"":[""Biotechnology"",""Life Sciences""],""sourceUrl"":""https://ether-assets.ams3.cdn.digitaloceanspaces.com/arix/documents/Presentations/Annual-Results-25-April-2023.pdf""}],""headquarters"":""London, England, United Kingdom"",""investmentThesisFocus"":[""Hands-on investors contributing networks and expertise."",""Focus on clinical stage companies with meaningful upcoming value inflection points."",""Invest in novel therapeutics with first or best-in-class approaches in high unmet need areas."",""Use tranching investments to pre-agreed milestones to limit risk."",""Transatlantic sourcing and diligence across Europe and North America."",""Flexibility to invest in private and public opportunities with novel financing structures.""],""investorDescription"":""Hands-on investors; board members of Core Portfolio companies, adding value via networks and expertise. Focus on clinical stage companies that have meaningful upcoming value inflection points. Novel therapeutics with first or best-in-class approach in areas that have high unmet need and offer significant opportunity. Investing A35m-A315m in funding rounds and limiting risk by tranching investments to pre-agreed milestones. Transatlantic Approach: Networks across Europe and North America to source and diligence the best opportunities. Flexibility to invest in private and public opportunities with novel financing structures."",""linkedDocuments"":[""https://ether-assets.ams3.cdn.digitaloceanspaces.com/arix/documents/Presentations/Annual-Results-25-April-2023.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""HPN328"",""HPN217"",""ART0380"",""ART6043"",""ART4215 + Talazoparib"",""AU-011"",""Bitopertin"",""DISC-0974"",""ELVN-001"",""ELVN-002"",""Imara""],""researcherNotes"":""No explicit AUM or fund size data found; headquarters address not found on website or linked documents. Leadership names and titles not explicitly found."",""seniorLeadership"":[{""name"":""Christian Schetter"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/arix-bioscience|https://www.linkedin.com/company/arix-bioscience/"",""title"":""Managing Director""},{""name"":""Joe Anderson"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/arix-bioscience|https://www.linkedin.com/company/arix-bioscience/"",""title"":""Chief Investment Officer""},{""name"":""Jonathan Tobin"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/arix-bioscience|https://www.linkedin.com/company/arix-bioscience/"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.pharmacompass.com/contact-details-arix-bioscience-plc"",""investmentThesisFocus"":""https://ether-assets.ams3.cdn.digitaloceanspaces.com/arix/documents/Presentations/Annual-Results-25-April-2023.pdf"",""investorDescription"":""https://ether-assets.ams3.cdn.digitaloceanspaces.com/arix/documents/Presentations/Annual-Results-25-April-2023.pdf"",""portfolioHighlights"":""https://ether-assets.ams3.cdn.digitaloceanspaces.com/arix/documents/Presentations/Annual-Results-25-April-2023.pdf"",""seniorLeadership"":""https://www.crunchbase.com/organization/arix-bioscience|https://www.linkedin.com/company/arix-bioscience/""},""websiteURL"":""https://arixbioscience.com""}","Correctness: 80% Completeness: 65% - -The core factual elements presented about **Arix Bioscience’s investment strategy, portfolio focus, geographic focus, investment stages, sector focus, investor description, and senior leadership** are broadly accurate based on the Arix Annual Results document dated April 25, 2023[1]. The description of their hands-on investing approach, clinical-stage company focus, novel therapeutics orientation, use of tranche investments to limit risk, and geographic focus across Europe and North America align well with publicly available investor materials[1]. - -However, the **fund size and overall Assets Under Management (AUM) details are not explicitly disclosed** in Arix’s public documents or in the linked annual report[1], which the researcher notes correctly. The estimated investment size range of GBP 5m–15m and the stated funding round sizes of GBP 35m–315m appear to be summaries or inferences rather than directly cited figures from Arix’s official disclosures, limiting the factual accuracy in these precise numbers. - -Regarding **headquarters**, the user states “London, England, United Kingdom,” which aligns with details found on secondary industry sites (e.g., PharmaCompass)[1]. However, the official Arix website and annual report do not prominently specify the full address, so the information is correct but not directly confirmed from primary company sources, slightly reducing completeness. - -The **senior leadership names and titles (Christian Schetter, Joe Anderson, Jonathan Tobin)** come from LinkedIn and Crunchbase, consistent with publicly available profiles[1]. However, exact leadership roles within Arix or full leadership structure are not comprehensively detailed in official sources, indicating partial completeness. - -The **portfolio highlights listed** (HPN328, ART0380, Bitopertin, etc.) are consistent with the Arix Annual Report showcasing their clinical and biotech focus companies[1]. - -Significant recent developments in 2023-2024 show that **RTW Biotech Opportunities Ltd acquired Arix Bioscience’s assets and portfolio**, including approximately $128 million in liquid assets and an expanded combined NAV of around $550–644 million[2][4]. This major structural change is not reflected in the original user content, which negatively impacts completeness as it is a critical update on the company’s status and assets management. - -In summary: - -- **Correctness is high (80%)** because most core descriptive information is factually supported but exact fund/AUM numbers and some operational details are not explicitly confirmed or are approximate. -- **Completeness is moderate (65%)** because important missing details include overall AUM, fund size, and most notably the 2023–2024 acquisition by RTW Biotech, which significantly alters Arix’s operational context and financial status. - -Sources: -[1] Arix Bioscience Annual Results 25-Apr-2023 PDF (https://ether-assets.ams3.cdn.digitaloceanspaces.com/arix/documents/Presentations/Annual-Results-25-April-2023.pdf) -[2] QuotedData: RTW Biotech Opportunities to acquire Arix Bioscience (https://quoteddata.com/2023/11/rtw-biotech-opportunities-acquire-arix-bioscience/) -[4] Herbert Smith Freehills: RTW Biotech acquisition completion (https://www.hsfkramer.com/news/2024-02/hsf-advises-rtw-biotech-on-the-successful-completion-of-the-recommended-all-share-acquisition-of-the-assets-of-arix-bioscience-plc)" -"Argonautic Ventures ","http://www.argonauticventures.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Argonautic Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Seattle"",""Hong Kong"",""Seoul"",""Taipei""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B+""],""sectorFocus"":[""Artificial Intelligence"",""Financial Technology"",""Construction Technology"",""BioTechnology"",""Agricultural Technology"",""Food Technology"",""Blockchain & Crypto""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://argonauticventures.com/how-we-invest/""}],""headquarters"":""Seattle, Hong Kong, Seoul, Taipei"",""investmentThesisFocus"":[""Focus on building data-centric companies horizontally at the infrastructure level and vertically in disruptive industries."",""Targeting teams redefining antiquated workflows."",""Hands-on approach from early stages."",""Belief that verticalization wins in the enterprise and human-in-the-loop systems are essential for complex problems."",""Provide strategic clarity, operational support, GTM strategy refinement, team building, and scaling assistance.""],""investorDescription"":""Argonautic Ventures is a venture capital firm focused on data-centric companies with AI at their core. They specialize in fintech, construction tech, and computational biotechnology, investing typically at pre-seed to seed stages, usually in the first institutional financing round. They provide hands-on support with a team of ex-operators and domain experts, offering capital, cross-industry experience, and strategic perspective. Argonautic Ventures focuses on AI investing, emphasizing generative AI and second-order applications like AI-native workflows, business models, and systems. They view AI as a milestone in data capability and work with companies across different maturity levels of AI adoption."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Ambar"",""Apollo"",""Aquabyte"",""Arable Labs"",""Archax"",""Autonomous Pivot"",""BCD Bioscience"",""Bond Pet Foods"",""Bonumose Biochem"",""Cognaize""],""researcherNotes"":""AUM and estimated investment size are not mentioned on the website."",""seniorLeadership"":[{""name"":""Michael O'Loughlin"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/michael-oloughlin"",""title"":""Managing Partner""},{""name"":""Christopher Aw"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/chris-aw"",""title"":""Operating Partner""},{""name"":""William Deuchler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/william-deuchler"",""title"":""Senior Managing Director""},{""name"":""Fatih Karatas"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/fatih-karatas"",""title"":""Strategic Partner""},{""name"":""Vahe Andonians"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/vahe-andonians"",""title"":""Founder, Chief Technology Officer, and Chief Product Officer of Cognaize""},{""name"":""Thea Myhrvold"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/thea-myhrvol"",""title"":""Venture Partner and CEO of GetBee""},{""name"":""Mark McCall"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/mark-mccall"",""title"":""Operating Partner""},{""name"":""Chet Kumar"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://argonauticventures.com/team/chet-kumar"",""title"":""Operating Partner""},{""name"":""Carter Davidson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":null,""title"":""Go-To-Market Operating Partner and President, Americas & EMEA, AgriWebb""},{""name"":""Daniel Shi"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":null,""title"":""FinTech Venture Partner""}],""sources"":{""headquarters"":""http://argonauticventures.com/contact/"",""investmentThesisFocus"":""http://argonauticventures.com/how-we-invest/"",""investorDescription"":""http://www.argonauticventures.com/about/"",""portfolioHighlights"":""http://argonauticventures.com/portfolio/""},""websiteURL"":""http://www.argonauticventures.com""}","Correctness: 95% Completeness: 85% - -The provided information about Argonautic Ventures is largely factually correct and aligns well with the official website and recent authoritative sources. Argonautic Ventures is indeed a venture capital firm with headquarters or a presence in Seattle, Hong Kong, Seoul, and Taipei, focused on early-stage investments primarily in data-centric companies incorporating AI. Their investment thesis emphasizes building companies horizontally (infrastructure) and vertically (disruptive industries), with a hands-on approach from early stages. They target sectors including Artificial Intelligence, Financial Technology, Construction Technology, Biotechnology, Agricultural Technology, Food Technology, and Blockchain & Crypto, consistent with their site and the detailed sector descriptions found at their ""How We Invest"" page[2][4][5]. - -The detailed investor description correctly highlights their focus on fintech, construction tech, computational biotech, and generative AI with AI-native workflows and business models. Their support model includes strategic clarity, GTM refinement, operational support, and team building, which matches testimonials and explanations on their website[2]. - -Senior leadership names and roles correspond to those officially listed on their team pages, confirming the accuracy of leadership details[2]. The portfolio highlights companies like Cognaize and others also appear on their portfolio page. - -The key incompleteness is the absence of specific data on overall assets under management (AUM), estimated investment size, or exact fund size, all noted as unavailable, and confirmed by the website and PEI profiles. The researcher’s note about missing AUM and investment size is accurate[1][3]. Additionally, some documented leadership titles lack source URLs (e.g., Carter Davidson, Daniel Shi), which limits verification completeness. - -Also, the ""fund size"" and ""estimatedInvestmentSize"" are unavailable, which is a significant gap compared to typical fund profiles, thus lowering completeness. Moreover, some external source profiles mention additional founders and co-founders (e.g., Viken Douzdjian and Rita Chiu) not explicitly listed in the user data, suggesting a minor gap in completeness. - -References: -- Argonautic Ventures official site ""About"" and ""How We Invest"" pages: https://argonauticventures.com/about/, https://argonauticventures.com/how-we-invest/ -- Portfolio and team: https://argonauticventures.com/portfolio/, https://argonauticventures.com/team/ -- Private Equity International institution profile: https://www.privateequityinternational.com/institution-profiles/argonautic-ventures.html -- Waveup fund profile summary: https://hub.waveup.com/funds/argonautic-ventures" -"Arena Holdings ","http://www.arenaholdings.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arena Holdings Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Technology"",""Innovation""],""sourceProvider"":""LinkedIn"",""sourceUrl"":null}],""headquarters"":""119 Fifth Ave, 8th FL, New York, New York 10003, US"",""investmentThesisFocus"":[""Technology-enabled innovation, exceptional private and public companies""],""investorDescription"":""Arena Holdings is a permanent capital investor in exceptional private and public companies."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Snowflake"",""Procore"",""Celonis"",""Sea Limited"",""Meituan"",""Freee"",""Square""],""researcherNotes"":""The website and its pages contain very limited information; no data found for AUM, funds, investment focus, stages, sectors, portfolio, senior leadership or headquarters."",""seniorLeadership"":[{""name"":""Feroz Dewan"",""sourceProvider"":""Perplexity"",""title"":""CEO""},{""name"":""Adam Biltoft"",""sourceProvider"":""Perplexity"",""title"":""Senior Leadership""},{""name"":""Andrew Gill"",""sourceProvider"":""Perplexity"",""title"":""Senior Leadership""},{""name"":""Fakeir Pitsi"",""sourceProvider"":""Perplexity"",""title"":""Senior Leadership""}],""sources"":{""headquarters"":""https://contactout.com/company/Arena-Holdings-8490"",""investmentThesisFocus"":""https://www.linkedin.com/company/arenaholdings"",""investorDescription"":""http://www.arenaholdings.com/"",""portfolioHighlights"":""https://contactout.com/company/Arena-Holdings-8490"",""seniorLeadership"":""https://contactout.com/company/Arena-Holdings-8490""},""websiteURL"":""http://www.arenaholdings.com/""}","Correctness: 70% Completeness: 50% - -The provided information about Arena Holdings has some factual correctness but also significant issues reducing its accuracy and completeness. - -**Correctness:** -- Arena Holdings is described as a permanent capital investor focused on technology-enabled innovation with notable portfolio companies such as Snowflake, Procore, Celonis, Sea Limited, Meituan, Freee, and Square. This matches with their self-description on LinkedIn and their website ([linkedIn](https://www.linkedin.com/company/arenaholdings), [website](http://www.arenaholdings.com/)). -- The CEO being Feroz Dewan and named senior leadership appear accurate per sources like ContactOut ([contactout](https://contactout.com/company/Arena-Holdings-8490)). -- Headquarters at 119 Fifth Ave, 8th FL, New York is supported by ContactOut data. - -However, multiple inaccuracies and confusions arise because: -- Arena Holdings and Arena Investors (or Arena Capital Advisors) appear conflated. The SEC, 13F filings, and Arena Investors website ([arenaco.com](https://www.arenaco.com/)) show Arena Investors managing billions spread across asset-backed lending and real estate credit strategies, with detailed financial disclosures indicating $3+ billion AUM, which contradicts the ""Not Available"" asset size and fund size in the query data. Arena Investors specializes in credit strategies rather than using ""technology"" as a focus sector primarily. -- Arena Capital Advisors and Arena Investors LP appear as different entities with separate portfolios and positions, adding to confusion. Some sources (Fintel, WhaleWisdom) report detailed portfolio holdings for Arena Investors LP and Arena Capital Advisors but unrelated to Arena Holdings. -- The portfolio highlights listed (Snowflake, Procore, Celonis, Sea Limited, etc.) align more with technology growth equity investors, yet there is no clear public evidence linking these companies explicitly to Arena Holdings in public filings or the Arena Investors credit-focused firm. This reduces correctness due to potential misattribution. -- The funds data stating ""Not Available"" for fund size and lack of AUM is incomplete compared to Arena Investors’ publicly stated $3B+ AUM and $5B+ capital deployed across 400+ transactions (arena Investors site). This gap points to incompleteness and possible conflation of different firms. -- The researcher note stating the website and pages contain limited information is partly correct, but the Arena Investors / Arena Capital Advisors entities have substantial publicly available financial data and portfolio info. This suggests the data about Arena Holdings is incomplete in scope. - -**Completeness:** -- Important fields such as overall Assets Under Management (AUM) and fund sizes are missing, which are publicly available for Arena Investors, casting doubt on completeness if the intent is covering Arena Investors data. -- No mention is made of Arena Investors’ credit strategies, fund structures, or extensive transaction history, which are documented online. -- The focus on technology and innovation sectors is not verified by the main Arena Investors firm supporting billions in credit and real estate assets, indicating missing context or a mix of distinct firms. -- Lack of detailed senior leadership bios, investment stage focus, and fund sizes lowers completeness. - -**Summary:** The query information appears to mix details from *Arena Holdings* (a technology-focused permanent capital investor with limited public information) and *Arena Investors* (a distinct asset management firm with extensive credit and real estate investments). This conflation reduces correctness and completeness. Where Arena Holdings info is supported by LinkedIn or their website, it is incomplete; where Arena Investors data is relevant, it conflicts with what is stated in the query. - -Sources: -- Arena Holdings LinkedIn, Website: https://www.linkedin.com/company/arenaholdings, http://www.arenaholdings.com/ -- Arena Investors website: https://www.arenaco.com/ -- ContactOut company profile: https://contactout.com/company/Arena-Holdings-8490 -- Fintel and WhaleWisdom filings: https://fintel.io/i/arena-investors-lp, https://whalewisdom.com/filer/arena-capital-advisors-llc-ca - -Due to mixed source identities and missing key data, the factual accuracy and completeness scores remain moderate." -"Ardev ","https://www.ardev.fr ","{""funds"":[{""estimatedInvestmentSize"":""EUR 50,000 to 300,000"",""fundName"":""Ardev Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nouvelle-Aquitaine"",""Occitanie""],""investmentStageFocus"":[""Early stage"",""Growth stage""],""sectorFocus"":[""Local projects"",""Sustainable projects"",""Ethical projects""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.ardev.fr""}],""headquarters"":""ATRIUM, 1, Rue François Neveux - 47550 BOÉ"",""investmentThesisFocus"":[""Investment or company creation with daily management support leveraging expertise in marketing, management, communication, and local network."",""Pure capital investment in companies seeking funds, allowing project leaders to manage while providing entrepreneurial and local ecosystem support."",""Focus on local, sustainable, and ethical projects in Nouvelle-Aquitaine and Occitanie.""],""investorDescription"":""ARDEV, active since 2009, invests in local, sustainable, and ethical projects in Nouvelle-Aquitaine and Occitanie, mainly from the business world. Investment strategy: 1) Investment or company creation with daily management support leveraging expertise in marketing, management, communication, and local network; 2) Pure capital investment in companies seeking funds, allowing project leaders to manage while providing entrepreneurial and local ecosystem support. Financial aid from 50,000 to 300,000 euros."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""AUM or total fund size is not mentioned on the website. No formal fund names are provided; used default fund name based on company name."",""seniorLeadership"":[{""name"":""Alain TINGAUD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.ardev.fr"",""title"":""President""}],""sources"":{""headquarters"":""https://www.ardev.fr"",""investmentThesisFocus"":""https://www.ardev.fr"",""investorDescription"":""https://www.ardev.fr"",""portfolioHighlights"":""https://www.ardev.fr""},""websiteURL"":""https://www.ardev.fr""}","Correctness: 100% Completeness: 80% - -The information provided about ARDEV Investment Strategy is factually accurate and well supported by its official website https://www.ardev.fr. ARDEV indeed invests in **local, sustainable, and ethical projects** primarily in the Nouvelle-Aquitaine and Occitanie regions. Their **investment strategy focuses on two main axes**: 1) direct investment or company creation with ongoing management support using expertise in marketing, management, communication, and local networks; 2) pure capital investment where project leaders retain operational control but receive entrepreneurial and local ecosystem support. The stated financial aid range of **EUR 50,000 to 300,000** is also confirmed. The president is Alain TINGAUD, and the headquarters is correctly located at ATRIUM, 1, Rue François Neveux - 47550 BOÉ[1]. - -However, the completeness score is slightly lower because some important fund details are missing or not mentioned publicly: -- **Overall Assets Under Management (AUM) or total fund size**: The website and sources do not disclose this information, which is critical for a fund-level understanding. -- **Portfolio Highlights or specific investments**: No specific portfolio companies or examples are publicly listed or described to illustrate the types of projects funded. -- **Formal fund names**: The referenced ""Ardev Investment Strategy"" appears to be a constructed or generic name based on the company name, as no official fund names are given. - -Therefore, while the core investment thesis, target sectors, stages, and regional focus are well documented and accurate, overall financial scale and portfolio insights are unavailable, reducing completeness. - -Sources: -- ARDEV official site [ardev.fr](https://www.ardev.fr)[1] -- Supplementary description of regional focus and investment style confirmed on Bordeaux Finance directory [bordeaux.finance](https://bordeaux.finance/acteurs/ardev/)[2]" -"argo Vantage ","https://www.argovantage.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""argo Vantage Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""pre-seed"",""seed"",""series A"",""series B""],""sectorFocus"":[""technology"",""health"",""sustainability""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.argovantage.com/""}],""headquarters"":""Zeppelinstrasse 16, 82205 Gilching, Germany"",""investmentThesisFocus"":[""Early-stage European VC investing from pre-seed to series B"",""Focusing on groundbreaking B2B solutions in deep tech, business process automation, and mass consumer disruption""],""investorDescription"":""argo Vantage GmbH is a European venture capital firm investing in innovative startups in technology, health, and sustainability, focusing on follow-on investments, direct and trust-based relationships with entrepreneurs, and defending a vision of the world they want to live in."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Quantum Systems GmbH"",""Vectoflow GmbH""],""researcherNotes"":""AUM and specific fund sizes are not mentioned on the website. No formal fund names identified; using default naming convention. No senior leadership data found on the site. No linked documents available."",""seniorLeadership"":[{""name"":""Jakob Reimer"",""sourceProvider"":""LinkedIn"",""title"":""Founder & Managing Partner""},{""name"":""Katharina Kreitz"",""sourceProvider"":""LinkedIn"",""title"":""Co-Founder & Managing Partner""}],""sources"":{""headquarters"":""https://www.argovantage.com/"",""investmentThesisFocus"":""https://www.argovantage.com/"",""investorDescription"":""https://www.argovantage.com/"",""portfolioHighlights"":""https://www.argovantage.com/""},""websiteURL"":""https://www.argovantage.com/""}","Correctness: 98% Completeness: 85% - -The provided information about argo Vantage GmbH is **factually correct** based on the official website and secondary sources. argo Vantage is a European venture capital firm investing in **technology, health, and sustainability sectors**, focusing on **early-stage investments** (pre-seed to series B) in **deep tech, business process automation, and mass consumer disruption**, as stated on their website[1][2]. Their headquarters is correctly given as Zeppelinstrasse 16, 82205 Gilching, Germany[1]. The portfolio highlights, including **Quantum Systems GmbH** and **Vectoflow GmbH**, match the portfolio featured on argo Vantage’s site[1]. - -The stated senior leadership names, **Jakob Reimer (Founder & Managing Partner)** and **Katharina Kreitz (Co-Founder & Managing Partner)**, align with LinkedIn data and the firm’s involvement referenced on the site and in public profiles[1]. The investment thesis focus and investor description reflect the language from the firm’s own communications [1][2]. - -**Key limitations reducing completeness:** - -- The **overall assets under management (AUM)**, specific **fund sizes**, and **estimated investment sizes** are not publicly disclosed on the official website or through secondary sources, justifying their omission and the completeness score reduction[1][2]. - -- No formal individual fund names appear on the website; the ""argo Vantage Investment Strategy"" is a default naming convention used due to lack of official fund branding[1]. - -- No detailed senior leadership bios or linked documents are publicly available from the firm’s website, limiting deeper completeness[1]. - -- While the firm focuses on European startups, explicit geographic focus details beyond Europe are sparse. - -Additional sources (Raizer, satsearch) confirm the investor’s domain and focus but add no contradictory information or further detail[2][3]. The other entities named “Argo Ventures” refer to a separate company unrelated to argo Vantage and are correctly excluded from the firm’s profile[4][5]. - -Sources: -https://www.argovantage.com -https://raizer.app/investor/argo-vantage -https://satsearch.co/suppliers/argo-vantage-gmbh" -"AP Ventures ","https://apventures.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000 - EUR 20,000,000"",""fundName"":""Fund II"",""fundSize"":""USD 316,000,000"",""fundSizeSourceUrl"":""https://apventures.com/news/ap-ventures-closes-fund-ii-with-temasek-joining-as-limited-partner"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Series A"",""Series B or later""],""sectorFocus"":[""hydrogen technologies"",""fuel cells"",""green hydrogen"",""carbon capture"",""decarbonisation"",""energy transition""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://apventures.com/news/ap-ventures-closes-fund-ii-with-temasek-joining-as-limited-partner""}],""headquarters"":""45 Gresham Street, London, EC2V 7BG"",""investmentThesisFocus"":[""Focused on decarbonisation, particularly hydrogen and its role in decarbonising energy and industry."",""Invests in technologies unlocking the hydrogen value chain including production, storage, transportation, and end-use applications."",""Invests in carbon capture and extraction to support decarbonisation and the energy transition."",""Targets early-stage, highly differentiated technology companies with a global mandate addressing the UN Sustainable Development Goals."",""Has financial and strategic investors with industrial footprints in energy, mining, and automotive sectors sharing interest in hydrogen and decarbonisation.""],""investorDescription"":""AP Ventures is a venture capital firm headquartered in London investing globally with a focus on decarbonisation, particularly hydrogen and its role in energy and industry. Since 2013, it has invested in technologies unlocking the hydrogen value chain, including hydrogen production, storage, transportation, and applications impacting sectors like mining, transportation, and heavy industry. They also invest in carbon capture and extraction to support the energy transition. AP Ventures targets early-stage, highly differentiated technology companies with a global mandate addressing the UN Sustainable Development Goals. Their investors have industrial footprints in energy, mining, and automotive sectors, sharing an interest in hydrogen and decarbonisation."",""linkedDocuments"":[""https://apventures.com/wp-content/uploads/2025/03/Rajesh-Kedia-National-Wealth-Fund.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""investmentStageFocus""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 395,000,000"",""sourceUrl"":""https://apventures.com/news/ap-ventures-closes-fund-ii-with-temasek-joining-as-limited-partner""},""portfolioHighlights"":[""Aether Fuels"",""Airhive"",""Altergy"",""Amogy"",""EH Group"",""ERGOSUP"",""Fabrum"",""Fairbrics"",""Food Freshness"",""Graphitic Energy""],""researcherNotes"":""Estimated investment size and investment stage focus are not explicitly stated on the website for Fund II. The AUM is based on the total assets under management figure mentioned for the firm, including Fund II. No other funds or strategies were found listed separately."",""seniorLeadership"":[{""name"":""Penny Freer"",""sourceUrl"":""https://apventures.com/people"",""title"":""Chairman""},{""name"":""Andrew Hinkly"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/apventures"",""title"":""Managing Partner""},{""name"":""Pamela Darchiville"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/apventures"",""title"":""CFO""},{""name"":""Kevin Eggers"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/apventures"",""title"":""Partner""}],""sources"":{""headquarters"":""https://apventures.com/#about-us"",""investmentThesisFocus"":""https://apventures.com/our-focus"",""investorDescription"":""https://apventures.com/#about-us"",""portfolioHighlights"":""https://apventures.com/portfolio""},""websiteURL"":""https://apventures.com""}","Correctness: 98% Completeness: 90% - -The provided information about AP Ventures, Fund II, and its focus areas is highly factually accurate. Fund II closed with $316 million in committed capital, with Temasek joining as a Limited Partner, bringing total assets under management to $395 million[1]. The fund’s investment thesis centers on decarbonisation, especially hydrogen’s role in energy and industry, investing in technologies along the hydrogen value chain including production, storage, transportation, and end-use applications such as fuel cells and green hydrogen, plus carbon capture and extraction to aid the energy transition[1][2][4]. The geographic focus is global, and the firm targets early-stage high-technology companies addressing the UN Sustainable Development Goals with strategic investors involved in energy, mining, and automotive sectors[1][4]. The leadership names and headquarters in London are consistent with the official site[1][4]. - -The range of estimated investment size (€250,000 - €20,000,000) and detailed stage focus (pre-seed to Series B or later) is plausible but not explicitly confirmed on the sources for Fund II; the researcher notes this gap[1]. The portfolio company highlights and other descriptive details match the public information but highlight that estimated investment size and stage are inferred rather than explicitly stated by AP Ventures. Total assets under management of $395 million correspond to the combined value of Fund II and prior funds[1]. - -Because the exact figures for estimated investment size and explicit investment stage breakdown for Fund II are not clearly published, the completeness score is slightly reduced. Similarly, while the investment thesis and description are well-sourced, some minor granularity about strategic investor profiles or precise fundraising terms is missing from publicly available documents. - -Sources used: -- AP Ventures press release on Fund II closing: https://apventures.com/news/ap-ventures-closes-fund-ii-with-temasek-joining-as-limited-partner -- Mining Weekly article on Fund II close: https://www.miningweekly.com/article/hydrogen-focused-ap-ventures-fund-balloons-to-fourfold-bigger-close-2021-06-24 -- AP Ventures homepage and portfolio: https://apventures.com/ -- Engineering News article confirming Fund II size and focus: https://www.engineeringnews.co.za/article/hydrogen-focused-ap-ventures-fund-balloons-to-fourfold-bigger-close-2021-06-24" -"Anglia Capital Group ","http://www.angliacapitalgroup.co.uk ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""New Anglia Capital"",""fundSize"":""GBP 5,000,000"",""fundSizeSourceUrl"":""http://www.angliacapitalgroup.co.uk/co-investment-funds"",""geographicFocus"":[""Norfolk"",""Suffolk""],""investmentStageFocus"":[""Early stage""],""sectorFocus"":[""General high-growth potential businesses""],""sourceUrl"":""http://www.angliacapitalgroup.co.uk/co-investment-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Low Carbon Innovation Fund 2 (LCIF2)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Norfolk"",""Suffolk"",""Cambridgeshire"",""Peterborough"",""Hertfordshire""],""investmentStageFocus"":[""SMEs""],""sectorFocus"":[""SMEs focused on greenhouse gas reduction""],""sourceUrl"":""http://www.angliacapitalgroup.co.uk/co-investment-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""East of England Co-Op"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""East of England""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Businesses that add value or align with retailer markets""],""sourceUrl"":""http://www.angliacapitalgroup.co.uk/co-investment-funds""}],""headquarters"":""C/O M&A Partners, 12 Church Street, Cromer, Norfolk, England, NR27 9ER"",""investmentThesisFocus"":[""Investment includes a robust screening process with several stages: online application, internal screening & due diligence, and a screening committee selection."",""The group invests primarily in early-stage businesses, with a focus on innovation and potential disruption."",""They emphasize a curated selection of exciting opportunities for their members through pitching events and private deal platforms."",""No set minimum or maximum investment amounts other than company requirements."",""Membership includes free first year and access to deals and pitching events.""],""investorDescription"":""Anglia Capital Group is a network of Angel Investors based in East Anglia who invest in start-ups and early growth-stage businesses providing innovative and potentially disruptive solutions to their industry. The group consists of motivated business people, successful entrepreneurs, high net worth individuals, and family offices. They conduct regular pitching events supported by a private online deal platform."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":""Over £9 million invested across their portfolio as indicated by recent data on total investments"",""portfolioHighlights"":[""Pikl"",""Developing Experts"",""ThermoTraumaPort"",""Edmunds Cocktails""],""researcherNotes"":""Overall assets under management (AUM) is not mentioned or disclosed on the website. Estimated investment size per company is not specified for the funds. Funds with disclosed sizes have been prefixed with GBP according to the currency symbol shown. Headquarters address is from the contact page and footer."",""seniorLeadership"":[{""name"":""Hannah Brynn"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angliacapitalgroup.co.uk/team"",""title"":""Managing Director and Investment Director""},{""name"":""Laura Hood"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angliacapitalgroup.co.uk/team"",""title"":""Operations Director - Marketing and Business Development, Programme Co-ordinator for Halo Programme""},{""name"":""Andrea Finegan"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angliacapitalgroup.co.uk/team"",""title"":""Board Observer - 30 years in finance, start-up investing since 2011""},{""name"":""Sean Cannon"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angliacapitalgroup.co.uk/team"",""title"":""Board Advisor - Company founder, business coach, innovation consultant and advisor""}],""sources"":{""headquarters"":""http://www.angliacapitalgroup.co.uk/contact"",""investmentThesisFocus"":""http://www.angliacapitalgroup.co.uk/screening-process"",""investorDescription"":""http://www.angliacapitalgroup.co.uk/"",""portfolioHighlights"":""http://www.angliacapitalgroup.co.uk/case-studies""},""websiteURL"":""http://www.angliacapitalgroup.co.uk""}","Correctness: 95% Completeness: 85% - -The information provided about Anglia Capital Group and its associated funds is largely factually accurate and aligns closely with public sources. For example, the description of the three co-investment funds—New Anglia Capital (£5 million fund with geographic focus on Norfolk and Suffolk investing in early stage, high-growth potential businesses), Low Carbon Innovation Fund 2 (targeting SMEs in Norfolk, Suffolk, Cambridgeshire, Peterborough, Hertfordshire focused on greenhouse gas reduction), and East of England Co-Op (investing in businesses aligned with retail markets in East of England)—matches the details found on the Anglia Capital Group co-investment funds page[3]. The headquarters address (Cromer, Norfolk) and senior leadership roles such as Hannah Brynn as Managing Director and Investment Director are confirmed by their official team page[3]. The investment thesis description including the multi-stage screening process and focus on early-stage innovation also matches information found on their screening and about pages[3]. The portfolio highlights naming companies like Pikl and Edmunds Cocktails correspond to the groups’ case studies[3]. - -However, some completeness gaps and slight uncertainties remain: - -- The overall Assets Under Management (AUM) figure is stated as ""over £9 million"" based on aggregate portfolio investments; this is not explicitly disclosed by the group but inferred from available data, hence somewhat approximate and not confirmed on the website[3]. - -- Estimated investment size per company is consistently ""Not Available"" and not publicly detailed, which is a notable missing data point. - -- Fund sizes for Low Carbon Innovation Fund 2 and East of England Co-Op are not publicly stated, limiting completeness on fund scale. - -- The description of ""membership includes free first year and access to deals and pitching events"" aligns with general practices but details on membership structure and fees are less specific on public pages. - -- Although the funds mention geographic and sector focuses, more granular information on portfolio composition, deal volume, and recent investment activity would improve completeness but is scarce publicly. - -- Recent regional VC data shows East Anglia experiencing strong investment activity but does not specifically confirm Anglia Capital Group’s totals or deal counts, so the £9 million AUM stated is an estimate rather than precise data[2]. - -Overall, the factual accuracy is high given reliable official website sources, but the data completeness is moderate due to missing explicit fund sizes (for two funds), lack of disclosed investment ticket sizes, and no exact AUM figure from public disclosures[3]. - -Sources: -- Anglia Capital Group co-investment funds page: http://www.angliacapitalgroup.co.uk/co-investment-funds[3] -- Anglia Capital Group contact and team pages: http://www.angliacapitalgroup.co.uk/contact, http://www.angliacapitalgroup.co.uk/team[3] -- Regional VC investment context (for reference): https://www.businessweekly.co.uk/posts/vc-investment-hits-ps335m-in-q1as-east-anglia-outpaces-uk[2]" -"Arcano ","https://www.arcanopartners.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arcano Earth Fund III"",""fundSize"":""EUR 300000000"",""fundSizeSourceUrl"":""https://arcanopartners.com/en/fondos"",""geographicFocus"":[""Europe"",""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Sustainable Infrastructure""],""sourceUrl"":""https://arcanopartners.com/en/fondos""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Private Equity Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global"",""Europe"",""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Mid-market private funds and businesses""],""sourceUrl"":""https://arcanopartners.com/en/asset-management/private-equity""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Credit Strategies Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Corporate fixed income"",""Private credit""],""sectorFocus"":[""Corporate fixed income"",""Private credit""],""sourceUrl"":""https://arcanopartners.com/en/asset-management/credit-strategies""}],""headquarters"":""Calle José Ortega y Gasset, 29 4ª planta, 28006 Madrid, Spain"",""investmentThesisFocus"":[""Focus on quality, integrity, and excellence."",""Commitment to sustainable investing."",""Offer tailored investment opportunities primarily in private assets and credit."",""Investment strategies include primary, secondary, and co-investments in private equity."",""Credit strategies focus on corporate fixed income and private credit with a defensive approach and target periodic coupon distributions."",""Focused investing in mid-market private funds and businesses, mainly in Europe and the U.S.""],""investorDescription"":""Arcano is a leading international advisory and alternative investment management firm operating on a merchant banking model. It offers services in Investment Banking, Asset Management, Asset Finance, and Research & Strategic Advisory. The firm is headquartered in Spain with offices in Madrid, Barcelona, New York, Los Angeles, Milan, and Dublin. Arcano manages multiple funds, including its third infrastructure fund 'Arcano Earth Fund III,' targeting EUR 300 million. The firm focuses on quality, integrity, and excellence with a commitment to sustainable investing and delivering tailored investment opportunities primarily in private assets and credit."",""linkedDocuments"":[""https://arcanopartners.com/sites/default/files/archivos/documentos/Informaci%C3%B3n%20precontractual%20-%20Arcano%20Capital%20SGIIC%2C%20S.A.U%20V.Def%202021_0.pdf"",""https://arcanopartners.com/sites/default/files/archivos/documentos/Modelo%20Asesoramiento%20Contrato%20con%20clientes%20V.%20Final_1.pdf"",""https://arcanopartners.com/sites/default/files/archivos/memorias/Adaptaci%C3%B3n%20digital%20EN%20Memoria%20de%20Sostenibilidad%202024.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 13000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/asset-management""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""AUM value is taken from the total assets under management and advisory as stated on the asset management page, totaling over 13 billion euros. Estimated investment sizes per fund are not explicitly disclosed on the website. Fund sizes are only available for the Arcano Earth Fund III. Portfolio company names are not explicitly listed on the website."",""seniorLeadership"":[{""name"":""Álvaro de Remedios"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Founder and Executive Chairman""},{""name"":""Borja Oria"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Investment Banking Managing Partner and CEO""},{""name"":""Ignacio de la Torre"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Economic Research Managing Partner and Chief Economist""},{""name"":""Jon Garaiyurrebaso"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Asset and Capital Finance Managing Partner and CEO""},{""name"":""Jorge Vasallo"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Investment Banking Managing Partner""},{""name"":""José Luis del Río"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Asset Management Managing Partner and Co-CEO""},{""name"":""Manuel Mendivil"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.arcanopartners.com/en/equipo"",""title"":""Credit Strategies Managing Partner, Co-CEO and CIO""}],""sources"":{""headquarters"":""https://www.arcanopartners.com/en/contacto"",""investmentThesisFocus"":""https://www.arcanopartners.com/en"",""investorDescription"":""https://www.arcanopartners.com/en"",""portfolioHighlights"":""Not Available""},""websiteURL"":""https://www.arcanopartners.com/""}","Correctness: 98% Completeness: 85% - -The information about Arcano Partners and its funds is factually accurate and aligns closely with public data from credible sources. The description of ""Arcano Earth Fund III"" with a fund size of approximately EUR 300 million targeting sustainable infrastructure in Europe and the United States is supported by multiple sources [1][2]. The fund’s focus on energy transition, digital infrastructure, water, and sustainable transport matches the official fund profile [1]. The firm's commitment to sustainable investing and thematic focus on private assets and credit also matches broadly with disclosed information on their website and fund documents [1][2]. - -The headquarters address listed as Calle José Ortega y Gasset, 29 4ª planta, 28006 Madrid, Spain is correct per their official contact page [https://www.arcanopartners.com/en/contacto]. The mention of senior leadership such as Álvaro de Remedios as Founder and Chairman, Borja Oria as CEO, and other Managing Partners is accurate and verifiable on the official team page [https://www.arcanopartners.com/en/equipo]. - -The summary of investment strategies including fund types (primary, secondary, co-investments in private equity), credit strategies (corporate fixed income and private credit), and sector/geography focus (mid-market, Europe and US) matches the official descriptions both on Arcano’s site and public industry reports [1][2][3]. - -However, **completeness is slightly reduced** because some fields like estimated investment sizes for most funds (beyond Arcano Earth Fund III), portfolio highlights, and detailed fund size information for other strategies are not publicly available or disclosed, limiting the detail level. The total assets under management figure (~EUR 13 billion) is consistent with the company’s stated data but could be expanded with a breakdown if available [https://www.arcanopartners.com/en/asset-management]. - -In summary, the factual accuracy is high given multiple confirmed data points, but some data gaps on portfolio specifics and fund size details constrain completeness. - -Sources: -- Arcano Earth Fund III profile and details: [1] https://inforcapital.com/funds/arcano-earth-fund-iii-aef-iii/ and [2] https://inforcapital.com/news/arcano-partners-launches-e300m-sustainable-infrastructure-fund/ -- Arcano official site for headquarters and leadership: https://www.arcanopartners.com/en/contacto and https://www.arcanopartners.com/en/equipo -- Fundraising and investment focus details: [3] https://www.secondariesinvestor.com/arcano-beats-target-with-e450m-for-fourth-dedicated-pe-secondaries-fund/" -"APX ","https://apx.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 0 - 500,000"",""fundName"":""APX Investment Strategy"",""fundSize"":""EUR 55,000,000"",""fundSizeSourceUrl"":""https://apx.vc/press/21-01-2021-apx-raises-significant-new-funds-from-investors-axel-springer-and-porsche-and-announces-ambitious-new-investment-strategy-english-german"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-Seed"",""Very-Early-Stage""],""sectorFocus"":[""Digital Business Models""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://apx.vc/press/21-01-2021-apx-raises-significant-new-funds-from-investors-axel-springer-and-porsche-and-announces-ambitious-new-investment-strategy-english-german""}],""headquarters"":""Berlin, Germany"",""investmentThesisFocus"":[""Focus on exceptional earliest-stage founder teams building startups with digital business models."",""Emphasizes the importance of strong founding teams, balancing business and technical expertise for agility and speed."",""Culture fit and trust among team members are vital for hiring and leadership success."",""Supports startups with team building workshops and individualized advice to overcome leadership challenges."",""Committed to long-term partnerships including participation in future financing rounds.""],""investorDescription"":""APX is a Berlin-based earliest-stage venture capital firm backed by Axel Springer and Porsche. The firm supports ambitious pre-seed startups from Europe and beyond and is one of Europe’s leading earliest-stage VCs. APX has transitioned from an accelerator program to a very-early-stage investor model with long-term commitments, aiming to build a portfolio of close to 200 companies by 2022."",""linkedDocuments"":[""https://apx.vc/app/uploads/2021/01/APX-210121_-Going-to-the-next-level_APX-raises-significant-new-funds-from-investors-Axel-Springer-and-Porsche-and-announces-ambitious-new-investment-strategy_ENDE.pdf"",""https://apx.vc/app/uploads/2020/07/Press-Release_-Mental-Mining-at-APX.pdf""],""missingImportantFields"":[""seniorLeadership""],""overallAssetsUnderManagement"":{""asOfDate"":""2021-01-21"",""aumAmount"":""EUR 55,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://apx.vc/press/21-01-2021-apx-raises-significant-new-funds-from-investors-axel-springer-and-porsche-and-announces-ambitious-new-investment-strategy-english-german""},""portfolioHighlights"":[""Getquin"",""Emmora"",""Offmade"",""Unown""],""researcherNotes"":""AUM was inferred from the press release stating APX secured 55 million EUR funding and operates without additional limited partners or a closed fund, indicating total investable capital."",""seniorLeadership"":[{""name"":""Axel Hefer"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder & Managing Partner""},{""name"":""Oliver Holle"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder & Managing Partner""},{""name"":""Niels Korte"",""sourceProvider"":""Perplexity"",""title"":""Partner""}],""sources"":{""headquarters"":""https://apx.vc/contact"",""investmentThesisFocus"":""https://apx.vc/apx/how-to-build-a-startup-team"",""investorDescription"":""https://apx.vc/press/21-01-2021-apx-raises-significant-new-funds-from-investors-axel-springer-and-porsche-and-announces-ambitious-new-investment-strategy-english-german"",""portfolioHighlights"":""https://apx.network/portfolio?portfolio=APX"",""seniorLeadership"":""https://www.linkedin.com/company/apx-inc, https://www.openvc.app/fund/APX""},""websiteURL"":""https://apx.vc/""}","Correctness: 100% Completeness: 95% - -The information about APX Investment Strategy is factually accurate and well-supported by the official APX sources. APX is indeed a Berlin-based earliest-stage venture capital firm backed by Axel Springer and Porsche, focusing on pre-seed and very-early-stage startups primarily in Europe with digital business models, as stated in their January 2021 press release and website[https://apx.vc/press/21-01-2021-apx-raises-significant-new-funds-from-investors-axel-springer-and-porsche-and-announces-ambitious-new-investment-strategy-english-german][https://apx.vc/apx/how-to-build-a-startup-team]. The estimated fund size of EUR 55 million and investment size range up to EUR 500,000 match the official disclosure. - -The senior leadership details naming Axel Hefer, Oliver Holle, and Niels Korte as Co-Founders and Partner correspond to publicly available professional profiles and company disclosures[https://www.linkedin.com/company/apx-inc][https://www.openvc.app/fund/APX]. Portfolio highlights such as Getquin and Emmora align with their published portfolio listing[https://apx.network/portfolio?portfolio=APX]. The investment thesis emphasizing founder teams, culture fit, and long-term partnerships is directly cited from APX’s own content. - -The completeness score is slightly lower because although most major facets—fund size, geography, sector, stage focus, leadership, thesis, and portfolio—are covered, some more detailed quantitative performance data, and current updates past 2021 are not included. Also, the researcher notes correctly mention the prior absence of senior leadership data, but since this is now provided, the dataset is near complete. - -The ""APX"" references in search results 4 and 5 pertain to Advent Portfolio Exchange, a portfolio management software, which is unrelated to the APX venture capital fund, indicating no factual conflicts but unrelated content. - -Sources: - -- APX press release and investment strategy Jan 2021: https://apx.vc/press/21-01-2021-apx-raises-significant-new-funds-from-investors-axel-springer-and-porsche-and-announces-ambitious-new-investment-strategy-english-german - -- APX investment thesis: https://apx.vc/apx/how-to-build-a-startup-team - -- APX portfolio: https://apx.network/portfolio?portfolio=APX - -- APX leadership LinkedIn: https://www.linkedin.com/company/apx-inc - -- APX OpenVC profile: https://www.openvc.app/fund/APX" -"Arctic Fund Management ","https://www.arctic.com/afm ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Return"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nordic""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Nordic Corporate Bond"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nordic""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income"",""High Yield""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Nordic Investment Grade"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nordic""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fixed Income"",""Investment Grade""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Global Select"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Equities"",""Global Equity Markets""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Nordic Equities"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nordic""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Equities"",""Nordic Market""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Norwegian Value Creation"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Norway""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Equities"",""Norwegian Market""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Norwegian Equities"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Norway""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Equities"",""Norwegian Market""],""sourceUrl"":""https://arctic.com/aam/funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arctic Aurora LifeScience"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Healthcare"",""Innovation""],""sourceUrl"":""https://arctic.com/aam/funds""}],""headquarters"":""Haakon VIIs gate 5 NO-0161 Oslo Norway"",""investmentThesisFocus"":[""Focus on Nordic and Norwegian markets in multiple asset classes."",""Investment strategies cover fixed income, equity, real estate, shipping, and offshore brokering."",""Emphasis on consistent, stable returns with low volatility in fixed income funds."",""Investment in healthcare innovation through dedicated funds."",""Active leadership involvement to strengthen future growth.""],""investorDescription"":""Arctic Group is a leading, independent provider of financial services founded in 2007 by visionary entrepreneurs, driven by an entrepreneurial spirit and focused on facilitating superior market opportunities for clients. Services include Investment Banking, Fixed Income & Equity Sales, Research, Asset Management, Real Estate Project Finance, Shipbroking, Offshore & Rig Brokering. Leadership changes announced for strengthening Arctic's future include roles such as CEO, Deputy CEO, and Head of Investment Banking."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Arctic Securities"",""Arctic Asset Management"",""Arctic Shipping"",""Arctic Offshore International"",""Arctic Offshore Rig"",""Arctic Capital"",""Arctic Real Estate Management"",""Arctic Alternative Investments Management"",""Cleanworld"",""Veyt AS""],""researcherNotes"":""No explicit Assets Under Management (AUM) or fund size data was found on the Arctic website or related pages. Investment size per company is also not specified. The portfolio companies listed are entities within the Arctic Group rather than external portfolio companies."",""seniorLeadership"":[{""name"":""Mads Henrik Syversen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/securities/management"",""title"":""CEO""},{""name"":""Hege Marthinussen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/news/2025/leadership-changes-strengthening-arctic-for-the-future"",""title"":""Deputy CEO""},{""name"":""Robert Christiansen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/news/2025/leadership-changes-strengthening-arctic-for-the-future"",""title"":""Head of Fixed Income and Equity Sales, Deputy CEO""},{""name"":""Steffen Rødsjø"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/securities/management"",""title"":""Head of Investment Banking""},{""name"":""Lisbeth Gyland"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/aam/management"",""title"":""Chief Executive Officer of Arctic Asset Management""},{""name"":""Albert Collett"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/aam/management"",""title"":""Chief Investment Officer""},{""name"":""Ulrica Slåne Bjerke"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/aam/management"",""title"":""CIO, Stockholm branch""},{""name"":""Samuel K. Haile"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/aam/management"",""title"":""Chief Operating Officer""},{""name"":""Mette Steinsland"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/aam/management"",""title"":""Chief Compliance Officer""},{""name"":""Mads Barås Bye"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/securities/management"",""title"":""Head of People""},{""name"":""Kjetil Bakken"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.arctic.com/securities/management"",""title"":""Head of Group Strategy""}],""sources"":{""headquarters"":""https://arctic.com/securities/contact"",""investmentThesisFocus"":""https://www.arctic.com"",""investorDescription"":""https://www.arctic.com"",""portfolioHighlights"":""https://www.arctic.com/companies""},""websiteURL"":""https://www.arctic.com/afm""}","Correctness: 97% Completeness: 85% - -The provided information about Arctic Group's funds, geographic focus, sector focus, and leadership is factually accurate based on Arctic’s official website and associated pages. The descriptions of funds such as Arctic Nordic Corporate Bond, Arctic Nordic Investment Grade, and Arctic Global Select align with publicly available data, confirming their focus on Nordic fixed income, high yield, investment grade, and global equities, respectively[1][2][3]. The leadership team and headquarters details also match Arctic’s official management pages[https://www.arctic.com/securities/management][https://www.arctic.com/aam/management]. - -However, significant details such as overall Assets Under Management (AUM), individual fund sizes, and estimated investment sizes are missing, resulting in reduced completeness. Despite being a sizable financial group with multiple units and funds mentioned, explicit AUM numbers or fund sizes are not disclosed on the public Arctic website[1][3]. The portfolio highlights listed are companies and business units within the group rather than externally managed portfolio investments, which is correctly noted in the researcher’s comments. This gap lowers the completeness score since such financial metrics are critical for a full understanding of the institution and its investment scale. - -Because no incorrect or fabricated facts are present in the submitted data, the factual correctness is high but not perfect, as a few asset-under-management numbers are simply not provided rather than contradicted. The data is consistent, coherent, and well-sourced from Arctic’s official pages. - -Sources: -https://arctic.com/aam/funds -https://www.arctic.com/securities/management -https://www.arctic.com/aam/management -https://www.arctic.com/services/asset-management/nordic-fixed-income/arctic-nordic-corporate-bond" -"ARIA Fund ","http://ariafund.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ARIA Fund Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Technologies that disrupt reality""],""sourceProvider"":""Original"",""sourceUrl"":""http://ariafund.com/""}],""headquarters"":""Rondo Organizacji Narodów Zjednoczonych 1, 00-124 Warsaw, Poland"",""investmentThesisFocus"":[""Technologies that disrupt reality""],""investorDescription"":""ARIA PRIVATE EQUITY S.A., a managing entity investing in technologies that disrupt reality. Investment thesis focus: Technologies that disrupt reality."",""linkedDocuments"":[""https://ariafund.com/privacy-policy.pdf"",""https://ariafund.com/terms-and-conditions.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Nethone"",""Inuru"",""Senuto"",""Livespace"",""Survicate"",""System 3E"",""Dom 3E""],""researcherNotes"":""AUM is not mentioned on the website. No specific funds or distinct investment stages or geographic focuses are presented, thus the default fund name and fields are used."",""seniorLeadership"":[{""name"":""Dariusz Lewandowski"",""sourceUrl"":""https://linkedin.com/in/dariusz-lewandowski-9232801"",""title"":""Managing Partner, Chief Investment Officer""},{""name"":""Katarzyna Kolmus"",""sourceUrl"":""https://linkedin.com/in/katarzyna-kolmus-b92596176"",""title"":""Senior Partner, Head of Legal""},{""name"":""Piotr Budnik"",""sourceUrl"":""https://linkedin.com/in/piotrbudnik"",""title"":""Senior Partner, Head of Fundraising""},{""name"":""Magdalena Jończak"",""sourceUrl"":""https://linkedin.com/in/magdalena-jonczak"",""title"":""Member of the Supervisory Board, Head of Strategy""},{""name"":""Daniel Kulaszewski"",""sourceUrl"":""https://linkedin.com/in/daniel-kulaszewski-429b0b59"",""title"":""Fundraising Director""},{""name"":""Anna Jabłońska-Przeklasa"",""sourceUrl"":null,""title"":""Investor Relations""},{""name"":""Anna Wacławek-Ptaszek"",""sourceUrl"":""https://linkedin.com/in/anna-wacławek-ptaszek-89a894139"",""title"":""Attorney at Law""}],""sources"":{""headquarters"":""https://ariafund.com/kontakt/"",""investmentThesisFocus"":""http://ariafund.com/"",""investorDescription"":""http://ariafund.com/"",""portfolioHighlights"":""https://ariafund.com/portfolio/""},""websiteURL"":""http://ariafund.com/""}","Correctness: 95% Completeness: 80% - -The information provided about ARIA Fund is largely **factually accurate** based on publicly available sources. ARIA Fund is a Warsaw-based growth/venture capital fund focused on investing in technology companies, particularly those considered ""technologies that disrupt reality,"" which aligns well with their described investment thesis[3][5]. The portfolio companies listed (Nethone, Inuru, Senuto, Livespace, Survicate, System 3E, Dom 3E) are consistent with publicly noted investments[1][5]. The senior leadership names and roles correspond with verified LinkedIn profiles. - -The given headquarters address (Rondo Organizacji Narodów Zjednoczonych 1, Warsaw) is confirmed on their official contact page[3]. The investment stage focus in broad terms aligns with growth/scale-up stages since ARIA typically invests in tech scale-ups with ticket sizes of roughly EUR 1–5 million[3][4], circumventing the earlier seed or strictly late-stage categorizations. However, some sources specify a focus on Series A stage investments[1], so the reported lack of distinct stage focus is partly incomplete. - -Gaps lowering completeness include the absence of stated overall assets under management (AUM) and detailed fund size, which are not disclosed on their site or in public documents[3]. The geographic focus is mostly Central Europe with an emphasis on Poland but also regional neighboring presence, not ""Not Available"" as indicated in the data, so this should be updated for accuracy and completeness[3]. The data does not reflect the range of industry interests beyond ""technologies that disrupt reality"" that public info references (privacy, fintech, health tech, e-commerce)[1]. - -Also, ARIA Fund's sometimes including conservative asset classes like real estate in their investments is noted on their website but missing here[3]. The sources do not indicate a single unified fund with a specific fund size; rather, ARIA appears to operate as a managing entity with multiple investments, which justifies the ambiguity around fund size and AUM. - -**Sources used:** -[1] Seedtable - Investor profile, including investment size and portfolio highlights (https://www.seedtable.com/investors-warsaw) -[3] ARIA Fund official website - strategy, portfolio, contact details (https://ariafund.com/en/investors/, https://ariafund.com/kontakt/) -[4] Nifasi - description of ARIA’s investment size and market niche (https://nifasi.pl/en/investment-partners/) -[5] Rymarz Zdort legal advisory news on ARIA portfolio (https://rzmlaw.com/en/rymarz-zdort-advises-aria-fund-on-sale-of-nethone-to-advent-international/) - -Therefore, while the core facts about ARIA Fund’s strategy, leadership, portfolio, and location are correct, the dataset could be improved with accurate fund metrics and a more precise summary of investment stages and geographic focus." -"Apex Black ","https://apex.black ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Apex Black Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://apex.black/""}],""headquarters"":null,""investmentThesisFocus"":[""Founders backing founders, emphasizing support for entrepreneurs boldly reimagining the world with deep innovation."",""Focus on solving big intractable challenges through breakthroughs in technology and science."",""Commitment to partnering with entrepreneurs dedicated to integrating scientific breakthroughs into reality to improve lives.""],""investorDescription"":""Founders backing founders, backing entrepreneurs reimagining the world with deep innovation, focusing on breakthroughs in tech and science. Supporting founders boldly reimagining the world with deep innovation, conquering big intractable challenges through breakthroughs in tech and science. Commitment to partnering with entrepreneurs dedicated to integrating scientific breakthroughs into reality to improve lives."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""apex.black"",""materra.tech"",""monolithai.com"",""mevitae.com"",""unspun.io"",""solarcore.tech"",""m-xr.com"",""viabot.com"",""superlinked.com"",""pentatonic.com""],""researcherNotes"":""Headquarters address, specific investment stages, sector focuses, estimated investment size, fund sizes, and overall AUM were not found on the website or related publicly accessible sources."",""seniorLeadership"":[{""name"":""Rani Saad"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://apex.black/"",""title"":""Founding Partner""},{""name"":""Pallak Seth"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://apex.black/"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://apex.black/"",""investmentThesisFocus"":""https://apex.black/"",""investorDescription"":""https://apex.black/"",""portfolioHighlights"":""https://apex.black/""},""websiteURL"":""https://apex.black/""}","Correctness: 98% Completeness: 65% - -The information presented about Apex Black Investment Strategy—including the investment thesis, emphasis on founders backing founders, focus on deep innovation and scientific breakthroughs, portfolio highlights, and senior leadership—is factually correct based on the official Apex Black website (https://apex.black/) cited in the data. The specific descriptions of their investment approach and portfolio companies align with what is publicly available on their site. - -However, significant completeness gaps exist because key details such as the fund’s headquarters, estimated investment size, specific sector and stage focuses, fund size, and total assets under management are *not* found or disclosed on the website or other publicly accessible sources. The researcher notes these missing fields, and no alternative reliable sources were found to fill these gaps. Thus, while the factual content is highly accurate, the completeness is substantially reduced due to these missing core data points. - -The URLs used for verification are: - -- https://apex.black/ (main source for investment thesis, portfolio, leadership) - -Given this, the correctness is near perfect because details provided are directly from official data, but completeness is lowered due to unavailable critical information commonly expected in fund profiles." -"ArcTern Ventures ","http://www.arcternventures.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 5,000,000 to 10,000,000"",""fundName"":""Fund III"",""fundSize"":""CAD 450,000,000"",""fundSizeSourceUrl"":""https://betakit.com/climate-tech-vc-arctern-ventures-closes-450-million-cad-fund-iii-from-large-institutions/"",""geographicFocus"":[""North America"",""Europe""],""investmentStageFocus"":[""Early Growth"",""Series A"",""Series B""],""sectorFocus"":[""Renewable Energy"",""Clean Mobility"",""Circular Economy"",""Sustainable Food and Agriculture"",""Industrial Decarbonization""],""sourceProvider"":""BetaKit"",""sourceUrl"":""https://betakit.com/climate-tech-vc-arctern-ventures-closes-450-million-cad-fund-iii-from-large-institutions/""}],""headquarters"":""2 Bloor St W, Toronto, Ontario M4W 1A3, Canada"",""investmentThesisFocus"":[""Investing in entrepreneurs solving climate change and sustainability challenges"",""Focus on early growth-stage climate tech startups"",""Target sectors include renewable energy, clean mobility, circular economy, sustainable food and agriculture, and industrial decarbonization""],""investorDescription"":""Since 2012, we've been investing in entrepreneurs obsessed with solving humanity's greatest challenges—climate change and sustainability."",""linkedDocuments"":[],""missingImportantFields"":[""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 100,000,000 to 499,000,000"",""sourceProvider"":""ImpactAssets"",""sourceUrl"":""https://impactassets.org/ia50/fund.php?id=a01RQ00000O5f1bYAB""},""portfolioHighlights"":[],""researcherNotes"":""Headquarters, portfolio highlights, and senior leadership details are not available on the company's website. AUM is inferred from ImpactAssets data range."",""seniorLeadership"":[{""name"":""Murray McCaig"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder and Managing Partner""},{""name"":""Marc Faucher"",""sourceProvider"":""Perplexity"",""title"":""Managing Partner""},{""name"":""Mira Inbar"",""sourceProvider"":""Perplexity"",""title"":""Partner""},{""name"":""Ian Pinnington"",""sourceProvider"":""Perplexity"",""title"":""Partner""}],""sources"":{""headquarters"":""https://ca.linkedin.com/company/arctern-ventures"",""investmentThesisFocus"":""https://betakit.com/climate-tech-vc-arctern-ventures-closes-450-million-cad-fund-iii-from-large-institutions/"",""investorDescription"":""https://www.arcternventures.com/"",""portfolioHighlights"":""Not Available""},""websiteURL"":""http://www.arcternventures.com""}","Correctness: 95% Completeness: 85% - -The information provided is largely factually accurate and aligns well with multiple authoritative sources. ArcTern Ventures is indeed a Toronto-based climate tech VC that closed Fund III with approximately USD 335 million (CAD 450 million) in commitments, focused on early growth-stage investments (Series A, Series B) in sectors such as renewable energy, clean mobility, circular economy, sustainable food and agriculture, and industrial decarbonization. The geographic focus on North America and Europe is correct, as well as the investment size range of approximately USD 5 to 10 million per initial investment[1][2][3][4][5]. - -The headquarters location at 2 Bloor St W, Toronto is consistent with the company’s LinkedIn profile. Senior leadership names (Murray McCaig, Marc Faucher, Mira Inbar, Ian Pinnington) are accurate per available sources and the company website[3]. - -Where the data slightly departs is on the fund size description and assets under management (AUM). While the original data states the fund size as CAD 450 million (about USD 335 million), ImpactAssets lists AUM in a broad USD 100-499 million range and details Fund III at approximately USD 340 million[5]. The source at BetaKit and Business Wire confirms the USD 335 million figure and notes the fund was oversubscribed beyond the initial $300 million target[1][2][4]. - -Notably, the ""portfolioHighlights"" field is missing, which is an important aspect for completeness. Public information mentions portfolio companies such as Span.io, Palmetto, Harbinger, Scythe, Liminal, Woltair, Trove, Soly, Winnow, and Recurrent as part of Fund III investments[3]. The absence of this data reduces the completeness score. - -Furthermore, the investment thesis and description align closely with the firm's public statements emphasizing climate impact and sustainability challenges[1][2][3]. - -**Summary:** - -| Aspect | Status | Source(s) | -|-----------------------|--------------------------------------------|------------------------------------| -| Fund III size | CAD 450M / USD 335M | [1][2][3][5] | -| Investment stages | Early Growth, Series A and B | [1][2][3][5] | -| Sector focus | Renewable energy, clean mobility, etc. | [1][2][3][4] | -| Geographic focus | North America and Europe | [1][2][4] | -| Headquarters | 2 Bloor St W, Toronto | | -| Senior leadership | Listed individuals correct | [3][official website] | -| Portfolio highlights | Missing in provided data, publicly known | [3] | -| AUM overview | USD 100-499M range confirmed, USD 335M fund | [5] | - -References: - -[1] https://www.arcternventures.com/arctern-ventures-announces-usd-335-million-fund-iii-focused-on-global-decarbonization/ -[2] https://betakit.com/climate-tech-vc-arctern-ventures-closes-450-million-cad-fund-iii-from-large-institutions/ -[3] https://www.axios.com/pro/climate-deals/2024/01/22/arctern-ventures-335-million-fund-iii-climate -[4] https://globalaginvesting.com/arctern-ventures-closes-fund-iii-oversubscribed-at-335m-for-global-decarbonization/ -[5] https://impactassets.org/ia50/fund.php?id=a01RQ00000O5f1bYAB - https://ca.linkedin.com/company/arctern-ventures - -The main factual inaccuracy is the fund size stated in USD without clarifying currency conversion, but this is minor given the source clarification. The main completeness gap is absence of portfolio company highlights despite public availability." -"another.vc ","https://www.another.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000"",""fundName"":""another.vc Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""First round of funding""],""sectorFocus"":[""Non-obvious B2B products ranging from web-based SaaS tools to lab-based hardware products""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.another.vc/#our-deal""}],""headquarters"":""Weseler Straße 35, 45478 Mülheim-Ruhr, Germany"",""investmentThesisFocus"":[""Prefers new ideas over hype topics."",""Supports founders with network and experience."",""Invests in customer-centric teams building industry-specific B2B products."",""Focuses on European companies or founders with European roots."",""Lean process from first call to decision."",""Conversations instead of pitches."",""Provides support in go-to-market and fundraising.""],""investorDescription"":""Focuses on helping B2B founders find their first customers, first investor, prefers new ideas over hype topics, supports with network and experience, split focus topics along personal interests (atoms for Falk, bits for Malte). Invests in customer-centric teams building industry-specific B2B products, European companies or founders with European roots, typically first round of funding. Lean process from first call to decision, conversations instead of pitches, provide support in go-to-market and fundraising."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Companies building data products"",""SaaS tools"",""AI"",""Industrial platforms"",""Procurement in construction"",""Protein-based drug creation"",""Manufacturing"",""ESG reporting"",""Sports fan engagement"",""Wastewater pollutant elimination""],""researcherNotes"":""AUM and fund size specifically are not mentioned on the website. The fund name follows the naming rule for no formal fund names."",""seniorLeadership"":[{""name"":""Falk Haurenherm"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.another.vc/#team"",""title"":""Founder""},{""name"":""Malte Scherff"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.another.vc/#team"",""title"":""Founder""}],""sources"":{""headquarters"":""https://www.another.vc/imprint"",""investmentThesisFocus"":""https://www.another.vc/#our-deal"",""investorDescription"":""https://www.another.vc/#our-deal"",""portfolioHighlights"":""https://www.another.vc/#portfolio""},""websiteURL"":""https://www.another.vc""}","Correctness: 100% Completeness: 90% - -The provided information about another.vc is factually accurate based on the publicly available data on their official website and related sources. The fund’s focus on European B2B startups, preference for first-round investments, lean process with conversations rather than formal pitches, and support in go-to-market and fundraising precisely match their ""Our Deal"" page. The description of the founders Falk Haurenherm and Malte Scherff as well as their split focus on atoms and bits aligns with their team page. The portfolio highlights including SaaS, AI, industrial platforms, and other listed sectors correspond with the portfolio section on their website. The headquarters address in Mülheim-Ruhr, Germany, is confirmed by their imprint page. - -The only significant incompleteness is the absence of overall Assets Under Management (AUM) and formal fund size data, which the website openly does not disclose. This was acknowledged by the researcher notes and explains the missing important fields. Public sources and the fund’s site do not provide verified AUM figures, so this information gap is typical rather than an oversight. - -No fabricated or unsupported information was found, and the data matches well with the cited URLs: - -- another.vc Our Deal: https://www.another.vc/#our-deal -- another.vc Team: https://www.another.vc/#team -- another.vc Portfolio: https://www.another.vc/#portfolio -- another.vc Imprint: https://www.another.vc/imprint - -Therefore, correctness is 100%, and completeness is high at 90%, only limited by non-disclosure of AUM and exact fund size." -"Aqua Spark ","http://www.aqua-spark.nl ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Aqua-Spark Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Western Europe""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Sustainable aquaculture"",""Farming operations"",""Alternative feed solutions"",""Disease treatments"",""Aquaculture technology"",""Market access""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC""}],""headquarters"":""Achter St-Pieter 5, 3512HP Utrecht, The Netherlands"",""investmentThesisFocus"":[""Combine healthy, sustainable aquaculture with stable or above-market returns."",""Invests in farming operations, alternative feed solutions, disease treatments, technology, and market access."",""Aiming for a sustainable aquaculture industry."",""Operates as a holding company with flexible terms and semi-annual redemptions.""],""investorDescription"":""Aqua-Spark is a private equity investment fund based in the Netherlands, focused on sustainable aquaculture with a portfolio of 50-60 companies. Their investment thesis is to combine healthy, sustainable aquaculture with stable or above-market returns. Aqua-Spark operates as a holding company, offering flexible terms and semi-annual redemptions."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""USD 500,000,000 to 999,000,000"",""sourceUrl"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC""},""portfolioHighlights"":[""eFishery: A data-driven company optimizing aquaculture feeding and providing financing and market access to farmers. Headquarters: Indonesia""],""researcherNotes"":""AUM is explicitly stated as a range between $500–999 million on ImpactAssets profile. No specific fund sizes or investment ticket sizes are found on the website. Portfolio company names and additional leadership details not present in the source."",""seniorLeadership"":[{""name"":""Mike Velings"",""sourceUrl"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""title"":""Founder & Board Member""},{""name"":""Amy Novogratz"",""sourceUrl"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""title"":""Founder & Board Member""},{""name"":""Lissy Smit"",""sourceUrl"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""title"":""CEO""},{""name"":""Glenn Flanders"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""NOT FOUND"",""title"":""Partner""},{""name"":""Bert van den Hoek"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""NOT FOUND"",""title"":""Partner""},{""name"":""Maria Velkova"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""NOT FOUND"",""title"":""Chief Portfolio Officer""}],""sources"":{""headquarters"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""investmentThesisFocus"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""investorDescription"":""https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC"",""portfolioHighlights"":""https://aqua-spark.nl/portfolio/""},""websiteURL"":""http://www.aqua-spark.nl""}","Correctness: 100% Completeness: 90% - -The information provided about Aqua-Spark aligns well with authoritative sources including Aqua-Spark's official website and profiles on ImpactAssets and coverage by AgFunderNews. Key facts such as Aqua-Spark being a **Netherlands-based private equity investment fund focused on sustainable aquaculture**, investing across the **value chain including farming operations, feed solutions, disease treatments, technology, and market access**, are confirmed [1][2][3][5]. The fund’s operational model as a **holding company with flexible terms and semi-annual redemptions** and its mission to combine sustainable aquaculture with stable or above-market returns are also verified [3][4]. The stated location in Utrecht matches multiple sources [1][3]. - -Leadership details like **Mike Velings and Amy Novogratz as founders and board members, and Lissy Smit as CEO** are consistent with public information [2][3]. The mention of portfolio highlights such as **eFishery, an Indonesian data-driven aquaculture company** is also accurate [2][5]. - -Regarding assets under management (AUM), the range of **USD 500 million to 999 million as of 2025** matches the ImpactAssets listing [source]. However, exact fund sizes or minimum investment ticket sizes are not provided publicly, which limits completeness slightly. - -The completeness score is somewhat reduced because: - -- There is no detailed public disclosure of exact fund or ticket sizes, which were specifically noted as ""Not Available"" in the input. -- Additional portfolio companies and their specific details could enrich the description—only eFishery is highlighted while Aqua-Spark’s portfolio reportedly includes 50-60 companies worldwide [3][5]. -- Some leadership roles (partners, Chief Portfolio Officer) are noted via LinkedIn but lack publicly verifiable source URLs, not disadvantaging correctness but limiting verifiability. -- More detailed financial performance data or historic investment rounds are not present. - -Overall, this dataset is highly accurate and fairly comprehensive, focusing on strategic, operational, and leadership data supported by Aqua-Spark’s own site and reputable third-party profiles. - -Sources consulted: - -- Aqua-Spark official site: https://aqua-spark.nl/about-us/ and https://aqua-spark.nl/portfolio/ -- ImpactAssets fund profile: https://impactassets.org/ia50/fund.php?id=a01RQ000007XinsYAC -- AgFunderNews CEO interview and portfolio mentions: https://agfundernews.com/our-oceans-are-in-a-state-of-emergency-aqua-sparks-ceo-explains-how-startups-can-help-restore-their-health -- Idealist business profile: https://www.idealist.org/en/business/9892e0c2cfbe442d885ae8d5ff8affae-aqua-spark-operating-bv-utrecht" -"Angels’ Bay Invest ","https://angelsbay.net ","{""funds"":[{""estimatedInvestmentSize"":""$70k to $150k"",""fundName"":""Angels'Bay Invest Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Prototype"",""Early Revenue"",""Scaling""],""sectorFocus"":[""Solutions d'entreprises"",""Santé"",""Sécurité"",""Industries"",""Technologies éducatives"",""Services aux entreprises et aux collectivités""],""sourceProvider"":""External Web"",""sourceUrl"":""https://angelsbay.net""}],""headquarters"":""c/o DSTI – Les Templiers, 950 route des Colles, Sophia Antipolis, 06410 BIOT"",""investmentThesisFocus"":[""Focus on entrepreneurship, innovation, and ethical business practices."",""Active engagement to support high-growth potential companies."",""Use of member skills and networks to support development."",""Participation in strategic committees or boards to aid financed projects.""],""investorDescription"":""Angels'Bay Invest is a group of business angels from Côte d’Azur and Monaco focused on investing and supporting entrepreneurs with innovative projects. Angels’ Bay Invest is a non-profit association of Business Angels created in 2016, based in Sophia Antipolis. The group comprises technophile, skilled, and recognized Business Angels from diverse professional backgrounds. Their mission includes financing startups and innovative young companies with equity or quasi-equity investments, supporting high-growth potential companies through expertise and member networks, and participating in strategic committees or boards to aid financed projects."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""eLichens"",""Cardiawave"",""Silex-app"",""Midgard AI"",""Attestis"",""Graphene Production"",""Klava Innovation"",""Iadys"",""Inalve"",""Hoopiz"",""Traxxs"",""F-reg"",""Legapass"",""Interstellar Lab"",""Original Custom Components"",""Twise"",""Neosyad""],""researcherNotes"":""AUM and fund size information are not available on the website. Sector focus, investment stage focus, geographic focus, and estimated investment size are supplemented from external sources."",""seniorLeadership"":[{""name"":""Christine FRITEAU"",""sourceUrl"":""https://linkedin.com/in/christine-friteau"",""title"":""President and Founder""},{""name"":""Michel BERNASCONI"",""sourceUrl"":""https://linkedin.com/in/michel-bernasconi-14a95418"",""title"":""Vice-President and Founder""},{""name"":""Pascal PERU"",""sourceUrl"":""https://linkedin.com/in/pascalperu"",""title"":""Vice-President and Founder""},{""name"":""Myriam AYEE"",""sourceUrl"":""https://linkedin.com/in/myriam-ayee-aa8a3377"",""title"":""Treasurer""},{""name"":""Isabelle de CAMANTRAND"",""sourceUrl"":""https://linkedin.com/in/isabelle-de-carmantrand"",""title"":""Secretary""},{""name"":""Mauro DELL’ORCO"",""sourceUrl"":""https://linkedin.com/in/mauro-dell-orco-687550a"",""title"":""Administrator""},{""name"":""Patrick DELATTRE"",""sourceUrl"":""https://linkedin.com/in/patrick-delattre-90245b22"",""title"":""Administrator""},{""name"":""Jérémy HIRCH"",""sourceUrl"":""https://linkedin.com/in/jeremy-hirsch-jh"",""title"":""Administrator""},{""name"":""Stéphane BERMON"",""sourceUrl"":null,""title"":""Administrator""}],""sources"":{""funds"":""https://www.openvc.app/fund/Angels%20Bay%20Invest"",""headquarters"":""https://angelsbay.net/contactez-nous"",""investmentThesisFocus"":""https://angelsbay.net/qui-sommes-nous"",""investorDescription"":""https://angelsbay.net/qui-sommes-nous"",""portfolioHighlights"":""https://angelsbay.net/portefeuille""},""websiteURL"":""https://angelsbay.net""}","Correctness: 95% Completeness: 90% - -The information provided about Angels'Bay Invest is **factually accurate** and well-aligned with reliable external sources. Verification from OpenVC confirms key details such as: - -- Headquarters at ""c/o DSTI – Les Templiers, 950 route des Colles, Sophia Antipolis, 06410 BIOT, France""[1]. -- Focus on early-stage French startups primarily at prototype, early revenue, and scaling stages[1]. -- Investment size typically ranges between $70k and $150k[1]. -- Sector focus includes business solutions, health, security, industries, educational technologies, and services to businesses and communities—as broadly described by the fund's external profile[1]. -- The investor thesis emphasizing support for entrepreneurship, innovation, and ethical business[1]. -- Leadership names and roles match LinkedIn information provided (e.g., Christine FRITEAU as President)[1]. -- Portfolio highlights largely correspond to those listed on the official Angels'Bay Invest website[1]. - -The description stating that Angels'Bay Invest is a non-profit association of business angels founded in 2016 and based in Sophia Antipolis is consistent with their official site and OpenVC profile[1]. - -**Completeness** is slightly reduced mainly because the exact fund size or overall assets under management (AUM) are marked as ""Not Available,"" which aligns with the absence of public data. Furthermore, while the portfolio is highlighted, detailed information such as individual investment amounts per company or performance metrics is not publicly disclosed. This is typical for many angel groups but means the profile cannot be fully complete. - -One minor discrepancy worth noting is an irrelevant mention from Capboard.io describing Angels' Bay as a Silicon Valley–based group, which conflicts with the confirmed French headquarters; this appears to be a mistaken or unrelated entry and does not affect the correctness of the main data[5]. - -In summary, the data is highly factual and mostly complete given publicly available sources, with OpenVC being the most authoritative source confirming headquarters, investment thesis, strategy, check size, and sector focus[1]. No fabricated or misleading information is evident. - -Sources used: - -[1] https://www.openvc.app/fund/Angels%20Bay%20Invest -[5] https://www.capboard.io/en/investor/angels-bay-invest" -"Anterra Capital ","http://www.anterracapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 1,000,000 - 10,000,000"",""fundName"":""Anterra F&A Ventures I Coöperatief U.A."",""fundSize"":""USD 150,000,000"",""fundSizeSourceUrl"":""https://www.pehub.com/anterra-raises-150m-for-ag-tech-fund/"",""geographicFocus"":[""North America"",""Europe""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Agriculture"",""Food & Agriculture""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-I-2025.pdf""},{""estimatedInvestmentSize"":""USD 2,000,000 - 15,000,000"",""fundName"":""Anterra F&A Ventures II Coöperatief U.A."",""fundSize"":""USD 250,000,000"",""fundSizeSourceUrl"":""https://www.finsmes.com/2024/11/anterra-capital-announces-closure-of-250m-fund-ii.html"",""geographicFocus"":[""North America"",""Europe""],""investmentStageFocus"":[""Early Stage"",""Growth Stage""],""sectorFocus"":[""Agriculture"",""Food & Agriculture"",""Animal Health"",""Nutrition""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-II-2025.pdf""}],""headquarters"":""One Boston Place, 201 Washington Street, MA 02108 Boston; Herengracht 450, 1017 CA Amsterdam"",""investmentThesisFocus"":[""Focuses on entrepreneurs leveraging technologies that are underused in food and agriculture but well-proven in other sectors like digital technology and biotechnology."",""Empowers farmers to improve their economic position and ecosystem restoration."",""Accelerates development of animal medications for health and disease risk reduction."",""Improves consumer access to affordable, healthier, nutritious foods addressing dietary diseases."",""Willingness to incubate companies when groundbreaking ideas exist but no company is present."",""Uses rigorous research and extensive food, tech, and investor ecosystem to identify long-term investment opportunities.""],""investorDescription"":""Anterra Capital invests across the value chain from farmer to consumer, engaging from company incubation to Series D, typically investing at Series A or B with initial cheques of $1-10m. They focus on companies leveraging breakthrough biotechnology or digital solutions, aiming for positive impact on the planet, health, and livelihoods. They have over $400m in total commitments, primarily focusing on North America and Europe. The firm is backed by large institutional investors, strategics and family offices including Rabobank, Eight Roads (Fidelity International), Novo Holdings, and Tattarang."",""linkedDocuments"":[""https://anterracapital.com/wp-content/uploads/2025/02/Our-Commitments.pdf"",""https://anterracapital.com/wp-content/uploads/2025/04/Anterra-Sustainability-Risks-Integration-Policy-2025.pdf"",""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-I-2025.pdf"",""https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-II-2025.pdf""],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 400,000,000"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.anterracapital.com/""},""portfolioHighlights"":[""Agrimetis"",""Agryco"",""Animol"",""Ashish"",""Berkeley Yeast"",""Biomedit"",""Bonito"",""Caribou"",""Cherrypick"",""La Fourche"",""Invetx"",""SaaS Masters""],""researcherNotes"":""Total commitments of over 400 million USD found on homepage, interpreted as firm's AUM. Specific fund sizes and estimated investment sizes are sourced externally from recent reputable financial news (PE Hub, Finsmes)."",""seniorLeadership"":[{""name"":""Adam Anders"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://anterracapital.com/team/"",""title"":""Managing partner & co-founder""},{""name"":""Phil Austin"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://anterracapital.com/team/"",""title"":""Managing partner & co-founder""},{""name"":""Brett Chevalier"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://anterracapital.com/team/"",""title"":""Chief scientist""},{""name"":""Maarten Goossens"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://anterracapital.com/team/"",""title"":""Partner & co-founder""},{""name"":""Brett Wong"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://anterracapital.com/team/"",""title"":""Partner""},{""name"":""Michael Topalian"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://anterracapital.com/team/"",""title"":""Finance director""}],""sources"":{""headquarters"":""https://anterracapital.com/contact/"",""investmentThesisFocus"":""https://anterracapital.com/thesis/"",""investorDescription"":""http://www.anterracapital.com/"",""portfolioHighlights"":""https://anterracapital.com/our-companies/""},""websiteURL"":""http://www.anterracapital.com/""}","Correctness: 98% Completeness: 95% - -The information about Anterra Capital's funds, investment sizes, sector and geographic focus, investment thesis, portfolio highlights, senior leadership, headquarters, and investor profile is highly accurate and well-supported by multiple official sources. The two key funds, Anterra F&A Ventures I and II, have disclosed fund sizes of USD 150 million and USD 250 million respectively, matching the numbers in the query and verified through primary disclosures (PE Hub via [1] and Finsmes via [2]). The estimated investment sizes for each fund, geographic focuses on North America and Europe, and sector focuses including agriculture, food & agriculture, animal health, and nutrition, align precisely with fund disclosures and corporate website data [1][2]. - -The firm's overall assets under management exceed USD 400 million, consistent with their public homepage claims [2]. The investment thesis matches content from Anterra’s website emphasizing support for transformative technologies in agriculture and food sectors, positive planetary impact, and early-to-growth stage investments typically between $1–10 million [2]. The headquarters locations in Boston and Amsterdam are confirmed by the official contact page [2][3]. Senior leadership listing with managing partners Adam Anders and Phil Austin and other executives aligns with the company’s team page [2]. - -Portfolio highlights such as Agrimetis, La Fourche, Biomedit, and others correctly reflect companies featured in Anterra’s portfolio online [2]. The investor base including Rabobank, Eight Roads, Novo Holdings, and Tattarang corresponds to Anterra’s stated institutional backing [2]. - -Minor caveats affecting completeness are the lack of detailed historical fund performance metrics, which typically are not publicly disclosed, and no specific mention of some incubation activities beyond thesis statements. However, these are common for private venture firms and do not substantially reduce the overall factual completeness. There is no indication of fabricated or incorrect data in the materials reviewed. - -Sources used: -- Anterra F&A Ventures I disclosure (https://anterracapital.com/wp-content/uploads/2025/04/Website-disclosure-Fund-I-2025.pdf) [1] -- Anterra homepage and fund II announcement on Finsmes (https://anterracapital.com, https://www.finsmes.com/2024/11/anterra-capital-announces-closure-of-250m-fund-ii.html) [2] -- Startup Luxembourg directory on Anterra HQ (https://directory.startupluxembourg.com/companies/anterra_capital) [3]" -"APEX Ventures ","http://www.apex.ventures ","{""funds"":[{""estimatedInvestmentSize"":""EUR 500,000 to EUR 1,500,000"",""fundName"":""APEX Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""DACH"",""CEE"",""Nordics"",""Europe"",""United States""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Deep Tech"",""Medical""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.apex.ventures""}],""headquarters"":""Habsburgergasse 2/1a, 1010 Vienna, Austria"",""investmentThesisFocus"":[""Early stage companies driven by Deep Tech and defensible Intellectual Property, focusing on enabling technologies applicable in various verticals rather than specific industries."",""Primarily invest at seed and early stages, with initial investment ticket size around EUR 500k to 1.5m per company."",""Target regions include DACH, CEE, Nordics, Europe, and the U.S."",""Position as long-term business partners rather than just investors, providing staged support through Validation, Scalability and Growth including access to corporates, VCs, legal advice, business development, mentors, talent pool, and grant opportunities."",""Focus on helping founders formalize vision, set performance metrics, and prepare management for challenges.""],""investorDescription"":""APEX Ventures is a deep-tech and medical focused venture capital firm run by founders with complementary backgrounds, driven by the mission to build the next generation of the world's leading companies. Their primary focus is on deep tech, supporting founders with knowledge, experience, and guidance in building and scaling deep-tech startups. The firm values disruptive technology potential, is mission-driven and commercially focused."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""APEX One"",""APEX Medical"",""APEX One Best in Class"",""Amadeus APEX"",""Vertus Energy"",""Unisieve"",""Planqc"",""Okapi Orbits"",""Upfront Diagnostics"",""Refined Laser Systems""],""researcherNotes"":""No explicit AUM or fund size found on the website. Investment size per company is mentioned. The firm appears to operate a unified investment strategy rather than multiple formal funds."",""seniorLeadership"":[{""name"":""Andreas Riegler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.apex.ventures/team/"",""title"":""General Partner""},{""name"":""Wolfgang Neubert"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.apex.ventures/team/"",""title"":""General Partner""},{""name"":""Stefan Haubner"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.apex.ventures/team/"",""title"":""General Partner, Operations Team""}],""sources"":{""headquarters"":""https://www.apex.ventures/imprint/"",""investmentThesisFocus"":""https://www.apex.ventures/philosophy/"",""investorDescription"":""http://www.apex.ventures/"",""portfolioHighlights"":""https://www.apex.ventures/portfolio_apex/""},""websiteURL"":""http://www.apex.ventures""}","Correctness: 95% Completeness: 85% - -The provided information about **APEX Ventures** is largely accurate and aligns well with publicly available data. The firm is a European early-stage venture capital firm focusing on deep tech and medical sectors, investing primarily at seed and early stages, with investment sizes typically between EUR 500,000 and 1.5 million per company, as indicated in the query and corroborated by the fund sheet for the Amadeus APEX Technology Fund (€80m) launched in 2023[2]. The geographic focus on DACH, CEE, Nordics, Europe, and the U.S., as well as the emphasis on deep tech sectors such as AI, machine learning, quantum technologies, autonomous systems, and other emerging technologies[1][2] also match the stated investment thesis and sector focus. The descriptions of founder support and active partnership are consistent with the firm’s self-description emphasizing long-term engagement[2]. - -**Where correctness is slightly reduced:** -- The source does not explicitly list an exact total Assets Under Management (AUM) nor a distinct overall “fund size” beyond the Amadeus APEX Technology Fund figure (€80m)[2]. The query states “fund size: Not Available” and “overallAssetsUnderManagement: null” which matches current publicly available data and reflects the firm's approach of operating a possibly unified strategy or single fund rather than multiple distinct funds[1][2]. -- Senior leadership details correspond to those on the official site linked in the query (Andreas Riegler, Wolfgang Neubert, Stefan Haubner)[2]. - -**Regarding completeness:** -- The query lacks explicit mention of the Amadeus APEX Technology Fund’s approximate size (€80m), which is a significant, publicly known detail[2]. -- The lack of AUM and multiple fund details is reflected correctly but is an important omission compared to publicly known figures. -- Some granular details on the engagement and ESG approach from the Fund's SFDR disclosures are not included (e.g., qualitative ESG assessments and investment impact considerations)[1]. -- Portfolio highlights and investment counts could be expanded with more data from investor databases that list over 40 investments and various sectors[4]. - -**Sources:** -1. APEX Ventures SFDR - investment strategy detail, sector focus (https://www.apex.ventures/sfdr/) -2. Hello Tomorrow interview and Amadeus APEX Technology Fund details (https://hello-tomorrow.org/discover-apex-ventures-with-founder-general-partner-andreas-riegler/) -3. Apex Group (not relevant here for fund specifics) -4. Unicorn Nest investor database overview (https://unicorn-nest.com/funds/apex-ventures/) -5. Preqin profile summary (https://www.preqin.com/data/profile/fund-manager/apex-ventures/216815) - -Overall, the core factual profile of APEX Ventures presented is correct, with moderate completeness due to the omission of the Amadeus APEX Technology Fund’s size and some ESG-related details." -"Antler ","https://antler.co ","{""funds"":[{""estimatedInvestmentSize"":""Typically in exchange for 7% to 12.5% equity at pre-seed stage"",""fundName"":""Antler Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed residency programs"",""Pre-seed rounds"",""Seed rounds"",""Co-investing in Series A and beyond""],""sectorFocus"":[""Large opportunity areas, not sector-specific""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://cdn.prod.website-files.com/62d19f82a58657afab15127b/634d9a734ee75b56acbf1503_How%20Antler%20thinks%20about%20investments%E2%80%94Antler%20VC%20(2022).pdf""}],""headquarters"":""São Paulo, Brazil; Toronto, Canada; Paris, France; Jakarta, Indonesia; Tokyo, Japan; Nairobi, Kenya; Seoul, Korea; Dubai, UAE; Riyadh, Saudi Arabia; Kuala Lumpur, Malaysia; Amsterdam, Netherlands; Berlin, Germany; Munich, Germany; London, UK; Austin, USA; New York, USA; Ho Chi Minh, Vietnam"",""investmentThesisFocus"":[""Backs exceptional founding teams and invests in people rather than just ideas."",""Investment decisions typically made after 2-3 months in residency or upon evaluation of existing teams."",""Prefers founder-friendly terms with minimal rights asked for, including liquidation preferences but no anti-dilution or veto rights at early stages."",""Invests mainly using SAFEs or priced equity depending on location, seeking to maintain pro-rata ownership in follow-on rounds."",""Requires at least a 10% ESOP pool and founder share vesting over 48 months with a 12-month cliff."",""Global footprint with cohorts and residencies worldwide, with sector emphasis on large opportunity areas rather than specific sectors.""],""investorDescription"":""Antler is the investor backing the world's most driven founders, from day zero to greatness. Founded on the belief that people innovating is the key to unlocking human potential and progress. Antler is a global early-stage venture capital firm and startup generator with a presence on six continents, investing in exceptional founding teams at the earliest stages."",""linkedDocuments"":[""https://cdn.prod.website-files.com/62d19f82a58657afab15127b/634d9a734ee75b56acbf1503_How%20Antler%20thinks%20about%20investments%E2%80%94Antler%20VC%20(2022).pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2022"",""aumAmount"":""USD 500,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://en.wikipedia.org/wiki/Antler_(venture_capital_firm)""},""portfolioHighlights"":[""Airalo"",""Lovable"",""Peec AI"",""Wrtn"",""Sona"",""TwoBNPL"",""Pemo"",""ORA"",""FileAI"",""Klearly""],""researcherNotes"":""AUM figure of USD 500 million as of 2022 was found on Wikipedia; no specific fund sizes were disclosed on the official site or other sources."",""seniorLeadership"":[{""name"":""Antti"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Leadership roles in wealth management, entrepreneur background""},{""name"":""Jussi Kallasvuo"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Partner""},{""name"":""Sheila Patel"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Co-chair Advisory Board""},{""name"":""Martell Hardenberg"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Partner, Later-stage Investments""},{""name"":""Fridtjof Berge"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Co-founder & Chief Business Officer""},{""name"":""Tore Myrholt"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Co-chair Advisory Board""},{""name"":""Dilan Mizrakli Landgraff"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Co-founder & Chief Strategy Officer""},{""name"":""David Fischer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Advisory Board""},{""name"":""Vegard Medbo"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://antler.co/about"",""title"":""Co-founder & Chief Operating Officer""}],""sources"":{""headquarters"":""https://antler.co/locations"",""investmentThesisFocus"":""https://cdn.prod.website-files.com/62d19f82a58657afab15127b/634d9a734ee75b56acbf1503_How%20Antler%20thinks%20about%20investments%E2%80%94Antler%20VC%20(2022).pdf"",""investorDescription"":""https://antler.co/about"",""portfolioHighlights"":""https://antler.co/portfolio""},""websiteURL"":""https://antler.co""}","Correctness: 95% Completeness: 85% - -The information provided about Antler is **largely factually accurate** based on multiple authoritative sources. Key points such as Antler’s **investment stage focus on pre-seed and seed rounds**, their **global geographic presence with multiple offices worldwide**, and their **typical equity stake of around 7% to 12.5% at the pre-seed stage** are supported by sources [1][2][3]. - -Antler’s **investment terms in the US**, for example, have recently been reported as approximately a $250,000 investment for about 9.09% equity (implying a ~$2.75 million post-money valuation), consistent with the stated equity range[2]. The use of SAFEs or priced equity depending on market location and a founder-friendly approach with **minimal liquidation preferences and no anti-dilution or veto rights at early stages** also aligns with their 2022 investment thesis document [source in prompt]. - -Antler’s **global footprint** with residency programs and cohorts across many cities globally is confirmed on their official site ([antler.co/locations](https://antler.co/locations)) and matches the cities listed. The firm's investment thesis emphasizes backing exceptional teams in **large opportunity areas rather than sector-specific bets**, which aligns with the reported focus [prompt source, investment thesis PDF]. - -Their **Assets Under Management of about USD 500 million as of 2022** is consistent with what is publicly reported on Wikipedia and investor communications [prompt source, Wikipedia]. - -The portfolio highlights including companies like **Airalo** which recently became a unicorn are confirmed [4]. Leadership details and key figures also correspond with Antler’s public About page. - -The **main gap** is the absence of **specific disclosed fund sizes** aside from aggregate AUM; no detailed size for each individual fund (e.g., Fund II) was confidently found, which slightly lowers completeness [5]. Also, more granular details on follow-on investment amounts, ESOP pool sizes and vesting requirements are outlined in the documentation provided but are less often publicly detailed in news sources, slightly limiting completeness. - -Overall, the summary is factually accurate and comprehensive with **minor incompleteness regarding discrete fund sizes and detailed financial terms**, but no evident false or fabricated claims. - -Sources used: -- Antler official investment thesis (prompt PDF link) -- Antler locations page: https://antler.co/locations -- Wikipedia on Antler VC: https://en.wikipedia.org/wiki/Antler_(venture_capital_firm) -- Capitaly article on equity taken: https://www.capitaly.vc/blog/antler-venture-capital-how-much-equity-does-antler-take -- Built In Austin article on US terms: https://www.builtinaustin.com/articles/antler-new-investment-terms -- Pitchbob on Antler funding terms: https://pitchbob.io/library/accelerators/how-to-stand-out-in-antler-program-real-advice-from-funded-founders-pitchbob-io -- Phoenix Group press release on Airalo unicorn: https://www.thephoenixgroup.com/news-views/phoenix-group-backed-vc-antler-sees-first-unicorn-as-airalo-reaches-1b-valuation/ -- Antler Fund II info: https://community.fff.vc/investment-reports/antler-fund-ii" -"AQUITI Gestion ","http://www.aquiti.fr ","{""funds"":[{""estimatedInvestmentSize"":""EUR 30,000"",""fundName"":""Honor Loans"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nouvelle-Aquitaine""],""investmentStageFocus"":[""Seed"",""Startup""],""sectorFocus"":[""Innovative and highly differentiating projects""],""sourceUrl"":""https://www.aquiti.fr/en/metiers/pret-dhonneur""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Venture Capital"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nouvelle-Aquitaine""],""investmentStageFocus"":[""Amorçage"",""Capital-risque"",""Capital-développement"",""Capital-transmission""],""sectorFocus"":[""Innovation"",""Start-up"",""LBO"",""Capital-développement"",""PME"",""Amorçage"",""Capital-risque"",""Capital-transmission"",""Prêts d'honneur""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.aquiti.fr/en""},{""estimatedInvestmentSize"":""EUR 10,000,000"",""fundName"":""Growth & LBO"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Nouvelle-Aquitaine""],""investmentStageFocus"":[""Growth"",""Buyout"",""Business Recovery""],""sectorFocus"":[""Industrial investments including extension, tool modernization, digitalization, energy transition""],""sourceUrl"":""https://www.aquiti.fr/en/metiers/capital-developpement""}],""headquarters"":""10 Cours de Gourgue, 33000 Bordeaux, France; Ester Technopole, 1 Avenue d’Ester, 87069 Limoges Cedex, France; 2, rue du Pré Médard, 86280 Saint-Benoît, France"",""investmentThesisFocus"":[""Financing and supporting companies contributing to job creation, regional quality of life, and advancing sustainability and inclusiveness."",""Committed to ESG principles, signatory to PRI and France Invest charters."",""Providing varied financing vehicles including honorary loans, equity investments, and large financing platforms for growth and buyout."",""Supporting entrepreneurs from initial concept through to industry leadership and IPO."",""Focus on smooth and transparent due diligence and building confidence with portfolio companies.""],""investorDescription"":""We invest in high-potential companies, supporting entrepreneurs with all resources necessary to grow from initial concept to industry leader. 25 years of experience, backed 1000 CEO and Founders, 230m€ AUM. Three investment strategies: Honor loans (first check of tomorrow's innovations, opportunity to pitch), Venture capital (early believer and first support), Growth & LBO (helping growth and buyout through large financing platform). Aquiti supports entrepreneurs with comprehensive financing and support platform. Commitment to Environmental, social and governance (ESG) with Principles for Responsible Investment (PRI) signatory and other charters. Testimonials from CEOs of portfolio companies highlight smooth, transparent due diligence, confidence, varied financing vehicles (honorary loan, equity investment), and continuous support through development stages up to IPO."",""linkedDocuments"":[],""missingImportantFields"":[""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 230,000,000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.aquiti.fr/en""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""AUM is explicitly stated as 230 million euros on the main site. Fund sizes for individual funds are not specified except estimated investment sizes. Portfolio details were not found on the site. Venture Capital fund details were not clearly available."",""seniorLeadership"":[{""name"":""Bérenger Delmas"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Chairman & CEO""},{""name"":""Régis Lucas"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Deputy CEO""},{""name"":""Thomas Bernard"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Partner | PE""},{""name"":""Jean-François Cochy"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Partner | VC""},{""name"":""Cindy Charlot"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Investment Director | PE""},{""name"":""Alexandre Aimé"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Investment Director | PE""},{""name"":""Liana Chauvel Sabadus"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Dir. de Participations | PE""},{""name"":""Xavier Hittos"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Investment Director | Honor Loan & VC""},{""name"":""Fabienne Mazeau"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Head of Honor Loan""},{""name"":""Jean-Baptiste Parpant"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Investment Director | VC""},{""name"":""Mélanie Saint-Sever"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://aquiti.fr/en/equipe"",""title"":""Investment Director | PE""}],""sources"":{""headquarters"":""http://aquiti.fr/contact"",""investmentThesisFocus"":""http://www.aquiti.fr/en"",""investorDescription"":""http://www.aquiti.fr/en"",""portfolioHighlights"":""Not Available""},""websiteURL"":""http://www.aquiti.fr""}","Correctness: 95% Completeness: 80% - -The provided information about Aquiti and its funds is largely **factually accurate** based on the official Aquiti website and supporting references. Aquiti operates in Nouvelle-Aquitaine, France, with headquarters in Bordeaux, Limoges, and Saint-Benoît, as stated. The description of their **three main investment strategies**—Honor Loans (Prêt d’Honneur for seed/startup innovative projects, ~EUR 30,000 typical size), Venture Capital (covering seed to transmission stages with various innovation and startup focuses), and Growth & LBO (large investments around EUR 10 million in industrial growth/modernization)—matches the information on their official pages[1][3]. The declared total assets under management (EUR 230 million) is consistent with their site’s claim[sourceUrl: http://www.aquiti.fr/en]. - -The **investment thesis** emphasis on job creation, sustainability, inclusiveness, and adherence to ESG principles (signatory to PRI and France Invest charters) is corroborated by their official mission statements and public commitments[1]. - -Senior leadership names and roles align with the publicly listed executive team data on the official website. - -**Key limitations and missing elements reduce completeness:** - -- The **exact fund sizes** for individual funds are not available publicly, except estimated investment sizes; this is noted as a missing important field. -- There is **no portfolio highlights information available**, which is acknowledged both in the user’s data and by Aquiti’s publicly available disclosures. -- Details on the **Venture Capital fund size and specific portfolio examples** are unclear or unavailable, making this area weak in transparency. -- While the main types of investments and sectors are noted, **more granular information on past exits, company profiles, or returns** would improve completeness. - -No information appears fabricated or contradicted by available sources, but some areas lack detail, primarily about portfolio specifics and fund sizes. - -References: -- Aquiti Prêt d’Honneur and investment approaches: https://www.aquiti.fr/en/metiers/pret-dhonneur[1], https://www.aquiti.fr/en/metiers/capital-developpement[3] -- Headquarters info and leadership: http://aquiti.fr/contact and http://aquiti.fr/en/equipe -- Investment thesis and AUM: http://www.aquiti.fr/en" -"Übermorgen Ventures ","https://uebermorgenventures.com ","{""funds"":[{""estimatedInvestmentSize"":""CHF 500,000 - CHF 2,000,000"",""fundName"":""Übermorgen Ventures Investment Fund"",""fundSize"":""CHF 75,000,000 - CHF 100,000,000"",""fundSizeSourceUrl"":""https://www.uebermorgen.vc/s/Uebermorgen-Ventures-Investment-Fund-Facts-and-terms.pdf"",""geographicFocus"":[""Europe"",""Sometimes beyond Europe""],""investmentStageFocus"":[""Early-stage"",""Growth-stage""],""sectorFocus"":[""Climate tech"",""Decarbonization"",""Carbon removal"",""Adaptation & resilience""],""sourceUrl"":""https://www.uebermorgen.vc/s/Uebermorgen-Ventures-Investment-Fund-Facts-and-terms.pdf""}],""headquarters"":""Oberdorfstrasse 88, 8001 Zurich, Switzerland; Soho Works Shoreditch, E1 6JJ London, UK"",""investmentThesisFocus"":[""Backing early-stage startups that seize the climate crisis as an opportunity to disrupt industries."",""Focus on climate tech investments including decarbonization, carbon removal, and adaptation & resilience."",""Hands-on, long-term support from first check through scale and exit."",""Targeting entrepreneurs who build profitable solutions to fight climate change at scale.""],""investorDescription"":""Übermorgen Ventures is a mission-driven entrepreneurial venture capital fund focused on climate tech investing. Their investment thesis centers on backing early-stage startups that seize the climate crisis as an opportunity to disrupt industries and build a resilient, zero-carbon economy. They invest in areas including decarbonization, carbon removal, and adaptation & resilience. The firm provides hands-on, long-term support from the first check through scale and exit."",""linkedDocuments"":[""https://www.uebermorgen.vc/s/Uebermorgen-Ventures-Investment-Fund-Facts-and-terms.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Emidat"",""Marathon Fusion"",""Luxera""],""researcherNotes"":""AUM is not explicitly stated on the website or linked documents. The fund size range was found in the official investment fund facts document."",""seniorLeadership"":[{""name"":""Myke Näf"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://uebermorgen.vc/aboutus"",""title"":""Founding Partner""},{""name"":""Adrian Bührer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://uebermorgen.vc/aboutus"",""title"":""Founding Partner""},{""name"":""Elena Walder-Schiavone"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://uebermorgen.vc/aboutus"",""title"":""Managing Partner""},{""name"":""Alexander Langguth"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://uebermorgen.vc/aboutus"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://uebermorgen.vc/aboutus"",""investmentThesisFocus"":""https://uebermorgen.vc/aboutus"",""investorDescription"":""https://uebermorgen.vc/aboutus"",""portfolioHighlights"":""https://uebermorgen.vc/portfolio""},""websiteURL"":""https://uebermorgen.vc""}","Correctness: 96% Completeness: 85% - -The provided information about Übermorgen Ventures is largely accurate. The fund is indeed a mission-driven venture capital firm focused on climate tech investing, emphasizing early-stage startups that address the climate crisis through decarbonization, carbon removal, and adaptation & resilience, providing hands-on support through scale and exit as described on their official website[2][4]. Their fund size range of CHF 75–100 million is confirmed by their official facts and terms document[4]. The estimated investment size per company listed fits typical venture capital deal sizes in this range, aligning with early and growth-stage focus[4]. - -The fund’s geographic focus on Europe with occasional investment beyond, including North America and various parts of Europe, is supported by investor profiles and public analysis[1][3]. The headquarters locations in Zurich, Switzerland and London, UK are also verified on their official website and investor profiles[1][2]. - -Senior leadership names match those on their about page: Myke Näf (Founding Partner), Adrian Bührer (Founding Partner), Elena Walder-Schiavone (Managing Partner), and Alexander Langguth (Founding Partner)[2]. Portfolio highlights such as Emidat, Marathon Fusion, and Luxera align with public portfolio listings and news mentions[2]. - -Key missing information is the overall Assets Under Management (AUM), which is not explicitly stated in the official sources or public profiles. The fund size is given as a range but does not clarify if this is total committed capital or AUM, resulting in an 85% completeness score. Additionally, some deal databases like Dealroom report a smaller fund size (€18.3 million in 2019), possibly reflecting an earlier fund or partial capital raised rather than current total funds[5]. This discrepancy and lack of explicit AUM declaration reduce completeness slightly. - -In summary, the facts presented are correct and well-sourced mainly from Übermorgen Ventures’ official site and PDF document[2][4], with corroboration by third-party investor databases and reports[1][3][5]. The main gap is the explicit overall AUM figure, which is noted as missing in the input and remains unavailable publicly. - -Sources used: -- Übermorgen Ventures official website and documents: https://www.uebermorgen.vc, https://www.uebermorgen.vc/s/Uebermorgen-Ventures-Investment-Fund-Facts-and-terms.pdf -- Raise Better investor profile: https://raisebetter.capital/investor-profile/8874 -- Unicorn Nest investor analytics: https://unicorn-nest.com/funds/ubermorgen-ventures/ -- Dealroom profile: https://app.dealroom.co/investors/_bermorgen_ventures" -"Archipelago Eco Investors ","https://www.aei.finance/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Archipelago Ventures Ltd Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Plastics"",""Metals"",""Fibres""],""sourceUrl"":""https://www.aei.finance/""}],""headquarters"":""London, London"",""investmentThesisFocus"":[""Backing breakthrough deep-tech that reshapes material flows in the circular economy"",""Targeting IP-rich, scalable, proprietary technologies addressing circularity challenges"",""Focus on resource efficiency, industrial resilience, and long-term value"",""Investing in early-stage technology companies"",""Emphasis on plastics, metals, and fibres sectors""],""investorDescription"":""Archipelago Ventures Ltd invests in early-stage technology companies innovating in material circularity with a focus on resource efficiency, industrial resilience, and long-term value. The firm targets IP-rich, scalable, proprietary technologies addressing circularity challenges in plastics, metals, and fibres. Their investment thesis centers on backing breakthrough deep-tech reshaping material flows in the circular economy."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Evoralis"",""Greyparrot"",""Matoha"",""Sorted""],""researcherNotes"":""No explicit AUM or headquarters address found on the company website or linked pages. No formal fund names or investment ticket sizes were specified. Senior leadership titles and names were not found on the primary website or the linked team page. The LinkedIn company page did not yield leadership name/title details."",""seniorLeadership"":[{""name"":""Lucy Mortimer"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://uk.linkedin.com/company/archipelago-ventures-ltd"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://uk.linkedin.com/company/archipelago-ventures-ltd"",""investmentThesisFocus"":""https://www.aei.finance/"",""investorDescription"":""https://www.aei.finance/"",""portfolioHighlights"":""https://www.aei.finance/""},""websiteURL"":""https://www.aei.finance/""}","Correctness: 95% Completeness: 85% - -The information about Archipelago Ventures Ltd is largely factually accurate and consistent with available public sources. The firm is an early-stage investor focused on deep-tech innovations in the circular economy, specifically on materials such as plastics, metals, and fibres, with an emphasis on resource efficiency and industrial resilience. It targets IP-rich, scalable technologies addressing circularity challenges and focuses on early-stage companies, mostly seed and Series A across Europe and the UK. The investor description, investment thesis focus, and portfolio highlights (e.g., Evoralis, Greyparrot, Matoha, Sorted) align well with details found on Archipelago’s official website (https://www.aei.finance/), the GIIN member profile (https://thegiin.org/member/archipelago-ventures-ltd/), and impact investing profiles (https://impactalpha.com/impactspace/organization/archipelago-ventures-ltd/)[1][2][5]. - -Headquarters are reported as London, consistent with Companies House records listing the registered office at 87 Pemberton Road, London N4 1AY, and company profiles confirm the company’s activity and size (micro entity, <£1M turnover) with incorporation in October 2023[3][4]. The senior leadership identified, Lucy Mortimer as Founding Partner, matches LinkedIn data. - -Completeness is reduced because no explicit information was found regarding overall Assets Under Management (AUM), estimated investment sizes, exact fund sizes, or formal fund names in public documents, although the GIIN mentions two investment strategies (Circular Plastics Accelerator and Archipelago Circular Economy Fund)[1]. Leadership titles beyond the founding partner and detailed team information are not publicly available, limiting completeness about governance. The firm states a global but Europe/UK/US focus. - -In summary, the core facts are supported by multiple reputable sources, but gaps remain in financial details and full organizational structure, which appears typical for a relatively new, private early-stage venture firm[1][2][3][4][5]. - -URLs: -https://www.aei.finance/ -https://thegiin.org/member/archipelago-ventures-ltd/ -https://www.archipelagoventures.uk/about-us -https://open.endole.co.uk/insight/company/15182813-archipelago-ventures-ltd -https://find-and-update.company-information.service.gov.uk/company/15182813 -https://impactalpha.com/impactspace/organization/archipelago-ventures-ltd/" -"Arkea Capital Investissement ","http://www.arkea-capital-investissement.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""FCPR Breizh Ma Bro"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France, Regional""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://arkea-capital.com/fr/fcpr-breizh-ma-bro""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""We Positive Invest 2"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://arkea-capital.com/fr/we-positive-invest-2""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""FCPR Arkéa Cap'Atlantique"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France, Regional""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://arkea-capital.com/fr/arkea-capatlantique""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""FPCI Arkéa Capital 3"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://arkea-capital.com/fr/fpci-arkea-capital-3""}],""headquarters"":""Le Relecq-Kerhuon, France"",""investmentThesisFocus"":[""Support entrepreneurs at all business stages: innovation, development, and transmission."",""Focus on local and patient investment approach, emphasizing sustained growth."",""Engage in responsible and ESG-conscious investment strategies."",""Collaborate closely with entrepreneurs and management teams to drive value creation.""],""investorDescription"":""Arkéa Capital is a subsidiary of Crédit Mutuel Arkéa specializing in private equity investment, supporting entrepreneurs at various stages including innovation, development, and transmission. Arkéa Capital supports the bold visions of entrepreneurs and leaders at every stage of their company's life. The firm aims to support local businesses and intermediate-sized enterprises (ETIs) at all stages of their development."",""linkedDocuments"":[],""missingImportantFields"":[""portfolioHighlights"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""EUR 1,300,000,000"",""sourceUrl"":""https://www.cm-arkea.com/arkea/banque/assurances/c_11269/en/arkea-capital""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""AUM is explicitly stated as EUR 1.3 billion total private equity allocation. Specific fund sizes, estimated investment sizes, and portfolio companies are not disclosed on the company website. Headquarters is inferred from location references as Le Relecq-Kerhuon, France."",""seniorLeadership"":[{""name"":""Bertrand Blanpain"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.cm-arkea.com/arkea/banque/assurances/c_5105/en/board-of-directors-and-executive-committee"",""title"":""Deputy Chief Executive Officer, Corporate, Institutional and Specialized Financing Division""},{""name"":""Brigitte Le Coidic"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.cm-arkea.com/arkea/banque/assurances/c_5105/en/board-of-directors-and-executive-committee"",""title"":""Administrator of Crédit Mutuel Arkéa""}],""sources"":{""headquarters"":""https://arkea-capital.com/fr/nos-bureaux"",""investmentThesisFocus"":""https://arkea-capital.com/fr/notre-activite"",""investorDescription"":""https://arkea-capital.com/fr/notre-identite"",""portfolioHighlights"":""Not Available""},""websiteURL"":""http://www.arkea-capital-investissement.com/""}","Correctness: 95% Completeness: 75% - -The provided information about Arkéa Capital and its funds is largely accurate based on publicly available data. Arkéa Capital is indeed a private equity subsidiary of Crédit Mutuel Arkéa, focused on supporting entrepreneurs at various stages including innovation, development, and transmission, with an emphasis on local and patient investment, responsible ESG-conscious strategies, and collaboration with management teams[3][1]. The headquarters can be confirmed as Le Relecq-Kerhuon, France[1]. The total assets under management (AUM) is reported as approximately EUR 1.3 billion, consistent with Crédit Mutuel Arkéa's disclosures[3]. - -Regarding the specific funds named (FCPR Breizh Ma Bro, We Positive Invest 2, FCPR Arkéa Cap'Atlantique, FPCI Arkéa Capital 3), the names and regional/geographic focuses match official sources. For example, FCPR Breizh Ma Bro targets regional SMEs and ETIs mainly in Brittany and Loire Atlantique with a multi-sector approach, capital development and transmission, with details such as fund form (FCPR), legal status, and investment eligibility clearly documented[1][2]. The We Positive Invest 2 fund is identified as an impact fund by Arkéa Capital, though specific investment sizes or sector focuses are not publicly detailed[3]. - -However, there are gaps in the completeness of the data: -- Exact fund sizes, estimated investment sizes, and precise portfolio company details are mostly unavailable on Arkéa Capital’s or related websites[1][3]. -- Portfolio highlights or specific notable investments are not publicly detailed or disclosed, limiting insight into the active holdings or returns. -- Investment stage focus and sector details for many funds are broadly stated as “Not Available,” reflecting a lack of public disclosure rather than error. -- While senior leadership is correctly named from Crédit Mutuel Arkéa’s official pages[3], more comprehensive governance or fund management details could not be verified from the given sources. - -In summary, the core factual accuracy is high (95%) since all stated firm descriptions, funds, and AUM figures align with credible sources. The completeness is moderate (75%) due to notable missing data on portfolio specifics, fund sizes, and detailed investment criteria which are not publicly available but would be expected for thorough investor due diligence. - -Sources: -- https://arkea-capital.com/fr/fcpr-breizh-ma-bro -- https://arkea-capital.com/fr/notre-activite -- https://www.cm-arkea.com/arkea/banque/assurances/c_11269/en/arkea-capital -- https://arkea-capital.com/fr/arkea-capatlantique -- https://www.arkea-capital.com/fr/we-positive-invest-2 -- https://www.arkea-capital.com/fr/fpci-arkea-capital-3" -"Anthemis ","http://www.anthemis.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 200,000 to USD 3,000,000"",""fundName"":""Anthemis Venture Fund II"",""fundSize"":""USD 150,000,000"",""fundSizeSourceUrl"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Multi-stage including pre-seed, seed, and growth stage""],""sectorFocus"":[""Fintech"",""Insurtech""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis""}],""headquarters"":""London, United Kingdom; New York City, USA"",""investmentThesisFocus"":[""Focus on fintech and insurtech sectors, including emerging insurance risks, automation, climate-related underwriting, life and health insurance, and insurance verification."",""Invest across various stages including pre-seed, seed, and growth stage, emphasizing companies with strong profitability and unit economics."",""Global geographic focus, investing in companies addressing region-specific risks and markets worldwide."",""Support founders who embody diversity and enable technology to transform finance."",""Emphasis on profitability, unit economics, and addressing global challenges in finance through technology.""],""investorDescription"":""Anthemis Group is a multi-stage global investment firm primarily focused on fintech and insurtech. Founded in 2010, the firm invests in a generation of businesses that will reinvigorate finance as a vital contributor to society. Their Asset Management unit manages over 1.2 billion USD in assets, with investments spanning from pre-seed to growth stage companies. They partner with founders who reflect the diversity of the world to harness the power of finance and technology."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 1,200,000,000"",""sourceUrl"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis""},""portfolioHighlights"":[""Cowbell"",""Demex"",""eToro"",""Rize"",""YuLife""],""researcherNotes"":""AUM was found in context of the Asset Management unit managing over 1.2 billion USD in assets. The exact as-of date and per-company investment sizes are not available on the website or related sources."",""seniorLeadership"":[{""name"":""Kate Sampson"",""sourceUrl"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis"",""title"":""Managing Partner""},{""name"":""Amy Nauiokas"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""LinkedIn"",""title"":""Founder and CEO""},{""name"":""Harry Harrison"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""LinkedIn"",""title"":""Vice Chair, Managing Partner""}],""sources"":{""headquarters"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis"",""investmentThesisFocus"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis"",""investorDescription"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis"",""portfolioHighlights"":""https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis""},""websiteURL"":""http://www.anthemis.com""}","Correctness: 90% Completeness: 85% - -The provided data about Anthemis Venture Fund II and Anthemis Group is mostly factually accurate according to multiple sources. Anthemis is a London- and New York-based global investment firm focused primarily on fintech and insurtech sectors investing across multiple stages including pre-seed, seed, and growth stage[1][4]. The firm was founded in 2010, and its investments emphasis on technology that transforms finance globally, supporting diverse founders and focusing on profitability and unit economics is consistent with descriptions on their website and trusted news coverage[1][4]. - -The stated fund size for Anthemis Venture Fund II at USD 150 million aligns with reports of a roughly $700 million capital raise in 2021 across strategies, which includes Fund II, although that was a collection of capital covering multiple funds and strategies, so the exact size might be a partial figure from that[1]. Estimates of investment size ranging between USD 200,000 and USD 3 million fit general venture capital practices for multi-stage fintech funds but exact deal sizes per company are not publicly detailed[1]. The portfolio highlights — Cowbell, Demex, eToro, Rize, and YuLife — are notable fintech/insurtech firms associated with Anthemis and appear accurate[3][4]. - -Regarding assets under management (AUM), the figure of approximately USD 1.2 billion for Anthemis’ Asset Management unit is confirmed, but no precise as-of date is publicly available, matching your notes[1]. Senior leadership named — Kate Sampson, Amy Nauiokas, and Harry Harrison — are verifiably associated with Anthemis[1][2]. - -However, the completeness score is slightly reduced due to some gaps: - -- The exact as-of date for AUM and detailed investment size ranges per fund are not publicly disclosed. -- Anthemis manages multiple funds including specialized ones such as the Female Innovators Lab Fund (USD 50 million), which is not mentioned but relevant to their portfolio and thesis[2]. -- More detail on their multi-strategy capital structure, as well as an explicit historical timeline of fundraises, could improve completeness[1][5]. -- Headquarters are more accurately described as London and New York City, consistent with external sources[1][5]. - -Sources: - -https://techcrunch.com/2023/05/22/anthemis-targets-200m-for-new-fund-after-layoffs-and-terminating-spac/ -https://thefr.com/news/innovation-and-insurtech-investing-with-anthemis -https://www.anthemis.com -https://app.dealroom.co/investors/anthemis_group -https://anthemis.com/insights/at-50m-anthemis-female-innovators-lab-fund-becomes-the-largest-early-stage-fintech-fund-dedicated-to-companies-founded-by-women/" -"Aramco Ventures ","https://aramcoventures.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Sustainability Fund"",""fundSize"":""USD 1,500,000,000"",""fundSizeSourceUrl"":""https://aramco.com/en/news-media/news/2024/aramco-expands-global-venture-capital-program"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early"",""Growth"",""Selective Seed""],""sectorFocus"":[""Carbon management, utilization, and storage including direct air capture"",""Renewables and energy storage"",""Greenhouse gas emissions detection and reduction"",""Energy efficiency"",""Nature-based greenhouse gas mitigation"",""Digital solutions"",""Greenhouse gas tracing and trading"",""Hydrogen and ammonia value chains"",""Synthetic renewable fuels"",""Water and air quality""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/programs-fund/sustainability-fund/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Prosperity7 Ventures"",""fundSize"":""USD 1,000,000,000"",""fundSizeSourceUrl"":""https://www.aramco.com/en/news-media/news/2022/aramco-announces-prosperity7-ventures"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Enterprise"",""Blockchain"",""Financial technologies"",""Industrial technologies"",""Healthcare"",""Education""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.aramco.com/en/news-media/news/2022/aramco-announces-prosperity7-ventures""}],""headquarters"":""Al-Midra Tower, 11th Floor, West Wing, Dhahran 31311, Kingdom of Saudi Arabia"",""investmentThesisFocus"":[""Invest globally into start-up and high growth companies with technologies strategically important to Aramco."",""Invest across the capital stack from early to growth stage, including selective seed investments."",""Aim to be a value-adding strategic investor supporting portfolio companies with business development, technical collaboration, and market access."",""Focus on sustainability and industrial technologies for strategic venturing program."",""Prosperity7 program invests in highly scalable ventures with disruptive technologies and business models outside the energy sector.""],""investorDescription"":""Aramco Ventures is the corporate venturing arm of Aramco, a world leading integrated energy and chemicals company. They manage multiple venture capital programs with a total AUM of $7 billion. The mission of their strategic venturing program (sustainability and industrial funds) is to invest globally into start-up and high growth companies with technologies of strategic importance to Aramco, to accelerate their development and deployment in Aramco's operations. The Prosperity7 program invests in highly scalable ventures outside the energy sector with disruptive technologies and business models. Aramco Ventures aims to be a value-adding strategic investor, supporting portfolio companies with business development, technical collaboration, and access to markets and expertise. They invest across the capital stack from early to growth stage, including selective seed investments."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024"",""aumAmount"":""USD 7,000,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://aramco.com/en/news-media/news/2024/aramco-expands-global-venture-capital-program""},""portfolioHighlights"":[""Danimer Inc."",""Dow-DuPont"",""Johnson Controls"",""Spark Cognition"",""Sophos Ltd"",""CAI Software"",""WR Grace Inc."",""Schlumberger"",""Vertice Oil Tools Inc"",""Sumitomo Corp""],""researcherNotes"":""Estimated investment sizes per company or ticket sizes were not found on the website or related news pages. AUM information was found in a 2024 Aramco news release indicating a $7 billion total for Aramco Ventures, including Sustainability and Prosperity7 funds."",""seniorLeadership"":[{""name"":""Mahdi Aladel"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Chief Executive Officer""},{""name"":""Bruce Niven"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Executive MD, Strategic Venturing""},{""name"":""Raed Twaily"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Executive MD, Prosperity7""},{""name"":""Salman Juma"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Chief Financial Officer""},{""name"":""Abdulmohssin Otaibi"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Chief Operations Officer""},{""name"":""Abdulrahman Alhashem"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Chief Governance Risk & Compliance Officer""},{""name"":""Abdulaziz Alohali"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Chief Auditor""},{""name"":""Mohammed Juaib"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://aramcoventures.com/our-team/"",""title"":""Chief Technology Officer, SV""}],""sources"":{""headquarters"":""https://aramcoventures.com/contact/"",""investmentThesisFocus"":""https://aramcoventures.com/"",""investorDescription"":""https://aramcoventures.com/"",""portfolioHighlights"":""https://aramcoventures.com/portfolio/""},""websiteURL"":""https://aramcoventures.com""}","Correctness: 100% Completeness: 95% - -The information provided is **factually accurate** and well supported by multiple authoritative sources including Aramco’s own official websites and credible news releases. Aramco Ventures manages a $1.5 billion Sustainability Fund focused globally on technologies related to carbon management, renewables, energy efficiency, and other environmental sectors, aligning with Aramco’s net-zero emissions ambition for 2050[1][2][4]. The Prosperity7 Ventures fund with $1 billion AUM also aligns perfectly with the described focus on early-stage ventures outside the core energy sector such as enterprise, blockchain, healthcare, and education. - -The report correctly states the total Assets Under Management (AUM) of Aramco Ventures at $7 billion as of 2024, covering multiple programs including Sustainability Fund and Prosperity7. The mention of investment stages (early, growth, selective seed) and the strategic support provided by Aramco Ventures also matches official descriptions[4]. - -The leadership details naming Mahdi Aladel as CEO and the other executives correspond to the team listed on the official Aramco Ventures site [4]. - -**Minor gaps:** The estimated investment size per company or ticket size was not found on publicly available sources, which the report transparently notes. Also, while the sector focuses are detailed and accurate, some very recent cooperative initiatives like Aramco Trading Company’s participation in voluntary carbon markets might deepen the context but do not affect factual correctness[1][2]. - -**Sources used:** - -- Aramco official announcement on Sustainability Fund 2024: https://aramco.com/en/news-media/news/2024/aramco-expands-global-venture-capital-program -- Aramco Ventures Sustainability Fund official page: https://aramcoventures.com/programs-fund/sustainability-fund/ -- General news coverage on Aramco’s venture capital programs and fund sizes such as Smart Energy Decisions: https://www.smartenergydecisions.com/news/aramco-launches-15-billion-sustainability-fund/ -- Aramco Ventures team page: https://aramcoventures.com/our-team/ - -The data is therefore highly reliable, comprehensive, and reflects the current publicly available information regarding Aramco Ventures’ funds, investment focus, leadership, and operational details." -"Animoca Brands ","https://www.animocabrands.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 5 million to USD 5 billion"",""fundName"":""Animoca Brands Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Asia Pacific"",""United States""],""investmentStageFocus"":[""Early Stage"",""Growth Stage""],""sectorFocus"":[""Gaming"",""Blockchain infrastructure"",""DeFi"",""Education"",""Metaverse"",""Digital assets"",""Social"",""Infrastructure"",""AI"",""Entertainment""],""sourceUrl"":""https://animocabrands.com/_files/ugd/0de4af_e004e1fb493a4cda80aec851dbd3a2ff.pdf""}],""headquarters"":""28/F, Landmark South, 39 Yip Kan Street, Wong Chuk Hang, Hong Kong, China; 211 McIlwraith Street, Princes Hill, VIC 3054, Australia"",""investmentThesisFocus"":[""Building network effects in Web3 ecosystems."",""Generating recurring revenues via native Web3 businesses."",""Supporting real-world use cases through digital asset advisory, business building, and asset management."",""Fostering adoption across premium brands and large user bases."",""Geographic focus on Asia Pacific and United States with significant crypto adoption growth."",""Sector focus on blockchain-enabled industries such as gaming, education, metaverse, digital assets, DeFi, social, infrastructure, AI, and entertainment.""],""investorDescription"":""Animoca Brands is a Web3 leader that leverages tokenization and blockchain to deliver digital property rights to consumers, helping to establish the open metaverse. The company envisions advancing blockchain adoption via its integrated business pillars including Web3 businesses, digital asset advisory services, and investment management. Animoca Brands' mission is to deliver digital property rights to the world's Internet users, thereby creating a new asset class and a more equitable digital framework contributing to the building of the open metaverse."",""linkedDocuments"":[""https://animocabrands.com/_files/ugd/0de4af_e004e1fb493a4cda80aec851dbd3a2ff.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-12-31"",""aumAmount"":""USD 1,395,000,000"",""sourceUrl"":""https://animocabrands.com/animoca-brands-investor-update-for-the-quarter-and-fiscal-year-ending-on-31-december-2024""},""portfolioHighlights"":[""Alienworlds.io"",""Bloktopia.com"",""Cryptogames.co.jp"",""Genopets.me"",""Mydefipet.com"",""Realis.network"",""Tokenplay.app"",""Warena.io""],""researcherNotes"":""AUM is inferred from the financial assets, token reserves, and minority investments totaling approximately USD 1.395 billion as of 31 December 2024 from the investor update. No formal fund names or fund sizes are disclosed, so the default 'Animoca Brands Investment Strategy' is used. Estimated investment size range is derived from documented initial valuations and reported investment scales."",""seniorLeadership"":[{""name"":""Yat Siu"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.animocabrands.com/board-of-directors"",""title"":""Co-founder and Executive Chairman""},{""name"":""David Kim"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.animocabrands.com/press-kit"",""title"":""Co-founder""},{""name"":""Jamii Quoc"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://marketscreener.com/news/latest/Animoca-Brands-Appoints-Jamii-Quoc-as-General-Counsel-and-Executive-Committee-Member--44015491/"",""title"":""General Counsel and Executive Committee Member""}],""sources"":{""headquarters"":""https://www.animocabrands.com/contact"",""investmentThesisFocus"":""https://animocabrands.com/_files/ugd/0de4af_e004e1fb493a4cda80aec851dbd3a2ff.pdf"",""investorDescription"":""https://www.animocabrands.com/mission-and-vision"",""portfolioHighlights"":""https://www.animocabrands.com/investment-portfolio""},""websiteURL"":""https://www.animocabrands.com""}","Correctness: 95% Completeness: 85% - -The data provided about Animoca Brands and its investment strategy is largely factually accurate. Animoca Brands is indeed a leading Web3 company focused on blockchain, gaming, metaverse, and digital assets, with significant activities in tokenization and digital property rights, consistent with their own mission statements and corporate materials[https://animocabrands.com/mission-and-vision][https://animocabrands.com/_files/ugd/0de4af_e004e1fb493a4cda80aec851dbd3a2ff.pdf]. - -The investment thesis focus—namely building Web3 network effects, recurring native Web3 revenues, supporting real-world digital asset applications, targeting Asia Pacific and U.S. markets, and sectors like gaming, blockchain infrastructure, DeFi, education, AI, entertainment, metaverse, and social—aligns with Animoca’s public investment disclosures[https://animocabrands.com/_files/ugd/0de4af_e004e1fb493a4cda80aec851dbd3a2ff.pdf]. The portfolio highlights such as Alienworlds.io, Bloktopia, Genopets, and The Sandbox are confirmed major holdings[https://www.animocabrands.com/investment-portfolio]. - -The primary discrepancy relates to **fund size**: publicly available data does not disclose a formal fund size for something named ""Animoca Brands Investment Strategy,"" and estimated investment sizes range widely from USD 5 million to USD 5 billion, which seems derived more from inferred aggregate assets under management (AUM) rather than a discrete fund. The reported AUM of approximately USD 1.395 billion as of December 31, 2024, is credible based on financial updates but does not reflect a strictly defined closed fund with a stated fund size[https://animocabrands.com/animoca-brands-investor-update-for-the-quarter-and-fiscal-year-ending-on-31-december-2024]. Other sources identify Animoca Ventures—a venture unit under Animoca Brands—with a $100 million fund, which is smaller and more discrete[https://coinlaunch.space/funds/animoca-ventures/][https://globalventuring.com/corporate/awards/powerlist-2025-james-ho/]. This divergence lowers completeness and flags caution in labeling the entire strategy as one fixed-sized fund. - -The headquarters addresses in Hong Kong and Australia are accurate as per official contact pages[https://www.animocabrands.com/contact]. Senior leadership names and titles correspond to publicly known executives[https://www.animocabrands.com/board-of-directors][https://marketscreener.com/news/latest/Animoca-Brands-Appoints-Jamii-Quoc-as-General-Counsel-and-Executive-Committee-Member--44015491/]. - -In summary, the information is **factually correct about company mission, strategy, sector focus, geographic focus, portfolio, leadership, and financial scale**. However, **the incompleteness and uncertainty about formal fund structures and fund sizes reduces completeness**, as does absence of precise disclosures on fund vehicles versus corporate balance sheet assets. - -Sources used: -- Animoca Brands official PDF and website (investment thesis, sectors, strategy, portfolio): https://animocabrands.com/_files/ugd/0de4af_e004e1fb493a4cda80aec851dbd3a2ff.pdf, https://www.animocabrands.com/mission-and-vision, https://www.animocabrands.com/investment-portfolio -- AUM figure: https://animocabrands.com/animoca-brands-investor-update-for-the-quarter-and-fiscal-year-ending-on-31-december-2024 -- Venture fund size and activity: https://coinlaunch.space/funds/animoca-ventures/, https://globalventuring.com/corporate/awards/powerlist-2025-james-ho/ -- Headquarters and leadership: https://www.animocabrands.com/contact, https://www.animocabrands.com/board-of-directors, https://marketscreener.com/news/latest/Animoca-Brands-Appoints-Jamii-Quoc-as-General-Counsel-and-Executive-Committee-Member--44015491/" -"Apater Capital ","https://apater.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 2.56M to 11M"",""fundName"":""Apater Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://tracxn.com/d/private-equity/apater-capital/__AaVdVg6QurEybG5ar1NQRlO4oYbdSDGnpBxrnc9xxyM""}],""headquarters"":""Leeds, United Kingdom"",""investmentThesisFocus"":[""Fourth Industrial Revolution centric""],""investorDescription"":""Apater Capital is a private equity firm founded in 2019 and based in Leeds, United Kingdom. The firm has a portfolio of 4 companies, with recent investments including Remedy Health (Series A, $11M) and Nourished (Seed $2.56M and Series A $11M). Investment co-partners include Henkel dx Ventures, #adm ventures, and Cibus Fund."",""linkedDocuments"":[],""missingImportantFields"":[""seniorLeadership""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Remedy Health"",""Nourished"",""Pirta"",""MiiCare""],""researcherNotes"":""AUM and specific fund sizes are not mentioned on the website or available sources."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://tracxn.com/d/private-equity/apater-capital/__AaVdVg6QurEybG5ar1NQRlO4oYbdSDGnpBxrnc9xxyM"",""investmentThesisFocus"":""https://www.crunchbase.com/organization/apater-capital|https://www.linkedin.com/company/apater"",""investorDescription"":""https://tracxn.com/d/private-equity/apater-capital/__AaVdVg6QurEybG5ar1NQRlO4oYbdSDGnpBxrnc9xxyM"",""portfolioHighlights"":""https://tracxn.com/d/private-equity/apater-capital/__AaVdVg6QurEybG5ar1NQRlO4oYbdSDGnpBxrnc9xxyM""},""websiteURL"":""https://apater.com/""}","Correctness: 95% Completeness: 80% - -The core factual elements are accurate and supported by multiple sources: Apater Capital is indeed a private equity firm founded in 2019 and headquartered in Leeds, United Kingdom, with a registered office at 1 Park Row, Leeds LS1 5AB[1][2][3][5]. The investment focus on early-stage rounds like Seed and Series A is consistent with reported investments such as Remedy Health ($11M, Series A) and Nourished (Seed $2.56M and Series A $11M)[source provided in query]. The portfolio highlights of Remedy Health, Nourished, Pirta, and MiiCare align with available information on Tracxn and their own public communications[1]. The firm’s thematic focus on Fourth Industrial Revolution-related investments is mentioned in their investment thesis on Crunchbase and LinkedIn profiles as stated in the sources[query source]. - -However, there are some gaps and minor uncertainties affecting completeness and perfect correctness: - -- The claim about “investment co-partners including Henkel dx Ventures, #adm ventures, and Cibus Fund” is only partially verifiable; these partners are not explicitly corroborated in publicly accessible sources found during the search, posing a moderate risk of incomplete verification. - -- The firm’s assets under management (AUM) and specific fund sizes are not publicly disclosed and thus correctly indicated as missing[query notes], limiting completeness. - -- Senior leadership details are unavailable in public filings and online profiles, correctly noted as missing. - -- The geographic focus and sector details are marked as “Not Available” but might be inferable or detailed in less accessible proprietary reports; publicly accessible sources do not provide this data. - -- The indication of fund size being “Not Available” and estimated investment ranges from $2.56M to $11M reflect the partial data known from disclosed deals rather than official fund size declarations. - -Overall, the information is factually sound where verifiable but incomplete in disclosure of leadership, fund size, and detailed investment focus areas, consistent with the typical opacity of many private equity firms at early stage. - -Sources: - -[1] https://ecosystem.andorra-startup.com/investors/apater_capital -[2] https://find-and-update.company-information.service.gov.uk/company/12341740 -[3] https://find-and-update.company-information.service.gov.uk/company/12341740/filing-history -[5] https://www.insidermedia.com/news/yorkshire/private-equity-firm-launches-leeds-hq" -"Apeiron Investment Group ","http://www.apeiron-investments.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Apeiron Investment Group Investment Strategy"",""fundSize"":""USD 7 billion"",""fundSizeSourceUrl"":""http://www.apeiron-investments.com/"",""geographicFocus"":[""United States"",""Global""],""investmentStageFocus"":[""Incubation"",""Growth-stage"",""Listed Companies""],""sectorFocus"":[""Biotech"",""Fintech & Crypto"",""Deep Tech"",""Experiences, Hospitality & Sports"",""Real Estate"",""Natural Resources""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.apeiron-investments.com/""}],""headquarters"":""Offices in New York, London, Berlin, Abu Dhabi, Malta; no specific primary HQ address provided."",""investmentThesisFocus"":[""Driven by bold optimism for a future where technology empowers people to live longer, healthier, and more fulfilling lives."",""Multi-strategy global investment approach with emphasis on biotech, fintech & crypto, deep tech, experiences, hospitality & sports, real estate, and natural resources."",""Hands-on, reliable, long-term partners supporting exceptional founders and emerging asset managers."",""Direct investment approach covering entire company lifecycle from incubation to scaling growth-stage and listed companies."",""Significant work and investment in psychedelics for mental health transformation.""],""investorDescription"":""Apeiron Investment Group, a discretionary investment firm managing approximately $7 billion, was founded and owned by Christian Angermayer. The firm is driven by bold optimism for a future where technology empowers people to live longer, healthier, and more fulfilling lives. Apeiron uses a global multi-strategy investment approach with a primary focus on the US, investing in biotech, fintech & crypto, deep tech, experiences, hospitality & sports, real estate, and natural resources. They act as hands-on, reliable, long-term partners supporting exceptional founders and emerging asset managers with direct investments in private and listed companies, anchor LP investments, and GP stakes, and have spearheaded the renaissance of psychedelics as transformative treatments for mental health."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""USD 7 billion"",""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.apeiron-investments.com/""},""portfolioHighlights"":[],""researcherNotes"":""The firm does not explicitly disclose per-company estimated investment sizes or discrete formal fund names on the website. AUM and fund size are inferred from the stated total portfolio management of approximately $7 billion. The headquarters primary address is not explicitly provided; offices are located in multiple global cities."",""seniorLeadership"":[{""name"":""Lorin Van Nuland"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://rocketreach.co/apeiron-investment-group-management_b45c1b43fc6f653c"",""title"":""Group CEO""},{""name"":""Christian Angermayer"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://apeiron-investments.com/|https://www.linkedin.com/company/apeiron-investment-group"",""title"":""Founder""},{""name"":""Michael Oakes"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://apeiron-investments.com/|https://www.linkedin.com/company/apeiron-investment-group"",""title"":""Chief Communications Officer""},{""name"":""Marc Weber"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://rocketreach.co/apeiron-investment-group-management_b45c1b43fc6f653c"",""title"":""CFO""}],""sources"":{""headquarters"":""http://www.apeiron-investments.com/"",""investmentThesisFocus"":""http://www.apeiron-investments.com/"",""investorDescription"":""http://www.apeiron-investments.com/"",""portfolioHighlights"":""http://www.apeiron-investments.com/""},""websiteURL"":""http://www.apeiron-investments.com/""}","Correctness: 98% Completeness: 90% - -The provided information about Apeiron Investment Group is factually accurate based on verifiable sources. The firm is indeed a discretionary investment entity managing about USD 7 billion, founded and owned by Christian Angermayer, with a broad multi-strategy global approach focused primarily on the US market. The sectors listed—biotech, fintech & crypto, deep tech, experiences, hospitality & sports, real estate, and natural resources—are correctly stated, as is their interest in psychedelics for mental health transformation. The leadership details, including Lorin Van Nuland as Group CEO and Christian Angermayer as Founder, align with available data. Their office locations include New York, London, Berlin, Abu Dhabi, Malta but no single primary headquarters street address is broadly published; multiple sources indicate Malta as a registered HQ address. Assets under management near $7 billion are consistent across sources[1][2][3][4]. - -However, completeness is slightly reduced because no discrete formal fund names or per-company investment sizes are publicly disclosed, and portfolio highlights are missing. The summary acknowledges this data limitation explicitly. Also, while multiple global offices exist, the formal primary headquarters address is not specified, only that Malta is the legal registration location. Further detailed transparency about fund structures and portfolio companies is not publicly available and thus not included here[4][1][3]. - -Sources: -- Apeiron Investment Group official website and investment thesis: http://www.apeiron-investments.com/ [4] -- ZoomInfo profile for Apeiron Investment Group with Malta HQ and sector details: https://www.zoominfo.com/c/apeiron-investment-group/357428816 [1] -- OpenSanctions Malta company registry data: https://www.opensanctions.org/entities/NK-CmZFoNyTxVzzA6QKoC3ZfM/ [2] -- Private Equity International profile including office locations and leadership: https://www.privateequityinternational.com/institution-profiles/apeiron-investment-group.html [3]" -"Blackhorn Ventures ","http://www.blackhornvc.com ","{""funds"":[{""estimatedInvestmentSize"":null,""fundName"":""Blackhorn Ventures Industrial Impact Fund II, LP"",""fundSize"":""USD 150,000,000"",""fundSizeSourceUrl"":""https://blackhornvc.com/news-and-posts/blackhorn-ventures-announces-close-of-150m-industrial-impact-fund-ii-to-invest-in-digital-infrastructure-accelerating-the-energy-transition"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Industrial sectors"",""Physical infrastructure"",""Digital transformation"",""AI"",""Robotics"",""Data-driven solutions""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackhornvc.com/news-and-posts/blackhorn-ventures-announces-close-of-150m-industrial-impact-fund-ii-to-invest-in-digital-infrastructure-accelerating-the-energy-transition""}],""headquarters"":""Denver Office, 44 Cook St Suite 110, Denver, CO 80202; New York Office, 195 Broadway, 20th Floor, NY, NY 10007"",""investmentThesisFocus"":[""Backing startups leveraging data, AI, and robotics in industries crucial to national security and economic stability."",""Focusing on capital-efficient software solutions, vertical SaaS, and AI applications for industrial resource efficiency and decarbonization."",""Partnering with visionaries transforming how we build, power, and move the world."",""Investing primarily at Series Seed and Series A stages.""],""investorDescription"":""Blackhorn backs digital pioneers building a prosperous and abundant future by partnering with determined visionaries unleashing the power of data to reimagine how we build, power, and move our world. Blackhorn Ventures was founded in 2017 by a group of entrepreneurs, operators, and investors focused on Industry 4.0, digitization, and decarbonization of industrial sectors. The firm invests primarily in Series Seed and Series A rounds. Their investment thesis focuses on startups leveraging data, AI, and robotics in major industries crucial to national security and economic stability."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""geographicFocus"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ThinkLabs"",""Formic"",""Electric Era"",""King Energy"",""Optera"",""Ridepanda"",""AGERpoint"",""ALICE Technologies"",""Alpha Ledger"",""Amperon""],""researcherNotes"":""No explicit data on overall Assets Under Management (AUM) or estimated investment size per company was found on the website. The fund size of $150 million was found for the Industrial Impact Fund II, which may partially indicate AUM. Geographic focus detail was not specified."",""seniorLeadership"":[{""name"":""Philip O’Connor"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Co-Founder and Managing Partner""},{""name"":""Melissa Cheong"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Managing Partner""},{""name"":""Micah Kotch"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Partner""},{""name"":""Stephan Cizmar"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Partner""},{""name"":""Jack Fuchs"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Co-Founder and Operating Partner""},{""name"":""Eric Lamb"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Operating Partner""},{""name"":""Christina Curtis"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Senior Advisor""},{""name"":""Bill Ritter"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Senior Advisor""},{""name"":""Dr. Raymond Levitt"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Senior Advisor""},{""name"":""Mark Loch"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Senior Advisor""},{""name"":""Ted White"",""sourceUrl"":""https://blackhornvc.com/team/"",""title"":""Senior Advisor""}],""sources"":{""headquarters"":""https://blackhornvc.com/contact-us/"",""investmentThesisFocus"":""https://www.blackhornvc.com/"",""investorDescription"":""https://blackhornvc.com/about/"",""portfolioHighlights"":""https://blackhornvc.com/portfolio""},""websiteURL"":""http://www.blackhornvc.com""}","Correctness: 95% Completeness: 85% - -The information about Blackhorn Ventures is largely factually correct and well-supported by multiple sources. The fund size of USD 150 million for the Industrial Impact Fund II and its focus on digital infrastructure accelerating the energy transition matches the details found on the official Blackhorn website, confirming the specific fund[https://blackhornvc.com/news-and-posts/blackhorn-ventures-announces-close-of-150m-industrial-impact-fund-ii-to-invest-in-digital-infrastructure-accelerating-the-energy-transition]. Headquarters addresses in Denver (44 Cook St Suite 110) and New York (195 Broadway, 20th Floor) align with contact details listed on the official site[https://blackhornvc.com/contact-us/]. - -The investment thesis focusing on startups applying AI, robotics, and data-driven solutions for industrial sectors and decarbonization matches Blackhorn's stated mission and portfolio strategy[https://www.blackhornvc.com/]. Leadership names such as Philip O’Connor (Co-Founder and Managing Partner), Melissa Cheong (Managing Partner), and others correspond to the firm’s leadership page[https://blackhornvc.com/team/]. Portfolio highlights like ThinkLabs, ALICE Technologies, and others are consistent with their portfolio listing[https://blackhornvc.com/portfolio]. - -However, there are some minor inconsistencies and missing data points that affect completeness and correctness slightly: - -- The geographic focus is generally the United States, but some sources indicate a broader industrial impact, though official sources emphasize U.S. investments[1][2]. -- The overall Assets Under Management (AUM) figure and estimated investment size per company are not publicly disclosed, which limits completeness since these are standard venture capital metrics. -- The exact office address for the Denver office conflicts among sources: the provided info states 44 Cook St Suite 110, while professional directories list alternate addresses like 1550 Wewatta St Ste 200 or 1800 Wazee St[2][3][5]. The official website today’s contact page gives priority to 44 Cook St. -- Some third-party directories (DNB, LeadIQ) show slightly differing location or organizational details, but the official site is the highest authority here. -- No significant contradictory or fabricated information is present, but the absence of explicit AUM and estimated investment size figures lowers completeness. - -Overall, this reflects a high degree of factual accuracy and a reasonably comprehensive profile, with main weaknesses being the lack of some standard financial metrics and minor office address variations. - -Sources used: - -- Blackhorn Ventures official news and about pages: https://blackhornvc.com/news-and-posts/blackhorn-ventures-announces-close-of-150m-industrial-impact-fund-ii-to-invest-in-digital-infrastructure-accelerating-the-energy-transition, https://blackhornvc.com/about/, https://blackhornvc.com/contact-us/, https://blackhornvc.com/team/, https://blackhornvc.com/portfolio - -- Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/blackhorn-ventures.html - -- LeadIQ employee directory: https://leadiq.com/c/blackhorn-ventures/5a1db9f02300005a00b6c03a/employee-directory - -- Dun & Bradstreet company profile: https://www.dnb.com/business-directory/company-profiles.blackhorn_ventures_llc.158c53a972056d52f83a6f918cee7a71.html" -"Biz Stone ","https://hedgefundsclub.com/archives/2384 ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Biz Stone Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States"",""United Kingdom"",""India""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Technology"",""Fintech"",""Local commerce""],""sourceProvider"":""Perplexity"",""sourceUrl"":null}],""headquarters"":""United States"",""investmentThesisFocus"":[""Early-stage technology startups"",""Fintech and digital currencies"",""Local commerce platforms"",""Innovative, high-growth potential companies led by inspiring entrepreneurs""],""investorDescription"":""Biz Stone is a co-founder of Twitter, known for his investments and advisory roles in early-stage technology startups and fintech companies globally. He is actively involved as an angel investor and mentor in innovative ventures including fintech, digital media, and local commerce platforms."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Investment in Lookup, a local shopping app with significant early user traction"",""Backing Mode, a London-based fintech launching Bitcoin banking products"",""Investor in Sieve, a Kerala-based startup supporting freelancers globally"",""Investment in healthcare startup Getvisitapp in New Delhi""],""researcherNotes"":""No relevant data about Biz Stone or related investment strategy, funds, headquarters, portfolio, or leadership were found on the provided website or its subpages."",""seniorLeadership"":[{""name"":""Biz Stone"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder""}],""sources"":{""headquarters"":""https://economictimes.com/small-biz/startups/twitter-co-founder-biz-stone-invests-in-series-a-for-local-shopping-app-lookup/articleshow/47359451.cms"",""investmentThesisFocus"":""https://economictimes.com/small-biz/startups/twitter-co-founder-biz-stone-invests-in-series-a-for-local-shopping-app-lookup/articleshow/47359451.cms"",""investorDescription"":""https://finyear.com/Bitcoin-Biz-Stone-London-fintech-backed-by-Twitter-co-founder-Biz-Stone-launches-new-Bitcoin-platform-app_a42063.html"",""portfolioHighlights"":""https://economictimes.com/small-biz/startups/twitter-co-founder-biz-stone-invests-in-series-a-for-local-shopping-app-lookup/articleshow/47359451.cms; https://finyear.com/Bitcoin-Biz-Stone-London-fintech-backed-by-Twitter-co-founder-Biz-Stone-launches-new-Bitcoin-platform-app_a42063.html; https://timesofindia.indiatimes.com/business/india-business/biz-stone-invests-in-kerala-startup/articleshow/71342980.cms"",""seniorLeadership"":""https://economictimes.com/small-biz/startups/twitter-co-founder-biz-stone-invests-in-series-a-for-local-shopping-app-lookup/articleshow/47359451.cms""},""websiteURL"":""https://hedgefundsclub.com/archives/2384""}","Correctness: 85% Completeness: 60% - -The information about Biz Stone being a Twitter co-founder and an active angel investor in early-stage technology startups, fintech, and local commerce platforms is factually accurate and supported by multiple reliable sources[4][1][3]. His involvement in investments such as Lookup (a local shopping app), Mode (a London-based fintech with Bitcoin banking products), Sieve (a Kerala-based startup), and Getvisitapp (healthcare startup in New Delhi) aligns with the mentioned portfolio highlights[3]. Furthermore, Biz Stone’s investment thesis focusing on early-stage technology startups, fintech, digital currencies, and local commerce platforms is consistent with external reporting[3][1]. - -However, the data lacks important details such as overall assets under management and fund size, which are not publicly available, reducing completeness. The provided headquarters as United States is broadly correct since Biz Stone is American and invested globally, though his investments and activities also have a notable international component (UK, India) consistent with the geographic focus described[3]. The investor description is accurate but somewhat generalized and missing specifics about his current formal investment vehicle(s) like Future Positive, which focuses on related themes but is omitted here[2]. The senior leadership listing with Biz Stone as Co-Founder corresponds with his known role. - -The fund name ""Biz Stone Investment Strategy"" and related fund-specific data appear to be synthesized without publicly referenced existence of a formal named fund of that exact title, decreasing correctness on that point. Overall, while the detailed transactional info and mandates largely match verified information from the cited articles, the lack of a formal fund name, absence of financial scale metrics, and no direct official source confirming this exact fund structure reduce the overall factual completeness and correctness of the dataset. - -Sources: -- Economic Times overview of Biz Stone’s investments in Lookup and geographic focus (https://economictimes.com/small-biz/startups/twitter-co-founder-biz-stone-invests-in-series-a-for-local-shopping-app-lookup/articleshow/47359451.cms) -- Finyear on Mode fintech investment with Bitcoin products (https://finyear.com/Bitcoin-Biz-Stone-London-fintech-backed-by-Twitter-co-founder-Biz-Stone-launches-new-Bitcoin-platform-app_a42063.html) -- Times of India on Kerala startup Sieve investment (https://timesofindia.indiatimes.com/business/india-business/biz-stone-invests-in-kerala-startup/articleshow/71342980.cms) -- Wikipedia Biz Stone biography (https://en.wikipedia.org/wiki/Biz_Stone) -- Finextra report on Biz Stone joining Mode’s board (https://www.finextra.com/newsarticle/33705/twitter-co-founder-biz-stone-joins-board-of-fintech-startup-r8) - -No formal fund documents, assets under management, or exact fund size are publicly confirmed." -"Andrej Henkler ","https://leblon-capital.notion.site/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 150,000 - 300,000 typical first round, follow-on rounds can exceed USD 1,000,000"",""fundName"":""Andrej Henkler Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""United States""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""High-Tech"",""Internet"",""Media"",""Financial Services"",""Health Care"",""Industrial"",""Information Technology"",""Software""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.eu-startups.com/investor/leblon-capital/""}],""headquarters"":""Munich, Bayern, Germany"",""investmentThesisFocus"":[""We invest in mission-driven founders, not companies."",""Preference for first round investments but occasional later stage checks."",""Long-term commitment to investments."",""Sector-agnostic focus with a special interest in deeptech.""],""investorDescription"":""We invest in mission-driven founders, not companies. We prefer to invest in the first round, though we occasionally write initial checks at later stages. We commit for the long run. We are sector-agnostic but we love deeptech."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Exodigo"",""Adyton PBC"",""SaveIN"",""Fertilly"",""CPTx"",""Panthalassa"",""Specular"",""Rivio"",""Navier"",""Cambrium""],""researcherNotes"":""AUM is not mentioned on the website or any other available public sources. Estimated investment sizes are derived from EU-Startups and Nordic9 data."",""seniorLeadership"":[{""name"":""Andrej Henkler"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.crunchbase.com/person/andrej-henkler"",""title"":""Founder & CEO""},{""name"":""Fadwa Ouardani"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.crunchbase.com/organization/leblon-capital"",""title"":""Principal""}],""sources"":{""headquarters"":""https://www.crunchbase.com/organization/leblon-capital"",""investmentThesisFocus"":""https://de.linkedin.com/company/leblon-capital"",""investorDescription"":""https://de.linkedin.com/company/leblon-capital"",""portfolioHighlights"":""https://www.crunchbase.com/organization/leblon-capital""},""websiteURL"":""https://leblon-capital.notion.site/""}","Correctness: 95% Completeness: 85% - -The information provided is largely factually accurate. Leblon Capital is headquartered in Munich, Bayern, Germany, and focuses on investing in mission-driven founders rather than companies, with a preference for first-round investments but occasional later-stage investments. The investment thesis emphasizing long-term commitment, sector-agnostic focus, and particular interest in deep tech matches statements on Leblon Capital's official pages and LinkedIn sources[1][2]. The geographic focus on Europe and the United States and the investment stages from Pre-Seed to Series B align with publicly available investor profiles[3]. The portfolio highlights such as Adyton, SaveIN, and others correspond with data from Crunchbase and other sources[1]. - -However, some data points are less complete or unverifiable in public sources: -- The exact fund size and overall assets under management (AUM) are not publicly disclosed by Leblon Capital, which is noted as missing in the data provided and confirmed by the absence of fund closings or asset reports on venture databases[2][3]. -- The estimated investment size range (USD 150,000 - 300,000 typical first round, follow-ons exceeding USD 1,000,000) is derived from EU-Startups and Nordic9, which is plausible but cannot be fully confirmed in official sources. -- Some portfolio examples listed in the provided text differ from exhaustive public listings, which include a broader set of companies; this suggests the portfolio highlights are a subset but not an incorrect sample[1]. - -In summary, the facts presented are accurate based on trusted databases and Leblon Capital's official communications, but completeness is limited by the absence of publicly available financial specifics such as AUM and fund size. - -Sources: -- https://www.wedeal.com/fund/LeblonCapital -- https://www.gaebler.com/VC-Investors-6DD05DE0-F543-4F4D-9141-FA971F80C027-Leblon-Capital -- https://raizer.app/investor/leblon-capital" -"Blackstone Tactical Opportunities ","https://www.blackstone.com/the-firm/asset-management/tactical-opportunities ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Tactical Opportunities"",""fundSize"":""USD 34000000000"",""fundSizeSourceUrl"":""https://www.blackstone.com/our-businesses/tactical-opportunities/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Life Sciences"",""Aerospace and Government Services"",""Governance, Risk and Compliance Software"",""Digital Insurance Underwriting"",""Tech-enabled Creative Production and Procurement""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/our-businesses/tactical-opportunities/""}],""headquarters"":""345 Park Avenue, New York, NY 10154, USA"",""investmentThesisFocus"":[""Focus on unconstrained, nimble, and differentiated investments across asset class, industry, sector, security type, or geography."",""Target opportunities with less correlation and lower volatility than traditional strategies."",""Invest in opportunities that traditional strategies don’t or can’t pursue."",""Flexible and nimble to capture windows of opportunity in various market conditions."",""Seek differentiated investments across sectors and geographies.""],""investorDescription"":""Blackstone Tactical Opportunities is the largest opportunistic investment platform in the world, leveraging Blackstone's expertise and scale. Blackstone Tactical Opportunities provides opportunistic capital, timely investing and differentiated solutions. Tactical Opportunities is an unconstrained, nimble, and differentiated strategy targeting opportunities with less correlation and lower volatility."",""linkedDocuments"":[""https://nj.gov/njbonds/treasury/doinvest/pdf/AlternativeInvestments/Private%20Credit/BlackstoneTacticalOpportunitiesFundA.pdf"",""https://www.blackstone.com/wp-content/uploads/sites/2/2025/07/Blackstone2Q25EarningsPressRelease.pdf"",""https://www.blackstone.com/wp-content/uploads/sites/2/2025/01/Blackstone4Q24EarningsPressRelease.pdf""],""missingImportantFields"":[""estimatedInvestmentSize"",""investmentStageFocus""],""overallAssetsUnderManagement"":{""asOfDate"":""June 30, 2025"",""aumAmount"":""USD 34000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/our-businesses/tactical-opportunities/""},""portfolioHighlights"":[""Cryoport"",""ARKA"",""Diligent"",""Ki"",""HH Global""],""researcherNotes"":""AUM and fund size are explicitly stated as $34 billion USD as of June 30, 2025, on the official Tactical Opportunities page. No specific per-company investment size or investment stage focus is provided on the website. Fund size matches the AUM figure."",""seniorLeadership"":[{""name"":""Chris James"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/our-businesses/tactical-opportunities/"",""title"":""Global Head of Tactical Opportunities""},{""name"":""David Blitzer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/the-firm/our-people/"",""title"":""Chairman of Tactical Opportunities""},{""name"":""Amer Khatoun"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/amer-khatoun"",""title"":""Sr. Managing Director, Tactical Opportunities - London""},{""name"":""Evan Middleton"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/evan-middleton"",""title"":""Managing Director, Tactical Opportunities - New York""},{""name"":""Shary Moalemzadeh"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/shary-moalemzadeh"",""title"":""Sr. Managing Director, Head of Acquisitions in Tactical Opportunities - New York""},{""name"":""Ralph Yang"",""sourceProvider"":""Perplexity"",""sourceUrl"":null,""title"":""Managing Director, Tactical Opportunities - New York""},{""name"":""Qasim Abbas"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/qasim-abbas"",""title"":""Sr. Managing Director, Tactical Opportunities - London""},{""name"":""David Kaden"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/david-kaden"",""title"":""Sr. Managing Director, Tactical Opportunities - New York""},{""name"":""Daniel Katz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/daniel-katz"",""title"":""Sr. Managing Director, Tactical Opportunities - New York""},{""name"":""Jas Khaira"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/jasvinder-khaira"",""title"":""Sr. Managing Director, Tactical Opportunities - New York""},{""name"":""Thomas Senecal"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blackstone.com/people/thomas-senecal"",""title"":""Managing Director, Tactical Opportunities - London""},{""name"":""Joseph R. Cassanelli"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/tactical-opportunities|https://www.linkedin.com/company/the-fairfield-private-equity-venture-capital-club"",""title"":""Senior Managing Director""}],""sources"":{""headquarters"":""https://www.blackstone.com/the-firm/our-offices/"",""investmentThesisFocus"":""https://www.blackstone.com/our-businesses/tactical-opportunities/"",""investorDescription"":""https://www.blackstone.com/our-businesses/tactical-opportunities/"",""portfolioHighlights"":""https://www.blackstone.com/our-businesses/tactical-opportunities/""},""websiteURL"":""https://www.blackstone.com/our-businesses/tactical-opportunities/""}","Correctness: 97% Completeness: 90% - -The factual information provided is mostly accurate and well-supported by official and reputable sources. The key data points such as the fund size/AUM of **$34 billion USD as of June 30, 2025** matches the public figure reported on Blackstone’s own Tactical Opportunities webpage and confirmed by Blackstone’s earnings press releases[2][3][5]. The fund’s **unconstrained, nimble, and differentiated investment approach globally across multiple sectors** is consistent with Blackstone’s published investment thesis and description for Tactical Opportunities[5]. The portfolio highlights like Cryoport, ARKA, Diligent, Ki, and HH Global align with public disclosures of portfolio companies within this strategy[1][2]. Senior leadership names listed correspond with individuals confirmed on Blackstone’s official site and press releases[2][5]. - -However, some important details are *missing*, which reduces completeness: - -- The **estimated investment size per deal** and the **investment stage focus** are not publicly disclosed on Blackstone’s website or recent materials, correctly noted as “Not Available.” This is a common omission for opaque private market funds, but it is important context for completeness. - -- The reported **$34 billion figure is slightly at variance** with some reports stating $37 billion AUM end of 2024 for Tactical Opportunities[1], likely due to timing differences and definitions (for example, some include single-investor vehicles or sidecars). This discrepancy is minor and does not negate factual accuracy, but is worth noting. - -- There is no detailed breakdown of capital deployment pace or vintage fund closings beyond mentioning Fund IV at around $5.2 billion, preparing Fund V[1][4]. More granular fundraising data and recent investments like music royalties or AI infrastructure (CoreWeave) are publicly available but not included here, which impacts completeness moderately. - -- The senior leadership list includes one individual (Ralph Yang) without a source URL, but this is a minor gap. - -Overall, the profile is factually **correct and well-sourced** with high confidence from Blackstone’s official website and recent credible press releases and news coverage. The main gaps are due to legitimately unavailable granular data, which is transparently noted. - -**Sources used:** - -- Blackstone Tactical Opportunities official page: https://www.blackstone.com/our-businesses/tactical-opportunities/ -- Blackstone Q2 2025 Earnings Press Release (PDF): https://www.blackstone.com/wp-content/uploads/sites/2/2025/07/Blackstone2Q25EarningsPressRelease.pdf -- Blackstone.com news and leadership pages -- Dakota fund news reporting on Tactical Opportunities fundraising and portfolio: https://www.dakota.com/fundraising-news/report-blackstone-prepares-follow-up-to-5.2b-tactical-opportunities-fund -- PE Insights on Tactical Opportunities fundraising: https://pe-insights.com/blackstone-prepares-fifth-tac-opps-fund-as-fund-iv-nears-10bn/" -"BlackMars Capital ","http://www.blackmars.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 11.6M - 117M"",""fundName"":""BlackMars Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Germany"",""United States""],""investmentStageFocus"":[""Seed"",""Series C""],""sectorFocus"":[""Life Sciences"",""Food and Agriculture""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://tracxn.com/d/venture-capital/blackmars-capital/__NSEyRyAy1iyblI6qRf8trmi2F29kof8KH8IQrreKmkc""}],""headquarters"":""Nassaustrasse 28, D-65719 Hofheim am Taunus, Germany"",""investmentThesisFocus"":[""Investing in founding teams and early-stage ventures."",""Focus on transformative and revolutionary industries."",""Sector focus includes Artificial Intelligence, Blockchain, High Performance Computing, Life Sciences, Quantum Computing, and Robotics.""],""investorDescription"":""BlackMars Capital is a German investment firm that provides capital to fast-growing technology companies, focusing on industries due for revolutionary change. We love industries that are long overdue for transformation such as Artificial Intelligence, Blockchain, High Performance Computing, Life Sciences, Quantum Computing, and Robotics."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Odyssey Therapeutics"",""Circus Group"",""Northern Data Group""],""researcherNotes"":""AUM and specific fund sizes are not mentioned on the website or related profiles. Investment size was inferred from reported average round sizes in Seed and Series C stages."",""seniorLeadership"":[{""name"":""Marco Beckmann"",""sourceUrl"":""https://www.crunchbase.com/organization/blackmars-capital"",""title"":""CEO and Founder""},{""name"":""Marco Beckmann"",""sourceProvider"":""Perplexity"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://blackmars.com/contact/"",""investmentThesisFocus"":""https://blackmars.com/"",""investorDescription"":""https://blackmars.com/"",""portfolioHighlights"":""https://pitchbook.com/profiles/investor/462460-51""},""websiteURL"":""http://www.blackmars.com""}","Correctness: 90% Completeness: 85% - -The information about BlackMars Capital is largely accurate and well-supported by multiple sources. The firm is indeed a German investment company headquartered in Hofheim am Taunus, Germany, with a focus on fast-growing technology sectors like Artificial Intelligence, Blockchain, High Performance Computing, Life Sciences, Quantum Computing, and Robotics[2][3]. Marco Beckmann is confirmed as CEO, founder, and managing director, which aligns with the senior leadership information provided[2][1]. The investment thesis emphasizing early-stage ventures and transformative sectors is consistent with statements on the company’s official site and third-party profiles[3][4]. - -However, there are minor discrepancies and some missing data that affect completeness and correctness scores. For example, the registered address differs slightly from one source: the supplied information says ""Nassaustrasse 28, D-65719 Hofheim am Taunus"" while one business directory lists a different address in Königstein im Taunus, Hesse[1]. The company’s investment sizes are inferred rather than directly stated, and there is no publicly available data on total assets under management or precise fund size, which is acknowledged and limits completeness[4]. Portfolio highlights (Odyssey Therapeutics, Circus Group, Northern Data Group) are generally consistent with PitchBook data but not fully verifiable from open sources to conclusively confirm the exact portfolio scope[4]. - -Overall, the core factual data on the firm’s focus, leadership, and philosophy is well-documented from official and reputable secondary sources, but the absence of transparent fund size data and slight address discrepancies justify the 90% correctness and 85% completeness ratings. - -Sources: -- https://blackmars.com/about/ -- https://blackmars.com -- https://finalscout.com/company/blackmars_capital_gmbh -- https://www.eu-startups.com/investor/blackmars-capital/ -- https://pitchbook.com/profiles/investor/462460-51" -"Blackstone Group ","http://blackstone.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackstone Private Equity"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Established"",""Growth""],""sectorFocus"":[""Multiple industries""],""sourceUrl"":""https://blackstone.com/our-businesses/private-equity/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackstone Real Estate Income Trust (BREIT)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Operational stage""],""sectorFocus"":[""Income-generating real estate assets""],""sourceUrl"":""https://breit.com""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackstone Credit"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Senior direct lending"",""Opportunistic credit""],""sectorFocus"":[""Private Corporate Credit"",""Liquid Corporate Credit"",""Infrastructure Credit"",""Asset-Based Credit"",""Real Estate Credit""],""sourceUrl"":""https://blackstone.com/our-businesses/credit/""}],""headquarters"":""345 Park Avenue, New York, NY 10154"",""investmentThesisFocus"":[""Pursue excellence, integrity, innovation, customer focus, and teamwork."",""Disciplined due diligence and friendly transactions in private equity investments."",""Work collaboratively with management teams to enhance company performance."",""Invest across a broad range of industries globally in both established and growth-oriented businesses."",""Focus on income-generating real estate assets primarily in the United States."",""Utilize a multi-asset credit approach including Private Corporate Credit, Asset-Based Credit, and Real Estate Credit."",""Global geographic focus across investment strategies.""],""investorDescription"":""Blackstone is the world's largest alternative asset manager with more than $1 trillion in assets under management (AUM). It serves institutional and individual investors by building strong businesses that deliver lasting value. It has 12,500+ real estate assets and 250+ portfolio companies as of March 31, 2025. The firm has generated $399 billion in gains for investors, including retirement systems representing over 100 million pensioners."",""linkedDocuments"":[""https://www.blackstone.com/fp0065770_bsl_nportex_bannerless/"",""https://www.blackstone.com/april_2021_bxc_monthly_global_credit_market_update_vf/"",""https://www.blackstone.com/blackstone_bgx_monthly_update_0625_final/"",""https://bppeh.blackstone.com/sp-report-nov-2020/"",""https://www.blackstone.com/fp0065771_bgx-lscif_nportex_bannerless2/"",""https://www.blackstone.com/bglf_annual_accounts-2016/"",""https://www.blackstone.com/fp0065772_blackstone-scf_nportex_bannerless2/"",""https://www.blackstone.com/fp0080960-1_nportex_bannerless/"",""https://www.blackstone.com/fp0076493_bs-sfrt_bannerless/"",""https://www.blackstone.com/fp0076495_bs-scf_nportex_bannerless/""],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2Q 2025"",""aumAmount"":""USD 1211200000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/wp-content/uploads/sites/2/2025/07/Blackstone2Q25EarningsPressRelease.pdf""},""portfolioHighlights"":[""Blackstone Mortgage Trust (BXMT)"",""Various real estate and private equity portfolio companies""],""researcherNotes"":""AUM is explicitly stated as $1.2112 trillion as of 2Q 2025 in the firm's official quarterly earnings press release. Fund sizes and specific estimated investment sizes for funds are not clearly disclosed on the website."",""seniorLeadership"":[{""name"":""Jonathan Gray"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/people/jonathan-gray-2/"",""title"":""President & Chief Operating Officer""},{""name"":""James Blaeser"",""sourceUrl"":null,""title"":""Managing Director, Infrastructure, New York""},{""name"":""Joshua Blaine"",""sourceUrl"":null,""title"":""Sr. Managing Director, Strategic Partners, New York""},{""name"":""Richard Blair"",""sourceUrl"":null,""title"":""Sr. Managing Director, Legal & Compliance, Hong Kong""},{""name"":""Amy Blake"",""sourceUrl"":null,""title"":""Managing Director, Strategic Incentives Group, New York""},{""name"":""Greg Blank"",""sourceUrl"":null,""title"":""Sr. Managing Director, Infrastructure, New York""},{""name"":""Qasim Abbas"",""sourceUrl"":""https://blackstone.com/people/qasim-abbas"",""title"":""Sr. Managing Director, Tactical Opportunities, London""},{""name"":""Riad Abrahams"",""sourceUrl"":""https://blackstone.com/people/riad-abrahams"",""title"":""Sr. Managing Director, BXMA, New York""},{""name"":""Matthew Adcock"",""sourceUrl"":""https://blackstone.com/people/matthew-adcock"",""title"":""Managing Director, Real Estate, Sydney""},{""name"":""Abhishek Agarwal"",""sourceUrl"":""https://blackstone.com/people/abhishek-agarwal"",""title"":""Sr. Managing Director, Real Estate, London""},{""name"":""A. J. Agarwal"",""sourceUrl"":""https://blackstone.com/people/a-j-agarwal"",""title"":""Sr. Managing Director, Real Estate, New York""},{""name"":""Patrick Agnew"",""sourceUrl"":""https://blackstone.com/people/patrick-agnew"",""title"":""Managing Director, Private Wealth, North Carolina""},{""name"":""Animesh Agrawal"",""sourceUrl"":""https://blackstone.com/people/animesh-agrawal"",""title"":""Managing Director, Private Equity, Mumbai""},{""name"":""David Ainsworth"",""sourceUrl"":""https://blackstone.com/people/david-ainsworth"",""title"":""Managing Director, Private Wealth, Dallas""},{""name"":""Akin Akinrinade"",""sourceUrl"":""https://blackstone.com/people/akin-akinrinade"",""title"":""Managing Director, BXMA, New York""},{""name"":""Matthew Alcide"",""sourceUrl"":""https://blackstone.com/people/matthew-alcide"",""title"":""Managing Director, BXCI, New York 601 Lex""}],""sources"":{""headquarters"":""https://www.blackstone.com/the-firm/our-offices/"",""investmentThesisFocus"":""https://blackstone.com/insights/investment-strategy"",""investorDescription"":""https://www.blackstone.com/the-firm/"",""portfolioHighlights"":""https://www.blackstone.com/our-businesses/real-estate/""},""websiteURL"":""http://blackstone.com""}","Correctness: 98% Completeness: 85% - -The provided information about Blackstone is largely **factually accurate** and consistent with publicly available data from Blackstone's official website and recent earnings reports. The stated total assets under management (AUM) of approximately $1.211 trillion as of 2Q 2025 matches Blackstone's official earnings press release[1]. The description of Blackstone as the world’s largest alternative asset manager with 12,500+ real estate assets and 250+ portfolio companies is also confirmed by Blackstone’s firm overview[5]. - -The characterization of the three main funds—Blackstone Private Equity (global, focused on established and growth companies), Blackstone Real Estate Income Trust (BREIT) (U.S.-focused, income-generating real estate), and Blackstone Credit (multi-asset credit globally)—aligns with information on their respective official business pages[1][5], though exact fund sizes and estimated investment sizes are not publicly disclosed, as noted. - -The investment thesis themes cited (pursuing excellence and integrity, collaboration with management teams, diversified global sector and stage focus, and multi-asset credit strategy) align closely with Blackstone’s stated corporate values and investment strategy descriptions on their website[5]. - -**Reasons for Slight Deduction in Correctness:** - -- Missing explicit fund size data for the listed funds is noted; while this is acknowledged, the lack of those specific figures prevents a perfect score. - -**Reasons for Completeness Deduction:** - -- The provided data omits details on the firm’s hedge fund and insurance-related businesses, which are part of Blackstone’s multi-asset investing platforms. - -- Senior leadership listings are extensive but may not cover all key executives; some senior managing directors' affiliations are partially unspecified. - -- The mention of key portfolio highlights is minimal, lacking comprehensive examples that are publicly cited (like specific major investments or strategic subsidiaries). - -- While the description touches on values and styles, deeper quantitative performance details, strategic initiatives, or recent fund closings (e.g., Strategic Partners Infrastructure fund raising $5.5 billion) are not included[3]. - -**Sources:** - -- Blackstone 2Q 2025 Earnings Press Release: https://www.blackstone.com/wp-content/uploads/sites/2/2025/07/Blackstone2Q25EarningsPressRelease.pdf[1] - -- Blackstone Official Website – The Firm and Investment Strategy Sections: https://www.blackstone.com/the-firm/, https://blackstone.com/insights/investment-strategy[5] - -- Blackstone BREIT Website: https://breit.com[5] - -- Blackstone Credit Business: https://blackstone.com/our-businesses/credit/[5] - -- Blackstone Strategic Partners Fund Closing News: https://www.blackstone.com/news/press/blackstone-strategic-partners-closes-largest-infrastructure-secondaries-fund-ever-raised-at-5-5-billion/[3] - -- Wikipedia entry on Blackstone Inc. (for historical corporate investment background confirmation): https://en.wikipedia.org/wiki/Blackstone_Inc.[4] - -In summary, the data is **very accurate** but could be more complete by including missing fund sizes, hedge fund and insurance details, more exhaustive senior leadership context, and recent fund activity highlights." -"BlackRock ","http://www.blackrock.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BlackRock Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global"",""Emerging Markets""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Cash Alternatives"",""Commodities"",""Stock Funds"",""Bond Funds"",""Multi-Asset Funds"",""Real Estate Funds"",""Science and Technology""],""sourceUrl"":""https://www.blackrock.com/us/individual/products/investment-funds#/?productView=all""}],""headquarters"":""North America - New York: 50 Hudson Yards, New York, NY 10001"",""investmentThesisFocus"":[""Addressing mega forces—big, structural changes that affect investing now and in the future which create both opportunities and risks."",""Emphasize sustainability in investment stewardship and promote an inclusive transition to a low-carbon future."",""Invest in innovative clean energy technologies through initiatives like the BlackRock Foundation's $100 million grant to Breakthrough Energy Catalyst, supporting technologies such as direct air capture, green hydrogen, sustainable aviation fuel, and long-duration energy storage.""],""investorDescription"":""We're a global asset manager and technology provider dedicated to helping more and more people experience financial well-being. We help millions of people invest to build savings that serve them throughout their lives. Our mission: As a fiduciary, we start with our clients' needs and look to offer them more quality choices for how and where to invest their money. We access the world’s financial markets by offering our clients simple and low-cost investment solutions. Our technology combined with our global expertise can help clients navigate investment risks and opportunities in an ever-changing world."",""linkedDocuments"":[""https://www.blackrock.com/fp/documents/dividend_investing.pdf"",""https://www.blackrock.com/fp/documents/understanding_duration.pdf"",""https://www.blackrock.com/fp/documents/MBS.pdf"",""https://www.blackrock.com/us/individual/literature/product-brief/ibit-product-brief.pdf"",""https://ir.blackrock.com/files/doc_downloads/governance_documents/CodeofBusinessConductandEthics.pdf"",""https://ir.blackrock.com/interactive/newlookandfeel/4048287/CodeofBusinessConductandEthics.pdf"",""https://www.blackrock.com/ca/investors/en/literature/press-release/pr-2024-11-20-en.pdf"",""https://www.blackrock.com/ca/investors/en/literature/press-release/pr-2025-07-21-en.pdf"",""https://www.blackrock.com/corporate/investor-relations/2020-annual-report"",""https://www.blackrock.com/ca/investors/en/literature/press-release/pr-2025-08-19-en.pdf""],""missingImportantFields"":[""portfolioHighlights"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""12.5 trillion USD"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://en.wikipedia.org/wiki/BlackRock""},""portfolioHighlights"":[""Not Available""],""researcherNotes"":""AUM is not explicitly mentioned on the website; however, BlackRock is known as one of the world's largest asset managers with reported net inflows of $1.8 trillion over 5 years as of 2023."",""seniorLeadership"":[{""name"":""Larry Fink"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Chairman and CEO""},{""name"":""Rob Kapito"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""President""},{""name"":""Joud Abdel Majeid"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Co-Head of Global Partners Office""},{""name"":""Susan Chan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Head of Asia Pacific""},{""name"":""Tarek Chouman"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Global Head of Aladdin Client Business""},{""name"":""Samara Cohen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Global Head of Market Development""},{""name"":""Stephen Cohen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Chief Product Officer""},{""name"":""Joe DeVico"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Head of Americas Client Business""},{""name"":""Ed Fishwick"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Chief Risk Officer & Head of Risk and Quantitative Analysis Group""},{""name"":""Rob Goldstein"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackrock.com/corporate/about-us/leadership/office-of-the-chairman/gary-shedlin"",""title"":""Chief Operating Officer""}],""sources"":{""headquarters"":""https://www.blackrock.com/corporate/about-us/contacts-locations"",""investmentThesisFocus"":""https://www.blackrock.com/corporate/about-us/social-impact"",""investorDescription"":""https://www.blackrock.com/corporate/about-us"",""portfolioHighlights"":""Not Available""},""websiteURL"":""http://www.blackrock.com""}","Correctness: 96% Completeness: 80% - -The provided information about BlackRock is largely accurate and aligns well with publicly available data. The headquarters location at 50 Hudson Yards, New York, NY 10001, correctly matches the company's official contact information[4]. The description of BlackRock's mission as a fiduciary offering low-cost, technology-driven investment solutions and aiming to help clients build financial well-being aligns with BlackRock's corporate statements[4]. The investment thesis summary focusing on addressing mega forces (such as AI, energy transition), sustainability, and investing in innovative clean energy technologies through initiatives like Breakthrough Energy Catalyst is consistent with BlackRock’s recent public outlooks and social impact reports[2][5]. The noted assets under management (AUM) figure of approximately $12.5 trillion as of 2025 is supported by Wikipedia and multiple BlackRock disclosures[4]. - -Senior leadership roles listed (Larry Fink as Chairman and CEO, Rob Kapito as President, etc.) correspond to current BlackRock leadership details on the official website[4]. The sector focuses (cash alternatives, commodities, stock and bond funds, multi-asset funds, real estate funds, science and technology) are reasonable summaries of BlackRock’s broad investment product offerings[1][3][4]. - -However, the information is incomplete in several respects: - -- **Fund-specific data gaps:** Key details such as exact fund size, estimated investment size, and portfolio highlights for the BlackRock Investment Strategy fund are marked as ""Not Available"" and missing despite public disclosures for similar funds existing on BlackRock’s site[1][3]. This reduces completeness. - -- **Portfolio highlights:** No portfolio holdings or performance data were provided, which limits insight into the fund’s composition and strategy beyond broad sector focuses. - -- **Investment stage focus:** The overview lacks clarification on investment stage focus (early-stage, growth, mature, etc.), which is a common dimension in fund descriptions. - -- **Details on other initiatives:** While BlackRock’s support of clean energy innovation is noted, more quantitative data on impact or specific program details could improve completeness. - -In summary, the description is factually accurate regarding company identity, leadership, strategy focus, and AUM but lacks detailed fund-level data and portfolio specifics that would provide a more thorough picture. For fully comprehensive fact-checking, the missing portfolio details and exact fund-size metrics should be retrieved from BlackRock’s official fund documents or filings. - -Sources: -- BlackRock official: https://www.blackrock.com/corporate/about-us/contacts-locations -- BlackRock investment outlook & social impact: https://www.blackrock.com/corporate/about-us/social-impact, https://www.blackrock.com/us/individual/insights/blackrock-investment-institute/outlook -- Wikipedia: https://en.wikipedia.org/wiki/BlackRock -- BlackRock Private Investments Fund holdings: https://www.blackrock.com/us/financial-professionals/investments/products/alternative-investments/bpif -- BlackRock Systematic Multi-Strategy Fund: https://www.blackrock.com/us/financial-professionals/products/275463/systematic-multi-strategy-fund" -"Andreessen Horowitz ","http://www.a16z.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Seed Fund"",""fundSize"":""USD 400,000,000"",""fundSizeSourceUrl"":""https://a16z.com/seed/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Speedrun"",""Growth""],""sectorFocus"":[""AI"",""American Dynamism"",""Bio + Health"",""Consumer"",""Crypto"",""Enterprise"",""Fintech"",""Games"",""Infrastructure""],""sourceUrl"":""https://a16z.com/seed/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Growth"",""fundSize"":""USD 3,750,000,000"",""fundSizeSourceUrl"":""https://a16z.com/new-funds-new-era/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Growth""],""sectorFocus"":[""AI"",""American Dynamism"",""Bio + Health"",""Consumer"",""Crypto"",""Enterprise"",""Fintech"",""Games"",""Infrastructure""],""sourceUrl"":""https://a16z.com/growth/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""American Dynamism"",""fundSize"":""USD 600,000,000"",""fundSizeSourceUrl"":""https://a16z.com/new-funds-new-era/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""American Dynamism""],""sourceUrl"":""https://a16z.com/new-funds-new-era/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Apps"",""fundSize"":""USD 1,000,000,000"",""fundSizeSourceUrl"":""https://a16z.com/new-funds-new-era/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://a16z.com/new-funds-new-era/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Games"",""fundSize"":""USD 600,000,000"",""fundSizeSourceUrl"":""https://a16z.com/new-funds-new-era/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://a16z.com/new-funds-new-era/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Infrastructure"",""fundSize"":""USD 1,250,000,000"",""fundSizeSourceUrl"":""https://a16z.com/new-funds-new-era/"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://a16z.com/new-funds-new-era/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Cultural Leadership Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early-stage""],""sectorFocus"":[""Consumer"",""Crypto"",""Enterprise"",""Fintech"",""Games"",""Bio + Health""],""sourceUrl"":""https://a16z.com/clf""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Perennial"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://a16z.com/perennial""}],""headquarters"":""Menlo Park, California, USA"",""investmentThesisFocus"":[""They invest across seed to growth-stage technology companies without stage bias."",""They back entrepreneurs with domain expertise and focus on company-building process."",""They connect entrepreneurs with a network of experts including technical talent and cultural leaders to help companies grow."",""The firm values truthfulness, long-term relationships, diversity, innovation, and high performance."",""Focus sectors include AI, bio + healthcare, consumer, crypto, enterprise, fintech, games, infrastructure, and American dynamism.""],""investorDescription"":""Andreessen Horowitz (aka a16z) is a venture capital firm that backs bold entrepreneurs building the future through technology. They are stage agnostic, investing from seed to growth-stage technology companies across sectors including AI, bio + healthcare, consumer, crypto, enterprise, fintech, games, infrastructure, and American dynamism. a16z has $46B in committed capital across multiple funds. The firm respects entrepreneurs and the company-building process, with general partners who are often former founders/operators, CEOs, or CTOs of successful tech companies, bringing domain expertise in data, AI, biology, crypto, distributed systems, security, marketplaces, and financial services. Their mission includes connecting entrepreneurs with a network of experts—technical talent, marketing resources, corporate partners, cultural leaders—to help their portfolio companies grow. Their culture values first-class business conduct, respect for entrepreneurial struggles, truthfulness, long-term relationship building, diversity of talents, innovation, high performance, and teamwork. They invest in innovators driving future technological change and adapt their structure and culture accordingly."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""USD 46,000,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://a16z.com/about/""},""portfolioHighlights"":[""0x"",""27Bards"",""42Floors"",""451 Degrees"",""500px"",""7 Cups of Tea"",""8Tracks"",""99Dresses"",""A Capital"",""Abacus""],""researcherNotes"":""Overall AUM from website About page stating $46 billion in committed capital as of 2025. Fund sizes available for Seed ($400M) and recent funds for Growth and thematic areas totaling $7.2B. Estimated investment sizes are not specifically disclosed on the site."",""seniorLeadership"":[{""name"":""Marc Andreessen"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://a16z.com/about/"",""title"":""Co-founder""},{""name"":""Ben Horowitz"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://a16z.com/about/"",""title"":""Co-founder""},{""name"":""Chris Dixon"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://a16z.com/team/"",""title"":""General Partner""},{""name"":""Andrew Chen"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://a16z.com/team/"",""title"":""General Partner""},{""name"":""Andrew Singer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://a16z.com/team/"",""title"":""General Partner""},{""name"":""Jeff Jordan"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.reuters.com/technology/a16z-hires-former-ebay-executive-jeff-jordan-2024-03-15/"",""title"":""General Partner""},{""name"":""Ben Ling"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.wsj.com/articles/inside-a16zs-growth-playbook-a-pivot-to-late-stage-tech-11695350975"",""title"":""General Partner""},{""name"":""Margit Wennmachers"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.forbes.com/profile/margit-wennmachers/"",""title"":""General Partner""}],""sources"":{""headquarters"":""https://a16z.com/contact/"",""investmentThesisFocus"":""https://a16z.com/about/"",""investorDescription"":""https://a16z.com/about/"",""portfolioHighlights"":""https://a16z.com/portfolio/""},""websiteURL"":""http://www.a16z.com""}","Correctness: 98% Completeness: 90% - -The information presented on Andreessen Horowitz (a16z) is largely factually correct and aligns well with authoritative sources. The fund sizes for Seed ($400M), Growth ($3.75B), American Dynamism ($600M), Apps ($1B), Games ($600M), and Infrastructure ($1.25B) match the detailed fund announcements on a16z’s official website, which confirms $7.2 billion raised across these areas as of 2025[1]. The overall Assets Under Management of $46 billion as of 2025 is consistent with the About page of a16z[1][3]. The investment stage focus (“stage agnostic” from seed to growth), sector focus (AI, American Dynamism, Bio + Health, Consumer, Crypto, Enterprise, Fintech, Games, Infrastructure), headquarters in Menlo Park, CA, and senior leadership (Marc Andreessen and Ben Horowitz as co-founders, other named general partners) are verified by the official firm sources[1][3]. The description accurately captures the firm’s culture, mission to support entrepreneurs through a network of expertise, and its focus on truthfulness, long-term relationships, and high performance[1]. - -The primary limitations affecting completeness involve: - -- *Estimated investment sizes* per fund are noted as ""Not Available"" because a16z has not publicly disclosed typical check sizes per fund or per stage on their website; available data sources (including OpenVC) estimate ranges for seed investments broadly but not fund-specific sizes[4][5]. - -- *Geographic focus* is mostly “Not Available” or unspecified. While a16z is headquartered in Menlo Park and invests globally, specific geographic priorities for these funds are not explicitly outlined in the cited official sources. - -- *Sector focus* for some funds (Apps, Games, Infrastructure) is “Not Available” in the data provided; however, the firm’s announcements imply thematic or sector-specific focus as noted on their website[1]. More granular sector details for these funds could improve completeness. - -- The Cultural Leadership Fund and Perennial fund lack public fund size disclosures; only their early-stage focus areas and sector interests are partially stated[1]. This reduces completeness regarding these funds. - -Overall, the data is accurate and reasonably thorough regarding public information on a16z funds and firm profile through 2025, with the main gaps tied to undisclosed specifics on investment sizes and geographic focus details[1][3][4]. URLs used include: - -- https://a16z.com/new-funds-new-era/ -- https://a16z.com/about/ -- https://a16z.com/seed/ -- https://www.4degrees.ai/blog/top-venture-capital-firms-in-2025 -- https://www.seedtable.com/investors-seed" -"Blackfinch Ventures ","https://blackfinch.ventures/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackfinch Ventures EIS Portfolio"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Technology"",""Multiple Sectors""],""sourceUrl"":""https://blackfinch.ventures/eis""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackfinch Energy Transition EIS Portfolio"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Energy Transition"",""Climate Technology""],""sourceUrl"":""https://blackfinch.ventures/eis""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackfinch Spring Venture Capital Trust (VCT)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK""],""investmentStageFocus"":[""Growth Stage""],""sectorFocus"":[""Technology"",""Internet"",""Mobile"",""Social Media""],""sourceUrl"":""https://blackfinch.ventures/vct""}],""headquarters"":""1350-1360 Montpellier Court, Gloucester Business Park, Gloucester GL3 4AH"",""investmentThesisFocus"":[""Focus on early-stage and growth-stage technology companies."",""Support founders with strong partnerships and ongoing non-executive director involvement."",""Emphasis on high-growth potential firms disrupting large markets."",""Investment process includes rigorous founder vetting and due diligence."",""Seek companies with EIS/VCT status and demonstrate scalability and revenue growth potential.""],""investorDescription"":""Blackfinch Ventures defines its mission as investing in innovation with a clear technology mandate, supporting early-stage and growth-stage tech firms with bold ideas that can deliver meaningful, long-term value. Their primary focus is on high-growth small businesses in any tech sector, providing funding routes such as Enterprise Investment Schemes (EIS) and Venture Capital Trusts (VCTs). They work closely with firms from investment through development to exit, aiming to build businesses for the long term."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""BookingLive"",""StaffCircle"",""Kokoon"",""Edozo"",""Candidate.ID"",""Comparesoft"",""Tended"",""Spotless Water"",""Brooklyn Solutions"",""Clientshare""],""researcherNotes"":""Specific estimated investment sizes and fund sizes are not disclosed on the website or associated downloadable documents. Overall Assets Under Management (AUM) is not explicitly mentioned or inferable from the available information."",""seniorLeadership"":[{""name"":""Dr Dan Appleby"",""sourceUrl"":""https://blackfinch.ventures/team/"",""title"":""CIO - Blackfinch Asset Management & Ventures""},{""name"":""Richard Harley"",""sourceUrl"":""https://blackfinch.ventures/team/"",""title"":""Ventures Director""},{""name"":""Nic Pillow"",""sourceUrl"":""https://blackfinch.ventures/team/"",""title"":""Ventures Director""},{""name"":""Kimberley Hay"",""sourceUrl"":""https://blackfinch.ventures/team/"",""title"":""Ventures Director""},{""name"":""Charles Horn"",""sourceProvider"":""LinkedIn"",""sourceUrl"":null,""title"":""Board Observer""}],""sources"":{""headquarters"":""https://blackfinch.ventures/contact/"",""investmentThesisFocus"":""https://blackfinch.ventures/how-we-work/"",""investorDescription"":""https://blackfinch.ventures/"",""portfolioHighlights"":""https://blackfinch.ventures/portfolio/""},""websiteURL"":""https://blackfinch.ventures/""}","Correctness: 98% Completeness: 85% - -The information provided about Blackfinch Ventures is largely factually accurate based on multiple authoritative public sources. The firm's focus on early-stage and growth-stage technology companies in the UK, with emphasis on technology sectors and energy transition/climate technology themes, is confirmed by Blackfinch’s own portfolio descriptions and fund details[4][5]. The investor thesis focusing on supporting high-growth potential tech firms through EIS and VCT investment routes is also well supported by Blackfinch's website and recent portfolio updates[4][5]. The named funds—Blackfinch Ventures EIS Portfolio, Blackfinch Energy Transition EIS Portfolio, and Blackfinch Spring Venture Capital Trust (VCT)—and their sector/geo/investment stage align with official sources[4]. - -The senior leadership team members listed (Dr Dan Appleby as CIO, Richard Harley, Nic Pillow, Kimberley Hay as Ventures Directors, and Charles Horn as Board Observer) correspond to those listed on the Blackfinch official site and LinkedIn profiles[2][5]. - -The portfolio highlights mentioned (e.g., BookingLive, StaffCircle, Kokoon, Tended, Spotless Water, Brooklyn Solutions) are found in Blackfinch’s documented portfolio updates and Q1/Q2 2025 performance reports[1][3]. Key investment process details—such as founder support, rigorous due diligence, focus on scalable companies with EIS/VCT status—are consistent with Blackfinch’s described investment approach[4][5]. - -However, the completeness score is lower because several important quantitative details are missing or unavailable publicly: - -- No specific overall assets under management (AUM) figures are disclosed on Blackfinch’s website or in associated documents reviewed[1][2][3][4]. - -- Estimated investment sizes and fund sizes for the named funds are not publicly available or stated explicitly, as also noted in the researcher’s notes[1][2]. - -- While recent fundraising total (e.g., over £30m in a tax year) and deployment figures (e.g., £18m deployed into early-stage UK companies) are reported, these do not aggregate into a comprehensive AUM or fund size figure[2]. - -- Detailed investment size ranges or ticket sizes per company/fund are not provided in public sources. - -Overall, the provided data is highly accurate and factually supported by Blackfinch’s direct communications, portfolio updates, and recent news releases, but it lacks full disclosure on fund size, AUM, and detailed investment sizing that would improve completeness. - -Sources: -- Blackfinch Ventures website: https://blackfinch.ventures/ -- Blackfinch Ventures portfolio updates Q1 and Q2 2025: https://blackfinch.investments/assets/Blackfinch_EIS_Portfolio_Update_Q1_2025_2c9c5dff71.pdf, https://blackfinch.com/assets/Blackfinch_EIS_Portfolio_Update_7d02ec8617.pdf -- Industry news on fundraising & leadership: https://ifamagazine.com/blackfinch-ventures-closes-tax-year-with-record-breaking-fundraise-of-over-30m-and-shares-expansion-plans-under-new-leadership/ -- Blackfinch EIS portfolio description: https://blackfinch.investments/eis/" -"Blast.club ","https://blast.club/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 500,000 to 5,300,000"",""fundName"":""Blast Club Investment Strategy"",""fundSize"":""EUR 30,000,000"",""fundSizeSourceUrl"":""https://blast.club/en/raises"",""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early stage"",""Series A"",""Series B""],""sectorFocus"":[""Deep tech"",""AI"",""SaaS"",""Hardware"",""Biotech"",""Foodtech"",""Pharmaceutical"",""Spacetech""],""sourceUrl"":""https://blast.club/en/raises""}],""headquarters"":""Paris, Île-de-France, France"",""investmentThesisFocus"":[""Focus on deep tech, AI, SaaS, hardware, biotech, foodtech, pharmaceutical, and spacetech startups."",""Investments mostly at early stages including Series A and B funding stages."",""Careful project selection based on founding team quality, value proposition, and market potential."",""Diversification across sectors and development stages to manage risk."",""Active participation in innovation and exclusive community involvement for members.""],""investorDescription"":""Blast. is a private investment club offering access to start-up investments with a minimum of €1,000, led by Anthony Bourbon and a network of experts. Members get around 20 investment opportunities a year, exclusive training, events, and a private forum. Blast Club is described as one of France's most influential business angels. The club promotes active participation in innovation, careful project selection based on founding team, value proposition, and market potential, and diversification across sectors and development stages to manage risk."",""linkedDocuments"":[""https://drive.google.com/file/d/1f7iB8rq2dqZfG3v1Wdgsg8omg9BVvBEH/view?usp=share_link""],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 30,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blast.club/en/raises""},""portfolioHighlights"":[""The Sanctuary Group"",""Yuno"",""Auum"",""OneFlash"",""Chipiron"",""Noota"",""Biomemory"",""Mindstate"",""Pony""],""researcherNotes"":""The AUM and fund size are inferred from the ongoing operation stated as €30 million in the raises page. Headquarters information obtained from external profile for Anthony Bourbon, founder and CEO of Blast Club, based in Paris, France."",""seniorLeadership"":[{""name"":""Anthony Bourbon"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://blast.club/en/about-us"",""title"":""President & CEO""},{""name"":""Samuel Guez"",""sourceProvider"":""Blast.club"",""sourceUrl"":""https://blast.club/en/about-us"",""title"":""General Manager""},{""name"":""Gabrielle Guirriec"",""sourceProvider"":""Blast.club"",""sourceUrl"":""https://blast.club/en/about-us"",""title"":""Director of Operations""},{""name"":""Vanessa Alvarez"",""sourceProvider"":""Blast.club"",""sourceUrl"":""https://blast.club/en/about-us"",""title"":""Legal Director""},{""name"":""Jean-Samuel Lécrivain"",""sourceProvider"":""Blast.club"",""sourceUrl"":""https://blast.club/en/about-us"",""title"":""Head of Investment Managers""}],""sources"":{""headquarters"":""https://clay.earth/profile/anthony-bourbon"",""investmentThesisFocus"":""https://blast.club/en/about-us"",""investorDescription"":""https://blast.club/en/about-us"",""portfolioHighlights"":""https://blast.club/en/raises""},""websiteURL"":""https://blast.club/""}","Correctness: 98% Completeness: 95% - -The information provided about Blast Club Investment Strategy, including its fund size (€30 million), estimated investment size (EUR 500,000 to 5,300,000), investment stages (early stage, Series A, Series B), and sector focuses (deep tech, AI, SaaS, hardware, biotech, foodtech, pharmaceutical, spacetech) is factually accurate and aligns well with the official Blast Club sources (https://blast.club/en/raises)[4]. The description of Blast as a private investment club led by Anthony Bourbon, offering members around 20 investment opportunities per year with a minimum investment of €1,000 also accurately reflects public information (https://thecrowdspace.com/platform/blastclub/, https://blast.club/en/about-us)[1][3]. - -The stated headquarters in Paris, Île-de-France, France, is consistent with publicly available leadership profiles and domain information about Anthony Bourbon (https://clay.earth/profile/anthony-bourbon)[source in input]. The leadership team names and roles match the current details on Blast.club’s official page (https://blast.club/en/about-us)[source in input]. - -The investment thesis—focused on diversification across sectors and stages, careful selection based on founding team quality, value proposition, market potential, and active community participation—is well supported by the club’s public FAQs and about pages (https://blast.club/en/about-us, https://blast.club/en/faq)[2][3]. Portfolio highlights such as The Sanctuary Group, Yuno, Auum, OneFlash, Chipiron, Noota, Biomemory, Mindstate, and Pony are confirmed by the raises page (https://blast.club/en/raises)[4]. - -Completeness is high but not perfect; some details that could further enhance completeness are: - -- Membership levels with different investment caps and benefits (Bronze to Diamond tiers) are public information relevant to investor profile (https://blast.club/en/faq)[2]. - -- Regulatory approvals and compliance details (AMF approval, ACPR registration) provide trust context for the club (https://blast.club/en)[3]. - -- Some tax optimization benefits and minimum holding periods for investments are noted publicly but not included in the summary (https://blast.club/en)[3]. - -These omissions are relatively minor given the provided dataset scope, so completeness remains high. - -No fabricated or unsupported information is present. All key points are adequately sourced from official and reliable public references. - -URLs used: - -- https://blast.club/en/raises - -- https://blast.club/en/about-us - -- https://thecrowdspace.com/platform/blastclub/ - -- https://blast.club/en/faq - -- https://blast.club/en - -- https://clay.earth/profile/anthony-bourbon" -"Angel Academe ","http://www.angelacademe.com ","{""funds"":[{""estimatedInvestmentSize"":""GBP 100,000-150,000 per opportunity"",""fundName"":""Angel Academe EIS Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK"",""Channel Islands""],""investmentStageFocus"":[""High growth potential companies""],""sectorFocus"":[""Female-founded tech startups"",""Health services"",""Agriculture""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://angelacademe.com/eis-fund""}],""headquarters"":""United Kingdom"",""investmentThesisFocus"":[""Focus on female founders with at least 20% founder equity."",""Invest in high growth potential companies in technology sectors with social impact elements such as health services and agriculture."",""Prefer companies with at least one woman on the founding team."",""Collaboration among experienced angels and sector experts to screen startups."",""Offer tax-efficient UK startup investments (EIS & SEIS) and mentoring."",""Invest through a structured due diligence process led by network investors with sector experience.""],""investorDescription"":""Invest in the First EIS Fund for female founders, backed by the UK's leading female-focussed angel network. Angel Academe focuses on investing in ambitious and highly scalable technology businesses with at least one woman on the founding team. They invest through a structured process involving thorough due diligence and support businesses post-investment."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":""Over £150 million helped raised through backed businesses"",""portfolioHighlights"":[""Zonova"",""Enough Energy"",""Movetru"",""Inicio"",""WhereYouAt"",""PreActiv"",""PheroSyn"",""Adora"",""Figaro"",""Samphire Neuroscience"",""Provenance"",""Century Tech"",""Deployed"",""Yeo Messaging"",""Dem DX"",""Cypher Coders"",""Béa Fertility"",""Loowatt"",""Enterprise Alumni"",""Fiskl"",""ScaleXP"",""Forte Medical"",""Muse Finance"",""The Dots"",""Nuggets"",""Applied"",""Good-Loop"",""Streeva"",""Cytochroma"",""Jove Insurance"",""Ayda"",""Pivigo"",""Stitched"",""Behaviour Lab"",""ImproveWell"",""Envolve Tech"",""Uncommon"",""Supapass"",""Abundance"",""Frugl"",""BuddyBounce"",""Bewica"",""Akoni"",""Salve""],""researcherNotes"":""No explicit overall Assets Under Management or Fund Size is mentioned on the website. The estimated investment size is derived from the specific per-opportunity investment range indicated. Headquarters address is not provided on the official contact or about pages."",""seniorLeadership"":[{""name"":""Sarah Turner"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://angelacademe.com/team-advisory-board"",""title"":""Co-founder & CEO""},{""name"":""Simon Hopkins"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://angelacademe.com/team-advisory-board"",""title"":""Co-founder & COO""},{""name"":""Yee Mun Thum"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://angelacademe.com/team-advisory-board"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.angelacademe.com/contact"",""investmentThesisFocus"":""https://www.angelacademe.com/investors"",""investorDescription"":""https://www.angelacademe.com/"",""portfolioHighlights"":""https://www.angelacademe.com/portfolio""},""websiteURL"":""http://www.angelacademe.com""}","Correctness: 98% Completeness: 90% - -The information presented is factually accurate regarding Angel Academe EIS Fund’s focus, investment thesis, geographic and sector focus, leadership, portfolio highlights, and fund structure as supported by multiple sources including Angel Academe’s official website and related announcements[1][2][3][4][5]. Key facts confirmed are: - -- The fund is the first UK EIS fund focused on female founders, particularly in tech startups with social impact such as health services and agriculture[1][2][3]. -- Target fundraise is around £1.2 million, aiming to invest in 7 to 10 early-stage companies with investment tickets circa £100,000-150,000 per opportunity[1][2][3]. -- It requires at least one woman in a founding or leadership role and invests alongside experienced angel investors through a thorough due diligence process[2][3]. -- The fund is run by a leadership team including Sarah Turner (Co-founder & CEO), Simon Hopkins (Co-founder & COO), and Yee Mun Thum (Managing Director)[3]. -- Portfolio companies include firms such as Béa Fertility and Good-Loop, and many others given in the portfolio highlights[2][5]. -- The fund offers tax-efficient investment options (EIS), mentoring, and post-investment support[1][2][5]. - -The correctness is slightly less than 100% mainly because the overall fund size (""Not Available"") and assets under management (""Over £150 million helped raised through backed businesses"") are indirectly derived or general statements from Angel Academe’s broader impact rather than a specific disclosed fund size; this is consistent with publicly available info that does not specify a total fund size but mentions the £1.2m fundraise target[1][2][3]. - -The completeness score is 90% because: -- The main investment parameters and portfolio are well documented. -- The exact geographic headquarters address is missing as noted, consistent with source info[3]. -- Some financial details like precise fund size or fees are not explicitly stated in the publicly available sources. -- The ongoing future plans (larger follow-up fund) are mentioned but not detailed thoroughly. - -Thus the provided data is reliable and thorough in core aspects, with minor gaps typical for early-stage funds in launch phase. - -Sources: -https://www.syndicateroom.com/angel-academe-eis -https://iiwhub.com/2025/06/angel-academe-launches-uks-first-female-led-eis-investment-fund/ -https://www.angelacademe.com/eis-fund -https://angelacademe.substack.com/p/announcing-the-first-eis-fund-focussed -https://www.sustainabletimes.co.uk/post/angel-academe-eis-fund-supports-portfolio-diversification" -"Black River Ventures ","http://www.brv.vc ","{""funds"":[{""estimatedInvestmentSize"":""USD 3,000,000 to 20,000,000"",""fundName"":""Black River Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Growth"",""Late Stage""],""sectorFocus"":[""Financial Services"",""Data Analytics/AI"",""Software/Services"",""IoT""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.brv.vc""}],""headquarters"":""Barcelona, ES"",""investmentThesisFocus"":[""Invest in innovative companies at growth and late stages."",""Focus on technology sectors including Financial Services, Data Analytics/AI, Software/Services, and IoT."",""Support visionary companies aiming to become industry leaders."",""Provide smart capital and leverage team expertise in European and US markets.""],""investorDescription"":""Black River Ventures (BRV) is an investor focused on growth and late-stage investments in innovative technology companies in Europe and the US, particularly in Financial Services, Data Analytics/AI, Software/Services, and IoT sectors. They provide capital ranging from $3M to $20M. BRV supports visionary companies aiming to become industry leaders by offering smart capital and leveraging team expertise in the EU and US."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Twist Bioscience"",""Homie"",""Glovo"",""WorldSensing"",""Coursera"",""Marqeta"",""Nav"",""Mirantis"",""Ayla Networks"",""Petnet""],""researcherNotes"":""No explicit headquarters address or assets under management (AUM) were found on the website. Fund size is not disclosed."",""seniorLeadership"":[{""name"":""Evgeny Kaltashev"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.brv.vc"",""title"":""Managing Partner""},{""name"":""Andrey Daleky"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.brv.vc"",""title"":""Partner""},{""name"":""Sergey Safronov"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.brv.vc"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/black-river-ventures-brv-"",""investmentThesisFocus"":""http://www.brv.vc"",""investorDescription"":""http://www.brv.vc"",""portfolioHighlights"":""http://www.brv.vc/#portfolio-section""},""websiteURL"":""http://www.brv.vc""}","Correctness: 100% Completeness: 85% - -The information provided about Black River Ventures (BRV) is **factually accurate** and aligns closely with official details from their website[1]. Key elements such as their focus on **growth and late-stage investments** in technology companies, investment size ranging from **$3 million to $20 million**, sectors of interest (**Financial Services, Data Analytics/AI, Software/Services, and IoT**), and geographic focus (**Europe and US**) are all confirmed. The description of BRV’s mission to provide smart capital and leverage team expertise in EU and US markets is also directly supported by their official statements[1]. The names and titles of senior leadership match those listed on their site. - -Regarding **completeness**, while the core investment thesis and portfolio highlights are accurate, some details remain missing or unclear compared to publicly available data—for example: - -- No explicit **fund size** or **assets under management (AUM)** information is publicly disclosed, which is noted but limits completeness. -- The **headquarters location** as Barcelona, ES is consistent with LinkedIn and brackets the official presence but the exact address is not publicly confirmed[1]. -- Portfolio highlights are listed but without deep detail on the extent or date of investments. -- Additional public information such as more granular team bios or historical fund performance is not included. - -Thus, the **correctness score is 100%** because no false or fabricated information is detected. The **completeness score is 85%** because while essential investment focus and strategy details are well covered, important standard fund details such as official fund size, exact headquarters address, and AUM remain unavailable or unconfirmed publicly. - -Sources: -[1] http://www.brv.vc -LinkedIn: https://www.linkedin.com/company/black-river-ventures-brv-" -"BlackFin Capital Partners ","https://www.blackfin.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BlackFin Capital Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Continental Europe"",""Western Europe""],""investmentStageFocus"":[""buyout"",""early-stage""],""sectorFocus"":[""financial services"",""FinTech"",""banking"",""insurance"",""payments"",""processing"",""outsourcing"",""brokerage"",""distribution"",""asset management"",""financial markets"",""software""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/""}],""headquarters"":""2 place Rio de Janeiro, 75008 Paris; Ulmenstrasse 37-39, 60325 Frankfurt am Main; 106 avenue Louise, 1050 Brussels; 43 Roemer Visscherstraat, 1054EW Amsterdam; 40 Bruton Street, London W1J 6QZ"",""investmentThesisFocus"":[""Focuses exclusively on financial services buyouts and FinTechs with two investment strategies: financing asset-light buyouts and cutting-edge FinTechs."",""Builds operational value by transforming operational complexity into value."",""Firm built by entrepreneurs and sector specialists emphasizing operational value creation."",""Has a multilocal presence with five offices across Western Europe for access to the best deals."",""Committed to investing with high ethical standards, integrity, and transparency.""],""investorDescription"":""Europe’s leading PE firm focusing exclusively on financial services buyouts and FinTechs; Founded by industry entrepreneurs, BlackFin is the sector leader with 2 strategies, 5 offices, 9 partners and a team of +50; Investment subsectors include banking, insurance, payments, processing, outsourcing, brokerage, distribution, asset management, financial markets, and financial technology; Value creation via operational transformation, organic growth and buy-and-build strategies; Geographic focus is Continental Europe; Business sector is asset-light services such as asset management, wealth management, brokerage, payments, processing, and software; BlackFin is committed to investing with the highest ethical standards, integrity, and transparency - pillars of their investment strategy."",""linkedDocuments"":[""https://www.blackfin.com/wp-content/uploads/2024/02/Politiquedeprventionetdegestiondesconflitsdintrts-Engversion-VFvrier2024.pdf"",""https://www.blackfin.com/wp-content/uploads/2022/10/2021-Report-Eneregy-Climate-Law.pdf""],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""October 2024"",""aumAmount"":""EUR 4bn"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/""},""portfolioHighlights"":[{""announcementDate"":""2024-05-18"",""companyName"":""INKA"",""sourcePostUrl"":""https://fr.linkedin.com/company/blackfin-capital-partners?trk=public_post_feed-actor-image"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2023-09-18"",""companyName"":""Fokus Nordic"",""sourcePostUrl"":""https://fr.linkedin.com/company/blackfin-capital-partners?trk=public_post_feed-actor-image"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2024-02-18"",""companyName"":""S64"",""sourcePostUrl"":""https://lnkd.in/e4gQq6Ry"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""No specific fund sizes or per-company estimated investment sizes were mentioned on the website. Portfolio companies were not listed explicitly. The AUM was explicitly found on the homepage."",""seniorLeadership"":[{""name"":""Sabine Mathis"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Partner""},{""name"":""Daniel Cohen-Sabban"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Partner, Equity Partner""},{""name"":""Damien Lestang"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Partner, Equity Partner""},{""name"":""Dr. Kai Franzmeyer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Partner, Equity Partner, Head of BlackFin in Germany""},{""name"":""Julien Creuzé"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Partner, Equity Partner, in charge of Venture team""},{""name"":""Jean-Philippe Latour"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Chief Financial Officer""},{""name"":""Eric May"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Founding Partner, Co-founder and Managing Partner""},{""name"":""Paul Mizrahi"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Founding Partner, Co-founder and Managing Partner""},{""name"":""Bruno Rostain"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Founding Partner, Co-founder and Managing Partner""},{""name"":""Aloysius Von Mitschke-Collande"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackfin.com/team/"",""title"":""Managing DIRECTOR""}],""sources"":{""funds"":""https://www.linkedin.com/company/blackfin-capital-partners/"",""headquarters"":""https://www.blackfin.com/contact/"",""investmentThesisFocus"":""https://www.blackfin.com/strategy/"",""investorDescription"":""https://www.blackfin.com/about-us/"",""overallAssetsUnderManagement"":""https://www.blackfin.com/"",""portfolioHighlights"":""https://www.linkedin.com/company/blackfin-capital-partners/"",""seniorLeadership"":""https://www.blackfin.com/team/""},""websiteURL"":""https://www.blackfin.com/""}","Correctness: 98% Completeness: 95% - -The provided information on BlackFin Capital Partners matches closely with authoritative sources. The headquarters and office addresses listed (Paris, Frankfurt, Brussels, Amsterdam, London) correspond exactly to the firm's official contact page[5] and are consistent with other profiles[2][4]. The firm's focus exclusively on financial services buyouts and FinTech, with two investment strategies (buyouts and FinTech ventures), aligns with BlackFin's About Us and Strategy pages[4]. The description of the firm's sectors (banking, insurance, payments, processing, outsourcing, brokerage, distribution, asset management, financial markets, software) and geographic focus on Continental/Western Europe is accurate[4]. - -The senior leadership names and titles match those listed on the official team page, confirming correctness[4]. The reported assets under management of approximately EUR 4bn as of October 2024 aligns with the latest fundraising info indicating a €985m recent close and total AUM in that range[3][4]. Portfolio highlights and investment thesis details reflect publicly stated strategies emphasizing operational transformation and ethical investing[4]. - -Minor discrepancy: One external source lists the Paris HQ address as 15 Rue de Laborde[1][2], while the provided data cites 2 place Rio de Janeiro, 75008 Paris[5]. This likely reflects either a relocated address or an alternative office. Since the company contact page is the primary source, the provided address is credible. - -Some fund sizes are marked ""Not Available"" which is consistent with lack of specific public disclosure on exact individual fund sizes for all funds, though overall AUM is known[3]. - -Overall, the information is factually sound, with thorough coverage of key aspects (investment focus, offices, leadership, AUM). The few minor address discrepancies and incomplete specific fund size data reduce correctness and completeness slightly but do not undermine overall accuracy. - -Sources: -- BlackFin official website, About Us and Contact pages: https://www.blackfin.com/about-us/, https://www.blackfin.com/contact/ -- Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/blackfin-capital-partners.html -- ZoomInfo company overview: https://www.zoominfo.com/c/blackfin-capital-partners/1131642214 -- Craft.co company locations: https://craft.co/blackfin-capital-partners/locations" -"Blackstone Innovations Investments ","https://www.blackstone.com/blackstone-innovations-investments/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blackstone Innovations Investments Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Financial Technology"",""Real Estate Technology"",""Cybersecurity"",""Enterprise Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/""}],""headquarters"":""345 Park Avenue, New York, NY 10154"",""investmentThesisFocus"":[""Early-stage investments in FinTech, PropTech, Cybersecurity, and Enterprise Technology sectors."",""Invest in companies benefiting from Blackstone's expertise and ecosystem to drive innovation and growth."",""Focus on enabling technology in alternative assets and capital markets infrastructure."",""Leverage deep domain knowledge in cybersecurity."",""Invest in enterprise software for business efficiency.""],""investorDescription"":""Blackstone is a leading alternative asset manager with a focus on private equity, real estate, credit & insurance, multi-asset investing, infrastructure, life sciences, growth, and energy transition. Their mission involves innovation and transformation through technology and sustainable business practices. The firm invests at scale behind early trends, supporting sectors like FinTech, PropTech, Cybersecurity, and Enterprise Technology."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":""Approximately $1.1 trillion (Blackstone overall AUM as of 2025, including all strategies)"",""portfolioHighlights"":[""iCapital"",""Pentera"",""Dealpath""],""researcherNotes"":""Estimated investment size per company was not explicitly disclosed on the company or subsidiary pages. The overall assets under management (AUM) figure is not mentioned on the website. There are no formal fund names, so the default company name plus \""Investment Strategy\"" was used."",""seniorLeadership"":[{""name"":""Stevi Petrelli"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/people/stevi-petrelli-2/"",""title"":""Managing Director and Head of Blackstone Innovations Investments""},{""name"":""John Stecher"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Chief Technology Officer and Head of Blackstone Technology and Innovations""},{""name"":""Eric Liaw"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Treasurer and Head of Corporate Development""},{""name"":""Rob Wisniewski"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Managing Director, Chief Software Architect and CTO of Client and Firmwide Platforms""},{""name"":""John Fitzpatrick"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Senior Managing Director and Chief Technology Officer of Alternative Asset Management Technology""},{""name"":""Adam Fletcher"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Senior Managing Director and Chief Security Officer""},{""name"":""Monty Hall"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Managing Director and Chief Technology Officer of Cloud, Platform & Developer Experience""},{""name"":""Adam Mattina"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blackstone.com/blackstone-innovations-investments/"",""title"":""Managing Director, Co-head Portfolio Technology Optimization team""}],""sources"":{""headquarters"":""https://blackstone.com/the-firm/our-offices"",""investmentThesisFocus"":""https://www.blackstone.com/blackstone-innovations-investments/"",""investorDescription"":""https://www.blackstone.com/blackstone-innovations-investments/"",""portfolioHighlights"":""https://www.blackstone.com/blackstone-innovations-investments/""},""websiteURL"":""https://www.blackstone.com/blackstone-innovations-investments/""}","Correctness: 98% Completeness: 85% - -The information about Blackstone Innovations Investments is highly factually accurate. The fund’s focus on **early-stage investments** in sectors like **FinTech, PropTech, Cybersecurity, and Enterprise Technology**, and the strategy to invest in companies that benefit from Blackstone’s ecosystem and domain expertise matches the official Blackstone Innovations Investments page[5]. The names and titles of senior leadership, including John Stecher as Chief Technology Officer and Head, are consistent with Blackstone’s website[5]. The stated headquarters at 345 Park Avenue, New York, NY is verified by Blackstone’s office listings[https://blackstone.com/the-firm/our-offices]. - -The description of Blackstone as a leading alternative asset manager with approximately $1.1 trillion in assets under management (AUM) aligns with publicly available data indicating Blackstone’s overall AUM around that mark as of 2025, though the exact site URL for that figure is not in the search results but is consistent with industry reports and Blackstone’s own disclosures[1][4]. - -However, certain quantitative details are missing or not explicitly disclosed publicly, such as **estimated investment size per company, fund size, and distinct formal fund names**. The researcher’s note about this absence is accurate and reflects a limitation in public data[5]. Also, while some portfolio highlights like iCapital, Pentera, and Dealpath are mentioned, these are not extensively detailed or fully verified in the searches; the portfolio is generally consistent with Blackstone’s areas of focus and prior investments. - -The completeness score is slightly lower due to these gaps: -- No specifics on fund size or capital commitments for the Innovations Investments vehicle. -- Lack of detailed AUM breakdown specifically for Innovations Investments rather than Blackstone overall. -- Unconfirmed or partial disclosure of portfolio company details beyond the named highlights. -- No detailed info on investment stage sizes or typical check sizes. - -The correctness is nearly complete because all stated claims are supported by Blackstone’s official innovation investments webpage and correlated industry knowledge[5]. - -**Sources:** - -- Blackstone Innovations Investments main page: https://www.blackstone.com/blackstone-innovations-investments/[5] - -- Blackstone headquarters: https://blackstone.com/the-firm/our-offices - -- Blackstone overall AUM and industry standing: https://www.blackstone.com/news/press/blackstone-strategic-partners-closes-largest-infrastructure-secondaries-fund-ever-raised-at-5-5-billion/[1], https://wtop.com/news/2025/09/the-top-10-largest-private-equity-firms-in-the-world-8/[4] - -These sources confirm the core factual correctness and reveal the legitimate gaps leading to incompleteness." -"Angelini Ventures ","https://www.angeliniventures.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Angelini Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""North America""],""investmentStageFocus"":[""Series A"",""Series B""],""sectorFocus"":[""BioTech"",""Digital Health"",""Life Sciences"",""Biotech (synthetic biology, gene editing, AI/ML, regenerative medicine)"",""Techbio (data, AI, biotech for drug development)"",""Connected Health Devices (data and AI-enabled treatment, diagnostics)"",""Digital Diagnostics & Digital Therapeutics"",""Hybrid Care Platforms (digital, virtual, and physical care)""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/approach/""}],""headquarters"":""Angelini Ventures S.p.A, Viale Amelia 70, Rome, Italy"",""investmentThesisFocus"":[""Invest in disruptive innovation in Digital Health and BioTech to scale promising entrepreneurs."",""Leverage capital, enterprise capabilities, and a network of founders, investors, and academic partners."",""Focus on companies that positively impact human health with smart solutions, breakthrough science, and technology."",""Support next-generation founders and teams leading digital transformation in healthcare."",""Target digital transformation that will improve care and outcomes, reinventing the patient journey.""],""investorDescription"":""Angelini Ventures is the venture capital firm of Angelini Industries investing €300 million globally in BioTech and Life Sciences companies, focusing on Digital Health and BioTech to improve healthcare. We invest in disruptive innovation in Digital Health and BioTech to scale promising entrepreneurs by leveraging capital, enterprise capabilities, and a network of founders, investors, and academic partners. We build and invest in companies that positively impact human health with smart solutions, breakthrough science and technology. Our vision for the future of healthcare guides our investment strategy. A data driven digital transformation will shape the future of healthcare."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 300,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/""},""portfolioHighlights"":[""Nuclidium"",""Elkedonia"",""TheriniBio"",""NuevoCor"",""Nobi"",""Vantis"",""Neumirna"",""Nouscom AG"",""Avation Medical""],""researcherNotes"":""AUM is explicitly stated as €300 million on the homepage. No distinct fund names or sizes were found; the strategy is presented as a single unified approach focused on BioTech and Digital Health sectors with investment primarily in Series A and B rounds across Europe and North America."",""seniorLeadership"":[{""name"":""Paolo Di Giorgio"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/team/"",""title"":""CEO and Managing Director""},{""name"":""Elia Stupka"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/team/"",""title"":""Managing Director""},{""name"":""Tanja Dowe"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/team/"",""title"":""Managing Director""},{""name"":""Regina Hodits"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/team/"",""title"":""Managing Director""},{""name"":""Gabriela Manrique"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.angeliniventures.com/team/"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.angeliniventures.com/contact/"",""investmentThesisFocus"":""https://www.angeliniventures.com/approach/"",""investorDescription"":""https://www.angeliniventures.com/"",""portfolioHighlights"":""https://www.angeliniventures.com/portfolio/""},""websiteURL"":""https://www.angeliniventures.com/""}","Correctness: 98% Completeness: 90% - -The provided information about Angelini Ventures is largely factually accurate based on multiple authoritative sources. The firm is indeed the venture capital arm of Angelini Industries, headquartered in Rome, Italy at Viale Amelia 70, matching the stated address[2][5]. It manages approximately €300 million in assets under management with a clear focus on BioTech, Digital Health, and Life Sciences sectors working to transform healthcare through disruptive innovation and digital transformation[3][4]. The investment focus includes Series A and B stages, and geographic emphasis on Europe and North America is consistent with external profiles[1][3]. - -The senior leadership names listed (Paolo Di Giorgio as CEO, and others such as Gabriela Manrique and Regina Hodits as managing directors/partners) also align with information on the official site and related profiles[1][4]. - -The portfolio highlights (e.g., Nuclidium, Elkedonia, TheriniBio, Nouscom AG) similarly correspond with portfolio data on the official website[4]. - -The primary limitation is lack of publicly available distinct fund names or sizes within the €300 million capital commitment; the strategy is presented as a unified investment approach rather than multiple separate funds. Therefore, the fields ""fundSize"" and ""estimatedInvestmentSize"" are marked as ""Not Available,"" which correctly reflects the publicly accessible data[4]. The slight deduction in completeness is due to this missing granularity and the absence of specific dates for AUM figures, though the total capital commitment is current and consistent across sources. - -URLs used: -- https://www.angeliniventures.com/ -- https://www.angeliniventures.com/approach/ -- https://www.angeliniventures.com/contact/ -- https://www.privateequityinternational.com/institution-profiles/angelini-ventures.html -- https://www.eu-startups.com/investor/angelini-ventures/ -- https://www.angeliniindustries.com/en/locations-and-contacts/offices-and-contacts/" -"Bioverge ","https://bioverge.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bioverge Access Fund I"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Emerging startups""],""sectorFocus"":[""Healthcare"",""Life Sciences"",""Technology""],""sourceUrl"":""https://bioverge.com/bioverge-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bioverge Access Fund II"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Emerging startups""],""sectorFocus"":[""Healthcare"",""Life Sciences"",""Technology""],""sourceUrl"":""https://bioverge.com/bioverge-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bioverge Access Fund III"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Emerging startups""],""sectorFocus"":[""Healthcare"",""Life Sciences"",""Technology""],""sourceUrl"":""https://bioverge.com/bioverge-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bioverge Access Fund IV"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Emerging startups""],""sectorFocus"":[""Healthcare"",""Life Sciences"",""Technology""],""sourceUrl"":""https://bioverge.com/bioverge-funds""}],""headquarters"":""447 Sutter St Ste 405, San Francisco, CA 94108"",""investmentThesisFocus"":[""Invest in emerging healthcare startups leveraging deep domain expertise."",""Focus on transformative technologies and disease areas including longevity, cancer, and digital health."",""Offer diversified investment options through Access Funds, Deal-By-Deal, and Thematic Funds."",""Target accredited investors providing private, illiquid investment opportunities."",""Leverage a strong network for supporting portfolio companies.""],""investorDescription"":""Bioverge is a healthcare venture capital platform democratizing access to cutting-edge innovation in healthcare and life sciences. Their mission is to enable investments in startups transforming healthcare and impacting important causes, leveraging deep domain expertise and a strong network. Bioverge primarily focuses on emerging healthcare startups through various investment options including Access Funds, Deal-By-Deal investing, and Thematic Funds targeting specific technologies or disease areas such as longevity, cancer, and digital health. The firm caters to accredited investors (both individual and entities) and offers investment opportunities that are private and illiquid."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":""$5.5M+ raised since inception, with portfolio value projections exceeding $5M at 5x returns and over $10M at 10x returns (estimated, not officially disclosed)"",""portfolioHighlights"":[""Ancilia Biosciences"",""Alto Neuroscience"",""Aspen Neuroscience"",""Blue Mesa Health"",""BioROSA Technologies"",""Bionaut Labs"",""Circularis Biotechnologies"",""CrowdMed"",""Ochre Bio"",""Octagon Therapeutics""],""researcherNotes"":""AUM and specific fund size or estimated investment size information are not mentioned or available on the website or related pages."",""seniorLeadership"":[{""name"":""Rick Gibb"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bioverge"",""title"":""Co-Founder / Investment Partner / COO""},{""name"":""Neil Littman"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bioverge"",""title"":""Founder & General Partner""}],""sources"":{""headquarters"":""https://bioverge.com/contact"",""investmentThesisFocus"":""https://bioverge.com/investment-thesis"",""investorDescription"":""https://bioverge.com/"",""portfolioHighlights"":""https://bioverge.com/portfolio""},""websiteURL"":""https://bioverge.com/""}","Correctness: 98% Completeness: 85% - -The provided information about Bioverge is factually accurate based on multiple official sources including Bioverge’s website and affiliated investment platforms. Bioverge operates healthcare-focused Access Funds (I-IV), emphasizing investments in emerging startups within healthcare, life sciences, and technology sectors, which aligns with the stated investment stage and sector focuses[1][2][5]. The headquarters address in San Francisco matches the contact info on Bioverge’s site[1]. The description of Bioverge’s mission, investor base (accredited investors), investment types (Access Funds, Deal-by-Deal, Thematic Funds), and portfolio highlights are consistent with information on their site and related sources[1][2][3][4]. - -The reported overall assets under management ($5.5M+ raised since inception) and portfolio value projections align with publicly shared data indicating a $5.5M+ aggregate raise, with unrealized returns estimated at 5x-$10x value multipliers but lacking official audited AUM disclosure[3]. Senior leadership named (Rick Gibb and Neil Littman) and their titles are verified through LinkedIn sources linked on Bioverge’s website. - -The main reason the completeness score is reduced is due to several critical fields being marked ""Not Available,"" including the fund sizes and estimated investment sizes for each Access Fund (I-IV), as these details are not publicly disclosed on Bioverge’s site or other official records[1][2]. While this lack of transparency is common for some venture funds, it limits the ability to fully assess fund scale and investment minimums beyond general statements. Geographic focus is also unspecified in the data but typically Bioverge primarily targets US-based investments though accepting international accredited investors[1][2]. Despite broad thematic and sectoral focus, geographic detail remains missing. - -In summary, the factual correctness is very high with no apparent false or fabricated claims. The main gap lies in incomplete disclosure of quantitative fund-level metrics such as fund sizes and investment ticket size specifics, lowering completeness relative to industry-standard transparency. Sources used include Bioverge official pages on funds, investment thesis, faq, and public investment platforms: - -- https://bioverge.com/bioverge-funds -- https://bioverge.com/investment-thesis -- https://bioverge.com/ -- https://netcapital.com/companies/bioverge -- https://republic.com/bioverge -- https://www.bioverge.com/faqs" -"Bits x Bites ","http://www.bitsxbites.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 1 million to 5 million"",""fundName"":""Bits x Bites Investment Strategy"",""fundSize"":""USD 100,000,000"",""fundSizeSourceUrl"":""https://agfundernews.com/bits-x-bites-hits-100m-final-close-syngenta-wilbur-ellis-invest"",""geographicFocus"":[""China""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Agriculture"",""Food Technology""],""sourceProvider"":""AgFunderNews"",""sourceUrl"":""https://agfundernews.com/bits-x-bites-hits-100m-final-close-syngenta-wilbur-ellis-invest""}],""headquarters"":""Shanghai, China"",""investmentThesisFocus"":[""Invest in early-stage startups with transformative technologies addressing critical challenges in China's food system"",""Build a better food future through multidisciplinary collaboration"",""Foster an ecosystem including startups, investors, and corporations""],""investorDescription"":""Bits x Bites is an agriculture and food tech venture capital firm based in Shanghai that invests in early-stage startups with transformative technologies aimed at addressing critical challenges in the food system in China. Their investment thesis focuses on building a better food future through a multidisciplinary team approach and fostering an ecosystem involving startups, investors, and corporations."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Cataya Bio"",""Changjin Biotechnology"",""MojiaBio"",""MoA Technology"",""Aikenong"",""Next Gen Foods"",""Believer Meats""],""researcherNotes"":""Overall Assets Under Management (AUM) is not explicitly stated on the website. Fund size and ticket size were found on a reputable external news source. No direct links to documents like PDFs were found on the official site."",""seniorLeadership"":[{""name"":""Matilda Ho"",""sourceProvider"":""Crunchbase"",""sourceUrl"":""https://www.crunchbase.com/organization/bits-x-bites"",""title"":""Founder and Managing Director""},{""name"":""Joseph Zhou"",""sourceProvider"":""Crunchbase"",""sourceUrl"":""https://www.crunchbase.com/organization/bits-x-bites"",""title"":""Investment Partner""}],""sources"":{""headquarters"":""http://www.bitsxbites.com/contact"",""investmentThesisFocus"":""http://www.bitsxbites.com"",""investorDescription"":""http://www.bitsxbites.com"",""portfolioHighlights"":""https://www.crunchbase.com/organization/bits-x-bites""},""websiteURL"":""http://www.bitsxbites.com""}","Correctness: 95% Completeness: 90% - -The information provided about Bits x Bites is largely factually accurate and well-supported by multiple credible sources. The fund size of around USD 100 million at final close, investment ticket size range (USD 1 million to 5 million), geographic focus on China, sector focus on agriculture and food technology, investment stages (Seed to Series B), and their mission of transformative technologies addressing China’s food system challenges are all consistent with reports from AgFunderNews and Bits x Bites’ own website[2][3][4]. The description of Bits x Bites as a Shanghai-based agrifood tech venture capital firm with a multidisciplinary team and ecosystem-building approach also matches their official statements[4]. - -Fund size: Confirmed as USD 100 million at final close[2][3] -Ticket size: Initially $1M-3M, updated to $5M upper limit[2] -Investment focus: Early-stage Chinese food/agtech startups with transformative tech[2][4] -Senior leadership: Matilda Ho (Founder/Managing Director), Joseph Zhou (Investment Partner) per Crunchbase, aligns with the data[4] - -Some minor discrepancies arise from older fund raises mentioning a $70 million target or a $30 million first close, but the final close at $100 million is the latest and definitive figure[1][2][3]. - -Completeness is slightly reduced due to the missing explicit statement of overall Assets Under Management (AUM), which is usually a key data point. Although the fund size for the current vehicle is known, the total AUM (across all funds or strategies) is not publicly stated or found, as noted by the researcher’s notes. Furthermore, no direct official documents (e.g., PDFs) were found online for verification, which slightly impacts completeness. - -Portfolio highlights like Mojia Bio and Next Gen Foods are confirmed investments from news sources, supporting those claims[1][2]. - -In summary, the data is highly accurate with strong source backing (AgFunderNews, Bits x Bites website, Crunchbase), but modestly incomplete on total AUM and direct document links, which lowers but does not undermine the overall confidence. - -Sources: -https://agfundernews.com/bits-x-bites-hits-100m-final-close-syngenta-wilbur-ellis-invest -https://agfundernews.com/bits-x-bites-raises-30m-for-new-china-fund-backs-mojia-bio -https://www.bitsxbites.com -https://www.crunchbase.com/organization/bits-x-bites" -"BioMedPartners ","http://www.biomedvc.com ","{""funds"":[{""estimatedInvestmentSize"":""Up to CHF 10 million over the lifetime of portfolio companies"",""fundName"":""BioMedInvest III L.P."",""fundSize"":""CHF 100,000,000"",""fundSizeSourceUrl"":""https://www.swissbiotech.org/listing/biomedpartners-close-their-new-healthcare-venture-fund-biomedinvest-iii-at-chf-100-million/"",""geographicFocus"":[""Switzerland"",""Germany"",""Neighbouring EU countries""],""investmentStageFocus"":[""Early Stage"",""Mid Stage""],""sectorFocus"":[""Biotechnology"",""Pharmaceuticals"",""Medtech""],""sourceProvider"":""Crunchbase/LinkedIn"",""sourceUrl"":""https://www.swissbiotech.org/listing/biomedpartners-close-their-new-healthcare-venture-fund-biomedinvest-iii-at-chf-100-million/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BioMedInvest II L.P."",""fundSize"":""CHF 106,000,000"",""fundSizeSourceUrl"":""https://biomedvc.com/en/portfolio"",""geographicFocus"":[""Switzerland"",""Germany"",""Neighbouring EU countries""],""investmentStageFocus"":[""Early Stage"",""Mid Stage""],""sectorFocus"":[""Biotechnology"",""Pharmaceuticals"",""Medtech""],""sourceUrl"":""https://biomedvc.com/en/portfolio""}],""headquarters"":""Elisabethenanlage 11, CH-4051 Basel, Switzerland; Suites 7 and 8, Windsor House, Le Pollet, St Peter Port, Guernsey, GY1 1WF"",""investmentThesisFocus"":[""Focus on innovations in biotech sector and life sciences."",""Target breakthroughs addressing significant unmet medical needs."",""Invest in early-stage companies developing novel therapeutics and technologies."",""Primarily invest in Switzerland, Germany, and neighboring EU countries.""],""investorDescription"":""BioMedPartners (BioMedVC) is a leading Swiss early-stage venture capital focused on European biotech, building companies around innovative health science to deliver new medicines. BioMedPartners is a leading life science venture capital firm in Central Europe. \nBioMedVC focuses on innovations in the biotech sector, targeting breakthroughs in life sciences and healthcare. Their primary focus is on early-stage companies developing novel therapeutics and technologies that address significant unmet medical needs."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2018-03-01"",""aumAmount"":""CHF 100,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.swissbiotech.org/listing/biomedpartners-close-their-new-healthcare-venture-fund-biomedinvest-iii-at-chf-100-million/""},""portfolioHighlights"":[""Humedics GmbH"",""ImevaX GmbH"",""Inotrem S.A."",""Middle Peak Medical"",""Miracor Medical Systems GmbH"",""Sequana Medical AG"",""Vaximm AG"",""Ventaleon GmbH"",""4-Antibody AG"",""Thommen Medical""],""researcherNotes"":""AUM and fund sizes are explicitly mentioned only for BioMedInvest II and III funds. The estimated investment size is not publicly provided on the website or accessible pages. The estimated investment size for BioMedInvest III is up to CHF 10 million over the lifetime of portfolio companies according to Crunchbase/LinkedIn data."",""seniorLeadership"":[{""name"":""Dr. Markus Hosang"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""General Partner""},{""name"":""Thomas Möller"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""General Partner""},{""name"":""Stefan Fäs"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""CFO / Partner""},{""name"":""Dr. Michael Wacker"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""General Partner""},{""name"":""Dr. Valentin Piëch"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""Partner""},{""name"":""Dr. Dr. h.c. Henri B. Meier"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""Chairman of the board of BioMedPartners AG""},{""name"":""Prof. Dr. Andrea Pfeifer"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""Chairwoman of the board of BioMedInvest AG I and BioMedInvest AG II""},{""name"":""Dr. Ulrich Vischer"",""sourceProvider"":""BioMedPartners website"",""sourceUrl"":""https://biomedvc.com/en/team"",""title"":""Chairman BioMedPartners AG""},{""name"":""Markus Ewert"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/biomedpartners"",""title"":""Founder & Managing Director""}],""sources"":{""headquarters"":""https://biomedvc.com/en/contact"",""investmentThesisFocus"":""https://biomedvc.com/en/news"",""investorDescription"":""https://biomedvc.com/en/biomedvc"",""portfolioHighlights"":""https://biomedvc.com/en/portfolio""},""websiteURL"":""http://www.biomedvc.com""}","Correctness: 98% Completeness: 95% - -The provided information about BioMedPartners and its funds BioMedInvest II and III is factually accurate and well-supported by multiple reliable sources. Confirmed details include: - -- **Fund sizes:** BioMedInvest III closed at CHF 100 million and BioMedInvest II at CHF 106 million[3][5]. -- **Investment focus:** Both funds invest primarily in early and mid-stage companies in biotechnology, pharmaceuticals, and medtech sectors, focusing on Switzerland, Germany, and neighboring EU countries[3][5]. -- **Estimated investment size:** For BioMedInvest III, an investment size of up to CHF 10 million per company over its lifetime is plausible and matches external mention on Crunchbase and LinkedIn data, as no official public estimate is published[5]. -- **Headquarters:** The dual locations in Basel, Switzerland, and Guernsey, Channel Islands, align with details from the official site and fund domiciliation[4][5]. -- **Leadership:** The named senior leadership team and titles correspond exactly with BioMedPartners’ official website[5]. -- **Investment thesis and portfolio highlights:** The emphasis on early-stage breakthrough biotech innovations addressing unmet medical needs in targeted regions is consistent with official statements and portfolio companies disclosed by BioMedPartners[3][5]. -- **Reputation:** The description of BioMedPartners as a leading early-stage life science venture capital in Central Europe is supported by multiple external news sources and the firm’s own profile[1][2][3]. - -The slight incompleteness arises mainly because some estimated investment sizes (e.g., for BioMedInvest II) are not publicly available, and some details on exact portfolio company investments and milestones beyond key highlights may be missing. Also, data on the overall assets under management citing an as-of-date of 2018-03-01 could be considered outdated as newer updates may exist but were not found in the search results. - -URLs used: -https://www.swissbiotech.org/listing/biomedpartners-close-their-new-healthcare-venture-fund-biomedinvest-iii-at-chf-100-million/ -https://biomedvc.com/en/portfolio -https://www.startupticker.ch/en/news/biomedpartners-close-their-new-healthcare-venture-fund-at-chf-100-million -https://baselaunch.ch/2018/03/06/biomedpartners-venture-capital-fund/ -https://www.bailiwickexpress.com/guernsey-media-releases/biomedpartners-raise-chf-75-million-first-closing-healthcare-venture-fund/" -"Big Sur Ventures ","https://www.bigsurventures.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100,000 - 1,000,000"",""fundName"":""Big Sur Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Spain""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A""],""sectorFocus"":[""Technology"",""Deep Tech"",""Software"",""Internet"",""Information Technology"",""Quantum"",""AI"",""Materials"",""Photonics"",""Microelectronics"",""Nanotech""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bigsurventures.vc/en/about""}],""headquarters"":""Orense, 33, 3ºB, 28020 Madrid, Spain"",""investmentThesisFocus"":[""Invest in companies with breakthrough products and services that have the potential to become global leaders and transform markets."",""Focus on software, internet, information technology, quantum, AI, materials, photonics, microelectronics, nanotech."",""Comfortable with early-stage rough edges, supporting founders from day one."",""Provide hands-on support including operational guidance, capital, and network access."",""Target companies at early stages with initial metrics or key differential intellectual property.""],""investorDescription"":""Big Sur Ventures partners early with extraordinary founders across sectors, focusing on early-stage investments (Pre-Seed to Series A) in technology-based companies, particularly in Deep Tech and Power of Internet themes. They have over 50 years of experience as serial entrepreneurs and provide hands-on support including operational guidance, capital, and network access. Big Sur Ventures invests early in people with deep conviction in great ideas, comfortable with early-stage rough edges, and helps founders from day one. They target innovative companies producing breakthrough products and services with transformative benefits to a market, focusing on early stages with initial metrics or key differential IP."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Ciudadela"",""Pal"",""Supportwave"",""Trucksters"",""Submer"",""Smart Protection"",""Reveni"",""Reby"",""Rebag"",""ProcessLabs""],""researcherNotes"":""AUM is not mentioned on the website and no explicit total fund sizes are available. The estimated investment size is sourced from the 'About' page mentioning first investments between €100k and €1M."",""seniorLeadership"":[{""name"":""Ismael Almazán"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Partner""},{""name"":""Joaquín Azpilicueta"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Operating Partner""},{""name"":""Francisco Berlanga"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Venture Partner""},{""name"":""Sergio Choclán"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Partner""},{""name"":""Carlos Galve"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Partner""},{""name"":""León Herrera"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Principal""},{""name"":""Jose Miguel Herrero"",""sourceUrl"":""https://www.bigsurventures.vc/en/team"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://www.bigsurventures.vc/en/home"",""investmentThesisFocus"":""https://www.bigsurventures.vc/en/home"",""investorDescription"":""https://www.bigsurventures.vc/en/home"",""portfolioHighlights"":""https://www.bigsurventures.vc/en/portfolio""},""websiteURL"":""https://www.bigsurventures.vc/""}","Correctness: 98% Completeness: 85% - -The factual correctness of the information is very high. The headquarters address is accurately stated as Orense, 33, 3ºB, 28020 Madrid, Spain, consistent with official sources including the privacy policy and institutional profiles[3][4]. The investment focus on early-stage rounds (Pre-Seed to Series A), the sector emphasis on deep tech including quantum, AI, software, internet, materials, photonics, microelectronics, and nanotech, as well as the geographic focus on Spain, all align well with the details found on Big Sur Ventures' official website and public profiles[1][3][5]. The description of their investment thesis—supporting breakthrough technologies and founders from day one with hands-on involvement and network access—is consistent with their own language on their site[5]. The senior leadership names and titles provided correspond correctly with those listed in their official team page[5]. - -However, the completeness score is lower mainly due to the absence of **overall assets under management (AUM)** and **fund size figures**, which are not publicly available or clearly disclosed by Big Sur Ventures[3]. The estimated investment size range (€100k to €1M) is supported by statements indicating typical first investments of this scale on their ""About"" page[5]. Also, while there is mention of portfolio highlights such as Ciudadela, Pal, and others, there is no exhaustive list or performance data available publicly to fully assess the portfolio comprehensiveness. Additionally, details such as fund closing dates and historical fund sizes are missing, which are often part of a complete fund profile[3]. - -To summarize: - -- The information is factually very accurate, well-aligned with multiple authoritative sources. -- Key missing fields are total assets under management, specific fund sizes, and detailed performance/exits data. -- The provided investment thesis, sector and stage focus, leadership, and geographic data are well supported by the official web presence. - -Sources used: -- Big Sur Ventures official site (https://www.bigsurventures.vc/en/about), (https://www.bigsurventures.vc/en/team), (https://www.bigsurventures.vc/en/home), (https://www.bigsurventures.vc/en/portfolio) -- Private Equity International (https://www.privateequityinternational.com/institution-profiles/big-sur-ventures.html) -- Andorra Startup Ecosystem (https://ecosystem.andorra-startup.com/investors/big_sur_ventures/) -- The Org (https://theorg.com/org/big-sur-ventures/offices/hq) -- Privacy Policy (https://www.bigsurventures.vc/en/privacy-policy)" -"Bionova Capital ","http://www.bionovacapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Biovance Capital Fund I"",""fundSize"":""EUR 60,000,000"",""fundSizeSourceUrl"":""https://www.bionovacapital.com/news_2024_01_09.html"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Biotech"",""Life Sciences""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bionovacapital.com/news_2024_01_09.html""}],""headquarters"":""Estrada do Paço do Lumiar, Campus do Lumiar, Edifício R, 1649-038 Lisboa, Portugal"",""investmentThesisFocus"":[""Focus on early-stage life science and biotech companies."",""Investments are primarily in European companies."",""Track record includes profitable exits, indicating a focus on value creation and successful scaling."",""The transition to Biovance Capital Partners signals a strategic focus on biotech with a substantial fund size.""],""investorDescription"":""Bionova Capital is a healthcare-specialized venture capital firm based in Lisbon, Portugal, focused on early-stage life science startups across Europe. From 2015 to 2024, it invested in such startups and had two profitable exits, including a major biotech deal with CellmAbs. In 2023, the team launched Biovance Capital Partners, an independent venture capital firm with a fund of up to EUR 60 million targeting early-stage biotech companies across Europe. Bionova Capital stopped new investments in 2024 and now manages its current portfolio."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Anybrain"",""CellmAbs"",""Adapttech"",""Delox"",""SolasCure"",""Vaxdyn""],""researcherNotes"":""Overall Assets Under Management (AUM) is not mentioned on the website. Estimated investment size per company is not specified for Biovance Capital Fund I. The fund size of EUR 60 million is explicitly mentioned in a news release. The former Bionova Capital active investment phase ended in 2024, now only managing its portfolio."",""seniorLeadership"":[{""name"":""Ricardo Perdigão Henriques, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bionovacapital.com/team.html"",""title"":""CEO""},{""name"":""Peter Villax"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bionovacapital.com/team.html"",""title"":""Chairman""},{""name"":""João Botelho"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bionovacapital.com/team.html"",""title"":""Finance Director""}],""sources"":{""headquarters"":""http://www.bionovacapital.com/index.html"",""investmentThesisFocus"":""http://www.bionovacapital.com/index.html"",""investorDescription"":""http://www.bionovacapital.com/index.html"",""portfolioHighlights"":""http://www.bionovacapital.com/portfolio.html""},""websiteURL"":""http://www.bionovacapital.com/""}","Correctness: 100% Completeness: 90% - -The provided information about Bionova Capital and its transition to Biovance Capital Partners is fully accurate and well supported by the official Bionova Capital website [1]. Key facts such as the firm's focus on early-stage life science and biotech companies in Europe, the EUR 60 million fund size for Biovance Capital Fund I, the cessation of new investments by Bionova Capital after 2024, and the successful exit with CellmAbs are all explicitly confirmed [1]. Senior leadership details (CEO Ricardo Perdigão Henriques, Chairman Peter Villax, Finance Director João Botelho) also align with the company’s published team page [1]. - -Additionally, the portfolio companies mentioned (Anybrain, CellmAbs, Adapttech, Delox, SolasCure, Vaxdyn) are consistent with publicly reported investments and capital participation announcements, such as the investment in Vaxdyn with Bionova Capital involvement [4]. - -The only notable incompleteness is the absence of explicit disclosure of the overall Assets Under Management (AUM) and estimated investment size per company, acknowledged by both the summary and website [1]. While the total fund size of EUR 60 million for Biovance Capital Fund I is clear, neither Bionova Capital nor Biovance publicly details overall AUM. Furthermore, estimated investment sizes per portfolio startup are not provided. There is no contradictory or fabricated data present. - -Other external sources about Bionova Scientific (operating in the U.S. and related to Asahi Kasei) in [3][5] are separate entities and thus do not affect the correctness of the venture capital information given here. - -Sources: -- https://bionovacapital.com (confirmed investment thesis, fund size, leadership, portfolio) [1] -- https://vaxdyn.com/vaxdyn-brings-muscle-to-its-strategy-with-new-investments-from-bionova-capital-and-arquimea-group/ (portfolio investment example) [4] - -In sum, the profile is factually accurate and captures essential details. The small completeness penalty is due to missing AUM and estimated investment sizes, which are not publicly available." -"BioMotiv ","http://www.biomotiv.com ","""""", -"Bill & Melinda Gates Foundation ","http://www.gatesfoundation.org ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Strategic Investment Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""South Asia"",""Sub-Saharan Africa"",""Developing countries"",""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Agriculture & Nutrition"",""Inclusive Financial Systems"",""Healthcare Delivery"",""Life Sciences"",""U.S. Education & Opportunity"",""Women's Innovation""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.gatesfoundation.org/about/how-we-work/strategic-investments""}],""headquarters"":""Seattle, WA"",""investmentThesisFocus"":[""Partner with private sector to leverage global innovations for societal progress."",""Believe private sector can address major global challenges with long-term impact and Global Access commitments."",""Use strategic investments and customized capital tailored to each opportunity, including venture capital investing, debt, and bespoke structured financing."",""Support companies through strategic partnerships, access to experts, impact evaluations, technical assistance, and promoting gender equality by assessing equity metrics and supporting diversity in boards and leadership.""],""investorDescription"":""We are a nonprofit fighting poverty, disease, and inequity around the world. Our mission is to make a meaningful difference through committed grants and strategic investments. We primarily provide committed grants to organizations for measurable impact and fund entrepreneurs and companies to harness private enterprise for change. We engage deeply with grantees and partners to develop and execute strategies, focusing on measurable results with transparent communication."",""linkedDocuments"":[""https://docs.gatesfoundation.org/Documents/OI%20Overview%20Deck_gf.pptx""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The foundation does not explicitly state an overall AUM or estimated investment sizes on the website. Portfolio company names are not listed on the site’s portfolio sections either. The headquarters address is not published on the contact or other pages on the site."",""seniorLeadership"":[{""name"":""Melinda French Gates"",""sourceUrl"":""https://gatesfoundation.org/about/leadership/melinda-french-gates"",""title"":""Co-Chair""},{""name"":""William H. Gates Sr."",""sourceUrl"":""https://gatesfoundation.org/about/leadership/william-h-gates-sr"",""title"":""Co-Chair""},{""name"":""Warren Buffett"",""sourceUrl"":""https://gatesfoundation.org/about/leadership/warren-buffett"",""title"":""Board Member""},{""name"":""Mark Suzman"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/gates-foundation"",""title"":""CEO""}],""sources"":{""headquarters"":""https://www.gatesfoundation.org/about/contact"",""investmentThesisFocus"":""https://sif.gatesfoundation.org/investment-approach"",""investorDescription"":""https://www.gatesfoundation.org/about/how-we-work"",""portfolioHighlights"":""https://sif.gatesfoundation.org/portfolio""},""websiteURL"":""http://www.gatesfoundation.org""}","Correctness: 98% Completeness: 85% - -The information is highly factually accurate and aligns well with publicly available official sources from the Gates Foundation and its Strategic Investment Fund (SIF). The Strategic Investment Fund is indeed a part of the Gates Foundation focused on deploying strategic investments to support programmatic goals, leveraging private sector innovation in developing countries (including South Asia and Sub-Saharan Africa) as well as the United States. The fund uses a variety of investment stages, including venture capital, debt, and bespoke financing, tailored to each opportunity to address global challenges in sectors such as agriculture, nutrition, healthcare delivery, life sciences, inclusive financial systems, women’s innovation, and education[3][4][5]. The thesis about partnering with the private sector, promoting gender equity, and supporting companies via strategic partnerships and expertise also matches the foundation’s documented approach[5]. The description of senior leadership including Melinda French Gates as Co-Chair, William H. Gates Sr. as Co-Chair, Warren Buffett as Board Member, and Mark Suzman as CEO is consistent with authoritative sources. - -However, the completeness score is lower (85%) because certain important details are missing or not publicly available. For example, the exact overall Assets Under Management (AUM) of the fund is not disclosed on the Gates Foundation or SIF websites. The estimated investment sizes and detailed portfolio highlights (such as names of portfolio companies) are also not provided publicly, as confirmed in the researcher notes and official FAQs[3]. Although the fund was initially launched with a $400 million pilot and reportedly grew to a $2.5 billion effort, precise current total assets are not transparent[2]. The headquarters location given as Seattle, WA is consistent with the Gates Foundation headquarters address but not explicitly listed on the SIF pages. These omissions limit the thoroughness of the information relative to all publicly available knowledge. - -URLs used: -https://www.gatesfoundation.org/about/how-we-work/strategic-investments -https://sif.gatesfoundation.org/investment-approach -https://sif.gatesfoundation.org/faq -https://devex.com/organizations/bill-melinda-gates-foundation-strategic-investment-fund-180486 -https://www.gatesfoundation.org/about/leadership/melinda-french-gates -https://www.gatesfoundation.org/about/leadership/william-h-gates-sr -https://www.gatesfoundation.org/about/leadership/warren-buffett -https://www.linkedin.com/company/gates-foundation -https://www.gatesfoundation.org/about/contact" -"BioCity Group ","http://www.biocity.co.uk/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Pioneer Life Sciences EIS Knowledge Intensive Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK""],""investmentStageFocus"":[""Pre-Seed"",""Seed""],""sectorFocus"":[""Life Sciences"",""Therapeutic Platforms"",""Diagnostics"",""Medical Technologies"",""Discovery and Development Services"",""Digital Health"",""Pharma Tech""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/investment""}],""headquarters"":""Pioneer Group, St Christopher’s House, 27 St Christopher’s Place, London, W1U 1NZ, UK"",""investmentThesisFocus"":[""Invests primarily in early-stage life sciences companies, focusing on pre-seed and seed funding."",""Prefers to be the first investor in companies."",""Focus on therapeutic platforms, diagnostics, medical technologies, discovery and development services, and digital health/pharma tech."",""Investment often directed towards companies connected through Accelerator Programme or based at UK sites."",""Post-investment support includes advice and networking.""],""investorDescription"":""BioCity Group is part of the Pioneer Group, a leading vertically integrated platform focusing on innovation ecosystems. They own, develop, and operate multiple innovation-focused campuses. Their investment activities include accelerator programmes and an internal VC fund designed to turn ideas into reality. The investment process includes review by an advisory panel of life science entrepreneurs and investors. They provide support through advice and networking."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Biobest Laboratories Limited"",""HAON Life Sciences"",""Benchmark Animal Health"",""CHAIN Biotechnology Ltd"",""Virology Research Services Ltd"",""Freenome Limited"",""Locate Bio"",""Auranta"",""NuVision Biotherapies""],""researcherNotes"":""Overall Assets Under Management and specific fund sizes and estimated investment sizes are not disclosed on the website or related Pioneer Group pages."",""seniorLeadership"":[{""name"":""Toby Reid"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Executive Director""},{""name"":""Dr Glenn Crocker"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Executive Director""},{""name"":""Richard O’Boyle"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Executive Director""},{""name"":""Simon Hoad"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Executive Director""},{""name"":""Paul Oliver"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Executive Director""},{""name"":""Ashish Darekar"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Head of Lab Services""},{""name"":""Miranda Knaggs"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Ayokunmi Ajetunmobi"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Gemma Partington"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Harry Pickering"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Portfolio Director & Head of UK Investment""},{""name"":""Chris Walters"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Portfolio Director & European Acquisitions Lead""},{""name"":""Henry Oladele"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Portfolio Finance Analysis Director""},{""name"":""Dr Imelda J"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Lead Investment Director""},{""name"":""Fiona Nielsen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Launch Programme Director""},{""name"":""John Mackenzie"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Jeroen Houtzager"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""James Latham"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Subjit Jassy"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Fred Reynolds"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Director""},{""name"":""Mark Tunnell"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Group Financial Controller""},{""name"":""Jan Morris"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Head of People""},{""name"":""Anne de Borchgrave"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://thepioneergroup.com/about"",""title"":""Executive Assistant""}],""sources"":{""headquarters"":""https://thepioneergroup.com/about"",""investmentThesisFocus"":""https://thepioneergroup.com/investment"",""investorDescription"":""https://thepioneergroup.com/about"",""portfolioHighlights"":""https://thepioneergroup.com/companies""},""websiteURL"":""http://www.biocity.co.uk/""}","Correctness: 98% Completeness: 85% - -The information provided about the **Pioneer Life Sciences EIS Knowledge Intensive Fund** and its broader context aligns very closely with publicly available sources from the Pioneer Group and Sapphire Capital Partners. Key points such as: - -- The fund's focus on **early-stage life sciences companies** with pre-seed and seed investments in the UK, targeting sectors like therapeutic platforms, diagnostics, medical technologies, discovery services, digital health, and pharma tech are confirmed by the Pioneer Group website and the fund's key information documents[1][2][4]. -- The fund's closing in April 2022 after a short subscription period is publicly noted[2]. -- Pioneer Group’s strategy of investing early, often being the first investor, and backing companies mostly connected via their Accelerator Programme or UK sites is directly supported by their investment page[4]. -- Description of post-investment support via advice and networking corresponds exactly to their stated approach[4]. -- The fund is managed by Sapphire Capital Partners LLP, which is confirmed in the key information document as the regulated AIF manager[1][3]. -- Portfolio highlights such as Biobest Laboratories Limited, HAON Life Sciences, and others are consistent with the companies listed on the Pioneer Group’s portfolio page[4]. -- Pioneer Group’s headquarters details and senior leadership names exactly match those listed on their about page[4]. - -However, the **Correctness score is slightly less than perfect** because: - -- Some very specific financial data such as the **fund size, overall assets under management, and estimated investment size are unavailable/not disclosed**, which is transparently noted in the data and also confirmed on Pioneer’s own sites and regulatory documents[1][4]. The omission of these figures lowers completeness but is factually accurate in stating their unavailability. -- Minor contextual information such as the relationship between BioCity Group and Pioneer Group was simplified but remains factually accurate given Pioneer Group owns BioCity as part of its ecosystem[4]. - -**The Completeness score is 85%** because: - -- Important quantitative details like fund size and assets under management are missing, as disclosed. -- While the investor description and investment thesis are detailed, financial performance, historical returns, fees, and the current status of new fund raises beyond the first closed fund are not provided. -- There is no mention of regulatory or risk information that may be important in full fund evaluation (though this is typical for summary-level descriptions). -- The linked documents and portfolio-related outcomes or follow-on funding rounds are not covered. - -**In summary:** - -The factual accuracy of all stated descriptive data is very high with direct citation from official Pioneer Group and Sapphire Capital sources[1][2][3][4]. The key limitation is the absence of detailed financial metrics openly reported by the fund, which affects completeness but not correctness. - -Sources: - -1. Pioneer Life Sciences EIS Knowledge Intensive Fund Key Information Document (Sapphire Capital Partners) - https://fs.hubspotusercontent00.net/hubfs/217255/Pioneer%20Group/Pioneer%20Life%20Sciences%20EIS%20Knowledge%20Intensive%20Fund%20Key%20Information%20Document%20(Final).pdf -2. Pioneer Group Investment Page - https://thepioneergroup.com/invest/ -3. Sapphire Capital Partners Fund Description - https://www.sapphirecapitalpartners.co.uk/pioneer-life-sciences-knowledge-intensive-eis-fund -4. Pioneer Group About & Investment Thesis - https://thepioneergroup.com/about & https://thepioneergroup.com/investment/" -"Bitburger Ventures ","https://www.bitburger-ventures.de/en/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Simon Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Consumption"",""Wellbeing"",""Productivity""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bitburger-ventures.de/en/""}],""headquarters"":""Bitburger Venture office is located in Trier, Germany according to external LinkedIn and Crunchbase indications of Bitburger Ventures' connection to the Bitburger Holding group headquartered in Trier."",""investmentThesisFocus"":[""Invests in mission-driven founders with a focus on sustainable business models."",""Emphasizes support beyond capital including networks, industry knowledge, and entrepreneurial spirit."",""Focuses on sectors like consumption (sustainable food innovations), wellbeing (health and digital solutions), and productivity (digital disruption and innovation)."",""Targets companies from Seed to Series A stages and beyond."",""Supports companies reshaping industries with a sustainability and long-term business focus.""],""investorDescription"":""Simon Capital invests in mission-driven founders focused on innovative, sustainable business models in consumer and B2B sectors. They emphasize support beyond capital, providing networks, industry knowledge, and entrepreneurial spirit, particularly in Seed to Series A stages and beyond. Investment areas include consumption (sustainable food innovations), wellbeing (health and digital solutions), and productivity (digital disruption and innovation). The firm supports companies reshaping industries with a sustainability and long-term business focus."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Holy"",""Waterdrop"",""Share"",""MicroHarvest"",""Sastrify""],""researcherNotes"":""No explicit information on headquarters location, assets under management (AUM), fund size, or estimated investment size was found on the website despite thorough review."",""seniorLeadership"":[{""name"":""Dr. Friedrich Droste"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bitburger-ventures.de/en/"",""title"":""Managing Partner""},{""name"":""Jan Leicht"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bitburger-ventures.de/en/"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://www.bitburger-ventures.de/en/contact"",""investmentThesisFocus"":""https://bitburger-ventures.de/en/about-us#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE2NDUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"",""investorDescription"":""https://bitburger-ventures.de/en/about-us#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE2NDUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"",""portfolioHighlights"":""https://bitburger-ventures.de/#portfolio""},""websiteURL"":""https://www.bitburger-ventures.de/en/""}","Correctness: 85% Completeness: 80% - -The claim that Bitburger Ventures’ headquarters is located in Trier, Germany, based on LinkedIn and Crunchbase associations with Bitburger Holding group, is *partially correct but not fully verifiable from official sources*. Bitburger Braugruppe, the core company of the Bitburger Brewery Group, is headquartered in Bitburg, Germany, not Trier[1][3][4]. Bitburger Ventures is connected to the Bitburger group, but there is no explicit, authoritative confirmation or address on the Bitburger Ventures or Bitburger Braugruppe official websites or public filings that places the venture office in Trier. Therefore, stating Trier as the location is an inference rather than a confirmed fact, lowering correctness. - -Regarding the investment focus, thesis, and portfolio: the details given about Simon Capital Investment Strategy’s focus on mission-driven founders, sustainable business models, Seed to Series A stages, consumption, wellbeing, and productivity sectors perfectly align with the information on the Bitburger Ventures website[https://www.bitburger-ventures.de/en/about-us] and their portfolio page[https://bitburger-ventures.de/#portfolio]. The list of portfolio highlights (Holy, Waterdrop, Share, MicroHarvest, Sastrify) matches the publicly disclosed companies on their site. The senior leadership names and titles also correspond to the “About Us” section of the venture site. These aspects are factually accurate. - -Significant missing information includes overall Assets Under Management (AUM), fund size, and estimated investment size, which are explicitly noted as unavailable or not disclosed on the website. This justifies the completeness score not being higher. - -In summary, the entrepreneurial and investment data is accurate and well supported by the source, but the specific headquarters location claim of Trier cannot be definitely confirmed and probably should be specified as inferred or “connected via the Bitburger Holding group headquartered in Trier” rather than a direct office location. - -Sources used: -- Bitburger Ventures official site, About Us and Portfolio pages: https://www.bitburger-ventures.de/en/, https://bitburger-ventures.de/#portfolio -- Bitburger Braugruppe headquarters info: https://www.bitburger-international.com/en/company, https://www.bitburger.com/imprint/, https://www.zoominfo.com/c/bitburger-braugruppe-gmbh/35999552" -"Bioqube Ventures ","https://www.bioqubeventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bioqube Factory Fund I"",""fundSize"":""EUR 60,000,000"",""fundSizeSourceUrl"":""https://www.bioqubeventures.com/bioqube-ventures-launches-bioqube-factory-fund-i/"",""geographicFocus"":[""Europe"",""Benelux"",""France"",""Germany""],""investmentStageFocus"":[""Early stage"",""First and subsequent rounds""],""sectorFocus"":[""Therapeutic assets"",""Life sciences"",""Healthcare""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bioqubeventures.com/bioqube-ventures-launches-bioqube-factory-fund-i/""}],""headquarters"":""Barricadenplein 13, 1000 Brussels, Belgium"",""investmentThesisFocus"":[""Focus on therapeutic assets and disruptive platforms in life sciences."",""Dual investment strategy including classical investments and 'Create' projects requiring early de-risking before spin-out."",""Hands-on approach with involvement from fund managers, sector experts, and serial entrepreneurs."",""Partnership and strategic collaboration with investors like EIF, PMV, FPIM, Belfius Insurance, Genmab A/S, and Johnson & Johnson Innovation – JJDC.""],""investorDescription"":""Bioqube Ventures is a specialist life sciences investment firm based in Europe and the US with a global footprint. They focus on sourcing, financing, and developing innovative therapeutic assets and technologies. The company has a dual investment model including classical investments and venture creation projects, with an in-house factory model for translating science into companies. Their team comprises fund managers, sector experts, and serial entrepreneurs with a hands-on approach. The Bioqube Factory Fund I is supported by InnovFin Equity, backed by the European Union under Horizon 2020 and the European Fund for Strategic Investments (EFSI)."",""linkedDocuments"":[""https://www.bioqubeventures.com/wp-content/uploads/2024/05/Responsible-Investment-Policy-.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Spica Therapeutics"",""Catalym"",""Commit Biologics"",""Synox Therapeutics"",""Bicara Therapeutics"",""Tridek One"",""Egle Therapeutics"",""Enhanc3D Genomics"",""Anavo Therapeutics"",""Primmune Therapeutics""],""researcherNotes"":""AUM is not mentioned on the website. Fund size of 60 million EUR is explicitly stated for Bioqube Factory Fund I. Estimated investment size per company is not available on the website."",""seniorLeadership"":[{""name"":""Debora Dumont"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bioqubeventures.com/team/"",""title"":""Co-Founder & Managing Partner""},{""name"":""Nico Vandervelpen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bioqubeventures.com/team/"",""title"":""Co-Founder & Managing Partner""},{""name"":""Dirk Reyn"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bioqubeventures.com/team/"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://www.bioqubeventures.com/contact/"",""investmentThesisFocus"":""https://www.bioqubeventures.com/bioqube-ventures-launches-bioqube-factory-fund-i/"",""investorDescription"":""https://www.bioqubeventures.com/"",""portfolioHighlights"":""https://www.bioqubeventures.com/portfolio/""},""websiteURL"":""https://www.bioqubeventures.com/""}","Correctness: 98% Completeness: 90% - -The information about Bioqube Factory Fund I is factually accurate and aligns well with authoritative sources. Bioqube Ventures is a life sciences investment firm based in Belgium with a focus on early-stage therapeutic assets and innovative platforms in Europe, including Benelux, France, and Germany. The stated fund size of EUR 60 million for Bioqube Factory Fund I is confirmed on Bioqube’s official website and press releases[1][2]. The dual investment model, involving classical investments and venture creation projects with an in-house factory, is consistently described on their site[2]. The hands-on approach by fund managers, sector experts, and serial entrepreneurs is also well supported[2]. Their partnerships with EIF, PMV, FPIM, Belfius Insurance, Genmab A/S, and Johnson & Johnson Innovation – JJDC are noted in official descriptions of the fund[2]. The headquarters location at Barricadenplein 13, 1000 Brussels, Belgium matches the contact information[2][4]. - -The portfolio companies listed such as Spica Therapeutics, Catalym, Commit Biologics, Synox Therapeutics, and others correspond with the companies highlighted by Bioqube publicly[1][2], validating portfolio claims. - -However, completeness is slightly lower as the **overall assets under management (AUM)** for Bioqube Ventures is not publicly disclosed, which limits full completeness. The **estimated investment size per company** is also not available, as noted in the researcher notes and confirmed by the absence of such data on their official site—these are relevant omissions for those assessing fund scale and strategy in detail[2]. Furthermore, while the main investor and strategic partners are mentioned, detailed financial terms or the exact participation of each investor are not publicly detailed. - -URLs used for validation include: - -- Bioqube Ventures official site and news: https://www.bioqubeventures.com/, including https://www.bioqubeventures.com/bioqube-ventures-launches-bioqube-factory-fund-i/ -- Bioqube Ventures portfolio and contact: https://www.bioqubeventures.com/portfolio/, https://www.bioqubeventures.com/contact/ -- Recent news validating portfolio companies and activity: https://www.bioqubeventures.com/news/ -- Private Equity International institutional profile: https://www.privateequityinternational.com/institution-profiles/bioqube-ventures.html - -No hallucinatory or unsupported claims were detected. The documented missing fields such as AUM and estimated investments remain a transparency gap rather than factual errors." -"BioGeneration Ventures ","http://www.biogenerationventures.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BGV Fund V"",""fundSize"":""EUR 150,000,000"",""fundSizeSourceUrl"":""https://biogenerationventures.com/en/news/biogeneration_ventures_closes_bgv_fund_v_at_€150_million"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Life Sciences"",""Biopharma"",""Biotechnology""],""sourceUrl"":""https://biogenerationventures.com/en/news/biogeneration_ventures_closes_bgv_fund_v_at_€150_million""}],""headquarters"":""Gooimeer 2-35, 1411 DC Naarden, The Netherlands"",""investmentThesisFocus"":[""The Fund invests in private life sciences companies developing new medicines with potential to impact patient lives."",""Focus on environmental and social characteristics promoting Sustainable Development Goals 3 and 8."",""Investments are evaluated using the SUCCESS Framework, scoring companies on ESG criteria and impact across 7 specific criteria."",""Companies must adhere to the Fund's Responsible Investment Policy and sign ESG Investment Principles before investing."",""Ongoing monitoring includes quarterly ESG KPI reporting, engagement via board positions, endorsement of good governance committees, and annual Impact Reports."",""The BGV Policy emphasizes managing material ESG factors and incorporating them into corporate strategy and operations across all funds.""],""investorDescription"":""BioGeneration Ventures (BGV) is the early-stage strategy of the Forbion-BGV platform of funds, located in Naarden, Netherlands. BGV's investors include private equity/wealth managers, pension funds, academic institutions, regional development funds, private investors, and strategic investors such as Eli Lilly and Company, Novo Holdings, and Bristol Myers Squibb. BGV is a venture capital firm specializing in seed investment for innovative early-stage European life sciences companies, typically acting as lead investor."",""linkedDocuments"":[""https://biogenerationventures.com/server/multimediaserve/1698/BGV-RI-Policy-2023.pdf?hash=f8f2fee3b71221a2295cfcd733c12689e557deebabd2423585c45fbcdee5b53b"",""https://biogenerationventures.com/server/multimediaserve/1699/BGV-Impact-Report-22-(public).pdf?hash=2bc02c6c28145aeb85022059ec799c30659e2466c0af153cbc00bdd2a593f3d0""],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2023"",""aumAmount"":""EUR 400,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://biogenerationventures.com/en/news/biogeneration_ventures_closes_bgv_fund_v_at_€150_million""},""portfolioHighlights"":[""Artica Therapeutics"",""Avidicure"",""Azafaros"",""Brandaris Therapeutics"",""Brenig"",""Catalym"",""Citryll"",""Complement Therapeutics"",""Confo Therapeutics"",""Dunad""],""researcherNotes"":""Estimated investment size per company is not explicitly stated on the website or related news releases. The overall AUM figure is based on the total funds under management mentioned in the July 2023 news release announcing the closing of BGV Fund V."",""seniorLeadership"":[{""name"":""Edward van Wezel"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://biogenerationventures.com/en/team/"",""title"":""Managing Partner""},{""name"":""Oskar Slotboom"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://biogenerationventures.com/en/team/"",""title"":""Managing Partner""},{""name"":""Daniela Couto, PhD"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://biogenerationventures.com/en/team/"",""title"":""General Partner""},{""name"":""Keno Gutierrez, PhD"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://biogenerationventures.com/en/team/"",""title"":""General Partner""},{""name"":""Wouter Verhoeven"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://biogenerationventures.com/en/team/wouter_verhoeven"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://biogenerationventures.com/en/contact/"",""investmentThesisFocus"":""https://biogenerationventures.com/en/sustainability/sfdr/"",""investorDescription"":""https://biogenerationventures.com/en/about_us/"",""portfolioHighlights"":""https://biogenerationventures.com/en/portfolio/""},""websiteURL"":""http://www.biogenerationventures.com""}","Correctness: 100% Completeness: 95% - -The information presented about BioGeneration Ventures (BGV), including the details on BGV Fund V, is factually accurate and well-supported by multiple authoritative press releases and industry news from mid-2023. The fund size of €150 million is confirmed by sources such as Fierce Biotech [1], GlobeNewswire [2], and Labiotech.eu [3]. The total assets under management exceeding €400 million is consistently reported [1][2][5]. The involvement of strategic investors like Eli Lilly, Novo Holdings, and Bristol Myers Squibb is explicitly mentioned in several sources [1][2][5]. - -The investment focus on early-stage European life sciences and biopharma companies, typically seed and early-stage investments, is in line with BGV's described position as an early-stage VC [1][2][3]. Their thematic focus on transformative medicines and environmental, social, and governance (ESG) criteria via the SUCCESS Framework and Responsible Investment Policy matches BGV’s publicly stated sustainability practices [2][linked documents]. - -Senior leadership names—Edward van Wezel, Oskar Slotboom, Daniela Couto, Keno Gutierrez, and Wouter Verhoeven—correspond with the official team page [sourceUrl=https://biogenerationventures.com/en/team/]. - -Portfolio highlights such as Azafaros and Complement Therapeutics are consistent with reported current holdings [3][4]. - -The only minor shortfall is the absence of a stated estimated investment size per company, which is not publicly disclosed and was noted as missing by the researcher. This omission slightly lowers completeness but is understandable due to lack of available public data. - -URLs used: - -- https://biogenerationventures.com/en/news/biogeneration_ventures_closes_bgv_fund_v_at_€150_million -- https://www.fiercebiotech.com/biotech/lilly-novo-bms-return-boost-bgvs-largest-european-biotech-fund-yet -- https://www.globenewswire.com/news-release/2023/07/13/2704040/0/en/BioGeneration-Ventures-closes-BGV-Fund-V-at-150-million.html -- https://www.labiotech.eu/trends-news/biogeneration-ventures-bgv-fund-v/ -- https://www.biospace.com/biogeneration-ventures-closes-bgv-fund-v-at-150-million/ - -Thus, the dataset is highly accurate and largely complete except for the lacking estimated per-company investment size." -"Big Sky Partners ","http://bigskyvc.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 250,000 to 1,000,000"",""fundName"":""Big Sky Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Early-stage"",""Later-stage participation""],""sectorFocus"":[""Clean energy"",""Adventure capitalism"",""Web3"",""Financial services"",""SaaS"",""Adventure sports and wellness"",""Real estate resort development and operations"",""Next-generation internet""],""sourceUrl"":""https://bigskyvc.com/about.html""}],""headquarters"":""Big Sky Partners, PO Box 2462, Truckee, CA 96160"",""investmentThesisFocus"":[""Founder-focused, early-stage venture capital approach."",""Emphasis on sectors like clean energy, climate change, luxury experiential projects, outdoor sports, and wellness."",""Value-add investing with strategic partnerships in luxury and sustainable energy sectors."",""Support for nature-based solutions addressing climate change."",""Hands-on evaluation of founders and metrics with robust due diligence including market studies and management engagement."",""Backing people, daring innovations, and embracing diversity.""],""investorDescription"":""Big Sky Partners' mission is to invest in people, daring ventures, and diversity, empowering founders to realize their visions and grow as individuals. They focus on seed and early-stage financing rounds ($250,000 to $1,000,000), with participation in later-stage funding showing strong cash flow, management, and growth opportunities. The firm evaluates founders and metrics hands-on with robust due diligence, focusing on diverse asset classes and founders. Areas of focus include clean energy, adventure capitalism, Web3, financial services, SaaS, adventure sports and wellness, real estate resort development and operations, and next-generation internet."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Aivita Medical"",""ARAVO SOLUTIONS"",""Beran Island Resort"",""Cabo Real Surf Club"",""Cantos"",""Capella Partners"",""CATAMOUNT VENTURES"",""Coral Mountain"",""DOUBLE BEAM"",""Emergent Capital Partners""],""researcherNotes"":""Overall Assets Under Management (AUM) and specific fund sizes are not mentioned on the website or in related linked pages. The investment size range per company is documented from their about page."",""seniorLeadership"":[{""name"":""Michael Schwab"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://bigskyvc.com/team.html"",""title"":""Founder, Managing Director""},{""name"":""Brian Spitz"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://bigskyvc.com/team.html"",""title"":""Partner""}],""sources"":{""headquarters"":""https://bigskyvc.com/contact.html"",""investmentThesisFocus"":""https://bigskyvc.com/index.html"",""investorDescription"":""https://bigskyvc.com/about.html"",""portfolioHighlights"":""http://bigskyvc.com/portfolio.html""},""websiteURL"":""http://bigskyvc.com""}","Correctness: 95% Completeness: 85% - -The information provided about Big Sky Partners is largely **factually accurate** according to the official Big Sky Partners website and related sources. The details about the firm's investment size range ($250,000 to $1,000,000), stage focus (seed, early-stage, and some later-stage participation), approach (founder-focused, hands-on due diligence, backing diverse founders and audacious ideas), and sector interests (clean energy, Web3, financial services, SaaS, adventure sports and wellness, real estate resort development, next-generation internet, among others) are confirmed on their About and Investment Thesis pages[3][1]. The description of senior leadership naming Michael Schwab as founder and managing director and Brian Spitz as partner also matches the official team page[5][4]. - -The **headquarters address provided (Truckee, CA)** differs slightly from the website, which states the firm is based in Venice, California, but references some presence or contact at Truckee[1][2]; the official contact page confirms Truckee, CA PO Box but the main operational center is Venice, CA[1][3]. The portfolio highlights listed, such as Coral Mountain (Meriwether Companies partnership) and other ventures, align with mentions on the site and public announcements[1][4]. - -However, the **information is incomplete regarding overall fund size and assets under management (AUM)**, as these are not publicly disclosed by Big Sky Partners, and this absence is correctly noted. Additionally, the geographic focus is not explicitly detailed on the website beyond being U.S.-based with significant activity in California; this is noted as ""Not Available"" which is accurate given lack of source specifics[2][3]. - -Some references (like Unicorn Nest) mention Sausalito as a main location, differing slightly from the Big Sky website details; this likely reflects partial or secondary offices or outdated info[2]. The provided sector focus includes ""adventure capitalism,"" which is more a thematic term aligned with luxury experiential and outdoor sports investments rather than a standard industry category, but this matches the firm’s described ethos[1][3]. - -Overall, the factual correctness is high because core claims about investment size, focus, thesis, leadership, and strategy are supported directly by Big Sky’s official statements. The minor discrepancies in location and lack of public AUM data lower completeness but are transparently acknowledged, resulting in an 85% completeness score. - -Sources: -https://bigskyvc.com/about.html -https://bigskyvc.com/index.html -https://bigskyvc.com/team.html -https://bigskyvc.com/contact.html -https://bigskyvc.com/team/michael-schwab.html -https://unicorn-nest.com/funds/big-sky-partners/ -https://bigskyvc.com/portfolio.html" -"BitStone Capital ","https://www.bitstone.capital/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BitStone Real Estate & Construction (RECO) Tech Fund"",""fundSize"":""EUR mid-double-digit million"",""fundSizeSourceUrl"":""https://www.bitstone.capital/bitstone-second-closing-real-estate-construction-tech-fund/?lang=en"",""geographicFocus"":[""Germany"",""Europe""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""PropTech"",""ConstructionTech""],""sourceUrl"":""https://www.bitstone.capital/bitstone-second-closing-real-estate-construction-tech-fund/?lang=en""}],""headquarters"":""Am Kabellager 11, 51063 Köln, Germany"",""investmentThesisFocus"":[""Investing in real estate technology companies within verticals such as Plan & Build, Manage & Operate, Finance & Transact, New City Solutions, and Climate Solutions aiming at sustainable and future-proof transformation."",""Focus on digital technology in construction and real estate sectors (PropTech & ConstructionTech)."",""Support portfolio companies in different growth phases through close collaboration with founders and experience in company building.""],""investorDescription"":""BitStone Capital is a venture capital investor focused on innovative and sustainable technology companies in the construction and real estate industries. BitStone Capital ist ein Venture Capital Investor mit Fokus auf innovative und nachhaltige Technologieunternehmen in der Bau- und Immobilienwirtschaft. Über die Finanzierung hinaus katalysiert BitStone Capital das Wachstum seiner Real Estate- und Construction-Tech Portfoliounternehmen mit seinem weitreichenden Netzwerk, einzigartigem Branchen-Know-How und -Zugang sowie spezifischer Expertise in neuen Technologien. Mit seinen Investitionen möchte BitStone Capital einen Beitrag zur nachhaltigen und zukunftsfähigen Transformation der Bau- und Immobilienwirtschaft leisten."",""linkedDocuments"":[""https://www.bitstone.capital/wp-content/uploads/2021/12/BitStone_Stellenausschreibung_InvestmentAnalyst.pdf"",""https://www.bitstone.capital/wp-content/uploads/2019/09/20220513_BitStone_Stellenausschreibung_EIR.pdf"",""https://www.bitstone.capital/wp-content/uploads/2021/12/20220513-BitStone_Stellenausschreibung_Werkstudent.pdf"",""https://www.bitstone.capital/wp-content/uploads/2020/07/Stellenausschreibung_CFO_InrealTech.pdf""],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2021"",""aumAmount"":""EUR mid-double-digit million"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bitstone.capital/bitstone-second-closing-real-estate-construction-tech-fund/?lang=en""},""portfolioHighlights"":[""Alcemy"",""Optiml"",""Lichtwart"",""Plancraft"",""Node-Energy"",""Green-Fusion"",""Okibo"",""Smino"",""Upmin""],""researcherNotes"":""The per-company estimated investment size was not explicitly stated on the website or in linked documents. The overall AUM and fund size are described as mid-double-digit million Euros as of 2021 based on the second closing announcement of the Real Estate & Construction Tech Fund."",""seniorLeadership"":[{""name"":""Kai Panitzki"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bitstone.capital/#team"",""title"":""Managing Partner""},{""name"":""Manfred Heid"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bitstone.capital/#team"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""https://www.bitstone.capital/?lang=en"",""investmentThesisFocus"":""https://www.bitstone.capital/#mission"",""investorDescription"":""https://www.bitstone.capital/?lang=en"",""portfolioHighlights"":""https://www.bitstone.capital/#portfolio""},""websiteURL"":""https://www.bitstone.capital/""}","Correctness: 98% Completeness: 90% - -The information provided about BitStone Capital is highly factually accurate and well supported by credible sources. BitStone Capital is indeed a venture capital investor headquartered in Cologne, Germany, focusing on innovative and sustainable technology companies in the real estate and construction sectors, particularly PropTech and ConstructionTech[1][2][4]. The fund size described as ""EUR mid-double-digit million"" and the fund’s focus on Seed and Series A investment stages also aligns with details from the official source announcing the Real Estate & Construction Tech Fund’s second closing in 2021[1]. The investment thesis emphasizing verticals such as Plan & Build, Manage & Operate, Finance & Transact, New City Solutions, and Climate Solutions, and the focus on sustainable and future-proof industry transformation matches BitStone’s stated mission on their website[1]. - -The description of BitStone’s role as not only a financier but also a growth catalyst through a broad network and deep industry expertise is corroborated by multiple sources, highlighting their ""bridge"" role between traditional real estate players and tech startups[1][2][3][4]. Senior leadership linking Kai Panitzki and Manfred Heid as Managing Partners is confirmed on the official team page and other profiles[1][3]. - -The reported portfolio highlights such as Alcemy, Optiml, Lichtwart, Plancraft, Node-Energy, Green-Fusion, Okibo, Smino, and Upmin are consistent with BitStone’s portfolio summaries available publicly[1][3]. - -The main limitation is the missing explicit estimated per-company investment size, as no clear figure is publicly available, reducing completeness slightly. Additionally, while the overall Assets Under Management (AUM) is cited as mid-double-digit million Euros (around 20-60 million approx.) as of 2021, more current AUM updates would improve completeness[1]. - -Also, newer developments like the formation of Realyze Ventures in partnership with MOMENI and Art-Invest Real Estate, which involves BitStone leadership, suggest growth and evolution beyond the stated fund but are not fully integrated here[5]. This additional information could enhance completeness regarding BitStone’s ecosystem and expanded investment activities. - -Sources used: -[1] https://www.bitstone.capital/bitstone-second-closing-real-estate-construction-tech-fund/?lang=en -[2] https://www.startupticker.ch/en/investors/bitstone-capital -[3] https://wawakuk.de/en/bitstone-capital/ -[4] https://venturecapitalarchive.com/venture-funds/bitstone-capital-bitstonecapital-com -[5] https://momeni-group.com/en/press/press-detail/momeni-und-art-invest-real-estate-investieren-gemeinsam-in-innovationen" -"Biotechnology Value Fund ","http://www.bvflp.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 5-10 million"",""fundName"":""Biotechnology Value Fund Investment Strategy"",""fundSize"":""$2500000000"",""fundSizeSourceUrl"":""https://privateequitylist.com/investors/bvf-partners"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early"",""Small-Cap"",""Mid-Cap""],""sectorFocus"":[""Biotechnology"",""Healthcare""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://massinvestordatabase.com/Biotechnology+Value+Fund/investmentfirm.php""}],""headquarters"":""44 Montgomery Street, 40th Floor, San Francisco, CA 94104"",""investmentThesisFocus"":[""Focuses on small to mid-cap companies with promising drug pipelines or innovative technologies addressing unmet medical needs."",""Takes significant stakes and actively engages with company management to support strategic objectives."",""Specializes in fundamentally-driven public biotechnology investments.""],""investorDescription"":""Biotechnology Value Fund (BVF Partners) is a San Francisco-based private investment partnership specializing in fundamentally-driven public biotechnology investments focused on small-cap biotechnology companies. Founded in 1993, BVF Partners focuses on healthcare investments and long-term capital appreciation through a concentrated portfolio of publicly traded biotechnology and pharmaceutical companies."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025 Q2"",""aumAmount"":""USD 6100000000"",""sourceUrl"":""https://capitalaum.com/hedge-funds/bvfpartners-sanfrancisco-ca.htm""},""portfolioHighlights"":[""Blueprint Medicines"",""Kymera Therapeutics"",""REVOLUTION Medicines"",""ViewPoint Therapeutics""],""researcherNotes"":""AUM data is sourced from a third-party industry site. No specific fund size or estimated investment size information is disclosed on the company website or common public databases."",""seniorLeadership"":[{""name"":""Kanishka Pothula"",""sourceProvider"":""MassInvestordatabase"",""sourceUrl"":""https://massinvestordatabase.com/Biotechnology+Value+Fund/investmentfirm.php"",""title"":""Managing Director""},{""name"":""Spike Loy"",""sourceProvider"":""MassInvestordatabase"",""sourceUrl"":""https://massinvestordatabase.com/Biotechnology+Value+Fund/investmentfirm.php"",""title"":""Managing Director""},{""name"":""Mark Lampert"",""sourceProvider"":""MassInvestordatabase"",""sourceUrl"":""https://massinvestordatabase.com/Biotechnology+Value+Fund/investmentfirm.php"",""title"":""Founder""}],""sources"":{""headquarters"":""https://bvflp.com"",""investmentThesisFocus"":""https://capitalaum.com/hedge-funds/bvfpartners-sanfrancisco-ca.htm"",""investorDescription"":""https://massinvestordatabase.com/Biotechnology+Value+Fund/investmentfirm.php"",""portfolioHighlights"":""https://massinvestordatabase.com/Biotechnology+Value+Fund/investmentfirm.php""},""websiteURL"":""http://www.bvflp.com""}","Correctness: 95% Completeness: 85% - -The provided information about Biotechnology Value Fund (BVF Partners) is largely factually accurate and consistent with authoritative sources. BVF Partners is indeed a San Francisco-based private investment partnership specializing in fundamentally-driven public biotechnology investments, founded in 1993, with headquarters at 44 Montgomery Street, 40th Floor, San Francisco, CA 94104[1][2][3][4]. The investment focus on small to mid-cap biotechnology companies and healthcare sectors is supported by company descriptions and portfolio examples such as Revolution Medicines[2]. Management team members noted (Kanishka Pothula, Spike Loy, Mark Lampert) align with MassInvestorDatabase listings. - -The fund size stated as $2.5 billion and estimated investment sizes of USD 5-10 million are plausible but not publicly confirmed on the official website or well-known databases, reducing the completeness and slightly impacting correctness due to the lack of direct primary source verification[1][2]. The reported overall assets under management of USD 6.1 billion (as of 2025 Q2) from a third-party industry site further indicates that the total firm AUM exceeds the single fund size cited, which could cause confusion without clearer distinctions between firm AUM and individual fund size[2]. - -Missing important fields on estimated investment size and fund size in the supplied data reduce completeness since more specific information on investment amounts per deal or detailed fund structures is not publicly disclosed, limiting full transparency. The portfolio highlights listed align broadly with known BVF investments but could be expanded with more names, such as Syndax Pharmaceuticals and others noted elsewhere[2]. - -In summary, the core factual elements—firm identity, headquarters, investment thesis, senior leadership, and sector focus—are accurate and verifiable. However, lack of publicly confirmed fund size and specific estimated investment amounts justify slightly lower completeness and a small deduction in correctness. - -Sources used: -- https://www.zoominfo.com/c/bvf-partners-lp/369046646 -- https://golden.com/wiki/Biotechnology_Value_Fund_(BVF_Partners)-YXZ94YB -- https://bvflp.com -- https://aum13f.com/firm/bvf-partners-lp" -"BiliÅŸim Vadisi ","https://www.bilisimvadisi.com.tr/en/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bilişim Vadisi Girişim Sermayesi Yatırım Fonu"",""fundSize"":""TRY 545,000,000"",""fundSizeSourceUrl"":""https://gelecekburada.com.tr/girisim-sermayesi-yatirim-fonu"",""geographicFocus"":[""Turkey""],""investmentStageFocus"":[""Beyond idea stage"",""Product-market fit"",""Ready for high growth""],""sectorFocus"":[""Mobility"",""Cybersecurity"",""Gaming"",""Artificial Intelligence"",""Agricultural Technologies"",""Fintech"",""Health Technologies"",""Energy""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://gelecekburada.com.tr/girisim-sermayesi-yatirim-fonu""}],""headquarters"":""Muallimköy Mh. Deniz Cd. No: 143/5, 41400 Gebze/Kocaeli/Türkiye"",""investmentThesisFocus"":[""Focus on strengthening the ecosystem in the fields of mobility, communication technologies, cyber security, design technologies, smart cities, and game technologies."",""Projects and investments prioritized in quantum technologies including information processing and decision-making innovations."",""Support for civil technologies such as mobility, cybersecurity, gaming, artificial intelligence, agricultural technologies, fintech, health technologies, and energy."",""Invest in companies beyond idea stage with product-market fit, ready for high growth."",""Invest in companies that have completed their corporate structure and made sales."",""Geographic focus is Turkey, particularly the technology development region partnership.""],""investorDescription"":""Bilişim Vadisi is described as a well-integrated ecosystem aiming at technological transformation by blending design, implementation, financial feasibility, and R&D harmoniously. Its intellectual foundations were laid in 2011, physical foundations in 2015, and it started activities in 2019 to become the largest technology development zone in Türkiye by 2021."",""linkedDocuments"":[""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Egitimde_Digitallesme_Calistayi_2022.pdf"",""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Bilisim_Firmalari_Kurumsal_Dayaniklilik_Kapasitesi_2022.pdf"",""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Dijital_Oyun_Calistay_Raporu-Re-Think.pdf"",""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Blokzincir_e-Calistayi_Sonuc_Raporu.pdf"",""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Turkiyenin_Akilli_Sehirleri_Esenler_ecalistay_Raporu.pdf"",""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Covid-19_e-Calistay_Raporu.pdf"",""https://gelecekburada.com.tr/wp-content/uploads/2023/02/Bilisim_Calistayi_Sonuc_Raporu_2019.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""10X Bilişim A.Ş"",""20H2O Teknoloji"",""4C Teknoloji"",""Academia"",""ADASTEC"",""AdHouse Digital Media"",""Agada"",""Ağahan OSGB"",""Ahicommerce"",""Akasya AI""],""researcherNotes"":""Overall Assets Under Management (AUM) is not explicitly stated on the website. Fund size is available for the main investment fund. Investment ticket size per company is not specified on the site."",""seniorLeadership"":[{""name"":""Erkam Tüzgen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://bilisimvadisi.com.tr/en/about-us/executive-board"",""title"":""CEO""}],""sources"":{""headquarters"":""https://www.bilisimvadisi.com.tr/en/contact/"",""investmentThesisFocus"":""https://www.bilisimvadisi.com.tr/en/focused-technologies/"",""investorDescription"":""https://www.bilisimvadisi.com.tr/en/"",""portfolioHighlights"":""https://bilisimvadisi.com.tr/en/about-us/companies""},""websiteURL"":""https://www.bilisimvadisi.com.tr/en/""}","Correctness: 95% Completeness: 85% - -The information provided about the **Bilişim Vadisi Girişim Sermayesi Yatırım Fonu** is largely accurate and consistent with publicly available sources. The fund is indeed based in Turkey (Muallimköy Mh. Deniz Cd. No: 143/5, Gebze/Kocaeli) and focuses on investing in technology startups beyond the idea stage with product-market fit, targeting sectors like mobility, cybersecurity, gaming, AI, agricultural technologies, fintech, health technologies, and energy. This aligns with descriptions on Bilişim Vadisi’s official site and related portfolio/sector focus pages[1][2][4]. The investment thesis focusing on strengthening the ecosystem around mobility, communication, cybersecurity, smart cities, gaming, quantum technologies, and civil tech also matches official descriptions[1][2][4]. - -The **fund size stated as TRY 545,000,000** seems approximately in line with the evolving fund size information: initial 100 million TL with additional investments from KOSGEB and partners raising it up to around 300 million TL in 2021, and further funds targeting 500 million TL to support a thousand tech startups according to recent new fund announcements[1][3][4]. However, exact current total fund size is somewhat unclear in public sources, leading to a slight deduction in completeness and correctness due to this minor ambiguity. - -Missing is explicit data on **overall Assets Under Management (AUM)** and **estimated investment ticket size per company**, which are noted as unavailable both on the official sites and the provided data[1][4]. This limits completeness since these are important fund metrics typically disclosed. - -The leadership detail about CEO Erkam Tüzgen is accurate per the official executive board listing[reported source]. - -The data sources cited here include: -- Bilişim Vadisi official site and investment pages (https://www.bilisimvadisi.com.tr/en/) -- KOSGEB report on fund and investments (https://www.kosgeb.gov.tr) -- Albaraka Portföy (https://www.albarakaportfoy.com.tr/) -- APY Ventures description of the fund (https://www.apyventures.com/bilisim-vadisi-gsyf) -- Public announcements about fund size and investment focus from multiple reports dated 2021-2023. - -In summary, the factual info is accurate about the fund’s location, sector focus, investment stage, and high-level thesis. Fund size is mostly accurate though slightly variable by source and timing, and critical financial metrics like AUM and ticket size are missing, reducing completeness. - -URLs used: -https://gelecekburada.com.tr/girisim-sermayesi-yatirim-fonu -https://www.bilisimvadisi.com.tr/en/ -https://www.kosgeb.gov.tr/site/tr/genel/detay/8330/kosgebden-girisim-sermayesi-yatirim-fonuna-100-milyon-tl -https://www.albarakaportfoy.com.tr/girisim-sermayesi-yatirim-fonlari/pbv -https://bilisimvadisi.com.tr/haberler/bilisim-vadisi-yeni-nesil-yatirim-yaklasimi-ile-4-gsyfyi-kurdu/ -https://www.apyventures.com/bilisim-vadisi-gsyf" -"Better Angle ","https://www.better-angle.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Better Angle Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Opportunistic Overseas""],""investmentStageFocus"":[""Seed"",""Pre-seed""],""sectorFocus"":[""Sector Agnostic""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.better-angle.com/""}],""headquarters"":""Paris, Île-de-France"",""investmentThesisFocus"":[""Focus on early growth technology companies"",""Sector agnostic"",""Invest as early as possible"",""Founder conviction based"",""Mainly Europe focus, opportunistic overseas investments""],""investorDescription"":""We are an early stage investor founded by experienced entrepreneurs who became business angels. We invest in founders as early as possible. We are sector agnostic and focus on supporting founders in any challenge. We have invested in more than 200 early stage startups over the last 10 years and are backed by 150 successful entrepreneurs across many industries. Our investment focus is on seed/preseed rounds mainly in Europe, with some opportunistic investments overseas. We base our conviction on founders."",""linkedDocuments"":[""https://better-angle.com/wp-content/uploads/2024/01/Better-Angle_DIS-1.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""AUM and estimated investment size are not mentioned on the website or in available documents. Headquarters address is also not provided."",""seniorLeadership"":[{""name"":""Baptiste Hamel"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://linkedin.com/in/baptistehamel"",""title"":""Co-founder""},{""name"":""Nicolas Douay"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://linkedin.com/in/nicolasdouay"",""title"":""Co-founder""}],""sources"":{""headquarters"":""https://www.better-angle.com/#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjgzMTgiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"",""investmentThesisFocus"":""https://www.better-angle.com/"",""investorDescription"":""https://www.better-angle.com/"",""portfolioHighlights"":""Not Available""},""websiteURL"":""https://www.better-angle.com/""}","Correctness: 95% Completeness: 75% - -The provided information about Better Angle Investment Strategy is largely *factually accurate* based on multiple sources. Better Angle is indeed an early stage investor focusing on seed and pre-seed rounds, mainly in Europe with opportunistic overseas investments[1][2]. They are sector agnostic and base their investment convictions primarily on founder quality and conviction[1]. The co-founders are Baptiste Hamel and Nicolas Douay, as stated, and the firm was launched in 2023[2]. Their headquarters is in Paris, specifically a Paris address (19 rue Bergère, 75009 Paris)[1], which matches the Paris, Île-de-France region cited. The investor description aligns with publicly available information emphasizing a founder-focused, entrepreneur-backed investment community with a portfolio exceeding 200 startups[1]. - -However, the *completeness* of the data is limited by notable missing details that are publicly available or at least reported by third-party industry data aggregators. For example, one source cites assets under management (AUM) approximately $8.2 million (circa 2023) which is absent from the original data[3]. Another source mentions that Better Angle has raised over €12 million across two vehicles and uses a community-led deal-by-deal SPV approach[2]. These are important financial details absent from the dataset. Likewise, a precise headquarters address (“19 rue Bergère”) is publicly found but missing in the dataset[1]. There are no portfolio highlights listed, while sources mention a portfolio of 200+ startups[1]. Overall, additional context about fund size, AUM, and strategic approach would improve completeness. - -No false or fabricated information is present, hence the high correctness score. The main limitations are gaps in financial size data and more granular operational details, which explains the moderate completeness score. - -Sources: -[1] https://invest-fm.com/better-angle/ -[2] https://www.roundtable.eu/clients/baptiste-hamel-better-angle -[3] https://ecosystem.andorra-startup.com/investors/better_angels" -"Besant Capital ","https://besantcapital.com/ ","""""", -"Bestseller ","http://shop.bestseller.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bestseller Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Fashion"",""Apparel"",""Accessories""],""sourceUrl"":""http://shop.bestseller.com""}],""headquarters"":""Brande, Denmark"",""investmentThesisFocus"":[""Focus on good quality clothing and accessories at competitive prices."",""Emphasis on a multi-brand matrix organization supported by group functions."",""Operating with a culture guided by 10 founding principles and the philosophy 'One World, One Philosophy, One Family'."",""Investments in sustainability initiatives, digitalization, and new market expansions."",""Led a USD 20 million funding round for automated garment production technology.""],""investorDescription"":""BESTSELLER is an international, family-owned fashion company founded by the Holch Povlsen family in Denmark in 1975. It operates more than 20 brands including JACK & JONES, ONLY, and VERO MODA, selling clothes and accessories for all ages and genders at competitive prices. BESTSELLER's products are sold in 75 countries globally through wholesale to over 16,000 stores and approximately 2,800 BESTSELLER retail stores in 44 countries. The company employs over 22,000 colleagues worldwide and works with over 350 global supply chain partners and more than 700 factories. The company culture is symbolized by 'One World, One Philosophy, One Family' and guided by 10 founding principles since 1975."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""JACK & JONES"",""ONLY"",""VERO MODA""],""researcherNotes"":""AUM or total fund size figures are not mentioned or available on the website or related documents. Investment size per company is not disclosed. The company functions primarily as a fashion group with strategic investments, not a typical investment fund."",""seniorLeadership"":[{""name"":""Anders Holch Povlsen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://bestseller.com/our-company/corporate-governance"",""title"":""CEO""},{""name"":""Thomas Børglum Jensen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://bestseller.com/our-company/corporate-governance"",""title"":""CFO""},{""name"":""Merete Bech Povlsen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://bestseller.com/our-company/corporate-governance"",""title"":""Chair of the Board of Directors""},{""name"":""Line Andrea Fandrup"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://shop.bestseller.com/contact"",""title"":""CFO (joining)""}],""sources"":{""headquarters"":""http://shop.bestseller.com/contact"",""investmentThesisFocus"":""https://bestseller.com/our-company"",""investorDescription"":""https://bestseller.com/our-company"",""portfolioHighlights"":""https://bestseller.com/brands""},""websiteURL"":""http://shop.bestseller.com""}","Correctness: 95% Completeness: 85% - -The information provided about BESTSELLER is largely **factually accurate and consistent** with authoritative sources. BESTSELLER is indeed a **family-owned international fashion company founded by the Holch Povlsen family in Denmark in 1975**, initially starting as a small store in Ringkøbing, later headquartered in Brande, Denmark[1][3][4]. The description of its business model as a **multi-brand matrix organization with more than 20 brands**, including JACK & JONES, ONLY, and VERO MODA, aligns with publicly disclosed data[4]. The company operates through wholesale and retail channels globally, selling apparel and accessories competitively and employing over 20,000 people worldwide[1][4]. - -The stated corporate culture—*""One World, One Philosophy, One Family""*—and the emphasis on **10 founding principles** are confirmed by BESTSELLER’s own corporate materials, underscoring a cohesive company ethos[4]. The focus on **sustainability, digitalization, and new market expansions** aligns with current trends and BESTSELLER’s communicated strategic priorities[4]. Also, senior leadership names like Anders Holch Povlsen as CEO and Merete Bech Povlsen as Chair of the Board match official sources[4]. - -However, some data gaps justify a slightly reduced completeness score: - -- **No specific data on the overall Assets Under Management (AUM), estimated investment size, or fund size** is publicly available or disclosed by BESTSELLER, consistent with the note that it operates primarily as a fashion group with strategic corporate investments rather than a conventional investment fund[4][5]. -- The claim about BESTSELLER leading a **USD 20 million funding round for automated garment production technology** is not supported or referenced from any clear source in the provided materials or public records; this may be proprietary or unpublished—thus reducing the correctness mildly. -- The portfolio mentions over 16,000 wholesale partner stores and approximately 2,800 BESTSELLER retail stores across 44 countries, while other sources note about 9,000 shops worldwide, including wholesale and retail (with 6,000 in China alone); some discrepancies in exact store counts exist but are minor and likely reflect timing or definitions[1][4]. - -Overall, the core facts about BESTSELLER’s identity, history, corporate culture, brands, and leadership are accurate and well supported. The lack of detailed financial or investment fund metrics limits completeness but reflects the nature of the company rather than an error. The unverified claim regarding the specific funding round should be flagged as unsupported with current sources. - -**Sources used:** - -- BESTSELLER official company site: https://bestseller.com/our-company and http://shop.bestseller.com/contact -- Wikipedia: https://en.wikipedia.org/wiki/Bestseller_(company) -- Encyclopedia.com: https://www.encyclopedia.com/books/politics-and-business-magazines/bestseller -- Modaes: https://www.modaes.com/global/back-stage/bestseller-iron-cold-and-brands-in-the-most-discreet-international-fashion-giant -- BESTSELLER Foundation about us: https://bestseller.org/about" -"BGF Ventures ","https://www.bgf.co.uk/bgf-ventures/ ","{""funds"":[{""estimatedInvestmentSize"":""GBP 3m-30m"",""fundName"":""BGF Growth Capital"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK"",""Ireland""],""investmentStageFocus"":[""Mid-stage"",""Growth""],""sectorFocus"":[""Small and medium-sized enterprises"",""Various sectors""],""sourceUrl"":""https://www.bgf.co.uk/looking-for-funding/""},{""estimatedInvestmentSize"":""GBP 3m-10m"",""fundName"":""BGF Early Stage Capital"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UK"",""Ireland""],""investmentStageFocus"":[""Late seed"",""Series A"",""Series B""],""sectorFocus"":[""Deep tech"",""Life sciences"",""IP-protected innovations""],""sourceUrl"":""https://www.bgf.co.uk/looking-for-funding/""}],""headquarters"":""Aberdeen - 20 Golden Square, Aberdeen, AB10 1RE; Belfast - Urban HQ, Eagle Star House, 5-7 Upper Queen Street, Belfast, BT1 6FB; Birmingham - The Lewis Building, 35 Bull Street, Birmingham, B4 6AF; Bristol - 10 Queen Square, Bristol, BS1 4NT; Cambridge - Fora, 20 Station Road, Cambridge, CB1 2JD; Cardiff - The Creative Quarter, Morgan Arcade, Cardiff, CF10 1AF; Cork - Glandore, City Quarter, Lapp’s Quay, Cork; Dublin - 60 Fitzwilliam Square North, Dublin 2, D02 FK58; Edinburgh - 36 Melville Street, Edinburgh, EH3 7HA; Leeds - 12th floor, Platform, New Station Street, Leeds, LS1 4JB; London - 13-15 York Buildings, London, WC2N 6JU; Manchester - 8th Floor, 1 Marsden Street, Manchester, M2 1HW; Newcastle - Suite 1, 60 Grey Street, Newcastle Upon Tyne, NE1 6AF; Nottingham - BizSpace – Cumberland House, 35 Park Row, Nottingham, NG1 6EE; Reading - The Brick Works, 35-43 Greyfriars Road, Reading, RG1 1NP"",""investmentThesisFocus"":[""BGF offers long-term minority equity investments without taking control, supporting growth alongside partnership and expertise."",""They back private SMEs in the UK and Ireland with a turnover of £2m+ that are profitable and have strong growth strategies."",""They invest in startups in deep tech and life sciences at late seed to series B stages, focusing on IP-protected innovations."",""BGF's Growth team targets investments between £3m and £30m, while the Early Stage team targets investments between £3m and £10m from BGF within a broader £5m to £30m range."",""Investments focus on scaling businesses with clear growth strategies and providing patient capital with flexibility to adapt to market conditions.""],""investorDescription"":""BGF was set up to address the SME funding gap in the UK, backing hundreds of companies across stages, sectors, and regions, with a well-capitalised, evergreen balance sheet of £3bn. Their mission is to support a large, diverse portfolio of businesses to fulfill growth ambitions and contribute to the economic resilience of the UK, promoting 'good growth' through shared values. Since 2011, they have deployed over £4.5bn in investments, backed over 600 businesses, provided £1bn in follow-on funding, and completed more than 280 exits."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025"",""aumAmount"":""GBP 3000000000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bgf.co.uk/about/""},""portfolioHighlights"":[""365 Response"",""3sun Group"",""A Wilderness Way"",""Abacus"",""Acro"",""AD Williams"",""AdEPT Telecom"",""ADEPT4 plc"",""Adestra"",""AimBrain""],""researcherNotes"":""AUM is derived from the statement of a well-capitalised evergreen balance sheet of £3bn on the about page. No explicit fund sizes were found for specific funds. Estimated investment sizes are from the funding criteria page."",""seniorLeadership"":[{""name"":""Andy Gregory"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Chief Executive Officer""},{""name"":""Ben Barker"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Head of Portfolio""},{""name"":""Ben Coleman"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Head of Finance""},{""name"":""Ann McCarthy"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Head of Legal""},{""name"":""Alastair Pilgrim"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Head of Technology""},{""name"":""Alistair Brew"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Head of Investment Operations""},{""name"":""Barry Jackson"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Regional Partner""},{""name"":""Alex Garfitt"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Partner, Investment""},{""name"":""Alex Snodgrass"",""sourceUrl"":""https://www.bgf.co.uk/team/"",""title"":""Partner, Investment""}],""sources"":{""headquarters"":""https://www.bgf.co.uk/offices"",""investmentThesisFocus"":""https://www.bgf.co.uk/looking-for-funding/"",""investorDescription"":""https://www.bgf.co.uk/about/"",""portfolioHighlights"":""https://www.bgf.co.uk/portfolio/""},""websiteURL"":""https://www.bgf.co.uk/bgf-ventures/""}","Correctness: 98% Completeness: 90% - -The provided information about BGF (Business Growth Fund) is highly accurate and aligns well with publicly available data from authoritative sources, notably BGF's own website and recent news articles. Key points validated include: - -- **Investment sizes and focus:** BGF Growth Capital targets investments typically between £3m and £30m, focusing on mid-stage and growth companies in the UK and Ireland across various sectors, primarily SMEs[1][2]. BGF Early Stage Capital invests between £3m and £10m in late seed through Series B rounds, focusing on deep tech, life sciences, and IP-protected innovations[1][2]. These align with official BGF information on investment criteria[1][2]. - -- **Geographic and sector focus:** Confirmed dedication to UK & Ireland companies across sectors, with specific emphasis on SMEs and innovation-driven businesses[1][2]. - -- **BGF's model:** Minority equity investments, long-term patient capital without control, supporting companies with strong growth plans, is consistent with BGF’s description of its investment thesis and approach[2]. - -- **AUM and balance sheet:** The overall balance sheet of approximately £3bn and deployment of over £4.5bn since inception are corroborated by the official site and recent announcements[1][3][4]. The note that actual specific fund sizes are not publicly disclosed is correct. - -- **Headquarters and offices:** The detailed UK and Ireland office addresses correspond to BGF’s locations as per their official website[1]. - -- **Senior leadership:** The named executives match the team listed on BGF’s team page[1]. - -- **Portfolio highlights:** The listed companies are consistent with BGF’s known portfolio[1]. - -Minor issues affecting completeness and correctness scores: - -- The *exact fund sizes* for individual funds (“Fund Size”) are missing, as BGF does not publicly disclose these explicitly, but the estimated investment sizes are accurate as per criteria and recent funding activities[1][2]. - -- While numerous recent investments and commitments are mentioned in news sources (e.g., £489m invested in 2024, £3bn pledged over five years), the summary omits some details about BGF’s strategic initiatives like the £300m commitment to female-powered businesses and related partnerships, which are significant for understanding BGF’s full investment scope and social impact[3][5]. - -- The summary could be enhanced by noting BGF’s substantial commitment to backing female entrepreneurs (£300m to Invest in Women Taskforce) and their reputation as the UK’s most active growth capital investor[3][4][5]. - -Overall, the data presents a factually correct, detailed, and coherent overview, with minor gaps primarily around specific fund size figures and some recent strategic investment initiatives. - -Sources used: - -- https://www.bgf.co.uk/about/ -- https://www.bgf.co.uk/looking-for-funding/ -- https://www.bgf.co.uk/offices -- https://www.bgf.co.uk/team/ -- https://www.bgf.co.uk/portfolio/ -- https://www.listalpha.com/news/bgf-acquires-47-new-businesses-for-489-million-in-2024 -- https://www.bgf.co.uk/insights/investments-2024/ -- https://www.bgf.co.uk/insights/back-british-business/ -- https://ukbaa.org.uk/blog/2025/06/02/bgf-commits-more-than-3-billion-to-back-british-business-during-pivotal-moment-for-uk-investment/ -- https://www.wealthbriefing.com/html/article.php/uk-fund-makes-first-investment-into-female_dash_powered-firm" -"Bertelsmann Investments ","https://www.bertelsmann-investments.com/ ","""""", -"better ventures ","https://www.betterventures.io ","{""funds"":[{""estimatedInvestmentSize"":""EUR 100000 - 500000"",""fundName"":""better ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""United States""],""investmentStageFocus"":[""Pre-Seed"",""Seed""],""sectorFocus"":[""Energy"",""Circularity"",""Health"",""PropTech"",""Consumer"",""Other""],""sourceUrl"":""https://www.betterventures.io/why-us""}],""headquarters"":""470 25th St, Oakland, California 94612, US"",""investmentThesisFocus"":[""Strong founding teams with unique skills and insights."",""Founders need a well-defined problem backed by data."",""Precise understanding of customers is crucial."",""Effective problem-solving with early validation is valued."",""Realistic monetization thinking is important."",""Resilience, domain expertise, and customer understanding in founders."",""Support founders to validate ideas and think about monetization."",""Investments focus on purpose-driven founders solving societal problems.""],""investorDescription"":""better ventures is founded, run, and backed by entrepreneurs who know what it takes to build fast growing and profitable companies. We invest money, time, and our brains in early-stage founders. If you have an idea or a newly started business, we should definitely talk! We back ambitious early-stage founders who scale solutions for people and planet."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""EUR 50000000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.betterventures.io/why-us""},""portfolioHighlights"":[""Greenberry"",""Everdrop"",""Liefergruen"",""Biovox Systems"",""Wisefood"",""Ocell"",""Ecolocked"",""Repath""],""researcherNotes"":""The firm does not explicitly list its fund size. The total capital ready to invest is mentioned as 50 million euros which is interpreted as overall AUM. No physical headquarters address was found on the contact page or footer. Estimated investment size per company is provided as a range. No linked documents (PDF, DOCX, PPTX) were found on the site."",""seniorLeadership"":[{""name"":""Tina Dreimann"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.betterventures.io/team"",""title"":""Founder & MD""},{""name"":""Cedric Duvinage"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.betterventures.io/team"",""title"":""Founder & MD""},{""name"":""Christoph Behn"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.betterventures.io/team"",""title"":""Founder & Chairman""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/bettervc"",""investmentThesisFocus"":""https://www.betterventures.io/post/what-we-are-looking-for-in-your-pitch"",""investorDescription"":""https://www.betterventures.io/"",""portfolioHighlights"":""https://www.betterventures.io/portfolio""},""websiteURL"":""https://www.betterventures.io""}","Correctness: 85% Completeness: 85% - -The provided information about Better Ventures is largely accurate but has some limitations. The headquarters address, 470 25th St, Oakland, CA 94612, US, is confirmed by MapQuest and other sources[1][3]. The fund’s stage focus on pre-seed and seed, as well as the emphasis on mission-driven, purpose-driven founders addressing societal problems, aligns well with Better Ventures’ publicly declared investment thesis and sector focus (energy, health, etc.)[1][3]. The estimated investment size (EUR 100,000 - 500,000) roughly corresponds with their stated $500K-$1M initial investments, though sources indicate a higher check size range as well (up to $1M)[2][3]. The firm is indeed founded and run by entrepreneurs dedicated to supporting early-stage founders[5]. - -There are some discrepancies and gaps: -- The exact fund size is not explicitly listed on Better Ventures’ official site, but the overall assets under management (AUM) of EUR 50 million mentioned is plausible though not directly confirmed by Better Ventures public pages[5]. The researcher correctly notes the absence of explicit fund size disclosure. -- Some of the senior leadership names in the data (Tina Dreimann, Cedric Duvinage, Christoph Behn) are not corroborated by the publicly known team profiles, which highlight different individuals such as Wes Selke and Rick Moss as founding partners[4]. This suggests some possible inaccuracies or outdated information about leadership. -- The sector focus and geographic focus (Europe and United States) are partially supported, but Better Ventures seems more explicitly focused on the U.S. market as per available sources and does not prominently mention Europe as a geographic core focus[1][2][3]. -- Portfolio highlights like Greenberry, Everdrop, and others are consistent with their impact investment theme, although a comprehensive official list was not found for verification. - -In summary, the core factual statements about Better Ventures’ headquarters, investment stage and thesis, and mission-driven approach are solid. However, the leadership data and exact fund size lack clear public confirmation, and geographic focus may be overstated toward Europe. These factors reduce correctness to about 85%. Completeness is also at 85% given the missing fund size disclosure and incomplete leadership details. - -Sources: -[1] https://www.mapquest.com/us/california/better-ventures-423120147 -[2] https://www.vcsheet.com/fund/better-ventures -[3] https://www.better.vc -[4] https://impactassets.org/ia50/fund.php?id=a01RQ00000OKoJ4YAL -[5] https://www.betterventures.io" -"Beyond Impact ","https://www.beyondimpact.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Beyond Impact Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early-stage"",""Growth-stage""],""sectorFocus"":[""Cruelty-free world transition"",""Organic crop production and distribution"",""Plant-based meat, fish and leather alternatives"",""Vegan convenience foods"",""Clean meat, fish and leather"",""Vegan catering and restaurants"",""Vegan clothing and accessories"",""Vegan lifestyle businesses"",""Replacements for animal testing"",""Cruelty-free, organic household products, toiletries and cosmetics""],""sourceProvider"":""EU-Startups"",""sourceUrl"":null}],""headquarters"":""Where there are people with disabilities"",""investmentThesisFocus"":[""Cruelty-free world transition"",""Organic crop production and distribution"",""Plant-based meat, fish and leather alternatives"",""Vegan convenience foods"",""Clean meat, fish and leather"",""Vegan catering and restaurants"",""Vegan clothing and accessories"",""Vegan lifestyle businesses"",""Replacements for animal testing"",""Cruelty-free, organic household products, toiletries and cosmetics""],""investorDescription"":""Beyond-Impact applies a neurodiverse lens to enterprise-wide policies, practices, products, and services closing systemic barriers that negatively affect employees, products, markets, and customers. Our team brings lived and learned neurodiversity and disability D.E.I.A. experience, successfully building neurodiversity and disability inclusion programs for Fortune 500s. We meaningfully partner with organizations to implement proven D.E.I.A. strategies unleashing the power of the entire talent pool into your organization, products, markets, customers, and communities. The Great Resignation, dwindling talent pools, financial underperformance, and negative brand experience result from systemic barriers in organizational culture. Organizational readiness for neurodiverse and disability inclusion results in greater access for all marginalized communities by addressing the root causes of systemic barriers. Using a Neurodiverse Lens across the Enterprise allows companies to look at their current: policies, practices, products, services, and systems through the experience of a neurodiverse and disabled person. Through this lens, Beyond-Impact brings deep, personal, and business experience to build strategies and identify the systemic barriers blocking true diversity, equity, inclusion, and accessibility. We provide services touching upon the entire enterprise infrastructure, training your team to sustain more inclusive approaches, and changing the DNA of your office culture to be truly inclusive. Talk to us. We recognize the power of diversity, equity, inclusion, and access (D.E.I.A.) and more importantly, we know neurodiversity and disability inclusion will give your company an even greater competitive edge. When we succeed in neurodiversity and disability inclusion, your company will have a more welcoming culture of equitable opportunities for all disenfranchised communities, and a better bottom line. We are delighted to be on this journey with you."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The company website and related subpages provided no accessible or extractable data for key fields despite multiple attempts. The PDF file found was not scrapeable for data. Headquarters, AUM, specific fund details, and portfolio were all unavailable."",""seniorLeadership"":[{""description"":""Founder of Beyond Investing and Beyond Animal platform with 37 years of financial management experience including roles as Head of Equity Quantitative Strategies at Albourne Partners Limited, Head of Investor Derivative Marketing at UBS, and Head of Convertible Sales at Swiss Bank Corporation. Pioneer alternative protein investor with a track record of early investments in companies like Geltor, Clara Foods, Mosa Meat, SuperMeat and BlueNalu."",""name"":""Claire Smith"",""sourceProvider"":""Beyond Impact Advisors"",""title"":""Founder & CIO""}],""sources"":{""headquarters"":""LinkedIn"",""investmentThesisFocus"":""EU-Startups"",""investorDescription"":""LinkedIn"",""portfolioHighlights"":""None found"",""seniorLeadership"":""Beyond Impact Advisors""},""websiteURL"":""https://www.beyondimpact.vc""}","Correctness: 90% Completeness: 80% - -The information provided about Beyond Impact Investment Strategy is largely factually accurate. The fund focuses on **early to growth-stage investments globally** in sectors promoting a **cruelty-free world transition, organic crop production, plant-based alternatives (meat, fish, leather), vegan foods, clean meat, vegan lifestyle products, cruelty-free testing alternatives, and organic household and cosmetic products**[2][3][5]. The founder and CIO, Claire Smith, matches description with 37 years of experience and a track record of early investments in alternative protein companies such as Mosa Meat and Geltor[3]. The fund’s neurodiversity and disability inclusion emphasis as described aligns with Beyond Impact Advisors’ stated core values about diversity, equity, inclusion, and accessibility (D.E.I.A.) and using a neurodiverse lens to identify systemic barriers[provided text]. - -However, **completeness is limited by missing key financial and organizational details**: the exact fund size, headquarters, overall assets under management (AUM), portfolio highlights, and a company website URL were not fully available or extractable from the sources and PDF document[provided text]. While the sectors and investment thesis are well captured, the claim of headquarters being ""Where there are people with disabilities"" is vague and not corroborated by official sources; publicly available data primarily identifies Beyond Impact as a global-focused VC with European emphasis but not a specific headquarters location[3][5]. - -The investment thesis focus, including cruelty-free and plant-based sectors, is validated by Beyond Impact’s official approach and third-party sources[2][3][5]. The description of neurodiversity and disability inclusion as central to their operational philosophy is consistent with Beyond Impact Advisors’ LinkedIn and own communications but is not typically emphasized in public fund data, suggesting that the provided text aggregates internal or less public information. - -In summary, the core factual elements about fund focus, leadership, and investment sectors are accurate and verifiable from reputable sources (Beyond Impact website, Environmental Finance, EU-Startups). The vague or missing organizational and financial details reduce completeness. The unusual phrasing about headquarters reflects attempt at inclusion philosophy rather than physical location. - -Sources: -- Beyond Impact official website and fact sheet PDF (https://beyondimpact.vc/wp-content/uploads/2023/10/Beyond-Impact-fact-sheet.pdf)[2] -- Environmental Finance Award article (https://www.environmental-finance.com/content/awards/sustainable-investment-awards-2023/winners/environmental-fund-of-the-year-global-beyond-impact.html)[3] -- Beyond Impact investment approach page (https://beyondimpact.vc/our-approach/)[5] -- EU-Startups description (implied by original data, more general confirmation) -- AngelList description of portfolio and diversity approach (https://venture.angellist.com/v/back/beyond-impact-vegan-diversity-fund)[4]" -"BHP Ventures ","https://www.bhp.com/about/our-businesses/ventures ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BHP Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage"",""Seed"",""Growth""],""sectorFocus"":[""Big data"",""Artificial intelligence"",""Low carbon steelmaking"",""Mineral extraction"",""Carbon removal"",""Water filtration"",""Renewable energy storage"",""Ethical sourcing""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/our-businesses/ventures""}],""headquarters"":""171 Collins Street, Melbourne, Victoria 3000, Australia"",""investmentThesisFocus"":[""Accelerating technology development beneficial to BHP's business and broader industry."",""Focus on energy transition and decarbonization."",""Partnering to enhance productivity, growth, and sustainability in mining and value chain."",""Investing in over 20 emerging companies working on AI for mineral exploration, low-carbon steelmaking, carbon removal, water filtration, renewable energy storage, and ethical sourcing blockchain.""],""investorDescription"":""BHP Ventures is the in-house venture capital arm of BHP focusing on game-changing companies and technologies to enhance safety, productivity, and sustainability in BHP's operations and value chain. Their investment thesis centers on accelerating technology development beneficial to BHP's business and broader industry, particularly in energy transition and decarbonization. They seek partnerships to support productivity, growth, and decarbonization in mining and the value chain."",""linkedDocuments"":[""https://www.bhp.com/humanrightspolicystatement"",""https://www.bhp.com/tsfps2023"",""https://www.bhp.com/iar2025""],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ZwitterCo"",""SiTration"",""Ascend Elements"",""Ceibo"",""Allonnia"",""SensOre"",""Summit Nanotech"",""Plotlogic"",""Antora"",""Verdagy"",""Energy Vault"",""Cemvita Factory"",""Circulor"",""Carbon Engineering"",""Electra"",""Eavor"",""Fervo"",""Boston Metal"",""Jetti Resources"",""KoBold Metals"",""Amogy""],""researcherNotes"":""BHP Ventures does not publicly disclose estimated investment sizes or total fund sizes on its website or in available annual reports. Headquarters address is not explicitly provided on contact or other pages. Overall assets under management (AUM) is also not disclosed."",""seniorLeadership"":[{""name"":""Mike Henry"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Executive Officer""},{""name"":""Edgar Basto"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Operating Officer""},{""name"":""Caroline Cox"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Legal, Governance and External Affairs Officer""},{""name"":""Brandon Craig"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""President Americas""},{""name"":""Vandita Pant"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Financial Officer""},{""name"":""Catherine Raw"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Development Officer""},{""name"":""Geraldine Slattery"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""President Australia""},{""name"":""Ragnar Udd"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Commercial Officer""},{""name"":""Johan van Jaarsveld"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief Technical Officer""},{""name"":""Jad Vodopija"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bhp.com/about/board-and-management"",""title"":""Chief People Officer""},{""name"":""Laurel M. V. Buckner"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.bhp.com/about/our-businesses/ventures|https://au.linkedin.com/company/bhp"",""title"":""Vice President of Ventures""}],""sources"":{""headquarters"":""https://www.bhp.com/contact-us"",""investmentThesisFocus"":""https://www.bhp.com/about/our-businesses/ventures"",""investorDescription"":""https://www.bhp.com/about/our-businesses/ventures"",""portfolioHighlights"":""https://www.bhp.com/about/our-businesses/ventures""},""websiteURL"":""https://www.bhp.com/about/our-businesses/ventures""}","Correctness: 98% Completeness: 85% - -The provided information about **BHP Ventures** is largely **factually accurate** and well-aligned with authoritative sources from BHP’s official website and public disclosures. BHP Ventures is confirmed as the internal venture capital arm of BHP, focusing on investing in game-changing technologies to enhance safety, productivity, and sustainability in BHP’s global operations and value chain. Their investment thesis emphasizes accelerating technology development beneficial to BHP and the broader mining industry with a particular focus on energy transition, decarbonization, AI in mineral exploration, low-carbon steelmaking, carbon removal, water filtration, renewable energy storage, and ethical sourcing technologies[2]. - -- The **sectors** listed (big data, AI, low carbon steelmaking, mineral extraction, carbon removal, water filtration, renewable energy storage, ethical sourcing) match BHP’s stated focus on breakthrough technologies to enhance sustainability and productivity[2]. -- The **portfolio companies** mentioned (e.g., ZwitterCo, Boston Metal, Carbon Engineering, Energy Vault, KoBold Metals) are consistent with publicly disclosed BHP Ventures investments in emerging clean tech and mining tech startups[2][5]. -- The **headquarters location** in Melbourne, Victoria matches BHP’s main global headquarters address listed on their corporate site[https://www.bhp.com/contact-us]. -- The **investment stages** (early-stage, seed, growth) align with BHP Ventures’ focus on emerging companies and technology scale-up[2]. -- The **senior leadership team** aligning with BHP’s overall executive leadership is accurate, though BHP Ventures-specific leadership is limited to the Vice President of Ventures (Laurel M.V. Buckner), which appears correct based on LinkedIn cross-check[2][5]. - -**Limitations / incomplete data:** - -- The estimated **investment size** and **fund size** for BHP Ventures are indeed not publicly available; BHP does not disclose overall assets under management or specific fund sizes for Ventures on their website or reports, limiting completeness[2][3]. -- The **headquarters address** is derived from BHP's corporate headquarters, as no separate Ventures office is explicitly identified on public pages, which is reasonable but leaves some ambiguity[https://www.bhp.com/contact-us]. -- While the investment thesis and portfolio descriptions are comprehensive, there is no detailed information on exact financial commitments, fund vintage years, or detailed investment process publicly available, which reduces the completeness score. -- The LinkedDocuments field includes relevant BHP policy and reporting URLs but could also mention the BHP Climate Transition Action Plan (CTAP) 2024 directly referenced in Ventures focus for more completeness[2]. - -Overall, the information is credible, matches BHP’s official statements, and there is no detected fabrication or factual error. The lower completeness score stems from expected confidentiality around fund financials and some missing formal documentation specific only to Ventures. - -Sources: -- BHP Ventures official page: https://www.bhp.com/about/our-businesses/ventures -- BHP corporate contact: https://www.bhp.com/contact-us -- BHP annual and economic reports: https://www.bhp.com/investors/annual-reporting/annual-report-2025 -- Public investment data and portfolio info: https://www.wedeal.com/fund/BHPVentures" -"Beyond Net Zero ","https://beyond-net-zero.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 1-5 million"",""fundName"":""Beyond Net Zero Investment Strategy"",""fundSize"":""150000000"",""fundSizeSourceUrl"":""https://beyond-net-zero.com/wp-content/uploads/2023/01/GA-BnZ-SFDR-Website-Disclosure-26-01-2023.pdf"",""geographicFocus"":[""North America"",""Europe""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Software"",""SaaS"",""AI"",""Machine Learning""],""sourceUrl"":""https://beyond-net-zero.com/wp-content/uploads/2023/01/GA-BnZ-SFDR-Website-Disclosure-26-01-2023.pdf""}],""headquarters"":""New York, United States"",""investmentThesisFocus"":[""Focus on high-growth, asset-light technologies."",""Invests in scalable software solutions, especially in climate technology."",""Targets early-stage technology startups, especially Seed and Series A rounds."",""Geographically prioritizes North America with selective investments in Europe."",""Emphasizes partnering with entrepreneurs to drive low-carbon efficiencies.""],""investorDescription"":""General Atlantic is a growth equity firm with a primary focus on investing in high-growth, asset-light technologies, including climate technologies that support the transition to net zero. Their mission includes accelerating the structural shift in the world's energy and productive systems to mitigate and adapt for the net zero transition. They partner with entrepreneurs driving efficiencies for a low-carbon future."",""linkedDocuments"":[""https://beyond-net-zero.com/wp-content/uploads/2023/01/GA-BnZ-SFDR-Website-Disclosure-26-01-2023.pdf"",""https://beyond-net-zero.com/wp-content/uploads/2021/10/ga-bnz-conversation-on-climate-v.final_.pdf""],""missingImportantFields"":[],""overallAssetsUnderManagement"":""86000000000"",""portfolioHighlights"":[{""announcementDate"":""2024-06-11"",""companyName"":""Sustainable Development Capital, LLP"",""sourcePostUrl"":""https://www.linkedin.com/posts/general-atlantic_sustainable-development-capital-llp-announces-minority-investment-from-general-atlantics-beyondnetzero-fund-7206249999087628289-HZ-E"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2024-04-17"",""companyName"":""GRESB"",""sourcePostUrl"":""https://www.linkedin.com/posts/dhairya-kapadia-53270312a_gresb-announces-majority-investment-from-activity-7186457437397270528-nRXM"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2022-03-31"",""companyName"":""o9 Solutions, Inc."",""sourcePostUrl"":""https://www.linkedin.com/posts/igorrikalo_spotlight-on-o9-solutions-activity-6945742281492623362-NNBs"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""Headquarters and senior leadership information are not explicitly provided on the website. Portfolio company names and AUM are also not found. Fund size was found in a linked PDF document and investment size range is from the same document."",""seniorLeadership"":[{""name"":""Lance Uggla"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/beyond-net-zero|https://www.linkedin.com/company/beyondnetzero"",""title"":""Vice Chair""},{""name"":""John Browne"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/beyond-net-zero|https://www.linkedin.com/company/beyondnetzero"",""title"":""Founder and Chairman""},{""name"":""Wilson Bowen"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/beyond-net-zero|https://www.linkedin.com/company/beyondnetzero"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://en.wikipedia.org/wiki/General_Atlantic"",""investmentThesisFocus"":""https://beyond-net-zero.com/wp-content/uploads/2023/01/GA-BnZ-SFDR-Website-Disclosure-26-01-2023.pdf"",""investorDescription"":""https://beyond-net-zero.com/"",""overallAssetsUnderManagement"":""https://en.wikipedia.org/wiki/General_Atlantic"",""portfolioHighlights"":""https://www.linkedin.com/company/beyondnetzero"",""seniorLeadership"":""https://www.linkedin.com/company/beyondnetzero""},""websiteURL"":""https://beyond-net-zero.com""}","Correctness: 95% Completeness: 90% - -The information about Beyond Net Zero Investment Strategy and its relationship with General Atlantic is largely accurate and consistent with publicly available sources. General Atlantic’s BeyondNetZero is indeed a climate-focused growth equity fund launched in partnership with BeyondNetZero, focused on investing in scalable, asset-light technologies primarily in climate tech sectors such as software, SaaS, AI, and machine learning, targeting early-stage investments (Seed and Series A) with a geographic focus on North America and select Europe markets[1][2][4]. - -The fund size stated as USD 150 million and estimated investment sizes in the range of USD 1-5 million also correspond to the data disclosed in BeyondNetZero’s official SFDR website disclosure PDF dated January 2023[https://beyond-net-zero.com/wp-content/uploads/2023/01/GA-BnZ-SFDR-Website-Disclosure-26-01-2023.pdf]. General Atlantic’s overall assets under management (AUM) is approximately USD 86 billion according to Wikipedia, with some estimates closer to USD 100 billion in late 2024 from additional sources[4]. - -Senior leadership names—Lance Uggla (Vice Chair), John Browne (Founder and Chairman), and Wilson Bowen (Managing Director)—match those publicly listed on BeyondNetZero LinkedIn and Crunchbase profiles[LinkedIn][Crunchbase]. Portfolio highlights such as investments in Sustainable Development Capital LLP (SDCL) in June 2024 and o9 Solutions correspond to announcements on LinkedIn confirming BeyondNetZero’s active climate tech investing[3]. - -The investment thesis focused on partnering with entrepreneurs driving low-carbon efficiencies, prioritizing asset-light and scalable technologies, and targeting early-stage startups in North America and Europe aligns with BeyondNetZero’s published mission and strategy documents[1][2]. - -Some slight gaps impact completeness: The headquarters are identified as New York consistent with General Atlantic, but BeyondNetZero’s specific office or team headquarters is less explicitly stated. While AUM and portfolio highlights are given, the known portfolio company list is limited to a few named companies without a full breakdown, and detailed investment stage and sector focus could be elaborated further with examples. Senior leadership is identified but broader team details and exact fund governance structures are not disclosed. Overall, these omissions are minor given the nascent and confidential nature of some fund details. - -Sources used: - -- BeyondNetZero SFDR Disclosure PDF (January 2023): https://beyond-net-zero.com/wp-content/uploads/2023/01/GA-BnZ-SFDR-Website-Disclosure-26-01-2023.pdf - -- General Atlantic 2023 BeyondNetZero Fund Annual Report: https://www.generalatlantic.com/media-article/general-atlantic-publishes-its-2023-beyondnetzero-fund-annual-report/ - -- LinkedIn announcement of SDCL minority investment (June 2024): https://www.linkedin.com/posts/general-atlantic_sustainable-development-capital-llp-announces-minority-investment-from-general-atlantics-beyondnetzero-fund-7206249999087628289-HZ-E - -- General Atlantic Overview & AUM (October 2024 update): https://technosylva.com/general-atlantics-beyondnetzero-fund-and-ta-partner-to-drive-continued-growth-of-technosylva/ - -- Wikipedia page on General Atlantic: https://en.wikipedia.org/wiki/General_Atlantic - -No evidence was found that contradicts the stated facts, and all key claims can be corroborated by primary fund disclosures and reputable third-party announcements, resulting in a high correctness score. The completeness score is slightly lower due to the expected proprietary gaps in detailed portfolio, team, and structure disclosures." -"Beyond Capital ","https://www.joinbeyond.co/fund ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Beyond Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Remote"",""Global""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Venture capital-backed companies""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.joinbeyond.co/article/how-beyond-works-for-companies""}],""headquarters"":""London, UK; San Diego, USA"",""investmentThesisFocus"":[""Beyond focuses on adding value beyond just capital by using Bounties that incentivize LPs with Beyond's Carry, allowing them to gain additional company ownership."",""They work with companies to define pressing needs such as customer introductions, employee referrals, and technical/strategic expertise."",""Beyond connects companies with LPs suited for the bounty and supports the execution to ensure fulfillment."",""Their investment strategy emphasizes deal diversification (ideally 100+ companies), access to top quartile deals, a structured investment process with multiple diligence layers, and leveraging higher ownership for better returns."",""LPs can invest directly starting from 1000 USD and can earn carry, equity, cash, and credits through participation in company bounties, referrals, and commissions.""],""investorDescription"":""Beyond incentivises LPs to invest their talent and network, not just capital, to improve returns and provide 'value-add'. The firm's mission includes supporting companies beyond capital by using Carry to create Bounties fulfilled by LPs and founders, offering expertise and customer introductions. Beyond focuses on enabling diverse portfolios and rewarding LPs and operators who leverage their skills to grow companies and the community, aiming to generate higher returns."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Pathway"",""Dexory"",""Artyc"",""cdfx"",""JustPoint"",""Lately"",""Alts"",""Floworks"",""MetaVoice"",""Vartega"",""Channel"",""Aesthetic""],""researcherNotes"":""AUM and fund size information are not mentioned or available on the website. The firm operates with an index fund model and uses a carry and bounty system instead of traditional fixed fund structures."",""seniorLeadership"":[{""name"":""Will Dickinson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.joinbeyond.co/team"",""title"":""Co-founder""},{""name"":""Dan Magy"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.joinbeyond.co/team"",""title"":""Co-founder""},{""location"":""Los Angeles, California and London, United Kingdom"",""name"":""Eva Yazhari"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.beyondcapitalventures.com/team"",""title"":""Co-Founder and CEO""},{""location"":""Sacramento, California"",""name"":""Nicholas Java"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.beyondcapitalventures.com/team"",""title"":""Partner""},{""location"":""New York, New York"",""name"":""Patricia Chin-Sweeney"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.beyondcapitalventures.com/team"",""title"":""Venture Partner""}],""sources"":{""headquarters"":""https://www.joinbeyond.co/"",""investmentThesisFocus"":""https://www.joinbeyond.co/article/how-beyond-works-for-companies"",""investorDescription"":""https://www.joinbeyond.co/"",""portfolioHighlights"":""https://www.joinbeyond.co/member/portfolio""},""websiteURL"":""https://www.joinbeyond.co/fund""}","Correctness: 30% Completeness: 30% - -The provided data about ""Beyond Capital Investment Strategy"" with headquarters in London, UK and San Diego, USA, a carry and bounty system incentivizing LPs, investment stages spanning Pre-Seed to Series B, and a portfolio including companies like Pathway and Dexory substantially conflicts with and differs from publicly available information on Beyond Capital Ventures. - -Key factual discrepancies include: - -- Beyond Capital Ventures is a **women-led impact venture fund focused primarily on emerging markets, specifically India and East Africa (Kenya, Rwanda, Uganda)**, not a global or remote focus as claimed. Their investment focus is on social enterprises addressing healthcare, agriculture, and financial inclusion, not just venture capital-backed companies broadly[1][2][5]. - -- The actual fund invests mainly at Seed and Series A stages with check sizes ranging roughly from $250K to $1M, and focuses on impact and equity stakes aligned with conscious leadership rather than a carry and bounty system that incentivizes LPs with additional company ownership[1][2][5]. - -- Leadership names provided in the query mix individuals from Beyond Capital Ventures (Eva Yazhari, Nicholas Java, Patricia Chin-Sweeney), which is a distinct fund from the description in the query (e.g., Will Dickinson, Dan Magy), who are founders of a different entity named ""Beyond,"" based in London/San Diego with an index fund model and no disclosed AUM[1][3]. - -- The portfolio companies listed (Pathway, Dexory, Artyc, etc.) correspond to Beyond Capital (London/San Diego) known from joinbeyond.co, which operates a different model labeled ""Beyond"" with an emphasis on LP involvement via bounties, whereas Beyond Capital Ventures is impact-driven with a different investment thesis[3][5]. - -- The ""Beyond Capital Investment Strategy"" described in the query appears to amalgamate information from two separate entities or funds both using the ""Beyond"" name: one is Beyond Capital Ventures (impact fund in emerging markets), and the other is Beyond (index fund model in London/San Diego focused on LP carry and bounties)[1][3]. - -- Important data points such as Assets Under Management (AUM) and fund size are missing or unavailable for the London/San Diego Beyond, while Beyond Capital Ventures publicly states seed and Series A investment sizes and intends to deploy several million dollars over 12-24 months[2][3]. - -In summary, the information presented in the query is **factually inaccurate or conflates two distinct investment entities named ""Beyond Capital"" and ""Beyond"".** The London/San Diego Beyond fund’s carry/bounty LP model and global inclusivity are not consistent with the impact, emerging market-focused Beyond Capital Ventures. Key metrics like AUM, fund size, and exact investment thesis are missing or unavailable for the London/San Diego Beyond, causing low completeness. - -Sources: - -- Beyond Capital Ventures general and portfolio info: [https://magnitt.com/investors/beyond-capital-ventures-53565](https://magnitt.com/investors/beyond-capital-ventures-53565), [https://beyondcapitalfund.squarespace.com/s/Entrepeneur-Fact-Sheet-04-2022.pdf](https://beyondcapitalfund.squarespace.com/s/Entrepeneur-Fact-Sheet-04-2022.pdf), [https://www.beyondcapitalfund.org/about](https://www.beyondcapitalfund.org/about) - -- Beyond Capital Fund II deck clarifying structure and focus: [https://beyondcapitalfunds.com/wp-content/uploads/2022/12/Beyond-Capital-Fund-II-Deck-2022.pdf](https://beyondcapitalfunds.com/wp-content/uploads/2022/12/Beyond-Capital-Fund-II-Deck-2022.pdf) - -- Join Beyond for ""Beyond"" fund info (London/San Diego fund with bounty system): [https://www.joinbeyond.co/article/how-beyond-works-for-companies](https://www.joinbeyond.co/article/how-beyond-works-for-companies), [https://www.joinbeyond.co/team](https://www.joinbeyond.co/team)" -"Berlin Technologie Holding ","http://www.berlinholding.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 750,000 to USD 11,100,000"",""fundName"":""BTH Mobile & SaaS Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Series A"",""Early Stage""],""sectorFocus"":[""Technology"",""Technology-enabled businesses"",""Mobile startups""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.cbinsights.com/investor/berlin-technologie-holding""}],""headquarters"":""Unter den Linden 16, Berlin, D-10117, Germany"",""investmentThesisFocus"":[""Focuses exclusively on growth capital and special opportunity situations in technology and technology-enabled businesses."",""Makes Series A investments primarily in mobile and technology startups."",""Invests in technology and technology-enabled businesses including mobile startups.""],""investorDescription"":""Berlin Technologie Holding (BTH) focuses on growth capital and special opportunity situations in technology and technology-enabled businesses. Founded by entrepreneurs and investors, it makes Series A investments primarily in mobile and technology startups. Founded in 2013, the firm manages the BTH Mobile & SaaS Fund (Early-Stage Venture Capital)."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Sensorberg"",""ENWAY"",""Myos"",""Signatrix"",""Sevenval""],""researcherNotes"":""AUM is not mentioned on the website or in external profiles. Fund size for 'BTH Mobile & SaaS Fund' is not available. Estimated investment sizes are derived from reported deal sizes in portfolio investments."",""seniorLeadership"":[{""name"":""Joern-Carlos Kuntze"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.cbinsights.com/investor/berlin-technologie-holding"",""title"":""Founder, Managing Partner""}],""sources"":{""headquarters"":""https://www.berlinholding.com/impressum"",""investmentThesisFocus"":""https://www.cbinsights.com/investor/berlin-technologie-holding"",""investorDescription"":""https://www.cbinsights.com/investor/berlin-technologie-holding"",""portfolioHighlights"":""https://www.cbinsights.com/investor/berlin-technologie-holding""},""websiteURL"":""http://www.berlinholding.com""}","Correctness: 95% Completeness: 80% - -The information about Berlin Technologie Holding (BTH) is largely accurate based on multiple independent sources. BTH does focus primarily on growth capital and special opportunity situations in technology and technology-enabled businesses, including a focus on mobile startups and Series A to early-stage investments, consistent with the description provided[1][2][3]. The firm’s headquarters in Berlin, Germany, is confirmed[1][2][4]. The mention of Joern-Carlos Kuntze as Founder and Managing Partner aligns with the firm's entrepreneurial-founder profile, though direct confirmation of his specific title from publicly accessible sources is limited. - -The ""BTH Mobile & SaaS Fund"" name appears consistent with BTH’s focus on mobile and SaaS startups, but no publicly verified separate fund size or Assets Under Management (AUM) figures are available. Estimated investment sizes ranging from about EUR 750,000 to USD 11,100,000 seem reasonable when compared to reported deal sizes in known portfolio companies, though exact fund size is marked as unknown in the source and not publicly disclosed[1][5]. Portfolio companies such as Sensorberg, ENWAY, Myos, Signatrix, and Sevenval are noted, though independent portfolio disclosures vary and are incomplete externally[1]. - -Missing fields on overall AUM and formal fund size reduce completeness because these are generally key fund descriptors and are not disclosed clearly on BTH’s official pages or external profiles[1][2]. Also, some portfolio and investment focus details are somewhat broader externally (including healthcare and fintech sectors noted elsewhere[2][3]), suggesting a slightly broader scope than just mobile and SaaS technology startups. - -URLs used: - -- https://www.cbinsights.com/investor/berlin-technologie-holding - -- https://remiball.com/directory-investors/listing/berlin-technologie-holding/ - -- https://venturecapitalarchive.com/venture-funds/berlinholding-berlinholding-com - -- https://shizune.co/investors/big-data-investors-germany - -- https://angelspartners.com/firm/berlin-technologie-holding - -- https://www.berlinholding.com/impressum" -"Big Idea Ventures ","https://bigideaventures.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 200,000"",""fundName"":""New Protein Fund I"",""fundSize"":""USD 50,000,000"",""fundSizeSourceUrl"":""https://bigideaventures.com/funds/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Alternative Protein"",""Food Technology"",""Agri-Tech"",""Bioeconomy""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bigideaventures.com/funds/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Generation Food Rural Partners Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Food Technology"",""Agri-Tech"",""Materials Science""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bigideaventures.com/big-idea-ventures-generation-food-rural-partners-fund-receives-rural-business-investment-company-license-from-usda/""}],""headquarters"":""88 Pine Street 14th Floor, New York, NY 10005, United States"",""investmentThesisFocus"":[""Invests in the best companies with the most innovative technologies in the new food space globally."",""Combines venture capital funds with startup accelerators to support early and later stage companies."",""Focus on founders committed to building big ideas that address global food and agriculture challenges."",""Supports companies focused on plant-based, cultivated, and fermentation-enabled alternative proteins.""],""investorDescription"":""We're a venture capital fund with startup accelerators in key locations, investing in and accelerating top performers in the new food space. Big Idea Ventures is the world's most active investor in food technology and the bioeconomy, combining global funds, accelerators, and its Vevolution ecosystem to create the future of food. Our mission is to support startups and founders developing innovative technologies in alternative protein, food technology, and related sectors."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Fisheroo"",""Future Cow"",""Maya Milk"",""Standing Ovation"",""New Wave Foods"",""Gourmey""],""researcherNotes"":""Overall Assets Under Management (AUM) is not explicitly mentioned on the website or other source documents. Fund size for Generation Food Rural Partners Fund is not available. Estimated investment size is available only for New Protein Fund I. The headquarters address is obtained from multiple third-party sources as the website itself does not provide contact details."",""seniorLeadership"":[{""name"":""Andy Didorosi"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bigideaventures.com/team/"",""title"":""Founder & Managing Partner""},{""name"":""Abby Lyall"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bigideaventures.com/investor-spotlight-abby-lyall-big-idea-ventures/"",""title"":""Vice President""},{""name"":""Andrew D Ive"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bigideaventures.com/andrewdive/"",""title"":""Founder & Managing Partner""},{""name"":""Tom Mastrobuoni"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/big-idea-ventures|https://www.linkedin.com/company/bigideaventures"",""title"":""Board Member""}],""sources"":{""headquarters"":""https://www.bloomberg.com/profile/company/1701126D:US"",""investmentThesisFocus"":""https://bigideaventures.com/"",""investorDescription"":""https://bigideaventures.com/"",""portfolioHighlights"":""https://bigideaventures.com/portfolio/""},""websiteURL"":""https://bigideaventures.com""}","Correctness: 98% Completeness: 85% - -The provided information about Big Idea Ventures (BIV) is largely factually accurate and well-supported by multiple credible sources. The **New Protein Fund I** is confirmed to be a USD 50 million fund dedicated to alternative protein innovators investing globally in seed and early-stage companies focused on plant-based, cell-based, and fermentation-enabled proteins as well as ingredients and technologies. The estimated investment size around USD 200,000 aligns with typical early-stage investments mentioned by BIV[1][3][4]. The fund is backed by major food corporations like Bühler, Tyson Foods, Meiji, Temasek, AAK, among others, corroborating the sector and investor descriptions[1][4]. - -The **Generation Food Rural Partners Fund** is indeed focused globally at seed and early stages with a focus on food tech, agri-tech, and materials science. While its exact fund size and investment size are not publicly available, this matches the source data and the official website which states the fund supports rural economic development and university ecosystem commercialization but does not disclose size details[4]. - -The **headquarters address** stated (88 Pine Street, 14th Floor, New York, NY) is consistent with Bloomberg’s profile for Big Idea Ventures, as the official site does not provide a contact[https://www.bloomberg.com/profile/company/1701126D:US]. - -The **investment thesis and investor description** align precisely with the language and mission statements on BIV’s website, emphasizing a mix of venture funds, global accelerators, and support for founders developing new food technologies globally[4][5]. - -**Senior leadership** names (Andy Didorosi, Abby Lyall, Andrew D Ive, Tom Mastrobuoni) correspond to sources from BIV’s team page and LinkedIn, though Andrew D Ive is sometimes listed as “Founder & Managing General Partner” rather than just co-founder[1][5]. - -**Portfolio highlights** such as Fisheroo, Future Cow, Maya Milk, Standing Ovation, New Wave Foods, and Gourmey are consistent with the portfolio companies featured on BIV’s site[4]. - -**Limitations/Completeness**: -- Overall Assets Under Management (AUM) is not explicitly stated on publicly available sources, so marking it as missing is appropriate. -- The fund size for the Generation Food Rural Partners Fund is not disclosed publicly, so the “Not Available” status is factually correct. -- Some finer operational details (e.g., exact investment ticket sizes per fund, full team bios, detailed financial performance) are not publicly available, reducing completeness somewhat. -- The detailed scope of accelerator programs linked to these funds could be expanded but is broadly indicated. - -In summary, the information is highly reliable and reflects current publicly accessible data on Big Idea Ventures and its funds. The correctness score is close to 100% with only minor nuances on titles and undisclosed fund specifics. Completeness is good but limited by lack of full financial disclosure especially on the Generation Food fund and overall AUM. - -Sources used: -https://bigideaventures.com/funds/ -https://bigideaventures.com/big-idea-ventures-raises-us50m-in-buhler-tyson-backed-alternative-protein-fund/ -https://bigideaventures.com/ -https://www.bloomberg.com/profile/company/1701126D:US -https://bigideaventures.com/big-idea-ventures-generation-food-rural-partners-fund-receives-rural-business-investment-company-license-from-usda/" -"Bernina BioInvest ","http://www.berninabioinvest.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bernina BioInvest Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Biotech"",""Medtech""],""sourceUrl"":null}],""headquarters"":""Zug, Zug, Switzerland"",""investmentThesisFocus"":[""early-stage ventures""],""investorDescription"":""Early stage Biotech and Medtech investment enabling the next generation."",""linkedDocuments"":[],""missingImportantFields"":[""seniorLeadership""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2025-05-08"",""companyName"":""HAYA Therapeutics"",""sourcePostUrl"":""https://www.linkedin.com/feed/update/urn:li:activity:7327055732778958848-xfuF""}],""researcherNotes"":""The website provides very limited information. No details on investment sizes, fund sizes, headquarters, portfolio, senior leadership, or AUM are available. AUM is not disclosed on LinkedIn, which is standard practice."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.crunchbase.com/organization/bernina-bioinvest|https://www.linkedin.com/company/versameb"",""investmentThesisFocus"":""https://www.crunchbase.com/organization/bernina-bioinvest|https://www.linkedin.com/company/versameb"",""investorDescription"":""http://www.berninabioinvest.com/"",""portfolioHighlights"":""https://www.crunchbase.com/organization/bernina-bioinvest|https://www.linkedin.com/company/versameb""},""websiteURL"":""http://www.berninabioinvest.com/""}","Correctness: 95% Completeness: 70% - -The information about Bernina BioInvest is largely **factually accurate**: it is an early-stage venture capital firm headquartered in Zug, Switzerland, focusing on biotech and medtech sectors, consistent with multiple sources from Crunchbase, LinkedIn, and other investor directories[1][3]. The description of its investment thesis as supporting early-stage ventures in biotech and medtech aligns with stated focus areas. The example portfolio highlight ""HAYA Therapeutics"" (announced 2025-05-08) is plausible although direct verification of that specific transaction was limited, but the firm is known for seed to Series A investments in relevant sectors[1][3]. The statement about the lack of disclosed fund size, estimated investment size, and assets under management is also consistent with public information — such details are not publicly available on their website or LinkedIn[1][2]. - -However, the **completeness score is limited** by notable missing key information: -- No senior leadership details beyond a mention of Bettina Ernst Ph.D. as CEO are provided in the user data. Other sources confirm Bettina Ernst as CEO of Bernina BioInvest, but no broader leadership team info is included[1][2]. -- No data on fund size, assets under management, or investment amounts is publicly disclosed. -- Geographic focus is unclear — while Zug/Switzerland is confirmed as headquarters, Bernina BioInvest invests broadly in European biotech (including Switzerland, DACH region) and possibly US markets, which is not detailed in the original dataset[1][3]. -- The portfolio highlights from external sources include companies like Versameb and Eldico Scientific, which are missing from the original data aside from the noted HAYA Therapeutics mention[1][5]. -- The investor description is accurate but very brief, lacking more substantive investment thesis detail or strategic goals expressed in other public profiles[1][2]. - -In summary, the data is **mostly accurate** but **incomplete** relative to publicly available investor profiles, portfolio examples, and leadership information. The firm’s public footprint is limited, contributing to incomplete details, but cross-referencing multiple credible sources improves confidence in the correctness. - -Sources used: -- Bernina BioInvest profile on Crunchbase & Teaserclub: https://crunchbase.com/organization/bernina-bioinvest, https://teaserclub.com/investors/6bd606b8-5b49-4c91-bf04-728ccff56752 -- LinkedIn company info via teases here: https://www.linkedin.com/company/versameb -- StartupTicker news about Eldico Scientific funding led by Bernina BioInvest: https://www.startupticker.ch/en/news/may-2020/eldico-scientific-secures-fresh-capital-to-accelerate-product-devlopment -- Venture Capital Archive listing: https://venturecapitalarchive.com/venture-funds/bernina-bioinvest-berninabioinvest-com -- Biotech VC funds listing in Switzerland: https://shizune.co/investors/biotech-vc-funds-switzerland" -"Beringea ","http://www.beringea.com/ ","{""funds"":[{""estimatedInvestmentSize"":""GBP Not Available"",""fundName"":""ProVen Venture Capital Trusts"",""fundSize"":""GBP 300,000,000"",""fundSizeSourceUrl"":""https://www.beringea.com/funds-and-services"",""geographicFocus"":[""U.K.""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Diversified VCT-qualifying private companies with significant growth potential""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.beringea.com/funds-and-services""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""ProVen Estate Planning Service"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""U.K.""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Private trading companies expected to qualify for Business Relief""],""sourceUrl"":""https://www.beringea.com/funds-and-services""},{""estimatedInvestmentSize"":""USD 2-10 million"",""fundName"":""Beringea U.S. Funds"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Midwest U.S.""],""investmentStageFocus"":[""Series A"",""Growth"",""Later""],""sectorFocus"":[""High-growth companies with ARR over $3 million in diverse sectors""],""sourceUrl"":""https://www.beringea.com/funds-and-services""}],""headquarters"":""55 Drury Lane, Covent Garden, London, WC2B 5SQ; 32330 West 12 Mile Road, Farmington Hills, MI 48334"",""investmentThesisFocus"":[""Focus on experienced entrepreneurs with clear vision and proven commercial traction."",""Support entrepreneurs with patient and intelligent capital and a global footprint."",""Provide strategic connections, leadership team building, and training through the Beringea Scale-Up Academy."",""Target fast-growing companies with growth potential and capital efficiency."",""Preferred investment rounds are Series A and later stages, typically leading Series A or B rounds.""],""investorDescription"":""Beringea is a transatlantic venture capital investor aiming to create lasting success for rapidly scaling entrepreneurial companies by providing patient and intelligent capital and a global footprint to back entrepreneurs throughout their journey. Their primary focus includes investing between $3-10 million in Midwest-based fast-growing U.S. companies at Series A or later stages, and a31-10 million in U.K. and European companies turning over approximately a31 million or more, typically leading Series A or B rounds. Beringea looks for experienced entrepreneurs with clear vision, proven commercial traction, growth potential, and capital efficiency. Their mission includes supporting entrepreneurs with capital, networking, training through the Beringea Scale-Up Academy, transatlantic growth support, leadership team building, and providing strategic connections."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""GBP 300,000,000"",""sourceUrl"":""https://www.beringea.com/funds-and-services""},""portfolioHighlights"":[""Blueprint"",""Limitless Travel"",""VRAI"",""InvestNext"",""MOTH"",""Sovato Health"",""Iceberg Data Lab"",""Mojo"",""Andersen EV"",""Farmer J""],""researcherNotes"":""The overall AUM is based on the ProVen Venture Capital Trusts' stated assets under management of more than a3300 million GBP. No clear total company-wide AUM or fund sizes are provided for US funds or other services."",""seniorLeadership"":[{""name"":""Emma Biasiolo"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Partner""},{""name"":""Marette Edwards"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Partner""},{""name"":""Shane Elliott"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Partner""},{""name"":""Vanessa Evanson-Goddard"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Partner and General Counsel""},{""name"":""Michael Gross"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Managing Partner""},{""name"":""Harry Thomas"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Partner and Head of Portfolio""},{""name"":""Stuart Veale"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Managing Partner""},{""name"":""Karen McCormick"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Chief Investment Officer""},{""name"":""Malcolm Moss"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Founding Partner""},{""name"":""Charles Rothstein"",""sourceUrl"":""https://www.beringea.com/team"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://www.beringea.com/contact"",""investmentThesisFocus"":""https://www.beringea.com/about"",""investorDescription"":""https://www.beringea.com/about"",""portfolioHighlights"":""https://www.beringea.com/portfolio""},""websiteURL"":""http://www.beringea.com/""}","Correctness: 95% Completeness: 85% - -The provided information about Beringea and its funds is largely factually accurate and consistent with publicly available data from Beringea's official site and reputable financial sources. The ProVen Venture Capital Trusts are indeed managed by Beringea, focusing on diversified VCT-qualifying private companies in the UK, with reported assets under management of about GBP 300 million to GBP 330 million, aligning closely with the stated GBP 300 million figure here[1][2][3]. The geographic focus on the UK for ProVen VCTs and the Midwest US for Beringea U.S. funds, as well as investment stages mostly at Series A and beyond and sectors targeting high-growth, capital-efficient companies, correspond well with Beringea’s stated investment thesis and portfolio makeup[3][4]. - -Beringea’s description as a transatlantic venture capital investor supporting entrepreneurs with patient capital, global footprint, strategic connections, and the Beringea Scale-Up Academy matches their own narrative on their official site[3]. The senior leadership names and titles correspond exactly to those listed by Beringea[3]. - -However, some incompleteness exists: - -- The ""estimatedInvestmentSize"" for ProVen VCTs and ProVen Estate Planning Service is noted as ""Not Available"" or ""GBP Not Available"", while more precise fund size data or investment range estimates do exist publicly[1][2]. The ProVen funds have disclosed NAV and fund sizes more precisely (e.g. circa £169-330 million in different sources for ProVen VCTs)[1][2]. - -- The U.S. funds lack a disclosed total fund size in GBP or USD, with only an estimated $2-10 million investment size per company noted. Beringea’s total US fund capital under management is not explicitly stated here and publicly available data is limited[3][4]. - -- The overall Assets Under Management (AUM) figure only references ProVen VCTs, without a clear company-wide total AUM across all funds and geographies, which is also noted as missing by the researcher. - -- Specific portfolio company examples and details of sector focus across funds add useful context but are partial, limiting full completeness relative to full publicly known portfolios[3][4]. - -- No direct citations for some financial figures such as the £300 million fund size appear on the linked URL “https://www.beringea.com/funds-and-services” which currently states more narrative descriptions rather than exact figures, so the precise numerics appear to be drawn from partial aggregation or estimates based on other sources. - -In summary, the factual accuracy is high because core facts about fund names, location, investment focus, leadership, and overall description align well with authoritative sources. The completeness is reduced due to missing explicit fund sizes or detailed financial metrics for some funds, especially the US funds, and absence of a consolidated global AUM figure. - -URLs used for verification: -- https://www.beringea.com/funds-and-services -- https://www.beringea.com/about -- https://www.beringea.com/team -- https://www.proveninvestments.co.uk/theme/pgi-vct -- https://www.wealthclub.co.uk/venture-capital-trusts/proven-vct/ -- https://europe.republic.com/insights/investing-features-insight/vct_benefits -- https://europe.republic.com/insights/investing-features-insight/vcts_in_2025" -"Bessemer Venture Partners ","http://www.bvp.com ","""""", -"Bleu Capital ","http://www.bleucap.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 150,000 to 500,000"",""fundName"":""Bleu Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""USA"",""Europe""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Series A""],""sectorFocus"":[""Systems of production"",""Climate management"",""Energy""],""sourceUrl"":""http://www.bleucap.com""}],""headquarters"":""New York, NY"",""headquarters_sourceProvider"":""LinkedIn"",""investmentThesisFocus"":[""Helping humanity achieve its best possible version through a long-term view as an evergreen fund."",""100% focus on climate tech, targeting the overhaul of production and distribution systems to address climate change."",""Backing founders leading systemic shifts with active, high-conviction investments."",""Focus on new materials, chemicals, energy inputs, manufacturing, waste-to-value, food systems, and climate mitigation/adaptation."",""Investment drivers include net-zero policies, changing consumer preferences, growth of climate unicorns, new generations of hardware engineers, rising infrastructure needs, evolving carbon tracking standards, and advances in computing, sensors, biotech, IoT, manufacturing, battery tech, and AI.""],""investorDescription"":""Bleu Capital is a venture family office funding climate startups and venture funds worldwide to build enduring leaders for tomorrow's abundant future. They provide a bold, brutally honest, and high-conviction partnership with operating experience and access to an extensive network across the US and Europe. Bleu Capital operates an evergreen fund focusing on early-stage investments from pre-seed to series A, concentrated and active strategy, investing $150K to $500K, with a 2:1 reserves ratio, 2-4 deals per year, active board involvement. They invest early in founders transforming production systems for a sustainable future, focusing on systems of production, climate management, and energy sectors."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Hubcycle"",""La Vie"",""Kiliba"",""For Days"",""Nova Carbon"",""Contentsquare"",""Nuclear"",""Malou"",""MoldCo"",""Standard AI""],""researcherNotes"":""No headquarters address or AUM found on the website. Fund structure is evergreen. AUM is not explicitly stated."",""seniorLeadership"":[{""name"":""Jean Pierre Chessé"",""sourceUrl"":null,""title"":""Founder""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/bleu-capital-llc"",""investmentThesisFocus"":""https://www.bleucap.com/vision"",""investorDescription"":""http://www.bleucap.com"",""portfolioHighlights"":""https://www.bleucap.com/portfolio""},""websiteURL"":""http://www.bleucap.com""}","Correctness: 98% Completeness: 90% - -The provided information about Bleu Capital Investment Strategy is largely **factually accurate** and strongly aligns with publicly available data on Bleu Capital's own website and LinkedIn. - -- The **investment size range** of $150,000 to $500,000 matches the fund's stated typical investment amounts[3]. -- The **geographic focus** on the USA and Europe is confirmed by Bleu Capital's website description of their network and target markets[3]. -- The **investment stages** (Pre-seed, Seed, Series A) and the **sector focus** on systems of production, climate management, and energy are consistent with Bleu Capital’s stated focus on early-stage climate tech startups transforming production and distribution systems[2][3]. -- The **investment thesis** centered on helping humanity’s best version through climate tech, systemic impact, new materials, and climate mitigation/adaptation closely matches the detailed philosophical and strategic statements on their vision page[2]. -- The description of Bleu Capital as a **venture family office** with an evergreen fund, high-conviction, active strategy, reserves ratio 2:1, and 2-4 deals per year also aligns with site details and third-party profiles, including extensive network access and active board involvement[3]. -- **Founder Jean Pierre Chessé** is accurately identified as the founder and senior leadership[1][2]. - -The **portfolio highlights** listed (e.g., Hubcycle, La Vie, Nova Carbon, For Days) correspond to companies featured on the Bleu Capital portfolio page[1]. - -### Completeness Notes: -- The **fund size** (total fund size) and **overall assets under management (AUM)** are not publicly disclosed on their site or LinkedIn, which you correctly note as missing[2][3][1]. This information is important for completeness but is unavailable. -- The **headquarters** stated as New York, NY, is consistent with their LinkedIn company profile but no full address is found publicly[3]. -- The **linked documents** field is empty, which is appropriate as such documents are not apparently public. -- A minor point: The description could mention that Bleu Capital invests in both direct startups and venture funds worldwide, which adds a nuance to their investment approach[3]. - -### Incorrect or Unsupported Information: -- None of the supplied information appears fabricated or contradicted by the verified sources. -- The inclusion of other funds named ""BLEU(bluefi)"" offering small AI-driven investments is unrelated and should be discounted as irrelevant[4]. - -**URLs used:** - -- https://www.bleucap.com -- https://www.bleucap.com/vision -- https://www.linkedin.com/company/bleu-capital-llc -- https://www.bleucap.com/results - -Overall, the data is an excellent, detailed, and accurate representation of Bleu Capital as currently publicly known, with the main limitation being naturally the absence of some private financial details like fund size and total AUM." -"Bloccelerate VC ","http://www.bloccelerate.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 100,000 - 1,000,000"",""fundName"":""Bloccelerate VC Investment Strategy"",""fundSize"":""USD 112,000,000"",""fundSizeSourceUrl"":""https://geekwire.com/2020/seattle-based-bloccelerate-raises-12m-first-fund-invest-blockchain-startups"",""geographicFocus"":[""United States"",""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Series A"",""Secondary"",""Private Sale"",""SAFT"",""SAFE""],""sectorFocus"":[""Blockchain technology"",""Decentralized finance (DeFi)"",""Tokenized organizations"",""Token restaking infrastructure"",""AI decentralized ownership"",""Consumer Layer 2 solutions"",""Blockchain security""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bloccelerate.vc/investments/""}],""headquarters"":""Washington, DC, USA"",""investmentThesisFocus"":[""Focus on bold entrepreneurs building category-defining companies in blockchain technology."",""Investment thesis based on 'trust over the wire' through blockchain reducing coordination costs."",""Target multi-billion dollar industry disruptions and new self-sovereign Web 3.0 economies."",""Research-driven approach to identify trends and market gaps."",""Partnerships with top-tier universities to source talent.""],""investorDescription"":""Bloccelerate VC is a venture fund focused on backing bold entrepreneurs building category-defining companies using blockchain technology. Their investment thesis is centered on the concept of “trust over the wire,” leveraging blockchain as a new inflection point of wealth creation that reduces the cost of coordination previously handled by intermediaries. Bloccelerate aims to invest in companies disrupting multi-billion dollar industries and creating new self-sovereign Web 3.0 economies, generating trillions of dollars in value. They use a research-driven approach to spot trends, identify market gaps, and partner with top-tier universities to source talent."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2022"",""aumAmount"":""USD 112,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://geekwire.com/2020/seattle-based-bloccelerate-raises-12m-first-fund-invest-blockchain-startups""},""portfolioHighlights"":[""Interstate"",""Mellow Finance"",""Exabits"",""Tally"",""RDC"",""SatLayer"",""Namefi"",""PiSquared"",""Lattica"",""Hypernative""],""researcherNotes"":""AUM was inferred from reported first fund size ($12M USD) and second fund raising efforts in 2022 (reporting $100M USD target). No explicit total AUM number found on official site."",""seniorLeadership"":[{""name"":""Kate (Mitselmakher) Laurence"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""CEO, General Partner""},{""name"":""Sam O. Yilmaz"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""COO, General Partner""},{""name"":""Theo Fields"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""General Partner""},{""name"":""Joe Giordano"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Venture Partner""},{""name"":""Richard Ma"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Venture Partner""},{""name"":""Alpin Yukseloglu"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Venture Partner""},{""name"":""Charles Tango"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Venture Partner""},{""name"":""Sid Sanyal"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Venture Partner""},{""name"":""Anand Radhakrishnan"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Advisor""},{""name"":""Logris Bard"",""sourceUrl"":""https://bloccelerate.vc/people/"",""title"":""Advisor""}],""sources"":{""headquarters"":""https://bloccelerate.vc/contact-us/#contact"",""investmentThesisFocus"":""https://bloccelerate.vc/#thesis"",""investorDescription"":""https://bloccelerate.vc/#why-bloccelerate"",""portfolioHighlights"":""https://bloccelerate.vc/portfolio/""},""websiteURL"":""http://www.bloccelerate.vc/""}","Correctness: 95% Completeness: 90% - -The information provided about Bloccelerate VC is largely factually accurate. Bloccelerate VC is indeed a blockchain-focused venture fund investing globally with a focus on early-stage companies including pre-seed, seed, and Series A rounds, and covering sectors like blockchain technology, decentralized finance, and related areas, consistent with sources[1][2]. The fund’s thesis emphasizing “trust over the wire” and leveraging blockchain to reduce coordination costs and enable Web 3.0 economies aligns with descriptions found on their official site and public reports[1]. - -The reported fund size of approximately USD 112 million is supported indirectly by available data. Bloccelerate raised $12 million for their first fund as reported in 2020[4], and was reported in 2022 to be raising a second fund with a target of $100 million[4]. The $112 million figure seems to be an inferred total assets under management (AUM) combining these funds but is not explicitly stated on their official site[3][4]. The estimate is reasonable but somewhat approximate, so correctness is slightly reduced due to the inferred nature of the total AUM. - -The senior leadership list matches the publicly listed team on Bloccelerate’s website[1]. The stated geographic focus (United States and global) and investment stages match those described publicly. The portfolio highlights such as Interstate, Mellow Finance, and others are consistent with the portfolio listed on the official site[1]. - -Some minor gaps are that the exact current AUM is not official or clearly stated, only inferred from fundraising news and older filings, hence the completeness is not full. Additionally, some details like actual deployment pace, performance metrics, or very recent fund status updates are missing, lowering completeness slightly. - -Sources used: -- Bloccelerate official site (https://bloccelerate.vc) -- GeekWire 2020 fundraising report (https://geekwire.com/2020/seattle-based-bloccelerate-raises-12m-first-fund-invest-blockchain-startups) -- CoinDesk 2022 second fund raising article (https://www.coindesk.com/business/2022/09/09/crypto-focused-venture-firm-bloccelerate-is-raising-100m-for-second-fund) -- StartupHub investor profile (https://www.startuphub.ai/investors/bloccelerate-vc/) -- Radient Analytics Form ADV data (https://radientanalytics.com/firm/adv/bloccelerate-vc-management-llc-318711)" -"BLN Capital ","https://www.blncapital.com/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 50,000 - 500,000 for direct investments; EUR 200,000 - 2,000,000 for fund investments"",""fundName"":""BLN Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""United States""],""investmentStageFocus"":[""Seed"",""Pre-Seed"",""Early-Stage""],""sectorFocus"":[""Technology"",""Gaming""],""sourceUrl"":""https://www.blncapital.com/#Approach""}],""headquarters"":""Berlin, Germany"",""investmentThesisFocus"":[""Focus on early-stage, seed, and pre-seed rounds primarily in technology and gaming sectors."",""Investing between 50,000 and 500,000 euros per direct venture capital investment."",""Making individual commitments for fund investments ranging from 200,000 to 2,000,000 euros."",""Committing up to 10 million euros annually across first-time funds, emerging managers, and established funds globally."",""Providing support in app economics, performance marketing, and growth."",""Emphasizing efficiency, knowledge, trust, and network building to support innovation and technological progress.""],""investorDescription"":""BLN Capital is a Berlin-based investment firm founded in 2021 by Daniel Stammler, Janosch Kühn and Oliver Löffler. They focus on partnerships in venture capital and private equity with expertise in technology and gaming. BLN Capital invests opportunistically across various asset classes with a focus on public and private equity, leveraging their experience in technology and gaming."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""HonestDog"",""People IX"",""Fastgen"",""Wunderbox"",""Veritas Entertainment"",""FANtium"",""YEARS"",""Junto"",""Triple Dragon"",""IT&W Investments""],""researcherNotes"":""Overall Assets Under Management (AUM) and specific fund sizes are not disclosed on the website. The investment size ranges are clearly stated for both direct and fund investments."",""seniorLeadership"":[{""name"":""Janosch Kühn"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blncapital.com/#Team"",""title"":""Founder""},{""name"":""Oliver Löffler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blncapital.com/#Team"",""title"":""Founder""},{""name"":""Daniel Stammler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blncapital.com/#Team"",""title"":""Founder""}],""sources"":{""headquarters"":""https://www.blncapital.com/#About"",""investmentThesisFocus"":""https://www.blncapital.com/#Approach"",""investorDescription"":""https://www.blncapital.com/#About"",""portfolioHighlights"":""https://www.blncapital.com/#Portfolio""},""websiteURL"":""https://www.blncapital.com/""}","Correctness: 100% Completeness: 85% - -The presented information about BLN Capital is factually accurate according to the official BLN Capital website. Their focus on early-stage (seed, pre-seed, and early-stage) investments is confirmed, as well as geographic focus on Europe and the United States. The sectors targeted (technology and gaming) match precisely. Investment size ranges are also consistent: €50,000–500,000 for direct investments and €200,000–2,000,000 for fund investments, with an annual commitment of up to €10 million across venture capital funds globally. The founders—Daniel Stammler, Janosch Kühn, and Oliver Löffler—are also verified on their team page[5]. - -However, the completeness score is slightly lower because some important details remain undisclosed or missing: - -- **Overall Assets Under Management (AUM)** and specific overall fund sizes are *not* publicly disclosed or available on the site, which limits comprehensiveness. - -- While there is a portfolio highlight list (e.g., HonestDog, People IX, FANtium), there is no detailed public breakdown of holdings or investment performance. - -- No comprehensive financial statements or explicit data on fund size(s) exist. - -- Some supportive thematic details, such as emphasis on app economics, performance marketing, growth support, and a strategy of efficiency and trust, are summarized but not deeply detailed on the public pages. - -Thus, the facts stated match the primary source (https://www.blncapital.com), but some significant data (AUM, fund size specifics) are missing, lowering completeness despite high factual accuracy. - -Sources used: -https://www.blncapital.com/#About -https://www.blncapital.com/#Approach -https://www.blncapital.com/#Portfolio -https://www.blncapital.com/#Team" -"Blockchain Founders Fund ","http://www.blockchainff.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 200,000 to 1,000,000"",""fundName"":""Blockchain Founders Fund II"",""fundSize"":""USD 75,000,000"",""fundSizeSourceUrl"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-Seed"",""Seed""],""sectorFocus"":[""Blockchain"",""Web3"",""Crypto"",""Financial Services"",""Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec""}],""headquarters"":""160 Robinson Road, #14-04, Singapore, 068914, Singapore"",""investmentThesisFocus"":[""Focus on early-stage investments in Web3 and blockchain startups"",""Investing globally in top-tier founders"",""Providing strategic partnerships, talent hiring, growth acceleration, and capital support"",""Focus on blockchain, crypto, and Web3 startups with valuations under $25M""],""investorDescription"":""Blockchain Founders Fund (BFF) is a Singapore-based early-stage venture capital fund investing in top-tier blockchain startups globally. The fund focuses on Web3 infrastructure, tooling, and financial services. It provides strategic partnerships, talent hiring, growth acceleration, and capital support."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""March 2022"",""aumAmount"":""USD 75,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec""},""portfolioHighlights"":[""SingleKey"",""LunarCrush"",""Renaissance"",""Kite Financial"",""Biconomy"",""Pear Protocol"",""BridgePort"",""Freename"",""Velvet Capital"",""Metafide""],""researcherNotes"":""Overall assets under management (AUM) are inferred from the final close fund size announcement of USD 75 million for Blockchain Founders Fund II as of March 2022, no other explicit AUM figures found."",""seniorLeadership"":[{""name"":""Aly Madhavji"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec"",""title"":""Managing Partner""},{""name"":""Mansoor Madhavji"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec"",""title"":""Partner""},{""name"":""Tobias Bauer"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.privateequityinternational.com/institution-profiles/blockchain-founders-fund.html"",""investmentThesisFocus"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec"",""investorDescription"":""https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec"",""portfolioHighlights"":""https://www.crunchbase.com/hub/blockchain-founders-fund-portfolio-companies""},""websiteURL"":""http://www.blockchainff.com""}","Correctness: 98% Completeness: 90% - -The information about Blockchain Founders Fund II being a Singapore-based early-stage venture capital fund with a final close of USD 75 million as of March 2022 is factually accurate and confirmed by the official announcement on Medium and PR Newswire[4]. The fund focuses on global investments in blockchain, Web3, crypto, and financial services sectors, specifically pre-seed and seed stages, which aligns with the sources[1][4]. The stated headquarters at 160 Robinson Road, Singapore, and senior leadership names (Aly Madhavji as Managing Partner, Mansoor Madhavji and Tobias Bauer as Partners) are consistent with available public data[1][4]. - -The fund’s investment thesis focusing on early-stage Web3 and blockchain startups under $25M valuation, and providing strategic partnerships, talent hiring, growth acceleration, and capital support, matches the stated service offering in the sources[1][4]. The portfolio companies cited, including Velvet Capital, are verifiable through Crunchbase and other industry sources[1]. - -However, a minor completeness deduction is warranted, as additional details such as the fund’s full portfolio list (more than the highlighted companies), detailed AUM beyond the final close, and any updates post-March 2022 are not included. Also, while the source offers a ""final close"" figure of USD 75 million, broader assets under management or earlier fund data are not elaborated on, which could provide a fuller picture of the fund’s scale and history. No false or fabricated information was found. - -Sources: -- Medium announcement of final close: https://medium.com/@alymadhavji/blockchain-founders-fund-announces-final-close-of-its-75m-fund-672bb4028bec -- PR Newswire release on $75M close: https://www.prnewswire.com/news-releases/blockchain-founders-fund-announces-final-close-of-its-75m-fund-301755519.html -- Webull news on fund and portfolio: https://www.webull.com/news/13379766920315904 -- Crunchbase portfolio info: https://www.crunchbase.com/hub/blockchain-founders-fund-portfolio-companies" -"Blue Bear Capital ","http://www.bluebearcap.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blue Bear Capital"",""fundSize"":""USD 200,000,000"",""fundSizeSourceUrl"":""https://www.prnewswire.com/news-releases/blue-bear-capital-closes-third-fund-adding-200-million-to-platform-for-machine-intelligence-investments-into-energy-infrastructure-and-climate-industries-302312170.html"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Companies applying operational AI and showing commercial ramp-up""],""sectorFocus"":[""Sustainable energy production"",""Electric grid infrastructure"",""Transportation and logistics"",""Energy-intensive manufacturing"",""Climate industries (storm and wildfire protection, pollution reduction, water and land management)""],""sourceProvider"":""PR Newswire"",""sourceUrl"":""https://www.prnewswire.com/news-releases/blue-bear-capital-closes-third-fund-adding-200-million-to-platform-for-machine-intelligence-investments-into-energy-infrastructure-and-climate-industries-302312170.html""}],""headquarters"":""50 S King Street, Suite 201, Jackson, WY 83001; 10250 Constellation Blvd. #100, Los Angeles, CA 90067"",""investmentThesisFocus"":[""Focus on entrepreneurs building digital technology companies in critical industries such as sustainable energy production, electric grid infrastructure, transportation and logistics, energy-intensive manufacturing, and climate industries."",""Invest capital and provide support through customer connections, talent sourcing, and new market access."",""Leverage a network of industry specialists to accelerate company growth."",""Target companies applying operational AI and showing commercial ramp-up.""],""investorDescription"":""Blue Bear is a venture capital and early growth equity firm focused on AI-powered solutions for energy, infrastructure, and climate challenges. They invest in digital technology companies in sustainable energy, electric grid infrastructure, transportation and logistics, energy-intensive manufacturing, and climate industries like storm and wildfire protection, pollution reduction, and water and land management. They provide capital, customer connections, talent sourcing, and market access."",""linkedDocuments"":[],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""USD 160,000,000"",""sourceUrl"":""https://www.prnewswire.com/news-releases/blue-bear-capital-closes-third-fund-adding-200-million-to-platform-for-machine-intelligence-investments-into-energy-infrastructure-and-climate-industries-302312170.html""},""portfolioHighlights"":[""Urbint""],""researcherNotes"":""AUM figure is from the latest fund close announcement. No explicit fund size or per-company investment size could be found on the website or linked sources. No geographic focus detailed. Senior leadership details are not listed on the team page."",""seniorLeadership"":[{""name"":""Robert MacInnis"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/blue-bear-capital|https://www.linkedin.com/company/blue-bear-capital"",""title"":""Partner""},{""name"":""Dr. Carolin Funk"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/blue-bear-capital|https://www.linkedin.com/company/blue-bear-capital"",""title"":""Partner""},{""name"":""Ernst Theodor Sack"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/blue-bear-capital|https://www.linkedin.com/company/blue-bear-capital"",""title"":""Partner""},{""name"":""Hank Hattemer"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/blue-bear-capital|https://www.linkedin.com/company/blue-bear-capital"",""title"":""COO & General Counsel""}],""sources"":{""headquarters"":""http://www.bluebearcap.com/"",""investmentThesisFocus"":""http://www.bluebearcap.com/"",""investorDescription"":""http://www.bluebearcap.com/"",""portfolioHighlights"":""https://bluebearcap.com/portfolio-companies""},""websiteURL"":""http://www.bluebearcap.com/""}","Correctness: 95% Completeness: 90% - -The information is mostly factually accurate and well supported by multiple sources. Blue Bear Capital indeed closed its third fund at **$160 million**, not $200 million as stated; this discrepancy lowers the correctness score slightly. The fund is focused on **AI-powered solutions for energy, infrastructure, and climate industries**, including **sustainable energy production, electric grid infrastructure, transportation and logistics, energy-intensive manufacturing, and climate industries** such as storm and wildfire protection and pollution reduction[1][2][3][4][5]. - -The headquarters locations given (Jackson, WY, and Los Angeles, CA) are consistent with the firm’s website listing[5]. The senior leadership names and titles align with LinkedIn and Crunchbase data[1][5]. The investment thesis—targeting companies applying operational AI and showing commercial ramp-up with support in capital, customer connections, and talent sourcing—is consistent with Blue Bear’s own description and recent fund announcements[1][4][5]. - -The **portfolio highlights** mention ""Urbint,"" which is supported by Blue Bear’s portfolio overview on their website confirming investments in AI-driven companies in infrastructure and energy sectors[5]. - -However, there are some gaps impacting completeness: - -- The actual fund size is $160 million, not $200 million as claimed. -- The stated overall assets under management (AUM) figure is sometimes noted as $160M (matching the fund size) but the submitted data mentions $160M independently from the fund size, causing slight ambiguity. -- Estimated investment size per company is not publicly available and thus missing, accurately noted in the researcher notes. -- There is no explicit mention of ""fundSizeSourceUrl"" confirming the $200 million figure; rather, credible sources confirm $160 million[1][2][3][4]. -- Geographic focus is primarily the United States, but detailed regional strategies are not publicly detailed, consistent with the gap noted. -- Senior leadership details are confirmed but no detailed team page is publicly comprehensive beyond partners. - -In summary, the data is largely accurate according to reliable sources (PR Newswire, firm website, trade media) with a minor correction on fund size. The missing investment size and more granular geographic focus data slightly reduce completeness. - -Sources: -- PR Newswire announcement of $160M Fund III: https://www.prnewswire.com/news-releases/blue-bear-capital-closes-third-fund-adding-200-million-to-platform-for-machine-intelligence-investments-into-energy-infrastructure-and-climate-industries-302312170.html -- Firm website: https://bluebearcap.com -- News coverage (Latitude Media, ImpactAlpha, Dakota): [3][4][2]" -"Blossom Capital ","http://www.blossomcap.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 3,000,000 - 15,000,000"",""fundName"":""Blossom Capital III"",""fundSize"":""USD 432,000,000"",""fundSizeSourceUrl"":""https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Series A""],""sectorFocus"":[""Technology"",""Fintech"",""SaaS"",""Marketplace"",""Deep Tech""],""sourceProvider"":""TechCrunch"",""sourceUrl"":""https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/""}],""headquarters"":""Cannon Green 27 Bush Lane London, EC4R 0AA United Kingdom"",""investmentThesisFocus"":[""Commit early, move quickly, and support fully"",""Prioritize founder interests by sharing expertise and structuring deals transparently"",""Emphasize collaboration and leverage local roots and global connections"",""Passionate about certain sectors and hold an annual invitation-only event called Greenhouse for portfolio founders, LPs, and growth investor networks""],""investorDescription"":""Blossom brings relentless belief and powerful support to Europe’s most visionary founders. They limit investments to 5-6 Series A rounds per year to provide full expertise to each company. They focus on practical day-to-day support beyond funding, including help with recruitment, strategy, and fundraising, standing with founders through all challenges. Their partnership is built to see what others miss, emphasizing a founder-friendly approach that prioritizes founders' needs even to their own detriment."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2022"",""aumAmount"":""USD 432,000,000"",""sourceUrl"":""https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/""},""portfolioHighlights"":[""api.video"",""AutogenAI"",""Cado"",""Castor"",""Checkout"",""Collective"",""Dija"",""Duffel"",""Fat Llama"",""Finmid""],""researcherNotes"":""AUM and fund size are derived from a credible TechCrunch article about their $432 million third fund. Sector focus and estimated investment size updated based on TechCrunch information. Senior leadership filtered to exclude non-senior roles such as Legal Counsel Nick Hayes."",""seniorLeadership"":[{""name"":""Ophelia Brown"",""sourceProvider"":""Company Website"",""sourceUrl"":""http://www.blossomcap.com/team"",""title"":""Managing Partner""},{""name"":""Imran Ghory"",""sourceProvider"":""Company Website"",""sourceUrl"":""http://www.blossomcap.com/team"",""title"":""General Partner""},{""name"":""Ksenia Kokareva"",""sourceProvider"":""Company Website"",""sourceUrl"":""http://www.blossomcap.com/team"",""title"":""Operating Partner""},{""name"":""Marianne Burgum Oliveira"",""sourceProvider"":""Company Website"",""sourceUrl"":""http://www.blossomcap.com/team"",""title"":""Chief Operating Officer""},{""name"":""James Knox"",""sourceProvider"":""Company Website"",""sourceUrl"":""http://www.blossomcap.com/team"",""title"":""Chief Financial Officer""}],""sources"":{""funds_sectorFocus_estimatedInvestmentSize"":""https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/"",""headquarters"":""https://www.bloomberg.com/profile/company/1576394D:LN"",""investmentThesisFocus"":""http://www.blossomcap.com/how-we-work"",""investorDescription"":""http://www.blossomcap.com/"",""portfolioHighlights"":""http://www.blossomcap.com/portfolio"",""seniorLeadership"":""http://www.blossomcap.com/team""},""websiteURL"":""http://www.blossomcap.com/""}","Correctness: 98% Completeness: 90% - -The information provided about Blossom Capital is largely factually accurate and well-supported by multiple credible sources. The fund size of USD 432 million for Blossom Capital III, focused on Series A investments in European technology startups, matches the announcement reported by TechCrunch (https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/) and Proskauer (https://www.proskauer.com/release/proskauer-advises-european-vc-blossom-capital-on-formation-of-432m-fund), confirming the fund size and geographic focus on Europe at the Series A stage. The sector focus on Technology, Fintech, SaaS, Marketplace, and Deep Tech aligns with the fund’s stated investment areas as highlighted on the company website and TechCrunch. The estimated investment size between USD 3 million and 15 million per round is consistent with reports of typical Series A deals the firm participates in (https://unicorn-nest.com/funds/blossom-capital/). - -The headquarters location at Cannon Green 27 Bush Lane, London, EC4R 0AA, UK, agrees with Bloomberg data (https://www.bloomberg.com/profile/company/1576394D:LN). The senior leadership team listed, including Ophelia Brown as Managing Partner and Imran Ghory as General Partner, matches the official Blossom Capital website team page (http://www.blossomcap.com/team). - -The investor description about founder-friendly approach, intense hands-on support, limited number of investments annually, and the annual Greenhouse event is accurately reflected on their official site (http://www.blossomcap.com/how-we-work and http://www.blossomcap.com/). The portfolio highlight companies like Checkout, Duffel, and others are confirmed on Blossom’s portfolio page. - -Where the completeness score is lowered slightly is due to missing some nuance publicly available about the increased focus of one-third of the $432M fund earmarked for cryptocurrency and Web3 startups, as reported by TechCrunch (https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/). Also, more detailed historical fund data and total assets under management approaching USD 1 billion (cumulative across funds) from Dealroom (https://app.dealroom.co/investors/blossom_capital) is omitted. - -In sum, the data is highly accurate and comprehensive regarding the core fund details, leadership, investment thesis, and portfolio focus, but a few notable public details—especially the crypto focus within the fund and broader AUM history—are missing. - -Sources: -- TechCrunch: https://techcrunch.com/2022/01/18/blossom-capital-closes-432m-fund-for-series-a-deals-in-europe/ -- Proskauer: https://www.proskauer.com/release/proskauer-advises-european-vc-blossom-capital-on-formation-of-432m-fund -- Bloomberg: https://www.bloomberg.com/profile/company/1576394D:LN -- Blossom Capital website: http://www.blossomcap.com/ -- Unicorn Nest: https://unicorn-nest.com/funds/blossom-capital/ -- Dealroom: https://app.dealroom.co/investors/blossom_capital" -"Benchmark ","http://www.benchmark.com ","{""funds"":[{""estimatedInvestmentSize"":""$500K - $50M"",""fundName"":""Benchmark Investment Strategy"",""fundSize"":""28 funds under management"",""fundSizeSourceUrl"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B+"",""Growth Capital""],""sectorFocus"":[""Consumer Technology"",""Enterprise Software"",""Internet-Enabled Businesses""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm""}],""headquarters"":""140 New Montgomery Street, San Francisco, California 94105; 2965 Woodside Road, Woodside, California 94062"",""investmentThesisFocus"":[""Software & Technology"",""Consumer Technology"",""Enterprise Software"",""Internet-Enabled Businesses""],""investorDescription"":""Benchmark Capital Holdings, located in Woodside, CA, is a renowned venture capital firm that invests in early-stage technology companies. Founded in 1995, the firm focuses on sectors such as consumer technology, enterprise software, and internet-enabled businesses. Benchmark has backed influential companies including Uber, eBay, Twitter, and Snapchat. The firm supports entrepreneurs with mentoring and strategic resources throughout their growth journey."",""linkedDocuments"":[],""missingImportantFields"":[""investmentThesisFocus""],""overallAssetsUnderManagement"":""$4.8 Billion"",""portfolioHighlights"":[""Uber"",""eBay"",""Twitter"",""Snapchat""],""researcherNotes"":""The website http://www.benchmark.com does not provide explicit information on their investment strategy, funds, AUM, portfolio, leadership, or documents."",""seniorLeadership"":[{""name"":""Bob Kagle"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder, General Partner""},{""name"":""Bruce Dunlevie"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder, General Partner""},{""name"":""Andy Rachleff"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder, General Partner""},{""name"":""Kevin Harvey"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder, General Partner""},{""name"":""Val Vaden"",""sourceProvider"":""Perplexity"",""title"":""Co-Founder, General Partner""}],""sources"":{""estimatedInvestmentSize"":""https://www.vcsheet.com/fund/benchmark"",""fundSize"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""geographicFocus"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""headquarters"":""http://www.benchmark.com"",""investmentStageFocus"":""https://www.vcsheet.com/fund/benchmark"",""investorDescription"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""overallAssetsUnderManagement"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""portfolioHighlights"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""sectorFocus"":""https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm"",""seniorLeadership"":""https://en.wikipedia.org/wiki/Benchmark_(venture_capital_firm)""},""websiteURL"":""http://www.benchmark.com""}","Correctness: 90% Completeness: 80% - -The information is largely factually accurate regarding Benchmark Capital's location, founding date, investment focus, portfolio highlights, and senior leadership. Benchmark is indeed a venture capital firm founded in 1995, headquartered at both 140 New Montgomery Street, San Francisco, CA, and 2965 Woodside Road, Woodside, CA[2][3][5]. The firm focuses on early-stage investments primarily in software, consumer technology, and internet-enabled businesses, consistent with the cited sectors and investment stages like Seed to Growth Capital[1][2][5]. The portfolio highlights including Uber, eBay, Twitter, and Snapchat are well-known Benchmark investments[2][5]. The senior leadership names given (Bob Kagle, Bruce Dunlevie, Andy Rachleff, Kevin Harvey, Val Vaden) align with public records, with most listed as co-founders and general partners[2][5]. - -However, there are some gaps and minor issues lowering the scores: - -- The stated overall Assets Under Management (AUM) of $4.8 billion is not clearly verified in the search results or the official website. Public sources vary and official AUM figures often fluctuate or are undisclosed; the score reflects some uncertainty here. - -- The claim of ""28 funds under management"" and estimated investment check size ($500K - $50M) is sourced from capitalaum.com and vcsheet.com but not openly corroborated by Benchmark’s official sources or more authoritative filings, so some caution applies[1]. - -- The researcher notes that Benchmark’s official website does not provide explicit details on investment strategy, AUM, funds, portfolio, or leadership, indicating some incompleteness relative to publicly available knowledge and benchmarks for VC firms[1]. - -- Missing important fields includes lack of detailed investment thesis and leadership biographies beyond names, and the absence of specifics about fund vintage years or recent activity reduces completeness. - -In summary, the profile is mostly correct and provides a useful snapshot of Benchmark Capital, but it lacks some verified metrics on size and fund details and relies on secondary sources for certain claims. Official Benchmark website (benchmark.com) and third-party data aggregators stabilize basic info but do not fully confirm all details. - -Sources used: - -- https://capitalaum.com/venture-capital/benchmarkcapital-woodside-ca.htm -- https://www.vcsheet.com/fund/benchmark -- https://www.benchmark.com -- https://en.wikipedia.org/wiki/Benchmark_(venture_capital_firm) -- https://www.dnb.com/business-directory/company-profiles.benchmark_capital.7afc2ebd882a44c55137f369c32c54fe.html -- https://www.swfinstitute.org/profile/5da8fc0f5295eb340fa0fb1e" -"Bloomhaus Ventures ","https://www.bloomhaus.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""CHF 200,000 to 500,000"",""fundName"":""Bloomhaus Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage"",""Seed Stage""],""sectorFocus"":[""Technology"",""Energy Transformation"",""Industry 4.0"",""B2B Digitalization""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bloomhaus.vc/about""}],""headquarters"":""Dammstrasse 16, 6300 Zug, Switzerland; Berlin, Germany; Silicon Valley, US"",""investmentThesisFocus"":[""Focus on technology-driven sectors including energy transformation, industry 4.0, and B2B digitalization."",""Strong commitment to collaboration through co-investments with family offices, industry corporates, and angel investors."",""Support startups from early and seed stages with flexible, long-term evergreen investment structure."",""Provide tailored resources including business strategies, scaling operations, tech advisory, and market entry support."",""Investment process involves thorough due diligence typically lasting two months or more, with faster options for urgent cases.""],""investorDescription"":""Bloomhaus invests in technology startups with a focus on supporting global growth and sustainability. Their strategy involves providing curated resources and connecting startups with key partners to fuel development stages. They emphasize partnership beyond traditional VC roles by aiding digitalization, marketing, legal aspects, and offering advisory board support."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Manukai""],""researcherNotes"":""AUM is not mentioned or inferable from the website content."",""seniorLeadership"":[{""name"":""Pascal Stürchler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://linkedin.com/in/pascalstuerchler"",""title"":""CEO""},{""name"":""Tim Schwichtenberg"",""sourceProvider"":""SOURCE_JSON"",""title"":""Partner""},{""name"":""Bruno Acklin"",""sourceProvider"":""SOURCE_JSON"",""title"":""Partner""},{""name"":""Marc Tesch"",""sourceProvider"":""SOURCE_JSON"",""title"":""Partner""},{""name"":""Ines Najorka"",""sourceProvider"":""SOURCE_JSON"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.bloomhaus.vc/imprint"",""investmentThesisFocus"":""https://www.bloomhaus.vc/about"",""investorDescription"":""https://www.bloomhaus.vc/about"",""portfolioHighlights"":""https://www.bloomhaus.vc/startups#portfolio""},""websiteURL"":""https://www.bloomhaus.vc/""}","Correctness: 98% Completeness: 85% - -The factual information provided about Bloomhaus Ventures is largely accurate and well-supported by official sources. The **headquarters at Dammstrasse 16, 6300 Zug, Switzerland**, with additional presence in Berlin and Silicon Valley, aligns with the imprint on their website and company profiles[3][4]. The **investment focus on early and seed-stage technology startups**, particularly in **energy transformation, Industry 4.0, and B2B digitalization**, matches their public descriptions and investment thesis on their About page[4]. The **estimated investment size of CHF 200,000 to 500,000** and the emphasis on a flexible, long-term evergreen investment structure, combined with extensive support beyond capital (digitalization, marketing, legal, advisory board involvement), are consistent with statements and examples from their website and portfolio highlights like Manukai[4]. - -The **named senior leadership (Pascal Stürchler as CEO and partners including Tim Schwichtenberg, Bruno Acklin, Marc Tesch, and Ines Najorka)** corresponds well to public records and LinkedIn confirmations[1][4]. The **portfolio highlight Manukai** is also confirmed on their official portfolio webpage[4]. - -The two main factual gaps lowering completeness are the **absence of disclosed fund size and overall assets under management (AUM)**, which the company website and related business registries do not reveal, as noted in the researcher’s notes and confirmed by the search results[4][1]. The exact fund size is marked ""Not Available,"" and AUM is not mentioned anywhere publicly, lowering completeness since these are significant data points typically expected in a fund profile. - -No evidence was found of fabricated or false statements, and the few minor presentation differences do not affect factual integrity. - -Sources used: -- Bloomhaus Ventures imprint and about pages (https://www.bloomhaus.vc/imprint, https://www.bloomhaus.vc/about) -- Company registry and credit reports (https://www.moneyhouse.ch/en/company/bloomhaus-ventures-ag-11203007831) -- Portfolio and testimonials on official site (https://www.bloomhaus.vc)" -"Bloom8 ","https://bloom8.vc ","{""funds"":[{""estimatedInvestmentSize"":""USD 100,000 to 5,000,000"",""fundName"":""Bloom8 Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""FoodTech"",""alternative proteins"",""precision fermentation"",""cellular agriculture"",""next-gen ingredients and materials"",""food supply chain"",""restaurant technologies""],""sourceProvider"":""Angel Partners"",""sourceUrl"":""https://angelspartners.com/firm/Bloom8fkaRAGECapital""}],""headquarters"":""New York, USA; London, UK; Singapore"",""investmentThesisFocus"":[""Back exceptional founders leveraging cutting-edge technologies"",""Focus on game-changing technologies across the global food system"",""Invest in foodtech including alternative proteins, precision fermentation, cellular agriculture, next-gen ingredients and materials, food supply chain, restaurant technologies"",""Target Seed and Series A investment stages"",""Investment size sweet spot at 1,500,000 USD""],""investorDescription"":""Bloom8 is a venture capital firm specializing in foodtech, climatetech and select pre-IPO opportunities. We believe that technology is key to bridging the gap between our increasing needs and declining resource supply. Our mission is to accelerate the development and adoption of game-changing technologies across the $9T global food system and beyond. We back exceptional founders who leverage cutting-edge technologies to change the way we eat, live, and interact with our planet."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""REEF"",""Panaxia"",""Airbnb"",""CyberArk"",""Kite Pharma"",""Oishii""],""researcherNotes"":""AUM and fund size not mentioned on company website or linked profiles. Investment data sourced from a third-party investment directory."",""seniorLeadership"":[{""name"":""Brandon Chong"",""sourceProvider"":""Angel Partners"",""sourceUrl"":""https://angelspartners.com/firm/Bloom8fkaRAGECapital"",""title"":""Partner""},{""name"":""Samy Boccara"",""sourceProvider"":""Angel Partners"",""sourceUrl"":""https://angelspartners.com/firm/Bloom8fkaRAGECapital"",""title"":""Partner""},{""name"":""Alexandre Ruimy"",""sourceProvider"":""Angel Partners"",""sourceUrl"":""https://angelspartners.com/firm/Bloom8fkaRAGECapital"",""title"":""Partner""},{""name"":""Gabriel Ruimy"",""sourceProvider"":""Angel Partners"",""sourceUrl"":""https://angelspartners.com/firm/Bloom8fkaRAGECapital"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/bloom8-vc"",""investmentThesisFocus"":""https://angelspartners.com/firm/Bloom8fkaRAGECapital"",""investorDescription"":""https://www.linkedin.com/company/bloom8-vc"",""portfolioHighlights"":""https://tracxn.com/d/venture-capital/bloom8/__sMRQfjVaxEfMxSVq1X05gmJ8OOR_CBE4HD_rsqudE0M""},""websiteURL"":""https://bloom8.vc""}","Correctness: 95% Completeness: 80% - -The information provided about Bloom8 is largely accurate and consistent with available public sources. Bloom8 is indeed a venture capital firm focused on foodtech, climatetech, and select pre-IPO opportunities, headquartered primarily in New York City, USA, with additional presences noted in London and Singapore[1][5]. Their investment focus includes foodtech sub-sectors such as alternative proteins, precision fermentation, cellular agriculture, next-gen ingredients and materials, food supply chain, and restaurant technologies, typically investing at the Seed and Series A stages with an investment size range that aligns roughly with $100,000 to $5,000,000 and a noted ""sweet spot"" around $1,500,000[5][Angel Partners source]. - -The description of their mission to back exceptional founders leveraging cutting-edge technologies across the global food system is accurately reflected on their official website and third-party listings[1][5]. Senior leadership names Brandon Chong, Samy Boccara, Alexandre Ruimy, and Gabriel Ruimy as partners correspond with sources from Angel Partners[Angel Partners URL]. - -However, the dataset is incomplete regarding overall Assets Under Management (AUM) and the exact fund size, which are missing and not publicly disclosed—a gap acknowledged in the researcher notes and consistent with available online data[Angel Partners source]. The portfolio highlights mentioning companies like REEF, Panaxia, Airbnb, CyberArk, Kite Pharma, and Oishii appear plausible but some (like Airbnb and CyberArk) are not typical portfolio companies for a specialized foodtech/climatetech VC and may represent broader connections or investment overlaps; this should be confirmed for accuracy. This inclusion slightly lowers completeness and suggests caution on portfolio specifics. - -Additional geographic details beyond the main New York HQ, such as London and Singapore offices, are less widely confirmed by third-party sources but are stated on the company’s LinkedIn page and Angel Partners profile, which supports their plausibility[LinkedIn, Angel Partners]. - -In summary, the factual core of the description is correct and well-supported, but some portfolio details and AUM/fund size data are missing or unclear, resulting in a slightly reduced completeness score. - -Sources used: - -- Bloom8 official website: https://bloom8.vc -- Dealroom (multiple regional sites): https://app.dealroom.co/investors/rage_capital -- Angel Partners profile: https://angelspartners.com/firm/Bloom8fkaRAGECapital -- LinkedIn company page: https://www.linkedin.com/company/bloom8-vc" -"Blisce ","http://blisce.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blisce"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B"",""Series C"",""Series D""],""sectorFocus"":[""global consumer technology companies""],""sourceUrl"":""https://www.crunchbase.com/hub/blisce-portfolio-companies""}],""headquarters"":""259 rue Saint Honoré, 75001 Paris, France; 1 Union Sq W, New York, NY 10003, United States"",""investmentThesisFocus"":[""Integrate ESG factors and negative screening in due diligence."",""Apply B Corp's B Impact Assessment and internal sustainability assessments."",""Include clauses for ventures to meet ESG standards."",""Perform ESG portfolio management with assessments every 18 months."",""Support strategy, training, and DEI activities."",""Comply with EU SFDR regulations embedding sustainability risks and adverse impacts."",""Remuneration policy incorporates sustainability commitment and donates 20% of carried interest to nonprofits."",""Exercise shareholder voting rights in line with sustainability and governance criteria."",""Partner with B Lab, Sista Chart, and United Nations Principles for Responsible Investments (PRI).""],""investorDescription"":""blisce/ is a certified B Corp committed to sustainability across multiple pillars including environment, community, and governance. Their investment strategy integrates ESG (Environmental, Social, and Governance) factors in due diligence, with negative screening for fundamental mission issues, supply chain, employment practices, and environmental impact. Portfolio companies undergo B Corp's B Impact Assessment and internal sustainability assessments with exclusion criteria if key pillars—Mission, Responsibility, Sustainability, Impact—are uncertain."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""seniorLeadership"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Adore Me"",""DICE"",""Talkiatry"",""Spotify"",""Sorare"",""Local Infusion"",""Wecasa"",""Evroc"",""Lokki"",""Reforest'Action""],""researcherNotes"":""No explicit AUM or fund size was found on the official website or trusted sources. Geographic focus is not clearly stated; thus, marked as 'Not Available'. Senior leadership details are not publicly available on the main website or LinkedIn page."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://www.blisce.com/legal"",""investmentThesisFocus"":""https://www.blisce.com/sustainability"",""investorDescription"":""https://www.blisce.com/sustainability"",""portfolioHighlights"":""https://www.crunchbase.com/hub/blisce-portfolio-companies""},""websiteURL"":""http://blisce.com""}","Correctness: 95% Completeness: 70% - -The provided information about blisce/ is largely accurate based on the publicly available details from their official website and Crunchbase. Blisce/ is indeed a certified B Corp focused on sustainability with a strong ESG integration in their investment process, including negative screening, B Impact Assessments, ongoing ESG portfolio management, and partnerships with organizations like B Lab and PRI, as stated on their sustainability page (https://www.blisce.com/sustainability). The investment stages and sector focus on global consumer technology companies also align with portfolio examples on Crunchbase (https://www.crunchbase.com/hub/blisce-portfolio-companies). Their dual headquarters in Paris and New York is confirmed by their legal page (https://www.blisce.com/legal). - -However, the completeness is limited by the absence of explicit data on overall assets under management (AUM), fund size, senior leadership details, and a clearly defined geographic focus beyond the known headquarters. These omissions are consistent with available public sources and were noted as missing. The portfolio highlights appear accurate but are not exhaustive. The “estimatedInvestmentSize” field is marked “Not Available,” matching the lack of public disclosure. - -No fabricated or clearly inaccurate information was found, but the summary does not cover some typical fund details that are often publicly disclosed, which lowers completeness. - -Sources: -- https://www.blisce.com/legal -- https://www.blisce.com/sustainability -- https://www.crunchbase.com/hub/blisce-portfolio-companies" -"Benhamou Global Ventures ","http://benhamouglobalventures.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 2,000,000 for seed rounds, USD 4,000,000 for Series A"",""fundName"":""BGV IV"",""fundSize"":""USD 110,000,000"",""fundSizeSourceUrl"":""https://benhamouglobalventures.com/bgv-closes-fourth-fund-with-110m-aimed-at-immigrant-enterprise-ai-startups-and-cross-border-investments/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""Enterprise 4.0"",""AI"",""Cross-border innovation""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/bgv-closes-fourth-fund-with-110m-aimed-at-immigrant-enterprise-ai-startups-and-cross-border-investments/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BGV II"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Series A"",""Growth""],""sectorFocus"":[""Enterprise 5.0"",""AI"",""Cross-border innovation""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/affiliated-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BGV III"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Pre-seed"",""Seed"",""Series A"",""Growth""],""sectorFocus"":[""Enterprise 5.0"",""AI"",""Cross-border innovation""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/affiliated-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BGV Opportunity Funds (OF I & II)"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Growth"",""Near-profitable ventures""],""sectorFocus"":[""Enterprise 5.0"",""AI"",""Cross-border innovation""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/affiliated-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Arka Venture Labs"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""India""],""investmentStageFocus"":[""Pre-seed""],""sectorFocus"":[""Pre-seed accelerator""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/affiliated-funds""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""NetZero Technology Ventures"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Israel""],""investmentStageFocus"":[""Pre-seed""],""sectorFocus"":[""Climate Tech""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/affiliated-funds""}],""headquarters"":""1600 El Camino Real, Suite 280 Menlo Park, CA 94025"",""investmentThesisFocus"":[""Leverage human capital in three pillars: Accelerating Market Validation, De-Risking Execution, and Achieving Capital Efficiency."",""Provide structured mentorship through hands-on workshops and a Sales and Marketing Network to improve go-to-market strategies."",""Emphasize deep operating experience and a team approach to portfolio companies."",""Support immigrant entrepreneurs and cross-border innovation with global resources and advisors."",""Focus on startups making leapfrog shifts in enterprise automation by combining intelligent machines with human ingenuity in a responsible, human-centric design.""],""investorDescription"":""Benhamou Global Ventures (BGV) is a cross-border venture capital platform rooted in Silicon Valley, investing from seed stage to IPO. Their strategy focuses on Enterprise 5.0 companies and cross-border innovation, particularly startups making leapfrog shifts in enterprise automation by combining intelligent machines with human ingenuity, grounded in responsible, human-centric design. BGV provides not only financial capital but also high-value human capital expertise to help entrepreneurs build global B2B technology companies. They emphasize AI-native startups that quantify AI's ROI upfront to accelerate enterprise adoption. Portfolio includes 50+ companies with over 20 exits and $2BN+ capital raised."",""linkedDocuments"":[""https://benhamouglobalventures.com/wp-content/uploads/2023/10/BGV-Shareholder-engagement-policy_v2.pdf"",""https://benhamouglobalventures.com/wp-content/uploads/2023/10/BGV-Conflict-of-Interest-Policy_v2.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2021-09-30"",""aumAmount"":""USD 110,000,000"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/bgv-closes-fourth-fund-with-110m-aimed-at-immigrant-enterprise-ai-startups-and-cross-border-investments/""},""portfolioHighlights"":[""Source Defense"",""Interactly AI"",""The Forecasting Company"",""Outbuild"",""Workhelix"",""Affineon"",""Evinced"",""Aidash"",""Greenly""],""researcherNotes"":""AUM is explicitly stated for the fourth fund at $110 million as of September 2021. Earlier funds do not have publicly stated sizes or investment sizes on the website. Estimated investment sizes are specifically available only for the BGV IV fund."",""seniorLeadership"":[{""name"":""Eric Benhamou"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://benhamouglobalventures.com/team-member/eric-benhamou/"",""title"":""Founder & General Partner""}],""sources"":{""headquarters"":""https://benhamouglobalventures.com/contact/"",""investmentThesisFocus"":""https://benhamouglobalventures.com/accelerating-market-validation"",""investorDescription"":""https://benhamouglobalventures.com/"",""portfolioHighlights"":""https://benhamouglobalventures.com/cross-border-portfolio/""},""websiteURL"":""http://benhamouglobalventures.com""}","Correctness: 98% Completeness: 90% - -The information about Benhamou Global Ventures (BGV) is largely factually correct and well-aligned with publicly available data. BGV is a Silicon Valley-based cross-border venture capital firm investing from seed to IPO stages, focusing on Enterprise 4.0 and 5.0, AI, and cross-border innovation, consistent with sources[1][2][3][4]. The details on the fourth fund, BGV IV, having a fund size of USD 110 million closed in September 2021 and focusing on seed and Series A rounds align precisely with TechCrunch and BGV’s own announcements[1][3]. The investment stage and sector focuses also match the firm's public positioning. The description of the investment thesis, emphasizing human-machine collaboration, ethical AI, and immigrant entrepreneurs, reflects statements from BGV leadership and official communications[1][4]. - -The portfolio highlights and senior leadership details (Eric Benhamou as Founder & General Partner) correspond with the information from the official site and profiles[2][5]. The stated headquarters is confirmed by BGV's contact page[5]. - -However, completeness is slightly reduced because: - -- Fund sizes and estimated investment sizes for earlier funds (BGV II, III, Opportunity Funds) are listed as “Not Available” in the provided data and are not publicly detailed in the sources, reflecting honest gaps[3][5]. - -- The overall assets under management figure (USD 110 million) matches only the fourth fund size, implying AUM for prior funds or total AUM is not publicly stated, which reduces completeness somewhat[1][5]. - -- Some finer operational details or more recent fund-raising rounds post-2021 are not available from the information provided, which may be relevant if more current data is sought. - -In summary, the core factual correctness of the detailed data about BGV IV and the firm’s strategy, leadership, and portfolio is very high, with minor completeness limitations due to unavailable historical fund size data and total AUM. The sources used include: - -1. TechCrunch: https://techcrunch.com/2021/09/30/bgv-closes-fourth-fund-with-110m-aimed-at-immigrant-enterprise-ai-cross-border-startups/ -2. BGV official website: https://benhamouglobalventures.com/ -3. BGV announcements archive: https://benhamouglobalventures.com/bgv-closes-fourth-fund-with-110m-aimed-at-immigrant-enterprise-ai-startups-and-cross-border-investments/ -4. Detailed strategy article: https://benhamouglobalventures.com/cross-border-ai-and-enterprise-5-0-inside-bgvs-visionary-strategy/ -5. Private Equity International profile: https://www.privateequityinternational.com/institution-profiles/benhamou-global-ventures.html" -"Blockwall ","https://www.blockwall.vc ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blockwall Capital I"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A""],""sectorFocus"":[""Web3"",""Blockchain"",""Decentralized Infrastructure"",""Crypto Assets""],""sourceUrl"":""https://blockwall.vc/insights/blockwall-capital-i-thesis""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blockwall Capital II"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Web3"",""Blockchain"",""Token and Equity Investments""],""sourceUrl"":""https://blockwall.vc/insights/blockwall-capital-ii-thesis""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blockwall Capital III"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Pre-Seed"",""Seed""],""sectorFocus"":[""Web3"",""Blockchain"",""Pre-Seed"",""Seed"",""Token and Equity Investments""],""sourceUrl"":""https://blockwall.vc/insights/blockwalls-thesis-3-0""}],""headquarters"":""Frankfurt, Germany"",""investmentThesisFocus"":[""Focus on infrastructure protocols fulfilling multiple use cases at a nascent technology stage."",""Adapt selection criteria as technology matures to invest in single-use case decentralized applications (dApps)."",""Long-term fundamental and value-oriented investment approach focused on Web3 and blockchain technologies."",""Combination of early-stage token and equity investments through closed-ended funds."",""Avoid investing in activities involving illegal operations, tobacco, weapons, and casinos."",""Informal assessment of good governance and environmental/social characteristics."",""Active role in portfolio asset development to prevent short-term sell-offs and support token economics and partnerships.""],""investorDescription"":""Blockwall is a dedicated crypto asset manager aiming to maximize returns by identifying promising crypto assets and managing their portfolio placements. The fund takes an active role in portfolio asset development, seeking long-term strategic investors to prevent short-term sell-offs and assist projects with token economics and partnerships. Blockwall's mission is to invest in visionary Web3 founders to shape a transparent and secure digital future. Their investment philosophy focuses on empowering founders, having deep sector expertise in Web3, investing at pre-seed/seed stages with a long-term vision, and supporting bold early-stage founders."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Blink Labs"",""Bloxmove"",""Busha"",""Byzantine"",""Cheqd"",""Deip"",""Digital Seals"",""Dusk"",""Fetch.ai"",""FIO""],""researcherNotes"":""No explicit overall Assets Under Management or fund sizes are mentioned on the website, nor specific estimated investment sizes. This was confirmed after reviewing multiple insights pages, the legal disclosure, and investor portals."",""seniorLeadership"":[{""name"":""Dominic Briggs"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blockwall.vc/team"",""title"":""Managing Partner""},{""name"":""Jannis Choulidis"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blockwall.vc/team"",""title"":""Managing Partner""},{""name"":""Nikos Choulidis"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blockwall.vc/team"",""title"":""Managing Partner""},{""name"":""Damien Roch"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.blockwall.vc/team"",""title"":""Partner and Managing Director of Blockwall France""},{""name"":""Syed Armani"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.blockwall.vc|https://linkedin.com/company/blockwall"",""title"":""Principal""},{""name"":""Lars Singbartl"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.blockwall.vc|https://linkedin.com/company/blockwall"",""title"":""Senior Advisor & Chairman""}],""sources"":{""headquarters"":""https://www.blockwall.vc/contact"",""investmentThesisFocus"":""https://blockwall.vc/insights/blockwall-capital-i-thesis"",""investorDescription"":""https://blockwall.vc"",""portfolioHighlights"":""https://www.blockwall.vc/portfolio""},""websiteURL"":""https://www.blockwall.vc""}","Correctness: 95% Completeness: 85% - -The provided information about Blockwall is largely accurate based on publicly available sources. Blockwall is indeed headquartered in Frankfurt, Germany[2][4], focused on early-stage blockchain and Web3 investments concentrated in Europe[1][2][5], and operates multiple funds named Blockwall Capital I, II, and III targeting pre-seed to Series A stages with an emphasis on Web3, blockchain, crypto assets, and decentralized infrastructure[1][5]. The described investment thesis—including focus on infrastructure protocols, adapting criteria as technology matures, long-term fundamental investing, combining token and equity investments, avoiding illegal or controversial sectors, and actively managing portfolio projects to support token economics—is consistent with investment insights available directly from Blockwall’s website[5] and related sources. - -The senior leadership names and titles provided (Dominic Briggs, Jannis and Nikos Choulidis, Damien Roch, Syed Armani, Lars Singbartl) match those listed on the official Blockwall team page and LinkedIn profiles[5]. The portfolio highlights (e.g., Blink Labs, Bloxmove, Busha, Fetch.ai) align with publicly disclosed investments[4][5]. - -However, the completeness is somewhat limited due to missing explicit data on overall assets under management (AUM), exact fund sizes, and estimated investment sizes. Multiple sources, including Blockwall’s official pages and external investor profiles, confirm that these financial details are either not publicly disclosed or not clearly available[1][2]. The researcher notes about the absence of these fields align with the available evidence. Also, broader geographic focus beyond Europe (like North America or Asia) mentioned in some investor profiles[2] is not reflected in the dataset, slightly reducing completeness. - -No fabricated or contradictory information was detected, so the correctness score remains high. The only real omission is the proprietary financial details that Blockwall does not publicly share. - -Sources: -- https://blockwall.vc -- https://blockwall.vc/insights/blockwall-capital-i-thesis -- https://blockchaintechnology-news.com/news/blockwall-creates-venture-capital-fund-for-blockchain-startups/ -- https://raisebetter.capital/investor-profile/10926 -- https://app.dealroom.co/investors/blockwall" -"Blossom Street Ventures ","http://www.blossomstreetventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 1,000,000 to 4,000,000"",""fundName"":""Blossom Street Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""US"",""Canada"",""UK""],""investmentStageFocus"":[""Series A"",""Series B"",""Series C"",""Series D"",""Series E""],""sectorFocus"":[""SaaS""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.blossomstreetventures.com/""}],""headquarters"":""5307 E Mockingbird Ln, Suite 802, Dallas, TX 75206"",""investmentThesisFocus"":[""Invest in SaaS companies with $2mm to $30mm in ARR"",""Led by founders who are cash efficient, resourceful, and pragmatic"",""Use a data-driven, quantitative process focusing on speed and transparency"",""Engage in traditional growth rounds and special situations like small rounds, fast rounds, and last rounds"",""Value relationships with founders who are cash efficient, scrappy, and pragmatic"",""Stay connected with founders through casual monthly calls without formal presentations""],""investorDescription"":""Blossom Street invests in SaaS companies with $2mm to $30mm in ARR, led by founders who are cash efficient, resourceful, and pragmatic. They lead or follow in traditional growth rounds and also engage in special situations like small rounds, fast rounds, and last rounds. The firm uses a data-driven, quantitative process focusing on speed and transparency, aiming to assess fit quickly to avoid wasting time. Blossom Street was established in 2014 with the goal of being accessible, transparent, and fast. They prioritize a quantitative approach that values speed and transparency, contrasting with typical VC firms' drawn-out diligence processes. Their primary focus includes classic growth rounds and special situations such as inside rounds, small rounds, rushed rounds, extensions, cap table clean-up, and corralling investors waiting on a term sheet. They value relationships with founders who are cash efficient, scrappy, and pragmatic. Blossom Street emphasizes staying connected through casual monthly calls without formal presentations, offering insights but never dictating actions to founders."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""linkedDocuments"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Rooster"",""Appfront"",""Bucketlist"",""Autocorp"",""Megadata"",""Teamworks"",""Chattermill"",""Bulbshare"",""Cordial"",""RapidMiner""],""researcherNotes"":""Overall Assets Under Management is not mentioned on the website. No formal fund names are provided; used company name with 'Investment Strategy' suffix as per instructions."",""seniorLeadership"":[{""name"":""Sammy Abdullah"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/blossom-street-ventures"",""title"":""Managing Partner""}],""sources"":{""headquarters"":""http://www.blossomstreetventures.com/contact"",""investmentThesisFocus"":""http://www.blossomstreetventures.com/"",""investorDescription"":""http://www.blossomstreetventures.com/"",""portfolioHighlights"":""http://www.blossomstreetventures.com/portfolio""},""websiteURL"":""http://www.blossomstreetventures.com/""}","Correctness: 98% Completeness: 85% - -The provided information about Blossom Street Ventures is largely **factually accurate** based on publicly available sources. The firm invests in SaaS companies with annual recurring revenue (ARR) between approximately $2 million to $30 million, led by founders who are cash efficient, resourceful, and pragmatic. They typically write checks sized from **$1 million to $4 million** and participate in growth rounds spanning Series A through Series E, as well as ""special situations"" like small, fast, or last rounds. They use a **data-driven, quantitative investment process** focused on speed and transparency, committing to investments within roughly 3 to 5 weeks. The firm's headquarters is in Dallas, Texas, and they are open to receiving direct founder outreach without needing warm introductions[1][3]. - -The **portfolio highlights** cited (Rooster, Appfront, Bucketlist, etc.) correspond with known investments listed on their official site. The senior leadership, with Sammy Abdullah as Managing Partner, aligns with LinkedIn and company sources[1][3]. - -However, some **minor discrepancies and missing data** lower the completeness score: -- The exact **total fund size** is not stated on their site but has been reported as about $64 million total capital raised by Blossom Street Ventures[1]. This was missing from the provided data. -- The **overall assets under management (AUM)** are not publicly disclosed, consistent with notes. -- While geographic focus is listed as US, Canada, UK, the website primarily emphasizes US businesses, notably headquartered in Dallas. Detailed confirmation on Canada/UK focus is less explicit. -- **Investment stage range** typically centers more on growth rounds (Series A to D/E) but some sources emphasize pre-seed and seed less, which is consistent. -- There are no linked documents, which is noted as missing but expected for this type of summary. - -In summary, the submission is close to fully correct and aligns well with Blossom Street Ventures' publicly stated investment thesis and operations. It lacks some specific quantitative details on fund size and AUM, which appear not to be publicly disclosed. The website and VC database sources used (blossomstreetventures.com, vc-mapping.gilion.com) support these conclusions. - -Sources: -- Blossom Street Ventures official website (https://www.blossomstreetventures.com/) -- VC Mapping profile of Blossom Street Ventures (https://vc-mapping.gilion.com/vc-firms/blossom-street-ventures)" -"Blue ","http://www.blueab.se ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Blue Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Any Stage""],""sectorFocus"":[""Clean Air"",""Clean Water"",""Clean Energy"",""Health"",""Food"",""Sustainable Material Innovation""],""sourceUrl"":""http://www.blueab.se""}],""headquarters"":""Stockholm, Sweden"",""investmentThesisFocus"":[""Supports startups and companies at any stage focused on environmental impact areas like clean air, water, energy, and health."",""Offers hands-on support including strategic priorities, production processes, and marketing communications."",""Focus on innovative and impactful entrepreneurship aimed at returning the planet to health.""],""investorDescription"":""Blue is a socially responsible investor focused on supporting startups and companies at any stage that aim to make the world a better place. Established in 2016 by Bengt Rittri, an environmental entrepreneur behind Blueair and Bluewater, Blue invests in clean air, water, energy, health, and other impactful initiatives. They provide venture funding and hands-on help through advisors and consultants, covering strategic priorities, agile production, and marketing communications."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Airinum"",""Awair"",""Blueair"",""Bluewater"",""CabinAir"",""Filba"",""Flowater"",""Spout"",""Tapp"",""Baseload Capital""],""researcherNotes"":""No explicit data found on the website for estimated investment size, fund size, headquarters address, or overall assets under management (AUM). The firm appears to operate with a single unified investment strategy focused on environmental and impact sectors at any stage."",""seniorLeadership"":[{""name"":""Bengt Rittri"",""sourceUrl"":""https://blueab.se/team"",""title"":""Founder & CEO""},{""name"":""Klas Gustafsson"",""sourceUrl"":""https://blueab.se/team"",""title"":""Portfolio Manager""},{""name"":""David Noble"",""sourceUrl"":""https://blueab.se/team"",""title"":""Communications & PR""}],""sourceProvider"":""Perplexity"",""sources"":{""headquarters"":""https://sublimemagazine.com/eight-ecopreneurs-turning-passion-into-action/"",""investmentThesisFocus"":""https://blueab.se/"",""investorDescription"":""https://blueab.se/""},""websiteURL"":""http://www.blueab.se""}","Correctness: 98% Completeness: 85% - -The information provided about Blue as a socially responsible investor headquartered in Stockholm, Sweden, with a focus on startups and companies in environmental impact sectors—clean air, clean water, clean energy, health, and sustainable material innovation—is factually accurate and well aligned with authoritative sources including Blue’s official website and credible third-party profiles[3][5]. The description of Blue’s investment approach—supporting companies at any stage, emphasis on hands-on help (strategic priorities, production, marketing), and a mission to heal the planet—is consistent with Blue’s publicly stated investment thesis and mission statement[3]. The named senior leadership (Bengt Rittri as Founder & CEO, Klas Gustafsson as Portfolio Manager, David Noble in Communications & PR) aligns with the information on Blue’s team page and public profiles[3]. - -However, the lack of available data for fund size, estimated investment size, and overall assets under management (AUM) is confirmed by the absence of these figures both on Blue’s website and in secondary sources, leading to a justified notation of missing important fields. Blue appears to operate with a single unified investment strategy rather than multiple separate funds, which explains the missing investment size and fund size details[3]. The portfolio highlights given (Airinum, Awair, Blueair, Bluewater, CabinAir, Filba, Flowater, Spout, Tapp, Baseload Capital) correspond to companies publicly noted as part of Blue’s portfolio[3][5]. The office location is Stockholm as stated, verified by multiple sources including news releases mentioning Stockholm headquarters[5]. - -The incompleteness score reflects the absence of key financial metrics (fund size, estimated investment size, AUM) which are important for a fully comprehensive investor profile but are not publicly disclosed. Also, more details on investment terms or stage focus nuances could enhance completeness but are understandably limited by available public data. - -Sources: -- Blue official website: https://blueab.se/ -- Blue Purpose mission overview: https://www.bluepurpose.com -- News references confirming headquarters and portfolio: https://www.mynewsdesk.com/com/blue-ab/subjects/contracts-assignments" -"Bentley iTwin Ventures ","https://bentleyitwinventures.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 250,000 to 5,000,000"",""fundName"":""Bentley iTwin Ventures"",""fundSize"":""USD 100,000,000"",""fundSizeSourceUrl"":""https://bentleyitwinventures.com/"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Internet of Things"",""Cell Towers"",""Digital Cities"",""Utilities Reliability"",""Environmental"",""Transportation"",""Renewables"",""Digital Factory"",""Construction"",""Water Reliability""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bentleyitwinventures.com/""}],""headquarters"":""685 Stockton Drive, Exton, PA 19341, US"",""investmentThesisFocus"":[""Invests in startups and emerging companies developing digital twin engineering and asset lifecycle management solutions."",""Focus on infrastructure industries including IoT, cell towers, digital cities, utilities reliability, environmental, transportation, renewables, digital factory, construction, and water reliability."",""Targets seed to series B stage investments."",""Invests with the goal of advancing infrastructure through digital transformation.""],""investorDescription"":""Bentley iTwin Ventures is a $100 million corporate venture capital fund focused on investing in startups and emerging companies strategically relevant to Bentley Systems' goal of advancing infrastructure through digital transformation. The fund prioritizes seed to series B investments. It targets infrastructure industries such as Internet of Things, Cell Towers, Digital Cities, Utilities Reliability, Environmental, Transportation, Renewables, Digital Factory, Construction, and Water Reliability. The investment thesis emphasizes advancing infrastructure through digital transformation, particularly digital twin engineering and asset lifecycle management."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":null,""aumAmount"":""USD 100,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bentleyitwinventures.com/""},""portfolioHighlights"":[""FutureOn"",""Niricson Software Inc."",""Evercam""],""researcherNotes"":""No headquarters address found on the website or contact page. Senior leadership specific to Bentley iTwin Ventures is not listed on the website. Geographic focus is not explicitly stated beyond industry sector. AUM and fund size are cited as $100 million but no specific date was provided."",""seniorLeadership"":[{""name"":""Jim Kress"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bentley-itwin-ventures"",""title"":""Director, Digital Acceleration - iTwin Ventures""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/bentley-itwin-ventures"",""investmentThesisFocus"":""https://bentleyitwinventures.com/#infrastructurefocus"",""investorDescription"":""https://bentleyitwinventures.com/"",""portfolioHighlights"":""https://bentleyitwinventures.com/#companyportfolio""},""websiteURL"":""https://bentleyitwinventures.com""}","Correctness: 100% Completeness: 95% - -The provided information about Bentley iTwin Ventures is factually accurate and matches multiple authoritative sources. Bentley iTwin Ventures is indeed a $100 million corporate venture capital fund launched by Bentley Systems focused on investing in startups and emerging companies that align with Bentley’s goal of advancing infrastructure through digital transformation, especially in digital twin engineering and asset lifecycle management[1][2][3][4]. The fund targets early-stage investments from seed through Series B rounds, with typical investment sizes ranging from $250,000 to $5 million[4]. Its sector focus areas include Internet of Things, Cell Towers, Digital Cities, Utilities Reliability, Environmental, Transportation, Renewables, Digital Factory, Construction, and Water Reliability, which aligns precisely with the information given[4]. - -The portfolio highlights such as FutureOn, Niricson Software Inc., and Evercam find confirmation with Evercam noted as a partner spotlight winner[4]. The fund’s geographic focus is primarily the United States, consistent with the Exton, PA headquarters address, although this point is not explicitly detailed in external sources and is a reasonable inference based on Bentley Systems' corporate location and investments[1][4]. - -Details about the leadership are minimal externally, but the mention of Jim Kress as Director, Digital Acceleration - iTwin Ventures, aligns with publicly available LinkedIn data, though senior leadership is not broadly listed on their official site[4][data in query]. - -Missing from the summary is a formal assertion of the fund’s establishment date (announced November 2020) and specifics on the iTwin Activate program accelerator, which supports startups via co-development funding and technical support, managed by Bentley iTwin Ventures[1][5]. These aspects add helpful context but do not materially affect the core correctness. - -The single small completeness deduction arises from the absence of explicit geographic focus beyond the United States and the absence of the iTwin Activate program details in the original data, which are publicly available and relevant to understanding the fund’s operational scope and support mechanism for innovators[5]. - -Sources used: -- Bentley iTwin Ventures website sections and partner details (https://bentleyitwinventures.com/) -- News release on fund launch (https://informedinfrastructure.com/59006/bentley-systems-commits-100-million-of-venture-funding-to-accelerate-infrastructure-digital-twins/) -- Railway Age article on fund launch (https://www.railwayage.com/news/bentley-systems-launches-100mm-bentley-itwin-ventures-fund/) -- NXTDev exhibitor profile (https://nxtdev.build/exhibitor/bentley-itwin-ventures/) -- Highways Today coverage of iTwin Activate program (https://highways.today/2023/06/04/itwin-activate/)" -"BayWa Venture ","https://venture.baywa.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""AgriFoodTech Venture Alliance Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Israel""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""AgTech"",""FoodTech"",""sustainable agriculture"",""biotech"",""plant-based proteins"",""fermentation"",""IoT for irrigation"",""alternatives to traditional animal products""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://venture.baywa.com""}],""headquarters"":""AgriFoodTech Venture GmbH, Arabellastraße 4, 81925 München, Germany"",""investmentThesisFocus"":[""Supports startups primarily in sustainable technologies and innovations for the AgriFoodTech industry."",""Fosters innovation through collaboration with business units like BayWa, Multivac, Bindewald, and Gutting."",""Promotes sustainable agriculture, food technology with plant-based proteins and fermentation, IoT for irrigation, biotech for plant protection, and alternatives to traditional animal products.""],""investorDescription"":""AgriFoodTech Venture Alliance, founded by BayWa, Bindewald, Gutting Mühlengruppe, and MULTIVAC, focuses on innovative food production and supports startups in AgTech and FoodTech sectors. Invests in selected innovations and technologies within AgTech and FoodTech. Promotes sustainable technologies and innovations via collaboration among startups and established companies."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""investmentStageFocus"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""InnovoPro Ltd."",""Equinom Ltd."",""Greenforce Future Food AG"",""Amai Proteins Ltd."",""Neggst Foods GmbH"",""Kern Tec GmbH"",""Spherag Teck IoT Ltd."",""AgroSustain SA"",""Evologic Technologies GmbH"",""Evja S.r.l."",""Planet A Foods"",""The Mediterranean Food Lab (MFL)"",""MyEasyFarm"",""PROJECT EADEN GmbH"",""Blue Planet Ecosystems""],""researcherNotes"":""No explicit fund size, estimated investment size, investment stage focus, or overall AUM were found on the website. The information is based on descriptive content from the main website."",""seniorLeadership"":[{""name"":""Kristal Golan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://venture.baywa.com/content/team"",""title"":""Managing Director, AgriFoodTech Venture Alliance""}],""sources"":{""headquarters"":""https://venture.baywa.com/impressum"",""investmentThesisFocus"":""https://venture.baywa.com"",""investorDescription"":""https://venture.baywa.com"",""portfolioHighlights"":""https://venture.baywa.com/content/start-ups""},""websiteURL"":""https://venture.baywa.com""}","Correctness: 98% Completeness: 85% - -The provided information about AgriFoodTech Venture Alliance is largely factually correct and well-aligned with multiple authoritative sources. The alliance is indeed founded by BayWa, Bindewald and Gutting Mühlengruppe, and MULTIVAC, focusing on innovative food production and supporting startups primarily in AgTech and FoodTech sectors, including sustainable agriculture, plant-based proteins, fermentation, IoT for irrigation, and alternatives to traditional animal products[1][2][3]. The Managing Director is Kristal Golan, as stated, and the headquarters at Arabellastraße 4, München aligns with the official imprint[3][5]. - -Specific claims about the alliance promoting collaboration among business units and fostering innovation through a startup-corporate ecosystem are corroborated by official sources describing their mission and investment approach[1][3][5]. The portfolio highlights match reported investees from BayWa’s website[3]. - -However, the correctness is not rated a perfect 100% because the overall Assets Under Management (AUM), estimated investment size, fund size, and precise investment stage focus are missing in the supplied data and also not publicly disclosed as per available sources, which is consistent with the researcher notes. The alliance’s investment capital is known to be approximately €20 million from the founding corporations, with a capital increase around €10 million documented, but the specific fund size details or AUM figures are not explicitly published in a typical fund format[1][2]. - -The completeness score reflects that while the core mission, founders, leadership, sector focus, geographic scope (Europe, Israel), and portfolio companies are well covered, important quantitative financial metrics and more detailed investment stage focus are absent because they are not publicly available[1][2][3]. - -Sources: -- https://venture.baywa.com/en -- https://www.taylorwessing.com/en/insights-and-events/news/media-centre/press-releases/2024/02/taylor-wessing-advised-multivac-on-its-investment-in-baywa-venture-gmbh -- https://www.munich-startup.de/en/98080/agrifoodtech-venture-rebrands/ -- https://venture.baywa.com/content/team -- https://venture.baywa.com/impressum" -"BDMI ","http://www.bdmifund.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 500000 to 10000000"",""fundName"":""Seed Fund"",""fundSize"":""USD 225,000,000"",""fundSizeSourceUrl"":""https://globalventuring.com/corporate/europe/media-firm-bertelsmann-sells-half-of-startup-fund-to-outside-investors/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed""],""sectorFocus"":[""Media"",""Services"",""Education""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bdmifund.com/about""},{""estimatedInvestmentSize"":""USD 500000 to 10000000"",""fundName"":""Traditional Early Stage Fund"",""fundSize"":""USD 225,000,000"",""fundSizeSourceUrl"":""https://globalventuring.com/corporate/europe/media-firm-bertelsmann-sells-half-of-startup-fund-to-outside-investors/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Series A"",""Series B""],""sectorFocus"":[""Media"",""Services"",""Education""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bdmifund.com/about""}],""headquarters"":""1745 Broadway, New York, NY 10019"",""investmentThesisFocus"":[""Invests in early stage companies with products/services live in the marketplace showing early product-market fit"",""Pursues Series A - Series B rounds with $500k to $10m initial investments"",""May lead, co-lead, or join syndicates"",""Leverages Bertelsmann's global enterprise network for investment opportunities"",""Sector focus aligned with media, services, and education domains of Bertelsmann"",""Geographic focus is global, given Bertelsmann's operations in about 50 countries""],""investorDescription"":""BDMI is a corporate venture investor with over $450M under management, partnering with early stage companies to provide capital and access to a global network within Bertelsmann and beyond. BDMI invests through two funds: a seed fund and a traditional early stage fund. They prefer companies with a live product/service and early signs of product-market fit. BDMI's parent company, Bertelsmann, is a global media, services, and education company operating in about 50 countries."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 450000000"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bdmifund.com/about""},""portfolioHighlights"":[""Antenna"",""Subscriber Intel"",""Boostr"",""Breef."",""Certa"",""Flip"",""FloSports"",""Inked"",""Lemonada"",""Marfeel"",""Nativo"",""Omaze"",""Papercup"",""Percent"",""Rally"",""Suzy"",""Tenovos"",""Tracer"",""tvScientific"",""Acorns"",""A Million Ads"",""Ana Luisa"",""Astra"",""Athena"",""Atlas Obscura"",""Barometer"",""Beautylish"",""BigCo"",""Bitewell"",""Blair"",""Book.io"",""Bounty"",""Burq"",""Cohart"",""Copycat"",""Dashbot"",""Dataherald"",""Debbie"",""Digiphy"",""Diplo AI"",""Drippi"",""DSCVR"",""Dynasty"",""Electives"",""eTip"",""Extra"",""Flowbo"",""Flown"",""Forte Lessons"",""FourFront"",""Fractional AI"",""Fursure"",""Gravity AI"",""Grips"",""Hark"",""Humankind"",""Hush"",""Huski.ai"",""Infinite Objects"",""Infobot"",""IRIS.TV"",""Jeeva.AI"",""JKBX"",""Journey Meditation"",""Jukebox Health"",""Knockri"",""Letterhead"",""LiveLike"",""LOST iN"",""MERIT Beauty"",""Mindshow"",""MyYogaTeacher"",""Next Big Idea Club"",""obé Fitness"",""Ocular"",""Octane11"",""Paintbrush"",""PERCS"",""Rain"",""Rapchat"",""Rembrand"",""Reposite"",""Revelio Labs"",""Scout"",""Sensity"",""Spawning AI"",""Spectrm"",""Starglow Media"",""StoryFit"",""Summer"",""The Mighty"",""Theta Labs"",""Tollbit"",""Vera"",""Versed"",""Visor"",""Wand"",""Wescover"",""Winx Health"",""Wonder"",""Zoe Financial"",""ZZ Driggs"",""Betaworks"",""Bitkraft"",""Cabiedes Partners"",""First Close Partners"",""Greycroft"",""Hoxton Ventures"",""Lool Ventures"",""Nyca Partners"",""Pantera"",""SVAngel"",""Tiny Supercomputer Investment Company"",""Weekend Fund""],""researcherNotes"":""AUM is explicitly mentioned on the website as over $450 million, but no specific fund sizes were found. The two funds described are a seed fund and a traditional early stage fund. No downloadable documents like PDFs were found on the website."",""seniorLeadership"":[{""name"":""Urs Cete"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://twitter.com/ucete"",""title"":""Managing Partner""},{""name"":""Keith Titan"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bdmifund.com/team"",""title"":""Partner""},{""name"":""Sim Blaustein"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://twitter.com/sblaustein"",""title"":""Partner""}],""sources"":{""headquarters"":""https://bdmifund.com/about"",""investmentThesisFocus"":""https://bdmifund.com/about"",""investorDescription"":""https://bdmifund.com/about"",""portfolioHighlights"":""https://bdmifund.com/portfolio""},""websiteURL"":""http://www.bdmifund.com""}","Correctness: 95% Completeness: 85% - -The information is largely factually accurate. Bertelsmann Digital Media Investments (BDMI) is a corporate venture capital investor with about $450 million under management, investing globally in early-stage companies aligned with Bertelsmann’s sectors such as media, services, and education[3][1]. BDMI operates two funds: a seed fund focused on seed stage investments, and a traditional early stage fund targeting Series A and B rounds, each investing $500,000 to $10 million per round, consistent with the stated investment size and stage focus[3]. The mention of leveraging Bertelsmann’s global network and the geographic focus across about 50 countries also matches Bertelsmann's wide operational presence[3][1]. Senior leadership named (Urs Cete, Keith Titan, and Sim Blaustein) aligns with publicly available info about BDMI team members[3]. - -However, some minor gaps or ambiguities remain that reduce completeness somewhat: - -- While total AUM for BDMI is confirmed around $450 million, individual fund sizes are less clearly documented outside the source cited by the user (Global Venturing article), which states the same $225 million fund size for both seed and traditional early-stage funds. This exact split is not confirmed independently elsewhere, thus considered plausible but slightly uncertain[3]. - -- The portfolio highlights given are extensive and consistent with BDMI’s public listings but could be more thoroughly validated individually from multiple independent sources. The user data listing many portfolio companies corresponds with BDMI's publicly announced investments but some are less well-known. - -- The investment thesis and presence of Bertelsmann’s broader corporate support align with official Bertelsmann statements about BDMI and Bertelsmann Investments[1][3]. - -Overall, the factual accuracy is very high based on the 2023–2025 corporate information and news about BDMI and Bertelsmann’s venture capital activities[1][3]. Completeness is somewhat limited by the scarcity of detailed fund-level granular official disclosures beyond the provided sources, particularly on precise fund sizes and extremely detailed portfolio validation. - -Sources used: -https://globalventuring.com/corporate/europe/media-firm-bertelsmann-sells-half-of-startup-fund-to-outside-investors/ -https://www.bertelsmann.com/news-and-media/news/bertelsmann-investments-reports-organic-growth-of-18.1-percent-after-first-six-months-of-2025.jsp -https://bdmifund.com/about (as provided in user query)" -"Be8 Ventures ","https://www.be8.vc ","{""funds"":[{""estimatedInvestmentSize"":""EUR 2m to 10m"",""fundName"":""Be8 Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Israel"",""North America""],""investmentStageFocus"":[""Growth""],""sectorFocus"":[""Innovative food & ingredients"",""Production & supply chain digitalization"",""Food delivery"",""Retail & gastro tech digitalization"",""Environmentally friendly packaging""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.be8.vc""}],""headquarters"":""Stralauer Allee 11, 10245 Berlin"",""investmentThesisFocus"":[""Focus on innovative food & ingredients, production & supply chain digitalisation, food delivery, retail & gastro tech digitalisation, and environmentally friendly packaging."",""Target companies in the growth stage with proven business models and traction, primarily in Europe, Israel, and North America."",""Investment tickets range from EUR 2m to EUR 10m, generally aiming for a 5-10% shareholding."",""Preference for strong, innovative teams with defendable IP and addressable markets."",""Provide capital plus access to experienced experts and networks within the food and beverage industry.""],""investorDescription"":""Be8 Ventures is a venture capital fund investing in and building food companies that are better for our planet. Empower innovators to grow the future of food. We invest in growing startups that shape tomorrow’s food ecosystem. They focus on innovative food & ingredients, production & supply chain digitalization, food delivery trends, retail & gastro tech digitalization, and innovative packaging & waste solutions."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""New Culture"",""Planted Foods"",""Glovo"",""Bluu Biosciences"",""Melt&Marble"",""Atlantic Food Labs"",""Blue Horizon Ventures"",""Synthesis Capital""],""researcherNotes"":""No explicit AUM or fund size data found on the website despite thorough search. Contact page and footer scanned for headquarters."",""seniorLeadership"":[{""name"":""Stefan Peters"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://linkedin.com/in/stefan-peters-93711815"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.be8.vc"",""investmentThesisFocus"":""https://www.be8.vc"",""investorDescription"":""https://www.be8.vc"",""portfolioHighlights"":""https://www.be8.vc""},""websiteURL"":""https://www.be8.vc""}","Correctness: 98% Completeness: 90% - -The information provided about Be8 Ventures is factually accurate and well-aligned with multiple reliable sources. The fund is indeed headquartered in Berlin, Germany, specifically in the Stralauer Allee area, with Stefan Peters as Managing Director[3][4]. Their investment focus is on growth-stage startups primarily in Europe, Israel, and North America, targeting sectors such as innovative food & ingredients, production and supply chain digitalization, food delivery, retail and gastro tech digitalization, and environmentally friendly packaging[3][4][5]. The typical investment ticket size ranges from EUR 2 million to 10 million, aiming generally for a 5-10% shareholding, which matches exactly the stated thesis[1][3]. Key portfolio companies mentioned—New Culture, Planted Foods, Glovo, Bluu Biosciences, Melt&Marble, Atlantic Food Labs, Blue Horizon Ventures, and Synthesis Capital—are confirmed in public listings and articles[4][5]. - -However, the information is incomplete regarding the fund's overall assets under management (AUM) or exact fund size as no publicly available source provides this data despite thorough searches on their website and external VC databases[3]. This missing critical financial metric reduces completeness since AUM is a standard disclosure for venture funds. Additionally, there is slight inconsistency about the seed stage focus: some sources classify Be8 Ventures strictly as growth-stage, while one mentions investment ""from the seed stage onward""—the bulk of evidence supports primarily growth-stage investing[1][2][3]. - -No fabricated or hallucinated details appear; all claims are supported by the publicly available sources cited below. - -Sources: -- Be8 Ventures official website: https://www.be8.vc [3] -- Seedtable profile: https://www.seedtable.com/investors/be8-ventures [1] -- DWT Food Venture Financing News issues #219 and #248: https://www.dwt.com/insights/2025/01/food-venture-financing-news-weekly-issue-no-219 and https://www.dwt.com/insights/2025/08/food-venture-financing-news-weekly-issue-no-248 [4][5] -- VentureCapitalArchive overview: https://venturecapitalarchive.com/venture-funds/be8-ventures-be8-vc [2]" -"BBQ Capital ","http://www.bbq.capital ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BBQ Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A"",""Series B and later through BBQ Opportunities""],""sectorFocus"":[""AI"",""robotics"",""space"",""foodtech"",""esports""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.bbq.capital/who-we-are""}],""headquarters"":""655 Montgomery Street, 7th Floor, San Francisco, CA 94111, United States"",""investmentThesisFocus"":[""Backing innovative technology-driven startups across sectors such as AI, robotics, space, foodtech, and esports."",""Supporting founders at seed stage and following through growth."",""Leveraging community and network via events."",""Targeting scalable, cost-effective solutions with potential for market disruption.""],""investorDescription"":""Our barbecues, which started as a casual gathering of friends in 2018 in San Francisco, soon grew to be large monthly events connecting founders and investors. We raised a fund and still continue this tradition, supporting founders from the earliest stages. BBQ Capital began from casual gatherings in 2018 in San Francisco connecting founders and investors, evolving into a fund supporting founders from early stages. Their investment approach includes participating in seed and subsequent funding rounds, often aligning with startups focused on innovative technologies and scalable business models."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""222.place"",""Tags"",""Agency"",""alga.bio"",""Andi"",""Andromeda Surgical"",""Animoca Brands"",""Arch Lending"",""Argo""],""researcherNotes"":""AUM, specific estimated investment size, fund size, and geographic focus are not mentioned on the website or other accessible sources."",""seniorLeadership"":[{""name"":""Buddy Shakhashir"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.crunchbase.com/organization/bbq-capital"",""title"":""Partner""},{""name"":""Nemanja Kostic"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.crunchbase.com/organization/bbq-capital"",""title"":""General Partner""},{""name"":""Benjamin Sack"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bbq.capital/who-we-are"",""title"":""Partner""}],""sources"":{""headquarters"":""https://pitchbook.com/profiles/investor/497947-33"",""investmentThesisFocus"":""http://www.bbq.capital/who-we-are"",""investorDescription"":""http://www.bbq.capital/#about"",""portfolioHighlights"":""http://www.bbq.capital/portfolio""},""websiteURL"":""http://www.bbq.capital""}","Correctness: 95% Completeness: 85% - -The provided information about BBQ Capital is largely accurate and aligns well with multiple credible sources. The **headquarters** at 655 Montgomery Street, 7th Floor, San Francisco, CA matches the location from PitchBook[1]. The description of the firm’s origins as casual gatherings starting in 2018 evolving into monthly networking events and then a formal fund is confirmed by their official site and profiles[1][3]. The investment focus on early-stage startups (pre-seed, seed, Series A) and the follow-on investments through BBQ Opportunities for Series B and later are also accurate[1][3]. The stated **sector focus** on AI, robotics, space, foodtech, and esports aligns with their portfolio and thesis descriptions on their website and third-party summaries[1][3][4]. The mentioned senior leadership team (Buddy Shakhashir, Nemanja Kostic, Benjamin Sack) is supported by both their website and Crunchbase data[1][3]. - -However, the **estimated fund size, assets under management (AUM), and specific investment sizes** are not publicly disclosed, which the user notes and is confirmed by the data gaps in available sources[2]. This reduces completeness somewhat since AUM is an important fund characteristic but is simply unavailable rather than incorrectly reported. The portfolio highlights (e.g., Andromeda Surgical, Animoca Brands, Regression Games) are consistent with listings on their site and public announcements[1][4][5]. - -In summary, the factual data presented is mostly correct; the missing quantitative financial metrics are a matter of availability rather than error, justifying a high correctness score but a somewhat lower completeness rating. - -Sources: -[1] https://vc-mapping.gilion.com/vc-firms/bbq-capital -[2] https://www.privateequityinternational.com/institution-profiles/bbq-capital.html -[3] http://www.bbq.capital/who-we-are -[4] http://www.bbq.capital/portfolio -[5] http://www.bbq.capital" -"BeAble Capital ","http://www.beablecapital.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR up to 650,000"",""fundName"":""BeAble Innvierte Kets Fund FCR"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Spain"",""Europe""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Biotechnology"",""Materials Science"",""Nanotechnology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BeAble Innvierte Science Equity Fund FCRE"",""fundSize"":""EUR 49,510,000"",""fundSizeSourceUrl"":""https://beablecapital.com/wp-content/uploads/Informe-de-auditoria-31.12.2024-BEABLE-INNVIERTE-SCIENCE-EQUITY-FUND-F.C.R.E_sin_firmas.pdf"",""geographicFocus"":[""Spain"",""Europe""],""investmentStageFocus"":[""Seed"",""Early Stage""],""sectorFocus"":[""Biotechnology"",""Materials Science"",""Nanotechnology""],""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management""}],""headquarters"":""C/ Génova 11, 1º Izq. 28004, Madrid (Spain)"",""investmentThesisFocus"":[""Investing in Seed and Early Stage industrial Deep Science sector companies, focusing on technology transfer from academic and research institutions in Spain"",""Evaluating scientific research, intellectual property, and competitive technologies from scientific and marketing perspectives"",""Targeting disruptive technologies with sustainable competitive advantages based on intellectual property and know-how"",""Focusing on high value-added industries including New Space, New Energy, New Materials, Agro & Food, Environment, Healthcare & Wellbeing, Medtech, Robotics & AI"",""Involvement in early development phases such as Proof of Concept, Scale-up, Pilot Plant, Prototype, Flag-Ship, Pre-Industrial phases, and market launching"",""Building close ties with universities, research centers, technology transfer offices, and industrial companies to discover promising projects"",""Supporting transformation of breakthrough discoveries into products via start-ups"",""Helping companies reach milestones suitable for further financing by venture capital/private equity investors""],""investorDescription"":""BeAble Capital is a Spanish venture capital firm specializing in Science Equity, focusing on technology transfer in deep science. The firm invests in science-based companies at very early stages, aiming to transform science into industry and drive reindustrialization. BeAble Capital supports innovations from universities and research centers, investing in disruptive and high-tech companies across various fields such as biotechnology, nanotechnology, and clean technologies. Their mission includes creating new industries in Spain by fostering technology-based companies that develop tangible products rather than software."",""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 35,000,000"",""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management""},""portfolioHighlights"":[""Reinforce3D"",""Next-Gen Leather"",""Next Tip"",""Glasskin"",""Porous Inks Technologies"",""Captoplastic""],""seniorLeadership"":[{""name"":""Almudena Trigo Lorenzo"",""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management"",""title"":""Managing Director""},{""name"":""David López García"",""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management"",""title"":""Managing Director""},{""name"":""Roberto Ranera Redondo"",""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management"",""title"":""Managing Director""},{""name"":""Alberto Díaz González"",""sourceUrl"":""http://www.beablecapital.com/company/funds-under-management"",""title"":""Managing Director""}],""websiteURL"":""http://www.beablecapital.com""}","Correctness: 98% Completeness: 90% - -The provided data on BeAble Capital is largely factually accurate and well-supported by public sources. The firm is indeed a Spanish venture capital fund specializing in early-stage science equity investments with a focus on technology transfer from academic and research institutions. Their geographic focus on Spain and Europe, investment stage focus on seed and early stage, and sector focus on biotechnology, materials science, and nanotechnology align with descriptions on their official website[1]. The reported assets under management of around EUR 35 million is confirmed by BeAble Capital's site[1]. The fund names and their sizes are consistent with available information: the BeAble Innvierte Science Equity Fund FCRE is listed at about EUR 49.5 million as per the provided audit report URL, and the estimated investment sizes correspond with public announcements of investments like the EUR 400,000 in Next Tip and EUR 183,400 in Glasskin[1]. - -Senior leadership, portfolio highlights (e.g., Reinforce3D, Next Tip, Glasskin), and headquarters details match the information given on the official BeAble Capital webpage[1]. The investment thesis summary accurately reflects the company's mission and activities described by the firm: investing in disruptive deep science sectors, building strong links with universities and research centers, supporting early phases of technology commercialization, and focusing on high value-added industrial deep tech such as medtech, new materials, environment, and robotics[1]. - -A minor caveat lowering the correctness score slightly is the slight mismatch between the stated ""overall AUM"" (EUR 35 million) and the single fund size mentioned for Science Equity Fund (EUR 49.5 million). This likely reflects timing differences or partial representation of funds under management versus committed capital and does not fundamentally contradict but should be noted. Also, the ""BeAble Innvierte Kets Fund FCR"" estimated investment size up to EUR 650,000 is plausible but detailed fund size data is not available from public sources directly. - -Regarding completeness, the data is thorough but could be improved by including more current or exact total assets under management, a full list of portfolio companies beyond the highlights, and further details on the investment vehicle structures (beyond the two named funds). Information about the relationship to Innvierte — the Spanish public initiative supporting venture capital in tech deep science — could be expanded, since BeAble Innvierte funds participate in this program as well[3]. Also, the very latest investment rounds and partnerships referenced in composites and aerospace sectors (e.g., Reinforce3D investment rounds) provide useful context but might not be fully detailed here[4]. - -Sources used: -- BeAble Capital official site and fund management page: https://beablecapital.com[1] -- Audited report for BeAble Innvierte Science Equity Fund: https://beablecapital.com/wp-content/uploads/Informe-de-auditoria-31.12.2024-BEABLE-INNVIERTE-SCIENCE-EQUITY-FUND-F.C.R.E_sin_firmas.pdf (referenced in prompt) -- News on investments and partnership (Reinforce3D, Next Tip, Glasskin): https://beablecapital.com[1], https://catalysium.substack.com/p/the-month-in-composites-4[4] -- Information on Innvierte program and its relation to BeAble Innvierte funds: https://www.eif.org/what_we_do/news/2025/eur300-million-allocated-by-spanish-ministry-of-science-innovation-and-universities-to-promote-new-financing-facility-with-eif.htm[2], https://www.cdti.es/en/noticias/innvierte-destina-junio-cerca-de-300-millones-euros-ocho-nuevas-coinversiones-capital-riesgo-un-vehiculo-inversion[3] - -Overall, the information is factually reliable and mostly comprehensive for an overview but could be expanded with additional public fund details." -"Begin Capital ","https://www.begincl.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 500,000 to 7,000,000"",""fundName"":""Begin Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""US""],""investmentStageFocus"":[""Seed"",""Series A""],""sectorFocus"":[""SaaS"",""AI"",""Software Infrastructure"",""Developer Tools"",""Cybersecurity"",""Vertical SaaS""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://begincl.com/season/01""}],""headquarters"":""London"",""investmentThesisFocus"":[""Support founders from all backgrounds, genders, and walks of life."",""Invest in DeepTech, Artificial Intelligence, and SaaS sectors."",""Focus on fearless innovators, ambitious founders, and founders meticulous with business metrics."",""Flexible ticket sizes with no legal, structuring, or ownership percentage requirements.""],""investorDescription"":""Begin Capital is a venture capital fund focused on the European market, investing at Seed and Series A stages with flexible ticket sizes ranging from $500k to $7M. The first investment season featured investments across all industries and genres, while the second season focuses on DeepTech, Artificial Intelligence, and SaaS. The team values founders who are fearless innovators ('Pirates'), ambitious ('Winners'), and meticulous with business metrics ('Robots')."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Zencoder"",""Tomorrow Things"",""Runware"",""ALL3"",""Native Teams"",""Dwelly"",""Appfactor"",""IVM Markets"",""Simplyblock"",""Finom""],""researcherNotes"":""AUM and headquarters address are not mentioned on the website. Fund size for the strategy is not specified."",""seniorLeadership"":[{""name"":""Alex Menn"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://begincl.com/team"",""title"":""Venture Investor and Partner at Begin Capital""}],""sources"":{""headquarters"":""https://begincl.com/contact|https://uk.linkedin.com/company/begin-capital"",""investmentThesisFocus"":""https://begincl.com/season/01"",""investorDescription"":""https://begincl.com"",""portfolioHighlights"":""https://begincl.com/portfolio""},""websiteURL"":""https://begincl.com""}","Correctness: 95% Completeness: 85% - -The investment strategy and description of Begin Capital are largely accurate based on the official website and multiple external sources. Begin Capital is indeed a London-based venture capital firm focusing on the European market, investing at Seed and Series A stages with flexible ticket sizes roughly ranging from $500,000 up to $7 million, matching the described ""Begin Capital Investment Strategy""[4][2]. Their sector focus spans SaaS, AI, software infrastructure, developer tools, cybersecurity, and vertical SaaS, consistent across sources[4][2][5]. The unique investor thesis highlighting support for founders from all backgrounds and particular founder traits (""Pirates,"" ""Winners,"" ""Robots"") is well documented on their site[4][5]. - -However, some discrepancies and gaps affect completeness mostly: -- The defined investment size range on external sources like Teaser Club and Capboard mention a typical range closer to $100k to $3M, which contrasts with the $500k to $7M range stated in the source JSON and official site. This discrepancy suggests that either the upper range is more flexible or recently changed, but lower investment sizes are also common[2][3][4]. -- The overall Fund size and Assets Under Management (AUM) are missing or not publicly available, limiting completeness regarding scale and resources[4][source JSON]. -- The portfolio companies highlighted in the JSON (e.g., Zencoder, Tomorrow Things) have partial public mentions for a few investments like Mercaux and Zadaa, but a comprehensive portfolio list cannot be fully confirmed externally[5]. -- Headquarters in London is consistent with all references[2][4]. -- Senior leadership naming Alex Menn corresponds with website team info[4]. - -In summary, the information is factually solid with strong support from the official Begin Capital website and reputable investor directories but lacks certain quantitative fund details (AUM, exact fund size) and has some variation in reported investment size ranges across sources. The missing AUM and fund size reduce completeness somewhat, and slight inconsistencies on ticket ranges cause minor correctness score reduction. - -Sources: -https://begincl.com -https://begincl.com/season/01 -https://teaserclub.com/investors/begin-capital?region=Delaware -https://www.capboard.io/en/investor/begin-capital" -"Beijer Ventures ","https://beijerventures.se ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Beijer Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Sweden""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Manufacturing"",""Industrial Trade"",""Growth Companies""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://beijerventures.se""}],""headquarters"":""Strandvägen 5A, Stockholm, Sweden"",""investmentThesisFocus"":[""Focus on long-term value creation"",""Investment in well-managed companies with a strong entrepreneurial culture"",""Development of entrepreneurial spirit, leadership, and knowledge in portfolio companies""],""investorDescription"":""Beijerinvest is a family-owned investment company focused on long-term value creation by investing in and developing well-managed companies with a strong entrepreneurial culture. Their investments include a controlling stake in publicly listed Beijer Alma, several wholly owned manufacturing and industrial trade companies, and about thirty growth companies. They emphasize developing entrepreneurial spirit, leadership, knowledge, and financial resources in their portfolio companies."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""investmentStageFocus"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Beijer Alma""],""researcherNotes"":""The website provides limited information on investment size, AUM, detailed investment stages, geographic focus, and fund sizes. No formal named funds are listed; thus a default fund name is used. No downloadable documents were found on the site. Leadership contacts were extracted from the webpage but lack source URLs."",""seniorLeadership"":[{""name"":""Johan Wall"",""sourceProvider"":""Perplexity"",""sourceUrl"":null,""title"":""Owner""}],""sources"":{""funds"":""https://www.eu-startups.com/investor/beijer-ventures/"",""headquarters"":""https://beijerventures.se"",""investmentThesisFocus"":""https://beijerventures.se"",""investorDescription"":""https://beijerventures.se"",""portfolioHighlights"":""https://beijerventures.se""},""websiteURL"":""https://beijerventures.se""}","Correctness: 95% Completeness: 70% - -The information about **Beijerinvest**, branded here as Beijer Ventures, is largely factually accurate and consistent with publicly available data. Beijerinvest is indeed a family-owned investment company based in Stockholm, Sweden, focused on long-term value creation through investments in well-managed companies with strong entrepreneurial cultures, including controlling stakes in publicly listed Beijer Alma and several manufacturing and industrial trade companies[2][https://beijerventures.se]. The emphasis on promoting entrepreneurial spirit, leadership, and knowledge in portfolio companies aligns with the company's investment philosophy described on their official website. - -However, some points affect the completeness and a minor aspect of correctness: - -- The provided data correctly notes that **fund size, estimated investment size, investment stage focus, and overall assets under management (AUM)** are not publicly disclosed or available, which limits completeness in these areas[2][https://beijerventures.se]. This reflects the lack of detailed public information on specific funds or formal fund structures under Beijer Ventures. - -- The firm's **geographic focus** appears to be primarily Sweden, but it may have some broader investment reach given its portfolio companies and investments in Scandinavian industrial sectors. This is consistent but slightly generalized due to limited public clarity[2]. - -- The **portfolio highlight ""Beijer Alma""** is accurate; Beijerinvest controls this publicly listed industrial group[2]. - -- The **senior leadership listing of Johan Wall as Owner** is supported by available data, though detailed leadership information is sparse online. - -- The mention in sources of Beijer Alma and related companies such as Beijer Ref, and the strategic focus on manufacturing and industrial trade sectors, is consistent with official and third-party investor information[1][3]. - -The 5% deduction in correctness is due to the absence of complete investment stage clarity and explicit fund names, which the user query admits are not disclosed, so while the information is accurate based on public sources, it is acknowledged as incomplete. - -Key sources used: - -- Beijerventures official site: https://beijerventures.se (investment strategy, philosophy, portfolio) -- Nordic9 profile on Beijer Ventures AB: https://nordic9.com/companies/beijer-ventures-ab-investor8088533184/ (investment activity, sectors, geography) -- EQT and Beijer Alma related contextual info: https://eqtgroup.com/thinq/case-study/a-rare-public-markets-deal-enabled-swedish-ac-firm-to-take-on-the-us-market -- Beijer Ref AB investor relations: https://www.beijerref.com/investors - -Because the publicly available information is somewhat limited and fund-specific financial details are missing, completeness is rated 70%. There are no major factual inaccuracies or hallucinations detected in the data presented." -"BEAT DROP ","https://www.beat-drop.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Beat Drop Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""Original Source"",""sourceUrl"":null}],""headquarters"":""Knaackstraße 51, 10405 Berlin, Sitz: Berlin, Deutschland"",""investmentThesisFocus"":[""Focus on driving success through impulse including sales, quality & project management, new business models, or entire business performance."",""Commitment to sustainability by ensuring lasting and effective company structure optimizations."",""Willingness to take operational responsibility in project management or executive roles."",""Utilization of all necessary professional, methodological, and social competencies to deliver tailored solutions.""],""investorDescription"":""BeatDrop GmbH describes itself as a consultancy partner providing tailored solutions aimed at advancing companies through innovative strategies and precise analyses. Their mission focuses on sustainable and successful support guided by principles including impulse (sales, quality & project management, new business models), sustainability (long-lasting effective improvements in company structure), responsibility (willingness to share operational responsibility as project manager or in executive roles), and competence (applying all necessary technical, methodological, and social skills in collaboration)."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Atlas4D"",""Precision Robotics"",""Fiagon"",""Brockhaus Technologies"",""Avicenna Technologies"",""Vera""],""researcherNotes"":""AUM and specific fund data such as investment size, fund size, sector focus, investment stage, and geographic focus are not mentioned on the website or accessible subpages. The only fund is named as the default company investment strategy."",""seniorLeadership"":[{""name"":""Dr. Timo Krüger"",""sourceProvider"":""Original Source"",""sourceUrl"":""https://beat-drop.com/impressum"",""title"":""Representative""}],""sources"":{""headquarters"":""https://beat-drop.com/impressum"",""investmentThesisFocus"":""https://www.beat-drop.com/"",""investorDescription"":""https://www.beat-drop.com/"",""portfolioHighlights"":""https://beat-drop.com/portfolio""},""websiteURL"":""https://www.beat-drop.com/""}","Correctness: 95% Completeness: 75% - -The provided data about Beat Drop GmbH is largely factually accurate based on the official website and publicly available sources. The company is indeed headquartered at Knaackstraße 51, 10405 Berlin, Germany[1][4]. Their self-description matches the original source's emphasis on providing tailored, sustainable, and competency-driven consulting solutions focusing on sales, quality & project management, new business models, and overall business performance improvement through operational responsibility and deep methodological expertise[1][4]. The portfolio highlights (Atlas4D, Precision Robotics, Fiagon, Brockhaus Technologies, Avicenna Technologies, Vera) are consistent with the projects presented on the website[4]. Dr. Timo Krüger is correctly identified as a company representative per the imprint page[1]. - -However, important fund-related data such as the overall assets under management, specific fund sizes, investment stages, sector focus, geographic focus, and estimated investment sizes are missing or listed as ""Not Available"" due to no such details being publicly disclosed on their website or subpages[1][4]. This lack lowers the completeness score significantly. The single ""Beat Drop Investment Strategy"" fund named appears to be the default company strategy label rather than a distinct publicly described fund offering[1]. Also, the automotive, aerospace, and medical technology sectors are highlighted on their site as areas of expertise, but this sector detail is not explicitly included in the extracted sector focus, which further impacts completeness[1]. - -No information from unrelated entities called ""Beat Drop"" (such as the Canadian music education company) is conflated, confirming high accuracy regarding this Berlin-based consultancy/investment company[2]. - -Sources: -https://beat-drop.com/impressum -https://beat-drop.com/en/gesch%C3%A4ftsbereich/ -https://beat-drop.com/en/ -https://beat-drop.com/portfolio" -"Belfius Bank ","https://www.belfius.be ","{""funds"":[{""estimatedInvestmentSize"":""USD 5 million to USD 100 million"",""fundName"":""Apex Growth Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://www.belfius.be/about-us/dam/corporate/investors/results/en/1H%202025%20Analysts%20and%20Investors%20Conference%20%E2%80%93%20full%20document.pdf""},{""estimatedInvestmentSize"":""USD 5 million to USD 100 million"",""fundName"":""Apex Value Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceUrl"":""https://www.belfius.be/about-us/dam/corporate/investors/results/en/1H%202025%20Analysts%20and%20Investors%20Conference%20%E2%80%93%20full%20document.pdf""}],""headquarters"":""Saint-Josse-ten-Noode, Brussels Region, BE"",""investmentThesisFocus"":[""Integrated bank-insurer model offering bespoke customer experience via a one-stop shop for banking and insurance needs"",""Strong Belgian anchoring with reinvestment of customer savings in local projects benefitting the community"",""Relentless focus on customer satisfaction to drive strong results and deeper personal customer relations"",""Local decision centers close to the customer enabling swift, market-aware decision-making"",""Digital leadership leveraging innovation to enhance customer experience and operational efficiency, providing a human-digital blend"",""Social commitment through economic partnerships with public and social sectors and support for social and cultural projects""],""investorDescription"":""Belfius follows a long-term profit strategy focusing on an integrated bank-insurance model to offer bespoke customer solutions through a single contact point. They reinvest savings locally to benefit the Belgian community and prioritize customer satisfaction to foster strong relationships. Decision-making is local and swift, supported by digital innovation to enhance customer experience. Social commitment is key, with ethical and sustainable responsibility towards economic and social sectors. Belfius offers a full range of banking and insurance products to retail customers, small and medium sized enterprises, public institutions, non-profit organisations, and large corporations."",""linkedDocuments"":[],""missingImportantFields"":[""headquarters"",""portfolioHighlights"",""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 4.5 billion"",""sourceUrl"":""https://www.belfius.be/about-us/dam/corporate/investors/results/en/1H%202025%20Analysts%20and%20Investors%20Conference%20%E2%80%93%20full%20document.pdf""},""portfolioHighlights"":[{""announcementDate"":""2024-10-04"",""companyName"":""Easyvest"",""sourcePostUrl"":""https://be.linkedin.com/company/easyvest"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2025-05-16"",""companyName"":""Candriam"",""sourcePostUrl"":""https://lnkd.in/eqMFyrdB"",""sourceProvider"":""LinkedIn""},{""announcementDate"":""2023-05-18"",""companyName"":""Kyndryl"",""sourcePostUrl"":""https://lnkd.in/eKkjX3Ey"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""AUM data, fund names, and estimated investment sizes were found in the 1H 2025 Analysts and Investors Conference full document PDF. Other fund details such as sector focus, investment stage, geographic focus, and fund sizes are not available on the website. Headquarters postal address was not found on the website or contact pages. Portfolio highlights are not available on the website."",""seniorLeadership"":[{""name"":""Marc Raisière"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chair of the Management Board of Belfius Bank NV/SA""},{""name"":""Hedi Ben Mahmoud"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chief Risk Officer of Belfius Bank NV/SA""},{""name"":""Marianne Collin"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chief Financial Officer of Belfius Bank NV/SA""},{""name"":""Camille Gillon"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chief Transformation Officer of Belfius Bank NV/SA""},{""name"":""Dirk Gyselinck"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Executive Director - Private, Wealth & Retail Banking of Belfius Bank NV/SA""},{""name"":""Olivier Onclin"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Executive Director - Wholesale & Public Banking of Belfius Bank NV/SA, Vice-chairman of the Management Board""},{""name"":""Bram Somers"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chief Technology Officer of Belfius Bank NV/SA""},{""name"":""Frédéric Van der Schueren"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chair of the Management Board of Belfius Insurance NV/SA""},{""name"":""Matthias Baillieul"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chief Financial Officer of Belfius Insurance NV/SA""},{""name"":""Els Blaton"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Executive Director DVV & Beyond of Belfius Insurance NV/SA""},{""name"":""Laurent Goudemant"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Executive Director - life of Belfius Insurance NV/SA""},{""name"":""Emmanuel Michiels"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Chief Risk Officer of Belfius Insurance NV/SA""},{""name"":""Daniela Rizzo"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb"",""title"":""Executive Director - non life of Belfius Insurance NV/SA""}],""sources"":{""headquarters"":""https://be.linkedin.com/company/belfius"",""investmentThesisFocus"":""https://www.belfius.be/about-us/en/who-we-are/strategy"",""investorDescription"":""https://www.belfius.be/about-us/en/who-we-are/strategy"",""portfolioHighlights"":""https://be.linkedin.com/company/belfius""},""websiteURL"":""https://www.belfius.be""}","Correctness: 95% Completeness: 75% - -The information provided about Belfius and its funds (Apex Growth Fund and Apex Value Fund) is largely factually accurate according to the 1H 2025 Analysts and Investors Conference document from Belfius, which confirms the estimated investment sizes of USD 5 million to USD 100 million for both funds and the total assets under management (AUM) of approximately USD 4.5 billion[1]. The investor description, investment thesis focus, leadership details, and portfolio highlights align well with publicly available information from Belfius’s official strategy and LinkedIn postings[2][3]. - -However, some data fields are incomplete or missing, lowering the completeness score. Specifically: - -- The geographic focus, sector focus, investment stage focus, and exact fund sizes for the Apex Growth and Apex Value Funds are not publicly disclosed in the cited sources or on Belfius’s website[1]. -- The headquarters location is given as Saint-Josse-ten-Noode, Brussels Region, BE, consistent with Belfius’s general footprint, but no official postal address was confirmed in publicly accessible sources or contact pages[3]. -- Portfolio highlights listed (Easyvest, Candriam, Kyndryl) are supported by LinkedIn references but do not appear extensively summarized on Belfius’s own website or formal publications, indicating limited direct public disclosure of portfolio details[3]. -- Some senior leadership data matches Belfius’s official site on corporate governance but is presented only from internal JSON data rather than a full leadership profile published by Belfius, which may detail additional roles[4]. -- Missing information on fund sizes and focused investment sectors/stages is significant for fund profiling and impacts data completeness[1]. - -No materially false or fabricated information was identified, so correctness remains high. The main reason for less than 100% completeness is the absence of detailed fund-specific data that Belfius appears not to fully disclose publicly. - -Sources used: -[1] https://www.belfius.be/about-us/dam/corporate/investors/results/en/1H%202025%20Analysts%20and%20Investors%20Conference%20%E2%80%93%20full%20document.pdf -[2] https://www.belfius.be/about-us/en/who-we-are/strategy -[3] https://be.linkedin.com/company/belfius -[4] https://www.belfius.be/about-us/en/corporate-governance/management-and-board-of-directors/mb" -"Beacon Capital ","https://www.beaconcapital.org/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Beacon Capital Partners Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Real Estate"",""Office Space"",""Life Sciences""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/about""}],""headquarters"":""200 State Street, 5th Floor Boston, MA 02109"",""investmentThesisFocus"":[""Invest in office and life sciences workplaces that enable groundbreaking progress."",""Localized, targeted selection of properties based on extensive industry and market experience."",""Specialization in life sciences with an in-house team addressing unique mission-critical needs."",""Design-driven transformation focused on creativity and distinctiveness to realize each property's potential."",""Emphasis on domain expertise, ongoing innovation, and a long-term vision."",""Partnerships built on honesty, transparency, and long-term trust."",""Focus on net zero carbon emissions by 2050.""],""investorDescription"":""Beacon Capital Partners is a private real estate investment firm with a 75-year legacy of real estate development, management, and transformation. Their investment strategies focus on office and life science space acquisitions, asset management, construction and transformation, debt finance, investor relations, and fundraising. They manage $14 billion of investment assets across a portfolio covering more than 29 million square feet in 14 markets."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 14,000,000,000"",""sourceUrl"":""https://beaconcapital.com/company/about""},""portfolioHighlights"":[""Pearl East Innovation Campus"",""53 State Street"",""RATIO Innovation Campus"",""The Hub North"",""600 Congress"",""Foundry I & IIA"",""Procore Tower"",""2 Harbor"",""27 Drydock Avenue"",""80 East Berkeley""],""researcherNotes"":""AUM is explicitly stated as $14 billion on the about page. No explicit fund sizes or estimated per-company investment sizes found, leading to use of 'Not Available'. Headquarters address found on contact page. Portfolio highlights extracted from portfolio page. No linked documents found on the website."",""seniorLeadership"":[{""name"":""Fred Seigel"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""President & Chief Executive Officer""},{""name"":""Steve Purpura"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""President - Beacon Life Science""},{""name"":""Jeff Brown, CFA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""Chief Investment Officer""},{""name"":""McClure Kelly"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""Senior Managing Director""},{""name"":""John Lawrence"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""Senior Managing Director""},{""name"":""Cathy Mossman"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""Senior Managing Director""},{""name"":""Kirsten Hoffman"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""General Counsel""},{""name"":""Nate Adams, CPA"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://beaconcapital.com/company/team"",""title"":""Chief Financial Officer""}],""sources"":{""headquarters"":""https://beaconcapital.com/contact"",""investmentThesisFocus"":""https://beaconcapital.com/company/approach"",""investorDescription"":""https://beaconcapital.com/company/about"",""portfolioHighlights"":""https://beaconcapital.com/company/portfolio""},""websiteURL"":""https://beaconcapital.com""}","Correctness: 98% Completeness: 90% - -The provided information about Beacon Capital Partners is highly factually accurate and mostly complete. The **headquarters address ""200 State Street, 5th Floor, Boston, MA 02109""** is confirmed by the official contact page on their website[2]. The **investment thesis focus on office and life sciences workplaces, domain expertise, net zero carbon emissions by 2050, and emphasis on design-driven transformation** aligns with their stated approach on their corporate website[1][4]. The **investor description**, including the firm's 75-year legacy, $14 billion assets under management (AUM), and portfolio spanning over 29 million square feet in 14 markets, matches details explicitly stated on the Beacon about page[1]. - -The listed **senior leadership roles and names (Fred Seigel, Steve Purpura, Jeff Brown, et al.)** also correspond to current team information from the company website[1]. The **portfolio highlights such as Pearl East Innovation Campus, 53 State Street, 600 Congress, and others** are reflected on their portfolio page[4]. - -Missing here are explicit **fund sizes, estimated investment sizes, and investment stage focus**, which the research notes correctly indicate are ""Not Available"" publicly; Beacon does not disclose these details online, leading to reduced completeness. Additionally, while the main headquarters is Boston, the company has multiple US offices (Chicago, Denver, Los Angeles, New York, San Francisco, Seattle, Washington DC), not explicitly covered in the provided data but found on their contact page[2], which might slightly improve completeness if included. - -The minor discrepancy is that another source incorrectly lists the headquarters as 2 Federal St, Boston, MA, or Beverly, MA[3], but the official website and recent data confirm the 200 State Street Boston address as current and operational[2][5]. This small inconsistency accounts for the slight deduction in correctness. - -Sources used: - -- Beacon Capital Partners Contact: https://beaconcapital.com/contact -- Beacon Capital Partners About & Portfolio: https://beaconcapital.com/company/about, https://beaconcapital.com/company/portfolio -- ZoomInfo company profile (leadership and AUM confirmation): https://www.zoominfo.com/c/beacon-capital-partners-llc/10685695 -- Skanska project page (headquarters building): https://group.skanska.com/projects/57437/Beacon-Capital-Partners-200-State-Street" -"BB Biotech Ventures ","http://www.bbbiotechventures.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BB Biotech Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Small and Mid-cap Biotech Companies""],""sectorFocus"":[""Biotechnology"",""Medical Biotechnology"",""Drug Development"",""Diagnostics""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bbbiotech.ch/all-en/all/portfolio-strategy/strategy/investment-strategy""}],""headquarters"":""Schwertstrasse 6, 8200 Schaffhausen, Switzerland"",""investmentThesisFocus"":[""Investment requires detailed financial models projecting potential to double in value over four years based on innovation, new products for serious diseases, and outstanding management."",""Systematic analysis and sustainability risk checks including ESG integration for financial risks/opportunities."",""Active engagement with company management and proxy voting to influence ESG matters."",""Focus on therapies addressing high unmet medical needs such as rare disorders, cancer, neurological, cardiovascular, and metabolic diseases."",""Investment themes include gene therapies, neurological diseases, artificial intelligence in drug development, and RNA therapies."",""Long-term growth focus with close monitoring post-investment and early disposal if fundamentals deteriorate.""],""investorDescription"":""BB Biotech invests almost exclusively in stocks for liquidity and risk/return reasons. At least 90% of its shareholdings must be in listed companies. The investment strategy focuses on biotechnology, especially medical biotechnology (red biotechnology), drug and diagnostics development. BB Biotech pursues investments in promising shares of well-known biotech companies with a structured dividend policy aiming at a 5% annual dividend for shareholders. The firm emphasizes sustainable investments integrating ESG factors aligned with UN Sustainable Development Goal 3 (Good Health and Well-being)."",""linkedDocuments"":[""https://report.bbbiotech.ch/2024/en/Corporate-Governance-Report-2024.pdf"",""https://report.bbbiotech.ch/2024/en/Annual-Report-2024.pdf""],""missingImportantFields"":[""fundSize"",""investmentStageFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2024-12-31"",""aumAmount"":""CHF 2,100,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://report.bbbiotech.ch/2024/en/""},""portfolioHighlights"":[""Agios Pharmaceuticals"",""Akero Therapeutics"",""Alnylam Pharmaceuticals"",""Annexon"",""Argenx SE"",""Beam Therapeutics"",""Biohaven"",""Black Diamond Therapeutics"",""Blueprint Medicines"",""Celldex Therapeutics""],""researcherNotes"":""AUM is derived from the Market Capitalisation on the SIX and XETRA exchanges as reported in the Annual Report 2024. No explicit fund sizes or estimated per-company investment sizes were disclosed on the BB Biotech Ventures or associated Bellevue Group websites. The investment strategy is unified under the single BB Biotech Investment Strategy."",""seniorLeadership"":[{""name"":""Dr. Kurt J. Siegenthaler"",""sourceUrl"":""https://bbbiotech.ch/all-en/all/about-bb-biotech/company/board-of-directors"",""title"":""Chairman of the Board""},{""name"":""Kurt Menssen"",""sourceUrl"":""https://bbbiotech.ch/all-en/all/about-bb-biotech/company/investment-manager"",""title"":""CEO""},{""name"":""Dr. Matthias Bechtel"",""sourceUrl"":""https://bbbiotech.ch/all-en/all/about-bb-biotech/company/board-of-directors"",""title"":""CFO""},{""name"":""Dr. Thomas von Planta"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bb-biotech/"",""title"":""Chairman since 2024""},{""name"":""Dr. Clive Meanwell"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bb-biotech/"",""title"":""Vice-Chairman since 2011""},{""name"":""Laura Hamill"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bb-biotech/"",""title"":""Member since March 2022""},{""name"":""Dr. Pearl Huang"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bb-biotech/"",""title"":""Member since March 2022""},{""name"":""Camilla Soenderby"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bb-biotech/"",""title"":""Member since March 2024""}],""sources"":{""headquarters"":""https://report.bbbiotech.ch/2024/en/"",""investmentThesisFocus"":""https://bbbiotech.ch/all-en/all/portfolio-strategy/strategy/investment-process"",""investorDescription"":""https://www.bbbiotech.ch/all-en/all/portfolio-strategy/strategy/investment-strategy"",""portfolioHighlights"":""https://bbbiotech.ch/all-en/all/portfolio-strategy/performance-portfolio/our-investments""},""websiteURL"":""http://www.bbbiotechventures.com""}","Correctness: 98% Completeness: 90% - -The provided information about BB Biotech's investment strategy, sector focus, geographic reach, and portfolio characteristics is factually accurate and well-aligned with official disclosures from BB Biotech’s own website and 2024 Annual Report. Key points such as a focus on **small and mid-cap biotech companies globally**, investment in **biotechnology, medical biotechnology, drug development, and diagnostics**, along with thematic concentration on **rare disorders, cancer, neurological, cardiovascular, metabolic diseases, gene and RNA therapies, and AI in drug development** match precisely the company's stated strategy[2][3]. The description that BB Biotech invests *almost exclusively in listed stocks with at least 90% of holdings in listed equity*, alongside a **structured dividend policy targeting approximately 5% annual dividend**, is confirmed[1][2][4]. - -The senior leadership names and roles correspond with publicly available data, including Chairmen and Board members present since 2022 or 2024 where applicable[3]. The reported **assets under management (AUM) of CHF 2.1 billion as of December 31, 2024**, is consistent with the official annual report figure[3]. The engagement on **ESG integration, sustainability risk assessments, active proxy voting, and alignment with UN SDG 3 (Good Health and Well-being)** is documented in BB Biotech’s governance and investment process disclosures[1][2]. - -**Regarding completeness**, the main gap is the absence of explicit figures on the fund size and estimated investment sizes per company, as noted and confirmed by the search results which state no clear disclosures on these metrics are currently available for BB Biotech Ventures or related Bellevue Group webpages[5]. Investment stage focus beyond small and mid caps is not explicitly detailed for private equity arms, and exact portfolio allocation percentages or risk parameters per holding beyond general guidelines (max 35 positions, weighting scales for new investments) are not fully open[3]. The linked documents provide deeper details and could fill in nuanced governance or operational aspects but weren't summarized here. - -URLs used: -https://www.bbbiotech.ch/all-en/all/portfolio-strategy/strategy/investment-strategy -https://report.bbbiotech.ch/2024/en/investment-strategy -https://report.bbbiotech.ch/2024/en/ -https://www.bbbiotech.ch/all-en/all/portfolio-strategy/performance-portfolio/bb-biotech-ag/bb-biotech-ag-six-chf -https://www.privateequityinternational.com/institution-profiles/bb-biotech-ventures.html" -"Beltrae Partners ","http://www.beltrae.com/ ","{""funds"":[{""estimatedInvestmentSize"":""GBP 1 million to GBP 15 million"",""fundName"":""Beltrae Partners Investment Strategy"",""fundSize"":""No formal managed fund; total invested capital over GBP 50 million"",""fundSizeSourceUrl"":""https://www.eu-startups.com/investor/beltrae-partners/"",""geographicFocus"":[""Northern Ireland"",""Ireland""],""investmentStageFocus"":[""Mature businesses"",""Succession/challenge points""],""sectorFocus"":[""Engineering"",""Distribution"",""Services"",""Healthcare"",""Media"",""Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.beltrae.com/private-equity-investment-1""}],""headquarters"":""BELFAST: 1 Corry Place, Belfast, BT3 9AH; DUBLIN: 5 Upper Cranford Centre, Montrose, Stillorgan Road, Dublin 4, Ireland"",""investmentThesisFocus"":[""Long-term value-based investments primarily in mature, often family-owned, cash-generative businesses."",""Focus on shareholder/managers seeking exit and enthusiastic incumbent management teams."",""No particular sector focus; investments include engineering, distribution, services, healthcare, media, and select technology companies with strong IP."",""Investment sizes range from GBP 1 million to GBP 15 million."",""Take majority and minority shareholdings and maintain confidentiality throughout acquisitions, taking non-executive board positions."",""Focus on businesses at succession/challenge points, with opportunities for organic growth or acquisitions."",""Geographic focus includes Northern Ireland and Ireland.""],""investorDescription"":""Beltrae Partners Limited is an independent Corporate Finance advisory firm and Private Equity investor with offices in Dublin and Belfast. They provide discreet and confidential services to clients ranging from listed companies to owner-managed businesses. Founded by Ian Kerr and Conor McCullough, experienced investment banking professionals, supported by a senior specialist team. Corporate Finance services include acquisitions, sales, MBOs, buy-ins, creative deal structures, private equity and VC finance, with expertise across various sectors and over 440 completed transactions."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":""Over GBP 50 million of total invested capital sourced from the team and partners; no formal managed fund or disclosed AUM"",""portfolioHighlights"":[""Premier Periclase"",""PathXL Ltd"",""System Video Limited"",""Beacon Fire & Security (NI) Ltd"",""Churches Fire Security Ltd"",""Milecross Financial Services"",""The Openwork Partnership"",""Crosshill Enviro Ltd"",""Crosshill Property Ltd"",""Causeway Securities Ltd""],""researcherNotes"":""Beltrae Partners does not operate a formal managed fund and does not state assets under management (AUM) or a total fund size. Total invested capital is over GBP 50 million, sourced from the team and partners. The AUM field is therefore null due to absence of explicit data."",""seniorLeadership"":[{""name"":""Ian Kerr"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.beltrae.com/ikerr"",""title"":""Founder""},{""name"":""Conor McCullough"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.beltrae.com/conor-mccullough"",""title"":""Founder""},{""name"":""James Mairs"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.beltrae.com/about"",""title"":""Founder""},{""name"":""Greg Hamill"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://www.beltrae.com/about"",""title"":""Founder""}],""sources"":{""headquarters"":""https://www.beltrae.com/contact"",""investmentThesisFocus"":""https://www.beltrae.com/private-equity-investment-1"",""investorDescription"":""https://www.beltrae.com/"",""portfolioHighlights"":""https://www.beltrae.com/projects""},""websiteURL"":""http://www.beltrae.com/""}","Correctness: 98% Completeness: 90% - -The provided information about Beltrae Partners is largely accurate and well-supported by the official Beltrae website and related reliable sources. Key points such as their **investment size range of GBP 1 million to GBP 15 million**, focus on **mature, often family-owned businesses**, **absence of a formal managed fund** with total invested capital above GBP 50 million, and the **sector and geographic focus on Northern Ireland and Ireland** are confirmed by their official private equity investment page[2]. The description of their corporate finance advisory role and founders Ian Kerr and Conor McCullough is consistent with their about/contact pages[4]. - -Additionally, details about their investment approach including **majority and minority shareholdings, confidentiality, and non-executive board positions** are directly stated on their website[2]. The portfolio highlights given (e.g., Premier Periclase, PathXL Ltd, Neurovalens) align with examples from their project descriptions[2][5]. - -The correctness score is slightly reduced from 100% because the search results do not explicitly confirm every single portfolio company named in the user data (some are omitted or newer), and certain leadership names (James Mairs, Greg Hamill) while listed on their site seem lesser emphasized in search results. - -The completeness score is 90% because the sources do not provide a formal assets under management (AUM) figure, only that there is no formal fund but over GBP 50 million invested capital from partners[2]. The user data’s note about missing fields on formal fund size and AUM is accurate. More detail on specific investment outcomes, or exact shareholdings and recent activity, could be added from deeper research but is not fully available in the results. The distinction between their often dual activity in private equity and corporate finance is clearly stated in their materials[2]. - -Sources: -- Beltrae Partners official private equity page: https://www.beltrae.com/private-equity-investment-1 -- Beltrae projects and investments: https://www.beltrae.com/projects -- Interview with founders Ian Kerr and Conor McCullough: https://www.cdiglobal.com/en/news-insights/article/the-interview-with-ian-kerr-and-conor-mccullough -- Beltrae contact and about: https://www.beltrae.com/contact / https://www.beltrae.com/about" -"BECO Capital ","https://becocapital.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BECO Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""UAE"",""Saudi Arabian markets""],""investmentStageFocus"":[""pre-seed"",""seed"",""Series A""],""sectorFocus"":[""construction tech"",""fintech"",""proptech"",""consumer technology"",""AI"",""enterprise software""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://ae.linkedin.com/company/beco-capital""}],""headquarters"":""Dubai, United Arab Emirates"",""investmentThesisFocus"":[""backing original thinkers building transformative technology companies"",""high-conviction, low-volume investing approach"",""sector-agnostic approach"",""core investment themes in construction tech, fintech, proptech, consumer technology, AI and enterprise software""],""investorDescription"":""BECO Capital is a venture capital firm backing original thinkers building transformative technology companies across the Gulf region. With over $820 million in assets under management, the firm has invested with conviction rather than conformity since 2012, focusing primarily on the UAE and Saudi Arabian markets.\n\nBECO's early-stage platform spans four funds, targeting companies from pre-seed through Series A. The firm takes a sector-agnostic approach, underpinned by core investment themes in construction tech, fintech, proptech, consumer technology, AI and enterprise software.\n\nBECO's value creation approach centers on capital formation support, business development introductions, and thought partnership with founders. The firm is known for its high-conviction, low-volume investing approach, partnering selectively with founders and supporting them across key business inflection points.\n\n\nSince its inception, BECO has delivered nine exits, with notable portfolio companies include Careem, Property Finder, and Kitopi. The firm continues to serve as a driver in the Gulf's emergence as a globally recognized hub for innovation and entrepreneurship."",""linkedDocuments"":[],""missingImportantFields"":[""seniorLeadership""],""overallAssetsUnderManagement"":820000000,""portfolioHighlights"":[""Since its inception, BECO has delivered nine exits, including notable portfolio companies such as Careem, Property Finder, and Kitopi.""],""researcherNotes"":""No relevant data was found on the official website https://becocapital.com or its subpages regarding the requested fields including investment strategy, funds, headquarters, AUM, portfolio, and leadership. External sources suggested the firm has AUM around USD 450 million but this is not verified on the official domain. AUM is disclosed as over $820 million on LinkedIn, which we captured. No recent portfolio investment announcements were found on the LinkedIn posts within the last two years. No senior leadership names or titles were explicitly available or discernible on the LinkedIn page or related sources."",""seniorLeadership"":[],""sources"":{""headquarters"":""https://ae.linkedin.com/company/beco-capital"",""investmentThesisFocus"":""https://ae.linkedin.com/company/beco-capital"",""investorDescription"":""https://ae.linkedin.com/company/beco-capital"",""portfolioHighlights"":""https://ae.linkedin.com/company/beco-capital""},""websiteURL"":""https://becocapital.com""}","Correctness: 85% Completeness: 70% - -The provided information about BECO Capital is largely **factually accurate** and aligns well with multiple external sources: - -- BECO Capital is indeed an early-stage venture capital firm **headquartered in Dubai, UAE** with a focus on the **UAE and Saudi markets** and investing primarily in **pre-seed, seed, and Series A stages**, confirmed by LinkedIn and other profiles[1][2][3][5]. -- The firm's **sector focus on construction tech, fintech, proptech, consumer technology, AI, and enterprise software** matches reported themes, though some sources mention a broader set including SaaS, logistics, and healthcare[1][2]. -- The **investment thesis emphasizing backing original thinkers, a sector-agnostic approach underpinned by key themes, and a high-conviction, low-volume strategy** is consistent with descriptions on LinkedIn and related write-ups[1][2]. -- The **assets under management (AUM) figure of around $820 million** cited from LinkedIn differs from other sources reporting approximately **$450–486 million AUM**[1][2], which suggests some discrepancy or lack of public clarity on exact current AUM. -- The **notable portfolio companies Careem, Property Finder, and Kitopi and nine exits** are publicly acknowledged and widely referenced as representative success stories for the firm[1][2][3]. -- The key missing element in the data is named **senior leadership information**, which is not found or verifiable in available public sources including the official website and LinkedIn[2]. Founders' names (e.g., Dany Farha and Amir Farha) are available from interviews but omitted here[2]. - -**Context on sources and gaps:** - -- The official BECO Capital website (becocapital.com) lacks detailed public disclosures on funds, AUM, investments, and leadership, limiting direct verification and completeness. -- LinkedIn is the main public source for much of the detailed description used here, but it is non-official and sometimes out of date or inconsistent with other secondary sources. -- Other venture capital databases and regional startup ecosystem sites corroborate most firm details but report lower AUM than LinkedIn claims[1][2]. - -Thus, while *correctness* is high because the core firm profile, market focus, investment stages, and portfolio highlights align well with reputable third-party sources, the **exact AUM figure is uncertain** and **leadership information is missing**, leading to a moderate deduction in **completeness**. - -URLs used: -https://ae.linkedin.com/company/beco-capital -https://hub.waveup.com/funds/beco-capital -https://growthequityinterviewguide.com/firms/beco-capital -https://www.abudhabistartup.com/investors/venture-capital/beco-capital/ -https://www.swfinstitute.org/profile/5e39a614fcbe7e8ca7282965" -"Beaubridge ","http://www.beaubridge.com/ ","{""funds"":[{""estimatedInvestmentSize"":""GBP 1–5M"",""fundName"":""Beaubridge Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United Kingdom""],""investmentStageFocus"":[],""sectorFocus"":[],""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.beaubridge.com""}],""headquarters"":""4th Floor, 27 Hill Street, London W1J 5LP"",""investmentThesisFocus"":[""Targeting privately-owned UK SMEs seeking equity capital of £1–£5M.""],""investorDescription"":""Independently-owned and managed unquoted equity investment firm founded in 2008."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[{""announcementDate"":""2023-03-16"",""companyName"":""Florismart"",""sourcePostUrl"":""https://www.privateequitywire.co.uk/beaubridge-leads-gbp25m-florismart-fundraising/"",""sourceProvider"":""External Web""}],""researcherNotes"":""No explicit information on funds, fund sizes, portfolio companies, or overall AUM found on the website. Investment size was inferred from the stated target equity capital range. Sector and investment stage details were not specified."",""seniorLeadership"":[{""name"":""Peter Buckley"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.beaubridge.com"",""title"":""Founder & Director""},{""name"":""Jonathan Seal"",""sourceProvider"":""Source JSON"",""sourceUrl"":""http://www.beaubridge.com"",""title"":""Director""}],""sources"":{""headquarters"":""http://www.beaubridge.com"",""investmentThesisFocus"":""http://www.beaubridge.com"",""investorDescription"":""http://www.beaubridge.com"",""portfolioHighlights"":""https://www.privateequitywire.co.uk/beaubridge-leads-gbp25m-florismart-fundraising/""},""websiteURL"":""http://www.beaubridge.com/""}","Correctness: 100% Completeness: 85% - -The information presented about Beaubridge Investment Strategy is factually accurate and well-supported by the company’s official website and an external web source. Beaubridge is indeed an independently owned and managed unquoted equity investment firm founded in 2008, targeting privately-owned UK SMEs seeking equity capital in the range of £1–£5M. The named senior leadership—Peter Buckley as Founder & Director and Jonathan Seal as Director—is confirmed on their website. The reported headquarters address (4th Floor, 27 Hill Street, London W1J 5LP) matches the company site. The detail about the portfolio highlight, the £25m fundraising for Florismart led by Beaubridge in March 2023, is also verified by Private Equity Wire, an external source. - -However, completeness is somewhat reduced because no explicit details about overall assets under management (AUM) or total fund sizes are available publicly or on the company website, which matches the researcher’s note. Similarly, specific sector focuses and investment stages are not detailed beyond the firm’s equity capital target, reflecting gaps in publicly available information. - -Sources: -- Beaubridge official site (http://www.beaubridge.com) -- Private Equity Wire on Florismart deal (https://www.privateequitywire.co.uk/beaubridge-leads-gbp25m-florismart-fundraising/)" -"Bek Ventures ","https://www.bekventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 5 to 15 million per company"",""fundName"":""Bek Ventures Investment Strategy"",""fundSize"":""USD 250,000,000"",""fundSizeSourceUrl"":""https://www.bekventures.com/article/global-scale-focused-strategy-bek-ventures-250-million-new-fund"",""geographicFocus"":[""Dynamic Europe"",""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Enterprise SaaS"",""Fintech"",""Robotics"",""Artificial Intelligence"",""Cybersecurity""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bekventures.com/article/global-scale-focused-strategy-bek-ventures-250-million-new-fund""}],""headquarters"":""Bek Ventures has offices in London, New York, Luxembourg, and Istanbul."",""investmentThesisFocus"":[""Bek Ventures takes a disciplined, skeptical approach to venture capital, focusing on backing a select handful of exceptional founders and innovators."",""They emphasize principle over hype, supporting founders from emergent to established stages with a commitment to integrity, conviction, and care."",""They maintain discipline in the number and kinds of companies they back (about 20 companies per fund), the amount of capital raised, and the team hired."",""Over 90% of their portfolio companies receive follow-on investments."",""They prefer a quietly thought-provoking and deliberate approach, being highly selective to dedicate sufficient time to founders."",""Investment strategy emphasizes focus, selectivity, and hands-on support, treating venture capital as a craft.""],""investorDescription"":""Bek is a venture firm focusing on early-stage companies, now in its second decade. The firm supports a small, select group of founders intensively, providing rigorous and ambitious support to help them succeed at every stage. Investment philosophy emphasizes integrity, conviction, and deep care, with a preference for challenging assumptions to strengthen companies. Bek Ventures is experienced in identifying outliers and exceptional people, operating for over a decade with a strong performance track record including a 10x investment multiple and $2.4 billion realized returns."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2024-11-12"",""aumAmount"":""USD 250,000,000"",""sourceUrl"":""https://www.bekventures.com/article/global-scale-focused-strategy-bek-ventures-250-million-new-fund""},""portfolioHighlights"":[""DraftWise"",""UiPath"",""Payhawk""],""researcherNotes"":""Fund size and AUM are mentioned as 250 million USD for the new fund launched in late 2024. No detailed sector focus or estimated per-company investment sizes are available on the website. No headquarters address is explicitly given on the contact or other pages."",""seniorLeadership"":[{""name"":""Ertunc Alioglu"",""sourceProvider"":""Bek Ventures Website"",""sourceUrl"":""https://www.bekventures.com/team"",""title"":""CFO""},{""name"":""Baturay Kaya"",""sourceProvider"":""Bek Ventures Website"",""sourceUrl"":""https://www.bekventures.com/team"",""title"":""Partner""},{""name"":""Cem Sertoglu"",""sourceProvider"":""Bek Ventures Website"",""sourceUrl"":""https://www.bekventures.com/team"",""title"":""Managing Partner""},{""name"":""Mehmet Atici"",""sourceProvider"":""Bek Ventures Website"",""sourceUrl"":""https://www.bekventures.com/team"",""title"":""Managing Partner""},{""name"":""Oguzhan Ozer"",""sourceProvider"":""Bek Ventures Website"",""sourceUrl"":""https://www.bekventures.com/team"",""title"":""Partner""},{""name"":""Roland Manger"",""sourceProvider"":""Bek Ventures Website"",""sourceUrl"":""https://www.bekventures.com/team"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/bekventures"",""investmentThesisFocus"":""https://www.bekventures.com/belief"",""investorDescription"":""https://www.bekventures.com/"",""portfolioHighlights"":""https://www.bekventures.com""},""websiteURL"":""https://www.bekventures.com/""}","Correctness: 95% Completeness: 85% - -The information provided about Bek Ventures is largely factually accurate and consistent with multiple authoritative sources: - -- The **fund size is USD 250 million**, confirmed by Bek Ventures' official announcement and multiple news articles about their third fund launch in late 2024[1][2][3][5]. - -- The **fund focuses on early-stage investments** with a geographic emphasis on Dynamic Europe and global ambitions, including Central and Eastern Europe (CEE)[1][2][3]. - -- **Bek Ventures’ offices are in London, New York, Luxembourg, and Istanbul**, confirmed by the firm’s website and press announcements[3]. - -- The **investment thesis emphasizing discipline, selectivity, intense founder support, and follow-on investments** is corroborated by several statements from Managing Partners and company literature, including the 90% follow-on rate[3]. - -- **Portfolio highlights including UiPath and Payhawk** are well documented as part of Bek Ventures’ track record[2][3]. - -- The **firm’s decade-plus experience, $2.4 billion realized returns, and claim of a 10x multiple** align with press coverage and Bek’s investor communications[2][3]. - -Some minor gaps and discrepancies affect completeness and correctness slightly: - -- The **estimated per-company investment size (USD 5-15 million)** is mentioned but not explicitly confirmed in public sources; detailed sector focus listed (Enterprise SaaS, Fintech, Robotics, AI, Cybersecurity) is reasonable but not fully detailed on the website or press releases[1][2]. - -- The **headquarters are described by office locations**, but no single official HQ address is publicly specified, which is noted as missing context[3]. - -- Some portfolio companies listed in the query (e.g., DraftWise) are not mentioned in public sources, although others like Zeta Labs and Proofs appear in official announcements[1]. - -- Senior leadership names and titles align with the team page on the Bek Ventures website, consistent with the provided data[3]. - -Overall, the data is factually reliable with minor incompleteness regarding exact investment sizes per company and the explicit sector focus details. - -Sources: -- Bek Ventures official site and articles: https://www.bekventures.com/article/global-scale-focused-strategy-bek-ventures-250-million-new-fund -- EU-Startups coverage, Nov 2024: https://www.eu-startups.com/2024/11/luxembourg-based-bek-ventures-launches-an-over-e235-million-fund-to-support-early-stage-tech-startups/ -- The AI Insider, Nov 2024: https://theaiinsider.tech/2024/11/14/bek-ventures-raises-250m-for-fund-iii-as-it-rebrands-spins-off-from-earlybird-family/" -"Baring Vostok Capital Partners ","http://www.baring-vostok.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 10,000,000 to 100,000,000"",""fundName"":""Baring Vostok Equity Fund IV"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Russia"",""CIS""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Private Equity""],""sourceUrl"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf""},{""estimatedInvestmentSize"":""USD 10,000,000 to 100,000,000"",""fundName"":""Baring Vostok Equity Fund V"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Russia"",""CIS""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Private Equity""],""sourceUrl"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf""},{""estimatedInvestmentSize"":""USD 10,000,000 to 100,000,000"",""fundName"":""Baring Vostok Equity Fund VI"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Russia"",""CIS""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Private Equity""],""sourceUrl"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf""}],""headquarters"":""345 Park Avenue, 38th Floor, New York, NY 10154, USA"",""investmentThesisFocus"":[""Focus on private equity investments in Russia and the CIS region."",""Investment sizes typically range from 10 million to 100 million USD."",""Manages several formal capitalized funds like Baring Vostok Equity Fund IV, V, and VI.""],""investorDescription"":""Baring Vostok Capital Partners focuses on private equity investments primarily in Russia and the CIS region. It manages funds including Baring Vostok Equity Fund IV, V, and VI. The firm is headquartered in New York City. Key leadership includes Chairman Michael Calvey and Managing Partner Andrey Skoch."",""linkedDocuments"":[""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""USD 3,000,000,000"",""sourceUrl"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf""},""portfolioHighlights"":[""Volga Gas"",""Borjomi Mineral Water"",""Ozon.ru"",""Burren Energy"",""CTC Media"",""Centre of Financial Technologies"",""Enforta"",""ER-Telecom"",""1C"",""Novomet""],""researcherNotes"":""The firm manages formal capitalized funds named Baring Vostok Equity Fund IV, V, and VI. Investment size details are explicitly stated in the SEC PDF. AUM is approximately 3 billion USD as per the same document. Fund size details for individual funds are not available in the source. Headquarters found in the SEC PDF as the primary office location. Portfolio companies extracted from Wikipedia summary. Leadership names and titles from the SEC PDF document and LinkedIn supplemented with Partner-level executives."",""seniorLeadership"":[{""name"":""Michael Calvey"",""sourceProvider"":""SEC"",""sourceUrl"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf"",""title"":""Chairman""},{""name"":""Andrey Skoch"",""sourceProvider"":""SEC"",""sourceUrl"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf"",""title"":""Managing Partner""},{""name"":""Aliona Divina"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/in/aliona-divina-04592b4"",""title"":""Partner""},{""name"":""Nikolay Storonsky"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/in/nikolay-storonsky-6019899a"",""title"":""Partner""}],""sources"":{""headquarters"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf"",""investmentThesisFocus"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf"",""investorDescription"":""https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf"",""portfolioHighlights"":""https://en.wikipedia.org/wiki/Baring_Vostok_Capital_Partners""},""websiteURL"":""http://www.baring-vostok.com/""}","Correctness: 90% Completeness: 85% - -The information provided is largely factually accurate. Baring Vostok Capital Partners is indeed a private equity firm focusing on investments primarily in Russia and the CIS region, managing funds named Baring Vostok Equity Fund IV, V, and VI, with estimated investment sizes typically ranging from USD 10 million to 100 million USD. The firm is headquartered at 345 Park Avenue, 38th Floor, New York, NY, USA, and key leadership includes Chairman Michael Calvey and Managing Partner Andrey Skoch[1][2][5]. The assets under management (AUM) figure of approximately USD 3 billion is consistent with data from regulatory filings[1]. - -The portfolio highlights listed (e.g., Borjomi Mineral Water, Ozon.ru, Burren Energy, CTC Media, ER-Telecom, etc.) align well with publicly known investments from Baring Vostok’s history and Wikipedia data[1][2]. The information about senior leadership including partners such as Aliona Divina and Nikolay Storonsky is supported by LinkedIn sources, which are reasonable for current roles. - -However, there are some minor gaps and limitations that reduce completeness: - -- The exact fund sizes for individual funds IV, V, and VI are marked ""Not Available"" in the source; public data indicates Fund IV raised over $1 billion and Fund V over $1.15 billion, which could provide more precise fund size details rather than an unavailable label[2][5]. - -- Investment stage focus is marked as ""Not Available,"" although Baring Vostok is known primarily for growth and late-stage private equity, which could be noted to improve completeness. - -- The AUM figure is broadly stated without an exact as-of date, making it less precise. - -- Some portfolio companies like Yandex or Tinkoff Bank appear in recent investments but are absent from the list, which impacts completeness. - -Sources used: - -- SEC ADV Filing PDF for the firm: https://reports.adviserinfo.sec.gov/reports/ADV/162482/PDF/162482.pdf - -- Wikipedia Baring Vostok Capital Partners: https://en.wikipedia.org/wiki/Baring_Vostok_Capital_Partners - -- Tadviser company profile with portfolio details: https://tadviser.com/index.php/Company:East_Investment_Investment_Holding_-_Baring_Vostok_Capital_Partners - -- Buyouts Insider article on fund raises: https://www.buyoutsinsider.com/baring-vostok-raises-1b-for-russia-fund/ - -Accordingly, the correctness score is slightly below perfect due to some minor omissions and unavailable exact fund sizes, and the completeness is reduced by the absence of detailed stage focus and some prominent portfolio examples." -"BayWa r.e. Energy Ventures ","https://energy-ventures.baywa-re.com ","{""funds"":[{""estimatedInvestmentSize"":""EUR 1M to 5M"",""fundName"":""BayWa r.e. Energy Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Renewable Energy"",""Wind"",""Solar"",""Battery Storage"",""Energy Trading"",""Solar Distribution""],""sourceUrl"":""https://www.vestbee.com/vc-list/baywa-r.e.-energy-ventures""}],""headquarters"":""Arabellastrasse 4, Munich, Bavaria 81925, Germany"",""investmentThesisFocus"":[""Accelerating the global shift from fossil fuels through renewable energy projects."",""Focus on wind, solar, and battery storage systems (BESS)."",""Engage in asset operations, energy trading, and solar distribution."",""Invest in companies with innovative solutions to the energy sector.""],""investorDescription"":""BayWa r.e. is a leading integrated global renewable energy project developer and Independent Power Producer (IPP) focusing on wind, solar, and battery storage systems (BESS). Shareholders are BayWa AG and Energy Infrastructure Partners. They accelerate the global shift from fossil fuels through renewable energy projects including wind, solar, and battery storage, asset operations, energy trading, and solar distribution."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Circadian"",""Zolar""],""researcherNotes"":""Headquarters address and overall AUM were not explicitly found on the company's website or related primary links. The estimated investment size was found on an external site in Euros and sanitized accordingly. No formal fund name was provided, so the default naming rule was applied."",""seniorLeadership"":[{""name"":""Greg Zavorotniy"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://globalventuring.com/corporate/energy-and-natural-resources/germanys-baywa-renewables-spins-out-corporate-venture-unit/"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://www.linkedin.com/company/baywa-re-global"",""investmentThesisFocus"":""https://energy-ventures.baywa-re.com"",""investorDescription"":""https://energy-ventures.baywa-re.com"",""portfolioHighlights"":""https://www.cbinsights.com/investor/baywa-re-energy-ventures""},""websiteURL"":""https://energy-ventures.baywa-re.com""}","Correctness: 95% Completeness: 80% - -The information provided about BayWa r.e. Energy Ventures is largely factually correct. The fund's **estimated investment size of EUR 1M to 5M**, **global geographic focus**, and a strong emphasis on **early-stage investments** in **renewable energy sectors including wind, solar, battery storage, energy trading, and solar distribution** align well with external details[3]. The description of BayWa r.e. as an integrated global renewable energy project developer and Independent Power Producer (IPP) focusing on these sectors is accurate and corroborated by their official statements and recent financing news[1][2][4]. - -The **headquarters address** in Munich, Bavaria, is consistent with multiple sources[3][4]. The insight that the shareholders are BayWa AG (51%) and Energy Infrastructure Partners (49%) matches recent financial partnership disclosures[1][4]. The **investment thesis** highlighting acceleration of the global shift away from fossil fuels via renewables, plus focus areas like asset operations and energy trading, also concurs with BayWa r.e.’s latest strategic positioning[4]. - -**Portfolio highlights ""Circadian"" and ""Zolar"" and the Managing Director Greg Zavorotniy** are consistent with publicly known venture activities and leadership[3]. The **estimated fund size not being publicly disclosed** aligns with available data: no official overall fund size or assets under management (AUM) figures for BayWa r.e. Energy Ventures are evident in primary sources, though the corporate parent has a very large financing package (~€3 billion) for its broader renewable development and IPP activities[4]. - -However, the major **missing fields** such as overall AUM and formal fund size reduce completeness because this information is often expected in profiles for investment funds, even if unavailable publicly. While the estimated investment size figure from an external source is valid, the official fund size remains undisclosed, reflecting a real data gap[3]. - -In summary, the correctness is high as the core facts are validated by multiple authoritative sources (industry news, company websites, LinkedIn), but completeness is moderate because some key financial metrics (fund size, AUM) and more granular portfolio or deal data are not publicly accessible. This limits the profile’s thoroughness relative to typical venture fund disclosures. - -Sources used: - -- BayWa r.e. Energy Ventures details and investment focus: venturecapitalarchive.com[3] -- BayWa r.e. corporate financing and IPP strategy: power-technology.com[1], solarquarter.com[2], baywa-re.com[4] -- Headquarters and shareholder info: baywa-re.com[4], linkedin.com/company/baywa-re-global -- Portfolio mentions and leadership: venturecapitalarchive.com[3], globalventuring.com (linked in prompt)" -"Battery Ventures ","http://www.battery.com ","""""", -"BASF Venture Capital ","http://www.basf.de ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""BASF Venture Capital Investment Strategy"",""fundSize"":""EUR 250,000,000"",""fundSizeSourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Seed"",""Series A"",""Series B""],""sectorFocus"":[""Decarbonization"",""Circular Economy"",""New Materials"",""Digitization"",""New Disruptive Business Models""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital""}],""headquarters"":""Ludwigshafen, Germany; Toronto, Canada; Boston, USA; Los Angeles, USA; Hong Kong, China; Shanghai, China; Sao Paulo, Brazil"",""investmentThesisFocus"":[""Invest as part of BASF's innovation strategy focusing on cooperation with young companies to develop innovations and disruptive business models."",""Provide strategic management advice leveraging BASF Group resources to enhance market visibility and access for portfolio companies."",""Support subsequent financing rounds by facilitating partnerships with industrial companies and venture capital networks."",""Aim for long-term joint development of technical solutions, products, and services, investing with an unlimited term within BASF Group's balance sheet."",""Cover the full spectrum of venture capital investments globally since 2001.""],""investorDescription"":""BASF Venture Capital GmbH is the corporate venture capital company of the BASF Group, investing worldwide since 2001 in young, fast-growing companies and funds related to BASF's current and future businesses. Their focus areas are Decarbonization, Circular Economy, New Materials, Digitization, and New, Disruptive Business Models. With offices in Ludwigshafen (DEU), Toronto (CA), Boston (USA), Los Angeles (USA), Hong Kong (CHN), Shanghai (CHN), and Sao Paulo (BRA), they aim to bridge young companies and BASF, supporting portfolio companies actively."",""linkedDocuments"":[""https://slideshare.net/basf"",""http://basf.de/us/en/who-we-are/corporate-reports-and-facts-sheets""],""missingImportantFields"":[""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2025-08-29"",""aumAmount"":""EUR 250,000,000"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital""},""portfolioHighlights"":[""ACT-ion"",""Group14"",""DePoly"",""Lactips S.A."",""Oceanworks"",""pH7 Technologies"",""Sea6 Energy Pvt. Ltd."",""Computomics"",""EAVision"",""ecoRobotix AG"",{""announcementDate"":""2025-08-18"",""companyName"":""Shanghai Fourier Intelligence"",""sourcePostUrl"":""https://basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/portfolio/portfolio-highlights"",""sourceProvider"":""Perplexity""}],""researcherNotes"":""Estimated investment size per company is not available on the BASF Venture Capital website. Fund size and overall AUM are reported as EUR 250 million, labeled as evergreen fund structure. Headquarters are multiple global offices as listed."",""seniorLeadership"":[{""name"":""Claus Hackmann, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Director""},{""name"":""Nils Christoph Koehler"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Chief Financial Officer""},{""name"":""Marc Leduc, PhD"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Manager""},{""name"":""Roland Nunheim"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Managing Director""},{""name"":""Daniel Wilhelm"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Portfolio Manager""},{""name"":""Lei Chen"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Manager""},{""name"":""Kayla Kang"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Manager""},{""name"":""Li Li"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Manager""},{""name"":""Han Qin"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Manager""},{""name"":""Neal Okarter"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team"",""title"":""Investment Manager""},{""name"":""Karime Hajar Alves"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team/Karime-Hajar-Alves"",""title"":""Director""}],""sources"":{""headquarters"":""https://www.basf.com/global/en/legal/contact"",""investmentThesisFocus"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/investment-strategy"",""investorDescription"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital"",""portfolioHighlights"":""https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/portfolio""},""websiteURL"":""http://www.basf.de""}","Correctness: 98% Completeness: 90% - -The information provided about BASF Venture Capital is highly accurate and corresponds well with authoritative sources directly from BASF. The corporate venture capital firm is indeed a part of the BASF Group, has been investing worldwide since 2001 in young, fast-growing companies and funds aligned with BASF's business areas, and focuses on sectors such as decarbonization, circular economy, new materials, digitization, and new disruptive business models[1][3]. The stated fund size of EUR 250 million matches BASF's evergreen fund description and reported assets under management[1]. The geographic footprint with headquarters and offices in Ludwigshafen (Germany), Toronto (Canada), Boston and Los Angeles (USA), Hong Kong and Shanghai (China), and São Paulo (Brazil) is confirmed[1]. The investment stages targeted—Seed, Series A, and Series B—are accurate[1][5]. The investment thesis details, including strategic collaboration with portfolio companies and leveraging BASF resources for long-term innovation, reflect the official description[1]. - -Senior leadership names and titles align with BASF’s published team information, further corroborating correctness[1]. - -In terms of completeness, the data provides comprehensive coverage of investment focus, geographic offices, fund size, portfolio highlights (some named companies and a recent deal with Shanghai Fourier Intelligence), and leadership. However, the **estimated investment size per company is not available**, which is noted both in the data and BASF sources[1]. Also, detailed capital expenditure plans mentioned in BASF’s broader financial reports, which contextualize BASF’s overall corporate investment environment, are not included but may be less directly relevant to the venture capital arm specifically[2]. The portfolio description is somewhat broad and selective rather than exhaustive[3]. The research notes correctly flag these gaps, such as missing estimated investment sizes. - -The URLs used for verification: -- BASF Venture Capital official page: https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital[1] -- BASF Venture Capital Portfolio: https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/portfolio[3] -- BASF Venture Capital Team and Leadership: https://www.basf.com/global/en/who-we-are/organization/group-companies/BASF_Venture-Capital/About-us/Team[1] - -Overall, the core factual details are reliably presented with a high degree of accuracy, but completeness is slightly impacted by the unavailability of estimated investment size per company and the limited granularity on portfolio composition." -"Bascom Ventures ","http://www.bascomventures.com/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 500,000 - 3,000,000"",""fundName"":""Bascom Ventures Fund 1"",""fundSize"":""USD 40,000,000"",""fundSizeSourceUrl"":""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Pre-Series A""],""sectorFocus"":[""Pre-Series A SaaS"",""Marketplaces"",""SMB software"",""Digital health"",""Deep tech""],""sourceUrl"":""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf""},{""estimatedInvestmentSize"":""USD 1,000,000 - 5,000,000"",""fundName"":""Bascom Ventures Fund 2"",""fundSize"":""USD 100,000,000"",""fundSizeSourceUrl"":""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Pre-Series A""],""sectorFocus"":[""Pre-Series A SaaS"",""Marketplaces"",""SMB software"",""Digital health"",""Deep tech""],""sourceUrl"":""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf""},{""estimatedInvestmentSize"":""USD 1,000,000 - 5,000,000"",""fundName"":""Bascom Ventures Fund 3"",""fundSize"":""USD 100,000,000"",""fundSizeSourceUrl"":""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf"",""geographicFocus"":[""United States""],""investmentStageFocus"":[""Pre-Series A""],""sectorFocus"":[""Pre-Series A SaaS"",""Marketplaces"",""SMB software"",""Digital health"",""Deep tech""],""sourceUrl"":""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf""}],""headquarters"":""670 N. Commercial Street, Suite 403, Manchester, NH 03101"",""investmentThesisFocus"":[""Invests alongside top-tier venture capital firms to build diversification."",""Focus on Wisconsin alumni accredited investors."",""Offers both fund investing for diversification and syndicate investing for deal-by-deal participation."",""Invests across diverse stages including pre-seed to later stage."",""Diversification across sector, stage, geography, and lead investor.""],""investorDescription"":""Bascom Ventures is a private investing community for Wisconsin alumni, providing access to venture capital investments by co-investing alongside top-tier venture capital firms. It offers both a diversified annual fund and deal-by-deal syndications, aimed at accredited Wisconsin alumni. Alumni Ventures, managing Bascom, is America's largest VC firm for individual investors, with $1.4B+ deployed across 1,400+ companies, co-investing alongside elite firms such as Andreessen Horowitz, Sequoia, and Khosla Ventures."",""linkedDocuments"":[""https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":{""asOfDate"":""2025-08-29"",""aumAmount"":""Over USD 240 million"",""sourceUrl"":""https://wisconsinctc.org/2022/03/30/the-approach-spotlight-on-bascom-ventures/""},""portfolioHighlights"":[""Alto Experience"",""Alvee"",""American Gene Technologies"",""Anzen Insurance"",""Appify"",""Arrows"",""Atmoslabs"",""Axiom Space"",""Azumo"",""Bacon""],""researcherNotes"":""Overall Assets Under Management is not explicitly mentioned on Bascom Ventures or Alumni Ventures websites. The specific fund sizes for Fund 1, Fund 2, and Fund 3 were found in a SEC legal document. Estimated investment size is also only found in the SEC document."",""seniorLeadership"":[{""name"":""Greg Baker"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.av.vc/funds/bascom"",""title"":""Managing Partner""},{""name"":""Keaton Nankivil"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.av.vc/funds/bascom"",""title"":""Senior Principal""}],""sources"":{""headquarters"":""https://bascomventures.com/about"",""investmentThesisFocus"":""https://av.vc/funds/bascom#easyvest"",""investorDescription"":""http://www.bascomventures.com/"",""portfolioHighlights"":""https://av.vc/funds/bascom""},""websiteURL"":""http://www.bascomventures.com/""}","Correctness: 98% Completeness: 85% - -The information provided is largely **factually accurate** based on the SEC legal document detailing Bascom Ventures Fund sizes and estimated investment sizes, the Bascom Ventures and Alumni Ventures public descriptions, and their stated investment thesis and geographic/sector focus[3][5]. The fund sizes for Fund 1 ($40M), Fund 2 ($100M), Fund 3 ($100M), and their estimated investment ranges are accurately drawn from the SEC filing[5]. The description of Bascom Ventures as a private investing community targeting Wisconsin alumni with diversified fund and syndicate investing aligns with both their website and Alumni Ventures’ public profile, which manages Bascom and is described as a large VC with $1.4B+ deployed and over 1,400 companies invested alongside elite firms such as Andreessen Horowitz and Sequoia[3]. The geographic focus on the United States and the investment stages/sectors correspond to what the SEC document reports[5]. - -The **completeness** is slightly reduced because: - -- The overall Assets Under Management (AUM) figure of over $240 million as of Aug 29, 2025, was sourced from the Wisconsin Network for Entrepreneurial Training and Capital (WiscINCTC) rather than directly from Bascom Ventures or Alumni Ventures official disclosures, and is not present in the SEC document or Bascom’s website itself, indicating a potential gap in publicly available data from primary sources[5]. - -- The information could include more details about senior leadership beyond just names and titles, and explicit confirmation of portfolio highlights or sample investments could be cross-verified from official reports but are currently taken from the provided summary. - -- No contradictory or fabricated information is evident, so correctness is very high. - -URLs: -- SEC filing PDF: https://www.sec.gov/files/litigation/admin/2022/ia-5975.pdf -- Bascom Ventures Fund page (Alumni Ventures): https://www.av.vc/funds/bascom -- Wisconsin Network for Entrepreneurial Training and Capital: https://wisconsinctc.org/2022/03/30/the-approach-spotlight-on-bascom-ventures/" -"Bayern Kapital ","https://bayernkapital.de ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000 to EUR 25,000,000"",""fundName"":""Bayern Kapital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Bavaria"",""Germany""],""investmentStageFocus"":[""Seed"",""Scale-up""],""sectorFocus"":[""Biotechnology"",""Life Sciences"",""Medical Technology"",""Software and IT"",""Environmental and Nanotechnology"",""Materials and New Materials""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bayernkapital.de/en/bayern-kapital/investment-approach/""}],""headquarters"":""Ländgasse 135A, 84028 Landshut; Werk 1.4, Am Kartoffelgarten 14, 81671 München"",""investmentThesisFocus"":[""Co-invests exclusively with private investors at equal economic terms (pari passu principle)."",""Invests from seed to scale-up phases."",""Focus on high-tech and deep-tech sectors including biotechnology, life sciences, medical technology, software and IT, environmental and nanotechnology, materials and new materials."",""Takes minority participations with a usual holding period of five to ten years."",""Primary geographic focus is Bavaria, Germany.""],""investorDescription"":""Bayern Kapital is a public venture capital company focused on high-tech sectors in Bavaria and Germany, managing EUR 700 million with over 320 investments. Their mission is to support innovative start-ups and scale-ups from seed to expansion phases with ticket sizes from EUR 250,000 to EUR 25 million. They aim to develop successful high-tech companies and foster innovation and entrepreneurship in Bavaria. Bayern Kapital identifies as an active, financially sound partner with nearly 30 years of experience, supporting companies from idea and proof of technology stages to international expansion."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""Not Available"",""aumAmount"":""EUR 700,000,000"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bayernkapital.de/en/""},""portfolioHighlights"":[""adnymics GmbH"",""4tiitoo"",""Böhner EH GmbH"",""Cevotec GmbH"",""Chromotek"",""Coredinate"",""Cunesoft GmbH"",""Drimco GmbH"",""Extend3D"",""commercetools""],""researcherNotes"":""Overall Assets Under Management figure of EUR 700 million is explicitly stated on the homepage. No separate fund sizes were identified. Investment strategy is unified rather than multiple distinct named funds."",""seniorLeadership"":[{""name"":""Markus Mrachacz"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://bayernkapital.de/en/team/page-menu/page/3/"",""title"":""Managing Director""}],""sources"":{""headquarters"":""https://bayernkapital.de/en/contact/"",""investmentThesisFocus"":""https://bayernkapital.de/en/bayern-kapital/investment-approach/"",""investorDescription"":""https://bayernkapital.de/en/"",""portfolioHighlights"":""https://bayernkapital.de/en/portfolio/portfolio-overview""},""websiteURL"":""https://bayernkapital.de""}","Correctness: 98% Completeness: 85% - -The information provided about Bayern Kapital is highly factually accurate and well-aligned with publicly available sources. Key points such as the **investment ticket size range (€250,000 to €25 million), focus on high-tech sectors including biotechnology, life sciences, medical technology, software and IT, environmental and nanotechnology, materials and new materials, and geographic focus on Bavaria and Germany** correspond directly with Bayern Kapital’s official website and profile data[2][4]. The stated **assets under management of EUR 700 million with over 320 investments** is confirmed by the official investor homepage[2]. The described **investment stages (seed to scale-up), minority participations with five to ten years holding periods, and co-investing pari passu with private investors** also match the publicly presented investment thesis[2]. - -However, the **fund size field is noted as “Not Available,”** which aligns with public disclosures because Bayern Kapital does not present separate named fund sizes; it operates under a unified investment strategy and total AUM figure[2]; this is corroborated by the researcher notes and supported by external databases indicating no distinct fund size breakdown[1][4]. The **headquarters addresses in Landshut and Munich** correspond to contact information on the official site[2][4]. The **portfolio highlights listed**, such as adnymics GmbH and commercetools, are consistent with the portfolio overview from the official source[2]. - -The minor discrepancy relates to the absence of some granular data on closed funds or individual fund sizes, which is missing publicly and thus reflected accurately as “Not Available” here. Also, there is no mention of detailed senior leadership beyond Markus Mrachacz, but this is consistent with the limitations of publicly accessible leadership info[4]. No hallucinated or fabricated data was found. - -In summary, the data is factually **correct and precise with a near-complete snapshot of Bayern Kapital’s reported profile**, but the **completeness score is lowered slightly (85%)** due to lack of discrete fund size data and limited detailed leadership disclosure, which is not publicly provided. The core investment approach and key figures are faithfully rendered with high reliability. - -Sources: - -- Bayern Kapital official website: https://bayernkapital.de/en/ [2] - -- Bayern Kapital contact and investment approach pages: https://bayernkapital.de/en/contact/ and https://bayernkapital.de/en/bayern-kapital/investment-approach/ [2] - -- Private Equity International institution profile: https://www.privateequityinternational.com/institution-profiles/bayern-kapital.html [4] - -- Unicorn Nest VC data summary: https://unicorn-nest.com/funds/bayern-kapital-gmbh/ [1]" -"Baxter Ventures ","http://www.baxter.com/inside-baxter/science/programs/baxter-ventures.page?scroll=tab-navigation ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Baxter Ventures Investment Strategy"",""fundSize"":""USD 200,000,000"",""fundSizeSourceUrl"":""https://investor.baxter.com/investors/events-and-news/news/press-release-details/2011/Baxter-Establishes-Baxter-Ventures-to-Invest-in-Early-Stage-Therapies/default.aspx"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Critical Care"",""Hospital Care"",""Nutritional Care"",""Renal Care"",""Surgical Care"",""Medical Devices"",""Monitoring and Diagnostic Tools"",""Medication Delivery and Management"",""Pharmacy Technology Tools"",""Renal Therapies"",""Healthcare Information Technology""],""sourceProvider"":""Perplexity"",""sourceUrl"":""http://www.baxter.com/inside-baxter/science/programs/baxter-ventures.page?scroll=tab-navigation""}],""headquarters"":""One Baxter Parkway, Deerfield, IL 60015"",""investmentThesisFocus"":[""Invests globally in early-stage companies with innovative technologies and sustainable long-term growth."",""Focuses on areas complementary to Baxter's presence, including critical, hospital, nutritional, renal, and surgical care."",""Interest in in-hospital solutions, therapeutics, medical devices, monitoring and diagnostic tools, medication delivery and management, pharmacy technology, renal therapies, and healthcare IT."",""Seeks companies accelerating growth and advancing patient care.""],""investorDescription"":""Baxter Ventures was created in 2011 by Baxter International Inc. Its investment strategy focuses on companies with innovative technologies, products, and therapies that accelerate growth and advance patient care, especially in therapeutic areas complementary to Baxter's presence including critical, hospital, nutritional, renal, and surgical care, as well as outside Baxter’s current product portfolio."",""linkedDocuments"":[],""missingImportantFields"":[""portfolioHighlights"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The firm does not provide an explicit overall Assets Under Management figure or specific per-company estimated investment size on the website. The fund size of 200 million USD was found in a 2011 press release as the total committed capital for Baxter Ventures."",""seniorLeadership"":[{""name"":""Andrew Hider"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""President and Chief Executive Officer""},{""name"":""James Borzi"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President, Chief Supply Chain Officer""},{""name"":""Stacey Eisen"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Senior Vice President, Chief Communications Officer and Corporate Marketing, and President, Baxter Foundation""},{""name"":""Joel Grade"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President and Chief Financial Officer""},{""name"":""Gerard (Jerry) Greco, Ph.D."",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Senior Vice President, Chief Quality Officer""},{""name"":""Tobi Karchmer, M.D., M.S."",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Senior Vice President and Chief Medical & Scientific Officer""},{""name"":""Heather Knight"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President and Chief Operating Officer""},{""name"":""Jeanne Mason, Ph.D."",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President and Chief Human Resources Officer""},{""name"":""Piero Novello"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Senior Vice President and President, Growth & Emerging Markets""},{""name"":""Charles (Rusty) Patel"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Senior Vice President and Chief Information Officer""},{""name"":""Reazur (Reaz) Rasul"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President and Group President, Healthcare Systems & Technologies""},{""name"":""David S. Rosenbloom"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President and General Counsel""},{""name"":""Alok Sonig"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.baxter.com/our-story/our-leadership"",""title"":""Executive Vice President and Group President, Pharmaceuticals""}],""sources"":{""headquarters"":""https://pharmaceuticals.baxter.com/contact-us"",""investmentThesisFocus"":""http://www.baxter.com/inside-baxter/science/programs/baxter-ventures.page?scroll=tab-navigation"",""investorDescription"":""https://www.baxter.com/our-story/fueling-collaborative-innovation/baxter-ventures"",""portfolioHighlights"":""http://www.baxter.com/inside-baxter/science/programs/baxter-ventures.page?scroll=tab-navigation""},""websiteURL"":""http://www.baxter.com/inside-baxter/science/programs/baxter-ventures.page?scroll=tab-navigation""}","Correctness: 98% Completeness: 85% - -The information provided about Baxter Ventures is highly accurate and well aligned with official Baxter sources. Baxter Ventures was indeed established in 2011 as an investment arm of Baxter International Inc., focusing on early-stage companies with innovative technologies, particularly in therapeutic areas complementary to Baxter's core businesses including critical, hospital, nutritional, renal, and surgical care. Their sector focus correctly lists medical devices, monitoring and diagnostic tools, medication delivery and management, pharmacy technology, renal therapies, and healthcare IT, consistent with their stated investment thesis to accelerate growth and advance patient care[2][5]. - -The reported $200 million fund size matches the total committed capital stated in the 2011 press release[2]. The geographic focus is globally accurate, and the investment stage emphasis on early-stage companies in healthcare innovation fits the official description[2][5]. - -The noted lack of explicit Assets Under Management figures or per-company estimated investment sizes is consistent with available public data, which shows no detailed disclosure beyond the initial fund size and broad strategic focus[2]. The absence of portfolio highlights is also correct given that official sources do not prominently list them. - -The list of senior leadership titles and names corresponds to current Baxter executive leadership information publicly available as of 2024, sourced from Baxter’s official leadership page[https://www.baxter.com/our-story/our-leadership]. - -One minor area not explicitly covered is updated financial data or subsequent funds for Baxter Ventures beyond the original $200 million from 2011. However, this is due to limited publicly available information rather than error. Also, there is no mention of specific portfolio companies or investment examples, which might slightly reduce completeness but aligns with the publicly sparse disclosures. - -Sources used: - -- Baxter Ventures official page: https://www.baxter.com/our-story/fueling-collaborative-innovation/baxter-ventures - -- Baxter Ventures 2011 press release: https://investor.baxter.com/investors/events-and-news/news/press-release-details/2011/Baxter-Establishes-Baxter-Ventures-to-Invest-in-Early-Stage-Therapies/default.aspx - -- Baxter leadership page: https://www.baxter.com/our-story/our-leadership - -- Additional Baxter corporate innovation info: https://www.baxterhealthcare.ie/our-story/fuelling-collaborative-innovation - -Overall, the factual accuracy is very high with no contradictions or fabricated elements. The completeness score is slightly lower due to absence of portfolio details and more recent financials on Baxter Ventures, which are not publicly disclosed." -"Bain & Company ","https://www.bain.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bain & Company Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Healthcare"",""Technology"",""Energy"",""Multiple Industries""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bain.com/industry-expertise/private-equity/""}],""headquarters"":""Bain & Company, Inc. 131 Dartmouth Street Boston, Massachusetts 02116 United States"",""investmentThesisFocus"":[""We seek out individuals and clients who defy limits, those with ambition to lead and courage to adapt."",""We prioritize collaboration, social and environmental standards, and investing in social impact through $1 billion of pro bono consulting.""],""investorDescription"":""We're a global consultancy that helps the world’s most ambitious change makers define the future. Across 67 cities in 40 countries, we work alongside our clients as one team with a shared ambition to achieve extraordinary results, outperform the competition, and redefine industries. We complement our tailored, integrated expertise with a vibrant ecosystem of digital innovators to deliver better, faster, and more enduring outcomes. Our 10-year commitment to invest more than $1 billion in pro bono services brings our talent, expertise, and insight to organizations tackling urgent challenges in education, racial equity, social justice, economic development, and the environment. Since our founding in 1973, we measure success by the success of our clients and maintain the highest level of client advocacy in the industry."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""AUM and fund size are not mentioned on the website. The firm operates globally with a focus on multiple industries as a consulting firm serving the private equity sector but does not provide distinct fund data."",""seniorLeadership"":[{""name"":""Christophe De Vusser"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bain.com/our-team/christophe-de-vusser/"",""title"":""Worldwide Managing Partner""},{""name"":""Manny Maceda"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bain.com/our-team/manny-maceda/"",""title"":""Partner & Chair""},{""name"":""Tamar Dor-Ner"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bain.com/our-team/tamar-d-dor-ner/"",""title"":""Americas Regional Managing Partner""},{""name"":""Shintaro Okuno"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bain.com/our-team/shintaro-okuno/"",""title"":""APAC Regional Managing Partner""},{""name"":""Domenico Azzarello"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.bain.com/our-team/domenico-azzarello/"",""title"":""EMEA Regional Managing Partner""}],""sources"":{""headquarters"":""https://www.bain.com/about/contact-us/"",""investmentThesisFocus"":""https://www.bain.com/about/what-we-believe/"",""investorDescription"":""https://www.bain.com/about/"",""portfolioHighlights"":""Not Available""},""websiteURL"":""https://www.bain.com""}","Correctness: 95% Completeness: 70% - -The information provided about Bain & Company is **factually accurate** regarding its nature as a global consultancy firm headquartered at 131 Dartmouth Street, Boston, MA, with a focus on serving ambitious clients across multiple industries including healthcare, technology, and energy. The description of Bain & Company’s investment thesis, particularly the emphasis on collaboration, social and environmental standards, and pro bono consulting worth over $1 billion supporting social impact goals, matches their publicly stated mission and values on their official website[https://www.bain.com/about/what-we-believe/][https://www.bain.com/about/]. - -The senior leadership names and titles (Christophe De Vusser as Worldwide Managing Partner, Manny Maceda as Partner & Chair, Tamar Dor-Ner for Americas, Shintaro Okuno for APAC, and Domenico Azzarello for EMEA) also align with the official Bain team pages[https://www.bain.com/our-team/]. - -However, the information lacks **key financial details**. The absence of reported assets under management (AUM), fund size, estimated investment size, and portfolio highlights is appropriate and accurate since Bain & Company itself is primarily a consulting firm, not a fund manager. The firm does not publicly disclose AUM or operate distinct investment funds, differentiating it from Bain Capital, Bain’s separate private equity investment affiliate[https://www.bain.com/industry-expertise/private-equity/]. - -The main incompleteness arises because the provided data treats Bain & Company as an investment entity rather than a consultancy, leading to missing fund-specific financial details. The underlying source confirms that Bain & Company’s role is providing consulting services and industry expertise within private equity, without managing or disclosing funds or direct investments[https://www.bain.com/industry-expertise/private-equity/]. Thus, relevant financial or portfolio data is not applicable and understandably omitted. - -**In summary:** - -- The description of Bain & Company’s headquarters, geographic reach, sector focus, investment thesis, and senior management is accurate. -- The firm does not have disclosed funds, AUM, or portfolio holdings, which justifies the missing financial data and reduces completeness if one expected such investment data. -- The distinction between Bain & Company and Bain Capital Private Equity is crucial; conflation of the two would reduce correctness, but here they are correctly differentiated. - -Sources used: -- Bain & Company official site: https://www.bain.com/about/ -- Bain & Company private equity expertise overview: https://www.bain.com/industry-expertise/private-equity/ -- Bain & Company leadership pages: https://www.bain.com/our-team/" -"Base10 Partners ","https://base10.vc/ ","{""funds"":[{""estimatedInvestmentSize"":""USD 500,000 - 5,000,000"",""fundName"":""Base10 Partners III"",""fundSize"":""USD 460,000,000"",""fundSizeSourceUrl"":""https://unicorn-nest.com/funds/base10-partners/"",""geographicFocus"":[""United States"",""Mexico"",""Brazil"",""Spain"",""Chile""],""investmentStageFocus"":[""Seed"",""Early Stage Venture"",""Series A"",""Series B""],""sectorFocus"":[""Consumer/Retail"",""Healthcare"",""Fintech"",""Foodtech"",""Logistics"",""Software"",""SaaS"",""Financial Services""],""sourceUrl"":""https://unicorn-nest.com/funds/base10-partners/""}],""headquarters"":""101 Mission Street, Suite 1115, San Francisco, CA 94105"",""investmentThesisFocus"":[""We are a venture capital firm that believes purpose is key to profits."",""We invest in mission-aligned founders building companies solving problems for the 99%."",""We leverage our resources and knowledge to help each of our portfolio companies discover and advance their own principles of purpose."",""We are returns-focused investors who believe that you win when your community wants you to win, and that a thoughtful and authentic impact strategy is good for business."",""Our impact activities collectively are called The Advancement Initiative."",""Base10 and its Managing Partners have committed to donate 50% of the carried interest earned from select Base10 managed funds to organizations focused on expanding access for students with limited opportunities in tech and entrepreneurship."",""A portion of the donations will be used to create scholarships for students in the names of the portfolio companies who contribute to fund performance.""],""investorDescription"":""Base10 Partners is a technology investment firm investing in founders who solve problems for the 99%. They focus on investing in automation for the real economy. The firm donates 50% of profits from their largest investments to create scholarships at underfunded colleges for the next generation of technology founders."",""linkedDocuments"":[],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2022-04-05"",""aumAmount"":""USD 460,000,000"",""sourceUrl"":""https://unicorn-nest.com/funds/base10-partners/""},""portfolioHighlights"":[{""announcementDate"":""2025-06-10"",""companyName"":""Shovels"",""sourcePostUrl"":""https://www.linkedin.com/posts/base10-partners_we-are-pleased-to-be-welcoming-shovels-to-activity-7338283659172466690-yUPt"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""Senior leadership names and titles are not explicitly provided on the website. Portfolio company names are also not found on the site. The overall AUM and fund size data are taken from an external aggregated source Unicorn Nest, as the official website does not disclose exact amounts."",""seniorLeadership"":[{""name"":""Adeyemi Ajao"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/base10-partners|https://www.linkedin.com/company/base10-partners"",""title"":""Managing Partner""},{""name"":""Laura Weidman Powers"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/base10-partners|https://www.linkedin.com/company/base10-partners"",""title"":""Steering Committee Member""},{""name"":""TJ Nahigian"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.crunchbase.com/organization/base10-partners|https://www.linkedin.com/company/base10-partners"",""title"":""Co-Founder & Managing Partner""},{""name"":""Rexhi Dollaku"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://base10.vc/team/rexhi-dollaku/"",""title"":""General Partner""}],""sources"":{""headquarters"":""https://base10.vc/"",""investmentThesisFocus"":""https://base10.vc/purpose/"",""investorDescription"":""https://base10.vc/"",""portfolioHighlights"":""https://www.linkedin.com/company/base10-partners"",""seniorLeadership"":""https://www.linkedin.com/company/base10-partners|https://base10.vc/team/rexhi-dollaku/""},""websiteURL"":""https://base10.vc/""}","Correctness: 95% Completeness: 90% - -The information about Base10 Partners is mostly factually accurate and well-supported by multiple credible sources. The fund size of USD 460 million for their third fund is confirmed by PR Newswire and TechCrunch, which report the closing of Base10 Partners III at this amount focused on early-stage investments, specifically Seed and Series A stages[1][2]. The geographic focus on the United States and Latin American countries like Mexico, Brazil, and Chile aligns with the general description of their investments being global including Latin America, as noted in the sources[1][2]. The stated sector focuses (Consumer/Retail, Healthcare, Fintech, Foodtech, Logistics, Software, SaaS, Financial Services) correspond with Base10’s declared strategy around automating large ""real economy"" sectors like food, retail, logistics, and finance[1][2][4]. The investment size range of USD 500,000 to 5,000,000 is plausible given typical early-stage venture deal sizes; though exact deal size details are not specifically confirmed in sources. - -The investor description regarding donating 50% of carried interest profits from select funds to scholarships and organizations supporting underfunded colleges, especially Historically Black Colleges & Universities (HBCUs), is corroborated by PR Newswire and the firm’s website stating this impact initiative[1][4]. The described investment thesis focus on purposeful investing for the ""99%"" and impact aligned with returns is consistent with the firm's publicly stated values and mission[4]. - -Senior leadership names and titles such as Adeyemi Ajao (Managing Partner), TJ Nahigian (Co-Founder & Managing Partner), Laura Weidman Powers (Steering Committee Member), and Rexhi Dollaku (General Partner) align with public professional profiles on LinkedIn and Base10's official team pages[3][4]. - -The noted omission concerning portfolio company names on the official site is accurate; the firm mostly reveals portfolio highlights through press and social media but does invest in known companies like Figma, Notion, Handshake, and various Latin American fintechs[1][2]. The portfolio highlight mentioned, ""Shovels,"" announced in June 2025 on LinkedIn, also fits their recent activity though direct independent confirmation outside that post is limited. - -Missing or incomplete aspects reducing completeness slightly include an updated total assets under management figure (public sources report $1.3B AUM including multiple funds, not only the one $460M fund) and more exhaustive public disclosure about all portfolio companies or geographic focus nuances[1][3]. - -Sources used: -- PR Newswire $460M fund closure and impact initiatives (https://www.prnewswire.com/news-releases/with-1-3b-under-management-3-years-after-debut-base10-partners-becomes-first-black-led-vc-to-cross-1b-assets-under-management-301517439.html) -- TechCrunch on fund size, focus, and leadership (https://techcrunch.com/2022/04/05/base10-partners-closes-fund-three-with-460m-to-invest-globally-the-cat-is-out-of-the-bag/) -- Base10 VC official website for mission and donation info (https://base10.vc/) -- Crunchbase and LinkedIn for leadership verification (https://www.linkedin.com/company/base10-partners, https://base10.vc/team/rexhi-dollaku/)" -"BayStartUP ","http://www.baystartup.de ","{""funds"":[{""estimatedInvestmentSize"":""EUR 50,000"",""fundName"":""BayStartUP Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Germany"",""Bavaria""],""investmentStageFocus"":[""Pre-Seed"",""Seed"",""Series A""],""sectorFocus"":[""Technology"",""Innovative Startups""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baystartup.de/en/startups/access-to-the-investors-network""}],""headquarters"":""BayStartUp GmbH Am Tullnaupark 8 D-90402 Nuremberg; BayStartUP Munich Office Agnes-Pockels-Bogen D-80992 Munich"",""investmentThesisFocus"":[""Focus on innovative, technology-oriented companies with high growth prospects and scalable business models."",""Requirements include innovation with growth potential, a competent management team, and at least a first draft for a business plan or pitch deck."",""Provides financial coaching covering financing strategy, scalability and growth assessment, business plan optimization, pitch preparation, fundraising timeline, and valuation presentation."",""Emphasizes providing selected, high-quality deal flow aligned with investor interests through a strong database of startups."",""Focus on pre-seed to Series A stages with geographic emphasis on Bavaria and Germany.""],""investorDescription"":""BayStartUP is the Bavarian startup network serving startups, investors, and corporates; it acts as the central institution for startup financing in Bavaria, supporting innovative founders in company building and raising venture capital. It coordinates one of Europe's largest investor networks and provides targeted support to technology-based startups for market entry and financing rounds. BayStartUP operates as a neutral, non-commercial contact point for startups and investors, offering a qualified deal flow, exclusive investor events, and networking opportunities with established companies. Its mission involves fostering innovative startups, shaping the ecosystem, and promoting a sustainable startup spirit."",""linkedDocuments"":[""https://www.baystartup.de/fileadmin/Dokumente/Magazin/startUPdate_Magazin_03_2019.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Fazua"",""Flix"",""Hydrogenious"",""Magazino"",""NavVis"",""Quantum Systems"",""Temedica"",""va-Q-tec"",""VIA optronics"",""air up""],""researcherNotes"":""No explicit formal funds or distinct investment strategies named on website; used company name with 'Investment Strategy' as per instructions. No overall AUM stated or inferable on the site."",""seniorLeadership"":[{""name"":""Dr. Carsten Rudolph"",""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bayern-innovativ.de/en/showcontact/detail/carsten-rudolph/"",""title"":""Managing Director""},{""name"":""Barbara Dombay"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baystartup.de/en/about-baystartup/team"",""title"":""CEO""},{""name"":""Christoph Rommel"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baystartup.de/en/about-baystartup/team"",""title"":""Head of Industry Cooperations, Member of the Management Board""},{""name"":""Dr. Carolin Plagmann"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baystartup.de/en/about-baystartup/team"",""title"":""Head of Investor Network""},{""name"":""Harald Wagner"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baystartup.de/en/about-baystartup/team"",""title"":""Head of financing coaching""}],""sources"":{""headquarters"":""https://baystartup.de/en/imprint"",""investmentThesisFocus"":""https://www.baystartup.de/en/investors/our-investor-network"",""investorDescription"":""https://www.baystartup.de/en/about-baystartup"",""portfolioHighlights"":""http://baystartup.de/startupdate/hall-of-fame""},""websiteURL"":""http://www.baystartup.de""}","Correctness: 95% Completeness: 85% - -The information provided about BayStartUP is largely factually accurate according to official and credible sources. BayStartUP is indeed described as the Bavarian startup network focused on supporting innovative, technology-oriented startups in Bavaria and Germany, particularly at pre-seed to Series A stages[3][5]. Their investor network includes business angels, family offices, corporate venture capital, and public investors, with a focus on early-stage, high-growth startups[3]. The emphasis on coaching startups before investor introductions and maintaining high-quality deal flow aligns with the content on their website[3]. - -The headquarters details for BayStartUP in Nuremberg and Munich are verified on their imprint page[https://baystartup.de/en/imprint]. The senior leadership names and roles (e.g., CEO Barbara Dombay, Managing Director Dr. Carsten Rudolph) correspond with current listings on BayStartUP’s official team pages[3][https://www.bayern-innovativ.de/en/showcontact/detail/carsten-rudolph/]. - -Portfolio highlights such as Fazua, Flix, Magazino, and others are supported by their official “Hall of Fame” source[http://baystartup.de/startupdate/hall-of-fame]. The investment thesis focus—emphasizing innovative tech startups with scalable business models, competent teams, and growth potential—is consistent with how BayStartUP describes their approach to investment readiness and financing coaching[3][5]. The stated coaching topics (financing strategy, scalability, pitch preparation) are also confirmed[3][5]. - -However, the completeness score is lowered because some key data points are missing or unverifiable from public sources: - -- **Fund Size and Overall Assets Under Management (AUM) are not publicly disclosed or clearly defined.** BayStartUP operates more like a network and platform rather than a formal investment fund with clearly defined fund sizes or AUM reported, as noted by the researcher’s note and absence of this data on the website[3]. The provided “estimatedInvestmentSize” of EUR 50,000 appears plausible as a typical early check but is not confirmed as a formal fund characteristic. - -- There is no formal ""BayStartUP Investment Strategy"" fund name visible publicly; this might be a constructed label for clarity. The organization facilitates investment but does not seem to manage a traditional VC fund with disclosed capital under management[3]. - -- The geographic focus and investment stage focus are well-stated and consistent, but there is slightly less detail on exact sector definitions beyond broad “technology” and “innovative startups.” - -Overall, the data is a very accurate and fair representation of BayStartUP’s role and investment focus as a startup financing facilitator and investor network in Bavaria, but it lacks formal fund financial metrics or detailed granularity on fund structure. - -Sources: -- BayStartUP Investors Network and About pages: https://www.baystartup.de/en/startups/access-to-the-investors-network, https://www.baystartup.de/en/about-baystartup -- BayStartUP Hall of Fame (portfolio): http://baystartup.de/startupdate/hall-of-fame -- Imprint (headquarters): https://baystartup.de/en/imprint -- Leadership info: https://www.baystartup.de/en/about-baystartup/team, https://www.bayern-innovativ.de/en/showcontact/detail/carsten-rudolph/ -- Financing coaching and investment stage focus: https://www.baystartup.de/en/startupdate/seed-phase-market-entry-growth-financing-your-startup-the-right-way" -"Banco Portugues de Fomento ","https://www.bpfomento.pt/ ","""""", -"Barclays Corporate Banking ","https://www.barclays.co.uk/ ","""""", -"Bas1s Ventures ","http://bas1s.ventures ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bas1s Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Early Stage""],""sectorFocus"":[""Blockchain Infrastructure"",""Web3 Gaming"",""Decentralized Finance"",""Web3 Applications"",""Metaverse""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://bas1s.ventures/about-b1v""}],""headquarters"":""Tokyo, Singapore, Silicon Valley, London"",""investmentThesisFocus"":[""Focus on early-stage digital technology including blockchain infrastructure, web3 gaming, decentralized finance, and applications targeting mass adoption in web3."",""Leverage strategic partnerships with crypto exchanges, funds, blockchain projects, and traditional corporations."",""Provide integrated consulting for local market entry, growth, community building, and media cooperation."",""Offer quantitative advisory for asset management including high-frequency and quantitative trading strategies.""],""investorDescription"":""Bas1s Ventures (B1V) is founded by an ex-Binance early member and supported by a tier 1 gaming unicorn company, Asian family offices, and crypto exchanges. The firm focuses on early-stage investments in digital technology sectors such as blockchain infrastructure, web3 gaming, decentralized finance, and applications aiming for mass adoption in web3. Their added value includes forging strategic partnerships with top-tier crypto exchanges, funds, blockchain projects, and traditional corporations, leveraging resources from LPs, GPs, and their portfolio ecosystem. They also provide integrated consulting for local market entry and growth, community building, media cooperation, and quantitative advisory for asset management through high-frequency and quantitative trading strategies."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""geographicFocus"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Delysium"",""Mirror World"",""Sonic"",""Taker Protocol"",""BTC Liquidity Infrastructure"",""CyberConnect"",""Age of Dino"",""Delphinus-lab"",""Xterio"",""Ambrus Studio""],""researcherNotes"":""Overall Assets Under Management (AUM) and specific fund sizes or investment ticket sizes are not mentioned on the Bas1s Ventures website or related pages. Geographic focus beyond the headquarters locations is not explicitly stated."",""seniorLeadership"":[{""name"":""0xWonder"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://bas1s.ventures/team"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""http://bas1s.ventures/"",""investmentThesisFocus"":""http://bas1s.ventures/about-b1v"",""investorDescription"":""http://bas1s.ventures/about-b1v"",""portfolioHighlights"":""http://bas1s.ventures/portfolio""},""websiteURL"":""http://bas1s.ventures""}","Correctness: 0% Completeness: 0% - -The information provided about ""Bas1s Ventures"" does not correspond to any verified or credible sources and appears to be fabricated or confused with other entities. The search results retrieved relate exclusively to **""Basis Set Ventures,""** an early-stage venture capital firm focused on artificial intelligence and technology startups, primarily based in Menlo Park, California, which is different from ""Bas1s Ventures"" described in the query. - -No credible sources mention a Bas1s Ventures with the described geographic headquarters (Tokyo, Singapore, Silicon Valley, London), nor its described investment thesis focusing on blockchain infrastructure, web3 gaming, and decentralized finance. The portfolio companies, senior leadership details, and strategic partnerships described in the query cannot be validated or found in any trustworthy source. Bas1s Ventures appears to be unverified or possibly fabricated since even well-known startup and investment databases (like MAGNiTT) do not corroborate such firm details meaningfully. - -Search results [1][2][4][5] confirm Basis Set Ventures as a distinct firm unrelated to the provided description, focused on AI startups rather than blockchain/web3, and with no mention of the described leadership or investment strategy. - -Due to the absence of any credible references to Bas1s Ventures matching the description and the clear mismatch with similarly named entities, the correctness and completeness of the information are effectively zero. - -Sources: -- https://www.newcomer.co/p/exclusive-basis-set-raises-185-million -- https://www.privateequityinternational.com/institution-profiles/basis-set-ventures.html -- https://www.basisset.com -- https://magnitt.com/investors/bas1s-ventures-56568" -"Banco Sabadell ","http://www.bancsabadell.com ","""""", -"Base Partners ","http://www.basepar.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Base Growth II"",""fundSize"":""USD 135 million"",""fundSizeSourceUrl"":""https://basepar.com/firm/announcing-base-growth-ii"",""geographicFocus"":[""Global"",""Latin America"",""Brazil""],""investmentStageFocus"":[""Growth""],""sectorFocus"":[""Technology companies""],""sourceProvider"":""Source JSON"",""sourceUrl"":""https://basepar.com/firm/announcing-base-growth-ii""}],""headquarters"":""Av. Brigadeiro Faria Lima, 3355 – 10th floor, Itaim Bibi | São Paulo – SP | Brazil"",""investmentThesisFocus"":[""Invest globally in category-defining technology companies."",""Help companies expand and win in Latin America, with a focus on Brazil first."",""Build relationships based on mutual trust and relevance beyond capital."",""Engage actively with portfolio companies, including hosting events like Base Summit.""],""investorDescription"":""We invest globally in private technology companies and help them win in Latin America, Brazil first. We strive to be the most relevant global tech investor from Latin America. Base Partners was founded with the mission to invest globally in leading technology companies and help them expand into Latin America, focusing first on Brazil. Their investment thesis emphasizes investing in category-defining companies worldwide and supporting them to capture the Brazilian and Latin American markets through depth and consistency. Every investment is based on mutual trust and the conviction of being relevant beyond just providing capital. Their strategy includes active involvement, as exemplified by hosting the Base Summit 2019 in São Paulo."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Amber Group"",""Atom Finance"",""Bitso"",""Bytedance"",""WATI"",""Wildlife Studios"",""Zoom""],""researcherNotes"":""AUM and estimated investment size per company are not mentioned on the website. Fund size was found for Base Growth II fund in a press release page. The firm emphasizes global tech investment focus with Latin America and Brazil emphasis."",""seniorLeadership"":[{""name"":""Arthur Mizne"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://basepar.com/people"",""title"":""Partner""},{""name"":""Fernando Spnola"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://basepar.com/people"",""title"":""Partner""},{""name"":""Lucas Vilanova"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://basepar.com/people"",""title"":""Partner""},{""name"":""Pablo Perdomo"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://basepar.com/people"",""title"":""Partner""}],""sources"":{""headquarters"":""https://basepar.com/firm"",""investmentThesisFocus"":""https://basepar.com/mission"",""investorDescription"":""https://basepar.com/mission"",""portfolioHighlights"":""https://basepar.com/portfolio""},""websiteURL"":""https://basepar.com""}","Correctness: 100% Completeness: 90% - -The provided information about Base Partners is factually accurate and matches the details available on their official website and press releases. The fund ""Base Growth II"" is indeed sized at USD 135 million as disclosed in the official announcement (https://basepar.com/firm/announcing-base-growth-ii). The geographic focus on Global, Latin America, and Brazil, the emphasis on growth-stage technology companies, and the investment thesis—investing globally in category-defining tech companies while supporting their expansion first in Brazil and Latin America—are consistent with Base Partners’ publicly stated mission and strategy (https://basepar.com/mission). The senior leadership names and titles correspond with those listed on their people page (https://basepar.com/people). The portfolio companies cited (Amber Group, Atom Finance, Bitso, Bytedance, WATI, Wildlife Studios, Zoom) align with Base Partners’ disclosed investments (https://basepar.com/portfolio). Headquarters address also matches the firm’s official contact information (https://basepar.com/firm). - -The main element affecting completeness is the absence of information about overall assets under management (AUM) and estimated investment size per company, which are not publicly disclosed on Base Partners’ site or related materials. While the fund size of USD 135 million for Base Growth II is known, other funds or aggregate AUM data are missing, which limits a fully comprehensive profile. This absence is explicitly noted in the researcher’s comments and reflects the current public data limitations. - -Therefore, the information is fully correct but not fully complete regarding total AUM and investment sizing details. - -Sources: -- Fund size and firm details: https://basepar.com/firm/announcing-base-growth-ii -- Investment thesis and mission: https://basepar.com/mission -- Leadership: https://basepar.com/people -- Portfolio: https://basepar.com/portfolio -- Firm headquarters: https://basepar.com/firm" -"Baron Capital ","http://www.BaronFunds.com ","""""", -"Barclays Sustainable and Impact Banking ","https://home.barclays/society/our-position-on-climate-change/supporting-green-financing/ ",, -"BayBG Venture Capital ","https://www.baybg-vc.de/ ","{""funds"":[{""estimatedInvestmentSize"":""EUR 250,000 to 10,000,000"",""fundName"":""BayBG Venture Capital Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Europe"",""Bavaria""],""investmentStageFocus"":[""Pre-Series A"",""Series A"",""Series B""],""sectorFocus"":[""Technology"",""Innovative Startups""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baybg-vc.de/""}],""headquarters"":""BayBG Bayerische Beteiligungsgesellschaft mbH, Königinstraße 23, 80539 München, Germany"",""investmentThesisFocus"":[""Invests predominantly in straight equity and also offers venture debt to mature startups close to break-even to avoid dilution."",""Focus on innovative post-revenue startups mostly in Bavaria."",""Stages from pre-series A to series B."",""Offers lead or co-investor roles."",""Flexible and long-term institutional venture capital with an evergreen approach without typical fund structure limitations.""],""investorDescription"":""BayBG Venture Capital is a private investment company with over 25 years in venture capital, offering institutional venture capital through an evergreen approach without usual fund structure limitations. It invests predominantly in straight equity and also offers venture debt to mature startups close to break-even to avoid dilution. The firm focuses on innovative post-revenue startups mostly in Bavaria, with investments ranging from pre-series A to series B stages, and provides flexible, long-term support."",""linkedDocuments"":[""https://www.baybg.de/wp-content/uploads/2024/12/20241220-stellenausschreibung-baybg-investment-manager-vc-mwd.pdf""],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":{""asOfDate"":""2021"",""aumAmount"":""EUR 320,000,000"",""sourceUrl"":""https://www.baybg.de/wp-content/uploads/2024/02/BayBG_GB_2020_21.pdf""},""portfolioHighlights"":[""4.Screen"",""AlfaDocs GmbH"",""AMW GmbH"",""Building Radar GmbH"",""crealytics GmbH"",""Dcubed"",""Delfactis AG"",""ecog.io"",""EverReal GmbH"",""Gastfreund GmbH""],""researcherNotes"":""AUM is explicitly mentioned in the 2020/21 annual report PDF as nearly EUR 320 million as of 2021. Fund Size is not stated on the website or documents. Investment size range was found across multiple sources on the official site and public profiles."",""seniorLeadership"":[{""name"":""Dr. Marcus Gulder"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.baybg-vc.de/"",""title"":""Head of Venture Capital""}],""sources"":{""headquarters"":""https://www.baybg-vc.de/"",""investmentThesisFocus"":""https://www.baybg-vc.de/"",""investorDescription"":""https://www.baybg-vc.de/"",""portfolioHighlights"":""https://baybg-vc.de/#portfolio""},""websiteURL"":""https://www.baybg-vc.de/""}","Correctness: 98% Completeness: 85% - -The provided information about BayBG Venture Capital is highly factually accurate. The firm is indeed headquartered at Königinstraße 23, 80539 Munich, Germany, and focuses on investing predominantly in innovative post-revenue startups in Bavaria across Pre-Series A to Series B stages, offering mainly straight equity and venture debt to avoid dilution. Their investment sizes ranging from EUR 250,000 to 10,000,000, their evergreen approach without typical fund structure constraints, and their role as lead or co-investor also align closely with data from the official BayBG Venture Capital website and public profiles[4][1]. - -The total assets under management (~EUR 320 million as of 2021) are supported by the referenced 2020/21 annual report cited in the user data, although this specific document was not directly retrieved here for independent verification, it aligns with BayBG’s public disclosures[4]. The portfolio highlights listed correspond to startups in their publicly shown portfolio[4]. - -However, the **fund size itself is missing**, as even BayBG’s own site and official documents do not provide a single fund size figure due to their evergreen fund structure, which deviates from traditional VC fund models. The ranking of investment stages (including Pre-Series A) is consistent with official messaging but some third-party sources also mention Seed or Growth Stage indicating slight variance in stage designation terminology[1]. The investor description correctly reflects the company’s private investment nature and its flexible, long-term capital approach[4]. - -In sum, correctness is near complete because the core stated facts match official and authoritative sources very closely. Completeness is somewhat reduced because the key field ""fund size"" is inherently unavailable due to their fund structure, and minor nuances on stage focus and geographic emphasis (mostly Bavaria but wider Europe in some mentions) could be elaborated further for full completeness. - -URLs used: -- https://www.baybg-vc.de/ -- https://raisebetter.capital/investor-profile/11106 -- https://www.privateequityinternational.com/institution-profiles/baybg.html" -"Banco BPM ","https://www.bancobpm.it/ ","""""", -"Basinghall Partners ","https://www.basinghallpartners.com ","{""funds"":[{""estimatedInvestmentSize"":""USD 550,000 to 5,500,000"",""fundName"":""Basinghall Tech Fund"",""fundSize"":""USD 109,000,000"",""fundSizeSourceUrl"":""https://www.redherring.com/top-story/london-vc-basinghall-partners-announces-109m-european-fund/"",""geographicFocus"":[""Europe""],""investmentStageFocus"":[""Early-stage""],""sectorFocus"":[""Traditional industries"",""IoT"",""AI"",""Predictive analytics"",""Blockchain""],""sourceProvider"":""Red Herring"",""sourceUrl"":""https://www.redherring.com/top-story/london-vc-basinghall-partners-announces-109m-european-fund/""}],""headquarters"":""Second floor Berkeley Square House, Berkeley Street, London W1J 6BD United Kingdom; Marienplatz 17, 803331 Munich, Germany; Rua Centro Comunitário Paroquial 1A, Quinta das Comendadeiras, 1685-244 Lisboa, Portugal; 1c rue Gabriel Lippmann, L-5365, Munsbach, Luxembourg"",""investmentThesisFocus"":[""Basinghall invests in tomorrow’s industrial entrepreneurs through a combined model of an Innovation Circle connecting startups with European industry networks and a Tech Fund."",""They actively help portfolio companies enter markets and scale, leveraging expertise in commercialising innovative ideas and structuring investments from early stage to exit.""],""investorDescription"":""Basinghall Partners is a European venture fund that backs early-stage, pioneering technology companies across Europe, operating from London, Munich, Lisbon, and Luxembourg. They provide capital, expertise, and guidance to entrepreneurs, focusing on smart capital connecting tech pioneers with established industry partners to enable technologies solving global challenges."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Arthur Bus"",""Conntac"",""Delicious Data"",""EMSURetail Software"",""Empion"",""HUBX"",""Harper"",""Invevo"",""Retorio"",""Tended"",""Toposens"",""Vawlt"",""Visplore""],""researcherNotes"":""Overall assets under management (AUM) are not mentioned on the website or in available articles. The fund size is known from a reputable source article. Investment size and sector geographic focuses were extracted from the same source."",""seniorLeadership"":[{""name"":""Andrew Irvine"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/andrew-irvine-5141a42"",""title"":""Founding Partner""},{""name"":""Ginette O."",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/ginette-o-1b347b9"",""title"":""Founding Partner""},{""name"":""Philipp Elkuch"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/philipp-elkuch-243b23"",""title"":""Founding Partner""},{""name"":""Christophe Monget"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/christophe-monget-473588"",""title"":""Founding Partner""},{""name"":""Emilija Švėgždaitė"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/emilija-%C5%A1v%C4%97g%C5%BEdait%C4%97-04651819a"",""title"":""Founding Partner""},{""name"":""Isabel Fernandes"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/isabel-fernandes-9bb6b817a"",""title"":""Founding Partner""},{""name"":""Josh Gilbey"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/josh-gilbey-0a0b24201"",""title"":""Founding Partner""},{""name"":""Konstantin V. Braunschweig"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://linkedin.com/in/konstantin-v-braunschweig"",""title"":""Founding Partner""}],""sources"":{""headquarters"":""https://www.basinghallpartners.com/contact"",""investmentThesisFocus"":""https://www.basinghallpartners.com/about"",""investorDescription"":""https://www.basinghallpartners.com/about"",""portfolioHighlights"":""https://www.basinghallpartners.com/portfolio""},""websiteURL"":""https://www.basinghallpartners.com""}","Correctness: 96% Completeness: 88% - -The provided information about Basinghall Partners is largely factually accurate based on recent external sources and the official website. The fund size is stated as USD 109 million, which aligns closely with the €100 million (approximately £84 million) first close reported in reputable sources such as City AM and Fintech Alliance, who specify €100 million (~£84 million) for the Basinghall Tech Fund I[1][2]. The estimated investment size range between USD 550,000 to 5,500,000 corresponds well with the reported €500,000 to €5 million per check cited in these articles[1][2]. - -The geographic focus on Europe and the emphasis on early-stage investments targeting traditional industries with sectors like IoT, AI, predictive analytics, and blockchain are consistent with Basinghall Partners’ public narrative and portfolio composition shown on their website[3]. The stated headquarters locations in London, Munich, Lisbon, and Luxembourg match the contact details from their official site[3]. The described investment thesis focusing on connecting startups with European industry networks (""Innovation Circle"") and providing capital through their Tech Fund also matches the firm’s published information[3]. - -Senior leadership names and roles correspond accurately with names and titles visible on their LinkedIn profiles, corroborating the personnel details given. - -The lower completeness score reflects the absence of publicly available data on Basinghall’s overall assets under management (AUM), which remains undisclosed despite multiple sources and the official website having the fund size but not total AUM. This is an important metric missing for full completeness. Additionally, while notable portfolio companies are listed, there may be other emerging investments not disclosed yet publicly, though key portfolio highlights match those on the official site[3]. Other minor missing fields, such as detailed fund vintage date or full fundraising history, slightly reduce completeness as well. - -Minor discrepancy: The fund size is given as USD 109 million, which converts roughly from €100 million but the source primarily mentions €100 million / £84 million, so reporting it as USD may introduce slight fluctuations due to exchange rates. This is a minor point and does not undermine factual accuracy significantly. - -Sources: -- City AM article on Basinghall €100m fund first close: https://www.cityam.com/londons-basinghall-partners-to-unveil-e100m-europe-tech-fund/ -- Fintech Alliance coverage of Basinghall £84m investment fund: https://fintech-alliance.com/news-insights/article/londons-basinghall-partners-will-invest-84mn-in-tech-startups -- Basinghall official website, About and Portfolio pages: https://www.basinghallpartners.com/about , https://www.basinghallpartners.com/portfolio -- LinkedIn profiles of founders verified via URLs provided in the data." -"Bank of Ireland ","http://www.bankofireland.com/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Bank of Ireland Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Not Available""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""http://www.bankofireland.com/""}],""headquarters"":""2 College Green, Dublin, D02 VR66, Ireland"",""investmentThesisFocus"":[""We can help you plan your financial future, whether you're new to investing or a more experienced investor, developing an investment strategy to suit your goals."",""We offer an extensive range of investment choices from capital secure products to a range of funds with varying levels of risk."",""We help create a diverse and varied investment portfolio."",""Investment can start from e282ac100 per month."",""Financial meetings include reviewing clients' financial positions, income, outgoings, assets, liabilities, and long-term goals to create personalized plans.""],""investorDescription"":""Bank of Ireland Group is one of the largest financial services groups in Ireland offering a broad range of banking and financial services. The Group is organized into four trading segments and a support division: Retail Ireland (day-to-day banking and financial wellbeing tailored to customers), Wealth and Insurance (including NIAC life assurance and Davy wealth management and capital markets services), Retail UK (UK residential mortgage, branch network, business banking in Northern Ireland, asset finance), and Corporate and Commercial (lending, banking, treasury risk management for corporate/business customers). The Group Centre handles central support, governance, and IT. Wealth and Insurance includes investment markets and life assurance, indicating investment strategy involvement."",""linkedDocuments"":[""https://investorrelations.bankofireland.com/app/uploads/Final-Supplement-3.pdf"",""https://investorrelations.bankofireland.com/app/uploads/Bank-of-Ireland-2024-ESG-Investor-Presentation-Final.pdf"",""https://personalbanking.bankofireland.com/app/uploads/BOIIM-Principal-Adverse-Impact-Statement-2025-Final.pdf"",""https://personalbanking.bankofireland.com/app/uploads/Responsible-Investment-and-Engagement-Policy-2025-Final.pdf"",""https://investorrelations.bankofireland.com/app/uploads/Annual-Report-HoldCo-2024-Web.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""ebutec Group"",""Synch Payments"",""Ornua"",""GoContractor"",""Winder Power"",""Davy Global Fund Management"",""Davy"",""KBC Bank Ireland"",""Surecomp"",""Smart & Complete Solutions""],""researcherNotes"":""AUM is not mentioned on the website or in the available PDF documents. No formal fund names or details on sector, stage, geographic focus, or investment size were found. The default company investment strategy was used as the fund name."",""seniorLeadership"":[{""name"":""Akshaya Bhargava"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""CEO""},{""name"":""Giles Andrews"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""CFO""},{""name"":""Ian Buchanan"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Head of Corporate Banking""},{""name"":""Emer Finnan"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Head of Retail Banking""},{""name"":""Richard Goulding"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Head of Wealth and Insurance""},{""name"":""Michele Greene"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Head of Risk""},{""name"":""Niamh Marshall"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Head of Strategy and Financial Planning""},{""name"":""Myles O’Grady"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Head of Commercial Banking""},{""name"":""Steve Pateman"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""Group CEO""},{""name"":""Mark Spain"",""sourceUrl"":""https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors"",""title"":""CEO UK""}],""sources"":{""headquarters"":""https://bankofireland.com/about-bank-of-ireland/contact-us/"",""investmentThesisFocus"":""https://personalbanking.bankofireland.com/save-and-invest/investments/"",""investorDescription"":""https://investorrelations.bankofireland.com/about-us/bank-of-ireland-overview/"",""portfolioHighlights"":""https://www.cbinsights.com/investor/bank-of-ireland""},""websiteURL"":""http://www.bankofireland.com/""}","Correctness: 95% Completeness: 80% - -The information provided about the **Bank of Ireland Investment Strategy and the Group overview is largely accurate** and consistent with official sources. The Group indeed operates across several segments including Retail Ireland, Wealth and Insurance (which covers wealth management and investment services like Davy), Retail UK, and Corporate and Commercial, with the Group Centre supporting governance and IT functions[https://investorrelations.bankofireland.com/about-us/bank-of-ireland-overview/][https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors]. The investment thesis focus on helping clients plan their financial futures with a range of investment choices and personalized financial planning aligns well with the public Bank of Ireland personal banking information[https://personalbanking.bankofireland.com/save-and-invest/investments/]. The listed senior leadership names and titles also match those on the Bank of Ireland official website[https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors]. - -However, **the absence of specific fund size and overall assets under management (AUM) data is notable**, reducing completeness. Available public financial disclosures and linked documents do not provide explicit AUM figures or detailed fund profiles under the name ""Bank of Ireland Investment Strategy"" (it appears as a general strategy rather than a formal distinct fund). This reflects the fact that Bank of Ireland is primarily a banking and financial services group, not primarily a fund manager with standalone funds, unlike asset management firms. The references to investments and portfolio highlights, such as Davy Global Fund Management and others, are accurate in context but do not clarify fund-specific data or size[https://personalbanking.bankofireland.com/][https://www.cbinsights.com/investor/bank-of-ireland]. - -In summary: - -- The broad description of the entity and its investment orientation is accurate and verifiable. -- Specific fund-level details such as exact fund size, AUM, sector/geographic focus are missing or not publicly disclosed, appropriately reflected by the low completeness in those areas. -- The investor description and investment thesis content is consistent with primary sources. -- The source links provided support the correctness claims, though some data gaps remain due to the nature of Bank of Ireland’s business model. - -Sources used: -- https://bankofireland.com/about-bank-of-ireland/contact-us/ -- https://personalbanking.bankofireland.com/save-and-invest/investments/ -- https://investorrelations.bankofireland.com/about-us/bank-of-ireland-overview/ -- https://bankofireland.com/about-bank-of-ireland/about-the-group/management-structure/directors -- https://www.cbinsights.com/investor/bank-of-ireland" -"Banca Sella Holding ","https://www.sellagroup.eu ","""""", -"Ballpark Ventures ","http://www.ballparkventures.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Ballpark Ventures Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Cheltenham, Gloucestershire, United Kingdom""],""investmentStageFocus"":[""early stage""],""sectorFocus"":[""mobile"",""retail"",""media""],""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.ballparkventures.com""}],""headquarters"":""Cheltenham, Gloucestershire, United Kingdom"",""investmentThesisFocus"":[""Focus on early-stage technology startups."",""Investment based on ability to add significant incremental value."",""Sector expertise includes mobile, retail, and media."",""Prefer European startups where deep sector knowledge and influential personal networks can be leveraged."",""Avoid sectors where they lack expertise."",""Speed to market and decision making are crucial.""],""investorDescription"":""Ballpark Ventures is a small, boutique fund investing in early stage technology startups. The partners are successful entrepreneurs investing their own money. Their investment criteria focus on whether they can add significant incremental value to ventures, with experience in sectors like mobile, retail, and media. They prioritize supporting entrepreneurs and have helped diverse startups establish market presence."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""estimatedInvestmentSize"",""fundSize""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[""Adludio Sensory Mobile Advertising"",""Adzact"",""Appear Here"",""Blink"",""Blis"",""Constant Commerce"",""Depop"",""Flitto"",""GeoSpock"",""Lingvist""],""researcherNotes"":""No specific data on assets under management, estimated investment size, or fund size was found on the website or LinkedIn. AUM is not disclosed, which is standard practice."",""seniorLeadership"":[{""name"":""Eric Newnham"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.ballparkventures.com/team/"",""title"":""Founding Member""},{""name"":""Harry Dewhirst"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.ballparkventures.com/team/"",""title"":""Partner""},{""name"":""Oliver Bishop"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.ballparkventures.com/team/"",""title"":""Managing Partner""},{""name"":""Jeffrey Cooper"",""sourceProvider"":""LinkedIn"",""sourceUrl"":""http://www.ballparkventures.com/team/"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.crunchbase.com/organization/ballpark-ventures"",""investmentThesisFocus"":""http://www.ballparkventures.com/about-us/"",""investorDescription"":""http://www.ballparkventures.com/about-us/"",""portfolioHighlights"":""http://www.ballparkventures.com/portfolio/""},""websiteURL"":""http://www.ballparkventures.com""}","Correctness: 100% Completeness: 90% - -The information provided about Ballpark Ventures is factually accurate based on multiple reliable sources. Ballpark Ventures is indeed a small, boutique venture capital fund headquartered in Cheltenham, Gloucestershire, UK, focusing on early-stage technology startups with sector expertise in mobile, retail, and media[1][2][5]. Their investment thesis emphasizing adding significant incremental value, prioritizing European startups where they have deep sector knowledge and personal networks, and focus on speed to market aligns exactly with their own description[2][5]. The description of the partners as successful entrepreneurs investing their own money is also accurate[2][3][4]. - -Regarding portfolio highlights, the named companies such as Adludio, Appear Here, Blis, Depop, GeoSpock, and Lingvist do appear on their public portfolio page, confirming the completeness of this part[1]. - -However, some notable data points are missing or not publicly disclosed, which justifies a slightly reduced completeness score: - -- No publicly available data on overall Assets Under Management (AUM), estimated investment size, or total fund size, consistent with the researcher notes and standard practice for a fund of this profile[1][2]. -- Specific details on deal sizes and exit performance are available through third-party analysis (e.g., average startup values, round participation), which are not included here but are found in external VC databases[1]. -- Senior leadership and titles are accurate but could be supplemented with more detailed bios or backgrounds for completeness[2]. - -All URLs referenced: - -- https://techround.co.uk/vcs/39-ballpark-ventures/ -- https://www.ballparkventures.com/about-us/ -- https://www.ballparkventures.com/ -- https://raizer.app/investor/ballpark-ventures -- https://www.zoominfo.com/c/ballpark-ventures-llp/358664347 - -Overall, the provided data is highly accurate and mostly complete except for the expected absence of financial scale metrics." -"Banana Capital ","https://bananacapital.fund/ ","{""funds"":[{""estimatedInvestmentSize"":""$25k to $300k"",""fundName"":""Banana Capital PTE. LTD."",""fundSize"":""USD 100,000,000"",""fundSizeSourceUrl"":""https://bananacapital.fund/news/updated_strategy_eng/"",""geographicFocus"":[""USA"",""Canada"",""UK"",""France"",""Germany"",""Mexico"",""Nigeria"",""Kenya"",""Egypt"",""India"",""Eswatini"",""Indonesia"",""Thailand"",""Vietnam"",""South Korea"",""Japan"",""Brazil"",""Argentina"",""Colombia"",""Peru""],""investmentStageFocus"":[""Prototype"",""Idea or Patent"",""Early Revenue"",""Scaling"",""Growth"",""Pre-IPO""],""sectorFocus"":[""Decentralized Finance (DeFi)"",""DEX liquidity provision"",""Web3"",""Cryptocurrency""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://bananacapital.fund/news/updated_strategy_eng/""}],""headquarters"":""Ann Arbor, MI, USA"",""investmentThesisFocus"":[""Focus on AI-driven DeFi strategy providing liquidity on decentralized exchanges (DEX) via liquidity pools."",""Use innovative hedging techniques to maximize capital efficiency and minimize impermanent loss."",""Target annual returns of 30-60% in USD stablecoins."",""Emphasize long-term scalable strategies with limited risks and high returns.""],""investorDescription"":""Our DeFi strategy focuses on providing liquidity efficiently on decentralized exchanges (DEX) through innovative hedging techniques to minimize impermanent loss. We target annual returns of 30-60% in USD stablecoins. We are committed to long-term scalable strategies with limited risks and high returns, emphasizing AI-driven DeFi investments."",""linkedDocuments"":[],""missingImportantFields"":[""overallAssetsUnderManagement"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""The website is currently being updated. Most detailed investment strategy and fund size information is found on a news article. No explicit headquarters address, senior leadership names, or portfolio highlights were found on the site. No documents in PDF, DOCX or PPTX formats are linked."",""seniorLeadership"":[{""name"":""Turner Novak"",""sourceProvider"":""Perplexity"",""title"":""GP/Managing Director""},{""name"":""Olivia Deng"",""sourceProvider"":""Perplexity"",""title"":""Investor""}],""sources"":{""headquarters"":""https://www.openvc.app/fund/Banana%20Capital"",""investmentThesisFocus"":""https://bananacapital.fund/news/updated_strategy_eng/"",""investorDescription"":""https://bananacapital.fund/news/updated_strategy_eng/"",""portfolioHighlights"":null,""seniorLeadership"":""https://www.openvc.app/fund/Banana%20Capital, https://www.thenetwork.com/profile/olivia-deng-b38408aa""},""websiteURL"":""https://bananacapital.fund/""}","Correctness: 95% Completeness: 80% - -The core factual claims about Banana Capital PTE. LTD. are largely accurate: - -- The fund size is confirmed at around $100 million as of late 2024, matching the planned increase reported by the company itself[1][2]. - -- The fund focuses on AI-driven decentralized finance (DeFi) strategies, notably providing liquidity on decentralized exchanges (DEXs) using hedging techniques to minimize impermanent loss, targeting annual returns of roughly 30-60% in USD stablecoins[1][2]. - -- The founder and senior leadership named Turner Novak (GP/Managing Director) and Olivia Deng (Investor) are consistent with public information[3][5]. - -- The fund invests at various stages including prototype, early revenue, scaling, and pre-IPO, and across a large global geographic scope including USA, Canada, Europe, Africa, and Asia as stated by the fund’s site and news coverage[1][2]. - -However, the completeness score is lower because: - -- The publicly available data do not detail the overall assets under management beyond the $100 million fund size aim. The exact AUM or other funds under the Banana Capital umbrella remain unspecified. - -- Portfolio highlights and representative investments are not publicly disclosed, and no linked documents like PDFs or reports were found on the official website or sources[2][4]. - -- The official company registered address is in Singapore at International Plaza, not Ann Arbor, MI, USA—so the stated headquarters in the query is inaccurate based on company registration records[2]. - -- Fund 1 and Fund 2 historical details show fundraising around $10–20 million for earlier funds with different investment theses focused on consumer tech and early-stage startups, indicating Banana Capital may operate multiple strategies or funds—this nuance is not fully captured in the query information[3][5]. - -Sources: -- https://bananacapital.fund/news/updated_strategy_eng/ -- https://www.einpresswire.com/article/750316941/banana-capital-plans-to-increase-funds-to-100-million-for-its-updated-ai-driven-defi-strategy -- https://recordowl.com/company/banana-capital-pte-ltd-1 -- https://www.thespl.it/p/banana-fund-2 -- https://techcrunch.com/2021/04/27/banana-capitals-fund-1-turner-novak/ - -In summary, the investment thesis, fund size, leadership, and sector focus are factually supported, but the headquarters info is incorrect and portfolio/assets data are incomplete or undisclosed publicly." -"Baillie Gifford ","https://www.bailliegifford.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Baillie Gifford US Growth Trust"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""United States""],""investmentStageFocus"":[""long-term capital growth""],""sectorFocus"":[""listed and unlisted US companies""],""sourceUrl"":""https://bailliegifford.com/en/uk/individual-investors/funds/baillie-gifford-us-growth-trust/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Positive Change Fund"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""sustainability solutions""],""sourceUrl"":""https://bailliegifford.com/en/uk/individual-investors/funds/positive-change-fund/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Baillie Gifford Long Term Global Growth Fund"",""fundSize"":""$1,049.0m"",""fundSizeSourceUrl"":""https://www.bailliegifford.com/en/usa/institutional-investor/funds/baillie-gifford-long-term-global-growth-fund/"",""geographicFocus"":[""Global""],""investmentStageFocus"":[""long-term capital appreciation""],""sectorFocus"":[""exceptional growth companies""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://www.bailliegifford.com/en/usa/institutional-investor/funds/baillie-gifford-long-term-global-growth-fund/""},{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Baillie Gifford LinkedIn Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[],""investmentStageFocus"":[],""sectorFocus"":[],""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/baillie-gifford""}],""headquarters"":""Calton Square, 1 Greenside Row, Edinburgh, EH1 3AN, United Kingdom"",""investmentThesisFocus"":[""We accept uncertainty, look through the incessant short-term noise in financial markets and, above all, take a long-term, patient approach to investing clients' capital."",""Investment management should be a long-term business."",""We base our portfolios on research and insights built up over time."",""When we invest clients' capital, we intend to hold the assets for years longer than is usual in our industry."",""Our independent private partnership status means we aren’t preoccupied with short-term profits or the need to pay dividends, allowing us the freedom to invest in opportunities that might take years rather than quarters to fulfil their potential."",""Three words define us: curious, patient and brave."",""Our organisational structure gives us stability, helping us recruit and retain investment talent, and we aim to be among the world's leading growth investors."",""We invest in growth opportunities across the globe, focusing on innovative and competitive companies operating in ever-changing conditions.""],""investorDescription"":""Baillie Gifford is an investment manager headquartered in Edinburgh with a global reach, managing GBP 163bn in assets as of June 2025. It is owned by 59 partners with an average tenure of 20 years. The firm focuses on identifying companies with outstanding potential for long-term growth, typically investing for around 7 years. Their mission includes delivering strong returns for clients while supporting the success of the companies they back. They prioritize responsible investment, believing that companies contributing positively to society are more likely to thrive over time. Baillie Gifford values patience, a global perspective, and long-term vision in their investment philosophy, aiming to direct capital toward goods and services that improve lives. They also emphasize inclusion and sustainability goals, such as a 50% carbon reduction per full-time employee by end of 2025 (baseline 2019)."",""linkedDocuments"":[""https://bailliegifford.com/en/uk/individual-investors/literature-library/press-releases-and-media-hub-content/baillie-gifford-opposes-kkr-s-proposed-takeover-of-assura"",""https://bailliegifford.com/en/uk/individual-investors/literature-library/press-releases-and-media-hub-content/baillie-gifford-to-vote-in-favour-of-argenx-remuneration-at-agm"",""https://bailliegifford.com/en/uk/individual-investors/literature-library/press-releases-and-media-hub-content/baillie-gifford-trusts-triumph-in-shareholder-votes-against-saba-capital-proposals"",""https://bailliegifford.com/en/uk/individual-investors/literature-library/press-releases-and-media-hub-content/partnership-promotions-2025"",""https://bailliegifford.com/en/uk/individual-investors/literature-library/press-releases-and-media-hub-content/baillie-gifford-calls-on-investment-trust-shareholders-to-act-to-protect-their-investment""],""missingImportantFields"":[""portfolioHighlights"",""fundSize"",""estimatedInvestmentSize""],""overallAssetsUnderManagement"":{""asOfDate"":""June 2025"",""aumAmount"":""GBP 163000000000"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://bailliegifford.com/en/uk/individual-investors/about-us/""},""portfolioHighlights"":[],""researcherNotes"":""AUM is explicitly mentioned as GBP 163 billion as of June 2025 on the About Us page. Fund sizes and estimated investment sizes for specific funds are not explicitly stated on the website or in available documents; thus 'Not Available' is used, except where external sources provide fund size data. Portfolio highlights could not be found on the website."",""seniorLeadership"":[{""name"":""Tim Campbell"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""CEO""},{""name"":""Neil Donaldson"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Chairman of the Board""},{""name"":""Claire Finn"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Director""},{""name"":""Neil Rogan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Director""},{""name"":""Abigail Rotheroe"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Director""},{""name"":""Jamie Skinner"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Director""},{""name"":""Kevin Troup"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Director""},{""name"":""Sethu Vijayakumar"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""Director""},{""name"":""Stephen Pashley"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://www.theofficialboard.com/org-chart/baillie-gifford"",""title"":""CFO""}],""sources"":{""headquarters"":""https://www.bailliegifford.com/en/uk/individual-investors/contact-us/"",""investmentThesisFocus"":""https://bailliegifford.com/en/uk/individual-investors/about-us/what-makes-us-different/"",""investorDescription"":""https://bailliegifford.com/en/uk/individual-investors/about-us/"",""portfolioHighlights"":""Not Available""},""websiteURL"":""https://www.bailliegifford.com""}","Correctness: 98% Completeness: 85% - -The information provided about Baillie Gifford is largely factually accurate and well-supported by authoritative sources. The firm is indeed headquartered in Edinburgh at Calton Square, and as of June 2025, manages approximately GBP 163 billion in assets under management (AUM). Its investment philosophy emphasizing a long-term, patient approach focused on growth opportunities globally is confirmed by Baillie Gifford’s own statements. The description of ownership by 59 partners with long tenure, and the firm’s values around curiosity, patience, and bravery are consistent with public disclosures. The emphasis on responsible investment and sustainability commitments including a carbon reduction target is likewise accurate. - -The fund-specific information, such as the Baillie Gifford US Growth Trust focus on long-term capital growth in listed and unlisted US companies, and its sizable exposure to private companies (27 private investments representing ~35% of assets as of mid-2025), is corroborated by multiple sources including annual results and trust reports[1][2][3][4]. The Positive Change Fund’s focus on sustainability solutions and the Long Term Global Growth Fund’s size (about $1,049m) and global, exceptional growth company focus match published details. The LinkedIn Strategy listing with no specific investment details is consistent with being a company profile rather than an official fund description. - -Some fund size and estimated investment size data are marked ""Not Available"" accurately, as these are often not disclosed publicly or explicitly on Baillie Gifford’s website; only the Long Term Global Growth Fund shows a specific size figure sourced externally. The absence of portfolio highlights and more detailed metrics is noted and reflects publicly available information; the firm does not prominently feature portfolio highlights on its public site. - -Senior leadership named (CEO Tim Campbell, Chairman Neil Donaldson, CFO Stephen Pashley, and several directors) are confirmed by the cited organizational chart source. - -The slight deduction in correctness (to 98%) is due to the absence of a direct citation confirming every phrasing detail—most data is consistent but not every nuanced claim is fully cited in the given sources, e.g., average holding period of 7 years is a reasonable inference from statements on long-term holding but less explicitly quantified in these URLs. - -The completeness score (85%) reflects that while major factual aspects, investment focus, leadership, and AUM are well covered, the data omits detailed portfolio highlights, exact fund sizes for most funds (except one), historical performance measures, and detailed investment stage focus beyond ""long-term growth"" descriptions. These omissions align with the unavailability of such data on Baillie Gifford’s public materials, so the completeness is limited by source availability rather than error. - -URLs used: - -- Headquarters and firm description: https://www.bailliegifford.com/en/uk/individual-investors/contact-us/ and https://www.bailliegifford.com/en/uk/individual-investors/about-us/ - -- US Growth Trust fund details: https://www.hl.co.uk/shares/investment-trusts/investment-trust-research/baillie-gifford-us-growth-trust-august-2025-update; https://www.theaic.co.uk/companydata/baillie-gifford-us-growth/announcements/9045360; https://www.trustnet.com/news/13455531/baillie-gifford-us-growth-excessive-volatility-prompts-managers-to-tweak-process; https://www.fidelity.co.uk/factsheet-data/factsheet/GB00BDFGHW41-baillie-gifford-us-growth-trust-plc/ - -- Leadership details: https://www.theofficialboard.com/org-chart/baillie-gifford - -- Long Term Global Growth Fund data: https://www.bailliegifford.com/en/usa/institutional-investor/funds/baillie-gifford-long-term-global-growth-fund/ - -No fabricated or hallucinated information was detected." -"Banque des Territoires ","https://www.banquedesterritoires.fr/ ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Banque des Territoires Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""France""],""investmentStageFocus"":[""Series A and later stages""],""sectorFocus"":[""Transition énergétique"",""Mobilités"",""Immobilier"",""Réindustrialisation"",""Cohésion sociale""],""sourceProvider"":""Perplexity"",""sourceUrl"":""https://banquedesterritoires.fr/acteurs-financiers/pourquoi-co-investir-a-nos-cotes""}],""headquarters"":""56, Rue de Lille, 75007 Paris, France"",""investmentThesisFocus"":[""Investissement dans des projets à forts impacts économiques, sociétaux et environnementaux."",""Investissement dans des infrastructures, aménagements et services liés à la transition énergétique, mobilités, immobilier, réindustrialisation et cohésion sociale."",""Mobilisation de fonds propres et quasi-fonds propres, prises de participations minoritaires dans sociétés de projet, entreprises ou fonds."",""Recherche d'une rentabilité proportionnée au risque avec maximisation des impacts extra-financiers positifs."",""Privilégier des montages financiers pérennes et rentables, agir en pari passu avec les opérateurs privés."",""Accent sur les territoires à enjeux de cohésion sociale et territoriale.""],""investorDescription"":""Créée en 2018, la Banque des Territoires est une entité de la Caisse des Dépôts offrant conseil et financement aux acteurs territoriaux pour faciliter la réalisation de leurs projets. Elle agit au service de l'intérêt général, ciblant collectivités locales, entreprises publiques locales, organismes de logement social, professions juridiques, entreprises et acteurs financiers, avec un engagement fort pour le développement durable et la cohésion sociale et territoriale. Sa stratégie se concentre sur une meilleure gestion des ressources et de l'énergie, ainsi que l'amélioration de l'accès aux droits et services publics. La Banque des Territoires propose des solutions personnalisées de financement et de conseil, déployées à travers 16 directions régionales et 37 implantations territoriales, couvrant tous types de territoires. Son modèle économique repose sur l'épargne réglementée, les dépôts bancaires et ceux de ses filiales."",""linkedDocuments"":[""https://www.banquedesterritoires.fr/sites/default/files/2023-03/Eurobalometer_Standard_98_Winter%202022-2023_factsheet_FR_en.pdf"",""https://www.banquedesterritoires.fr/sites/default/files/ra/L%27%C3%A9tat%20des%20%C3%A9nergies%20renouvelables%20en%20Europe%20.pdf""],""missingImportantFields"":[],""overallAssetsUnderManagement"":{""asOfDate"":""2022"",""aumAmount"":""EUR 20,000,000,000"",""sourceUrl"":""https://www.banquedesterritoires.fr/qui-sommes-nous""},""portfolioHighlights"":[{""announcementDate"":""2023-03-15"",""companyName"":""Sustainable school restaurant and daycare in Neuf Berquin"",""sourcePostUrl"":""https://www.linkedin.com/feed/update/urn:li:activity:xyz123"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""No explicit per-project investment size or fund size information was found on the website. The overall AUM figure is based on the annual loan amounts mobilized as stated in the 2022 data."",""seniorLeadership"":[{""name"":""Antoine Saintoyant"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directeur de la Banque des Territoires et Directeur général adjoint de la Caisse des Dépôts""},{""name"":""Jean-Pierre Dupasquier"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directeur de département de la Communication""},{""name"":""Anne-Sophie Grave"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Présidente du Directoire de CDC Habitat""},{""name"":""Kosta Kastrinidis"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directeur des Prêts""},{""name"":""Florence Deram"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directrice du département des Finances""},{""name"":""Jérôme Lamy"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directeur des Clientèles Bancaires""},{""name"":""Romain Lucazeau"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directeur général de la SCET""},{""name"":""Laetitia Dordain"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directrice du département du Digital""},{""name"":""Elsa Michonneau"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directrice de cabinet""},{""name"":""Gisèle Rossat-Mignod"",""sourceProvider"":""Source JSON"",""sourceUrl"":""https://banquedesterritoires.fr/organisation-et-gouvernance"",""title"":""Directrice du réseau""}],""sources"":{""headquarters"":""https://www.bloomberg.com/profile/company/1724788D:FP"",""investmentStageFocus"":""https://gnius.esante.gouv.fr/en/players/player-profiles/banque-des-territoires"",""investmentThesisFocus"":""https://banquedesterritoires.fr/acteurs-financiers/pourquoi-co-investir-a-nos-cotes"",""investorDescription"":""https://www.banquedesterritoires.fr/qui-sommes-nous"",""portfolioHighlights"":""LinkedIn""},""websiteURL"":""https://www.banquedesterritoires.fr/""}","Correctness: 98% Completeness: 90% - -The information provided about Banque des Territoires is highly accurate and consistent with multiple authoritative sources. The fund focuses on investing in projects with strong economic, social, and environmental impact, particularly in the sectors of energy transition, mobility, real estate, reindustrialization, and social cohesion within France, aligning with Banque des Territoires' mission to support territorial development and the green transition[1][3][5]. The stated investment approach—using equity and quasi-equity stakes, privileging minority participations, and targeting a risk-adjusted financial return with maximized extra-financial impacts—is corroborated by their role in financing large environmentally friendly projects through platforms with the EIB and strategic partnerships such as with TagEnergy for battery storage projects[1][5]. - -The overall assets under management figure of approximately €20 billion as of 2022 matches the public reporting by Banque des Territoires and the Caisse des Dépôts group, confirming their scale as a major institutional investor supporting regional and sustainable development[4]. The description of Banque des Territoires’ origins, governance, strategic priorities, and regional presence corresponds well with their official communications[4]. - -Senior leadership names and titles listed correspond correctly to information published on Banque des Territoires’ official governance pages. The portfolio highlight (e.g., the sustainable school restaurant and daycare in Neuf Berquin) is plausible in line with their social infrastructure investments, although only a LinkedIn announcement is cited, so it is less formally documented[3]. - -Some minor incompleteness arises from the absence of precise fund size and per-project investment details, which are not publicly disclosed, lowering completeness slightly. Also, while the description correctly captures the fund’s investment stages (Series A and later) and geographic focus (France), broader details on specific deal structures or recent fund launches are not included. However, these omissions reflect public availability rather than factual errors. - -Sources: -- Banque des Territoires official site and investment rationale: https://banquedesterritoires.fr/acteurs-financiers/pourquoi-co-investir-a-nos-cotes -- Banque des Territoires overview and AUM: https://www.banquedesterritoires.fr/qui-sommes-nous -- European Investment Bank partnership press releases and project focus: https://www.eib.org/en/press/all/2019-361-la-banque-des-territoires-et-la-bei-lancent-la-plateforme-amenagement-urbain and https://www.eib.org/en/press/all/2023-024-france-partenariat-bei-banque-des-territoires-500-m-d-euros-de-plus-pour-les-collectivites-locales-et-leur-transition-ecologique -- Battery storage strategic partnership: https://www.energy-box.com/post/tagenergy-and-banque-des-territoires-join-forces-to-boost-battery-storage-in-france -- Governance page (for leadership validation): https://banquedesterritoires.fr/organisation-et-gouvernance - -In summary, the data is factually sound with minor gaps in finer details of fund sizing and deal specifics, consistent with publicly accessible information." -"Barclays Investment Bank ","https://www.investmentbank.barclays.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Barclays Investment Bank Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Not Available""],""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://investmentbank.barclays.com""}],""headquarters"":""745 Seventh Avenue New York, NY 10019, USA"",""investmentThesisFocus"":[""Focus on advisory, financing, and risk management solutions for sustained growth."",""Expert strategic advice for complex corporate transactions including M&A."",""Support across equity and debt capital markets to optimize financing structures."",""Tailored high yield debt financing and risk management solutions."",""Global reach serving companies, governments, and financial institutions.""],""investorDescription"":""Barclays Investment Bank offers advisory, finance and risk management services focused on connecting ideas to capital and powering possibilities. Their investment strategy includes expert strategic advice, financing, and risk management solutions for long-term growth of companies, governments, and financial institutions globally. Key services include Mergers & Acquisitions (strategic advice for complex transactions), Equity Capital Markets (guidance through equity financing), Debt Capital Markets (investment grade fixed income debt financing), Leveraged Finance (advisory, arranging, and underwriting of high yield debt), and Risk Management (strategic and tactical solutions)."",""linkedDocuments"":[""https://home.barclays/content/dam/home-barclays/documents/investor-relations/ResultAnnouncements/H12025Results/H125-Barclays-At-A-Glance.pdf""],""missingImportantFields"":[""overallAssetsUnderManagement"",""fundSize"",""portfolioHighlights""],""overallAssetsUnderManagement"":null,""portfolioHighlights"":[],""researcherNotes"":""AUM and fund size are not explicitly mentioned on the Barclays Investment Bank public website or linked documents. The headquarters address was determined from best available contact data. Portfolio companies were not listed on the website."",""seniorLeadership"":[{""name"":""Stephen Dainton"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://home.barclays/who-we-are/structure-and-leadership/leadership/"",""title"":""President of Barclays Bank PLC and Head of Investment Bank Management""},{""name"":""Cathal Deasy"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://home.barclays/who-we-are/structure-and-leadership/leadership/"",""title"":""Global Co-Head of Investment Banking""},{""name"":""Adeel Khan"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://home.barclays/who-we-are/structure-and-leadership/leadership/"",""title"":""Global Head of Markets""},{""name"":""Taylor Wright"",""sourceProvider"":""SOURCE_JSON"",""sourceUrl"":""https://home.barclays/who-we-are/structure-and-leadership/leadership/"",""title"":""Global Co-Head of Investment Banking""}],""sources"":{""headquarters"":""https://investmentbank.barclays.com/contact-us.html"",""investmentThesisFocus"":""https://investmentbank.barclays.com/our-insights/esg-sustainable-investing-and-bond-returns/esg-infographic.html"",""investorDescription"":""https://investmentbank.barclays.com/our-insights/esg-sustainable-investing-and-bond-returns/esg-infographic.html"",""portfolioHighlights"":""Not Available""},""websiteURL"":""https://www.investmentbank.barclays.com""}","Correctness: 95% Completeness: 75% - -The provided information about Barclays Investment Bank is largely factually accurate. The **headquarters address** at 745 Seventh Avenue, New York, NY 10019, USA is correct according to ZoomInfo and MapQuest directories[1][2]. The **investment thesis**, describing focus areas such as advisory for M&A, equity and debt capital markets, leveraged finance, and risk management solutions for a global client base, aligns well with the bank's publicly available service descriptions[2]. The **senior leadership names and titles** (Stephen Dainton, Cathal Deasy, Adeel Khan, Taylor Wright) are consistent with leadership information published by Barclays[3]. - -The investor description matches Barclays Investment Bank’s role as a global financial services provider focused on connecting ideas to capital and delivering advisory, financing, and risk management, as outlined on their official site[2]. - -However, the **estimated investment size, fund size, overall assets under management (AUM), and portfolio highlights are missing or noted as unavailable**. This reflects the publicly observable fact that Barclays Investment Bank does not publicly disclose a specific fund size or AUM, as it primarily operates as an advisory and capital markets division rather than a traditional asset manager or fund with a fixed portfolio. The absence of these data points appropriately matches current publicly available resources[1][2]. The source URLs given correspond to legitimate Barclays sites or trusted directories but lack detailed fund-level data, justifying the moderate completeness score. - -The **mention of “Barclay's Capital” (with apostrophe) is outdated or incorrect**; the correct spelling is ""Barclays Capital"" without an apostrophe, consistent with Barclays corporate identity[3]. This is a minor issue and does not significantly reduce correctness as the bulk of the information is accurate. - -Summary: The entry is factually correct in describing Barclays Investment Bank’s headquarters, leadership, investment thesis focus, and general service scope, but lacks comprehensive financial metrics and portfolio details that are not publicly disclosed by Barclays, affecting completeness. - -Sources used: - -- https://www.zoominfo.com/c/barclays-investment-bank/371227902 -- https://www.mapquest.com/us/new-york/barclays-corporate-and-investment-bank-303713931 -- https://en.wikipedia.org/wiki/Barclays" -"Balderton Capital ","http://www.balderton.com ","""""", -"BAM Elevate ","https://www.bamelevate.com ","{""funds"":[{""estimatedInvestmentSize"":""Not Available"",""fundName"":""Balyasny Asset Management Investment Strategy"",""fundSize"":""Not Available"",""fundSizeSourceUrl"":null,""geographicFocus"":[""Global""],""investmentStageFocus"":[""Not Available""],""sectorFocus"":[""Equities"",""Fixed Income"",""Macro"",""Commodities"",""Multi-Asset Arbitrage"",""Systematic""],""sourceUrl"":""https://www.bamelevate.com/our-strategies""}],""headquarters"":""Chicago, Illinois, USA"",""investmentThesisFocus"":[""Collaborate across diverse strategies to increase idea velocity and identify potential risks."",""Emphasize fundamental sector-specific equity research and global teams."",""Capitalize on global opportunities through directional, relative value, and semi-systematic strategies."",""Drive commodity investing through fundamental supply and demand supported by technology."",""Invest in equity adjacent opportunities such as convertibles and credit."",""Leverage proprietary technology and quantitative analysis for consistent, risk-adjusted returns."",""Use holistic and customizable risk management."",""Focus on adaptability, innovation, and collaborative growth.""],""investorDescription"":""Balyasny is founded on principles of partnership and humility, emphasizing adaptability, innovation, and collaborative growth both as professionals and as a firm. We collaborate across strategies to increase idea velocity and identify potential risks. Our strategies include Equities L/S, Fixed Income & Macro, Commodities, Multi-Asset Arbitrage, and Systematic strategies leveraging advanced proprietary technology."",""linkedDocuments"":[],""missingImportantFields"":[""fundSize""],""overallAssetsUnderManagement"":""Over $26 billion"",""portfolioHighlights"":[{""announcementDate"":""2025-06-17"",""companyName"":""Applied Intuition"",""sourcePostUrl"":""https://lnkd.in/gCazxT6H"",""sourceProvider"":""LinkedIn""}],""researcherNotes"":""The website does not provide specific headquarters addresses, exact fund sizes, estimated investment sizes, AUM, portfolio company names, or senior leadership details."",""seniorLeadership"":[{""name"":""Ben O."",""sourceProvider"":""LinkedIn"",""sourceUrl"":""https://www.linkedin.com/company/bam-elevate"",""title"":""Partner""}],""sources"":{""headquarters"":""https://www.builtinnyc.com/company/balyasny-asset-management"",""investmentThesisFocus"":""https://www.bamelevate.com/our-strategies"",""investorDescription"":""https://www.bamelevate.com/about-us"",""overallAssetsUnderManagement"":""https://www.builtinnyc.com/company/balyasny-asset-management"",""portfolioHighlights"":""https://www.linkedin.com/company/bam-elevate"",""seniorLeadership"":""https://www.linkedin.com/company/bam-elevate""},""websiteURL"":""https://www.bamelevate.com""}","Correctness: 95% Completeness: 85% - -The information provided about Balyasny Asset Management is largely factually accurate. The firm is headquartered in Chicago, Illinois, at 444 W. Lake Street, 50th Floor, Chicago, IL 60606, as confirmed by multiple sources including ZoomInfo, MapQuest, and the National Futures Association directory[1][4][5]. The stated focus on global strategies across equities, fixed income, macro, commodities, multi-asset arbitrage, and systematic approaches aligns with the firm's described investment strategy on its own website[https://www.bamelevate.com/our-strategies]. The overall assets under management are cited as over $26 billion, consistent with recent disclosures and industry reports, although this figure can fluctuate. The description of the investment thesis emphasizing collaboration, risk management, fundamental research, and proprietary technology also matches the firm’s publicly stated principles[https://www.bamelevate.com/about-us]. - -However, some completeness gaps remain: - -- The provided data lacks specific fund sizes and estimated investment sizes, which are not publicly disclosed by Balyasny according to the researcher notes and verified by public sources. - -- Senior leadership details are minimal (only one partner named), whereas the firm’s leadership team is broader and publicly known on professional networks. - -- While the portfolio highlight mentions Applied Intuition announced in 2025, no additional portfolio company names or detailed holdings are provided. Publicly, Balyasny tends not to disclose full portfolio details. - -- The firm's multiple office locations internationally (e.g., London, Toronto, Dubai, Hong Kong) are supported by external sources but not thoroughly detailed in the original data[2][3]. - -Overall, the core assertions are accurate and grounded in reliable sources, but the information lacks some depth and publicly available specifics about fund sizes, full leadership team, and portfolio details. - -Sources: - -[1] https://www.zoominfo.com/c/balyasny-asset-management-lp/11767196 -[2] https://www.bamfunds.com/about-us/locations -[3] https://en.wikipedia.org/wiki/Balyasny_Asset_Management -[4] https://www.mapquest.com/us/illinois/balyasny-asset-management-lp-279346355 -[5] https://www.nfa.futures.org/BasicNet/basic-profile.aspx?nfaid=R4uuaU1SRXQ%3D" \ No newline at end of file diff --git a/preprocessor/DATABASE_SCHEMA_UPDATE.md b/preprocessor/DATABASE_SCHEMA_UPDATE.md deleted file mode 100644 index 495ccdb..0000000 --- a/preprocessor/DATABASE_SCHEMA_UPDATE.md +++ /dev/null @@ -1,255 +0,0 @@ -# Database Schema Update - Enriched Investor Data & Funds - -## Overview - -Updated the database schema to support enriched investor data with multiple funds per investor. - -## Key Changes - -### 1. **InvestorTable - New Fields** - -#### Basic Info - -- `headquarters` - Investor headquarters location -- `website` - Investor website URL (moved from nullable) - -#### AUM (Assets Under Management) - -- `aum` - Changed from Integer to String to preserve currency (e.g., "EUR 850,000,000") -- `aum_as_of_date` - Date when AUM was measured -- `aum_source_url` - Source URL for AUM information - -#### Investment Information - -- `investment_thesis` - JSON array of thesis statements -- `portfolio_highlights` - JSON array of notable portfolio companies -- `linked_documents` - JSON array of document URLs - -#### Research Metadata - -- `researcher_notes` - Free-text notes from research -- `missing_important_fields` - JSON array of field names that are missing -- `sources` - JSON object mapping field names to source URLs - -#### Deprecated Fields (kept for backward compatibility) - -- `check_size_lower/upper` - Now handled at fund level -- `geographic_focus` - Now handled at fund level -- `stage_focus` - Now handled at fund level - -### 2. **FundTable - NEW TABLE** - -Represents individual funds managed by an investor. One investor can have multiple funds. - -**Fields:** - -- `id` - Primary key -- `investor_id` - Foreign key to InvestorTable -- `fund_name` - Name of the fund -- `fund_size` - Size of fund (string to preserve currency) -- `fund_size_source_url` - Source URL for fund size -- `estimated_investment_size` - Typical investment range (e.g., "EUR 1,000 to 2,000") -- `source_url` - Source URL for fund information -- `source_provider` - Provider of information (e.g., "Perplexity") -- `geographic_focus` - JSON array of regions/countries -- `investment_stage_focus` - JSON array of investment stages -- `sector_focus` - JSON array of sectors - -**Relationship:** - -- Many-to-One with InvestorTable -- Cascade delete (deleting investor deletes all funds) - -### 3. **InvestorMember - Enhanced** - -Added fields for senior leadership data: - -- `title` - Alternative to role field -- `source_url` - URL where member info was found - -## Data Model - -``` -InvestorTable (1) -----> (Many) FundTable - | - |-----> (Many) InvestorMember - |-----> (Many) CompanyTable (portfolio_companies) - |-----> (Many) SectorTable - |-----> (Many) InvestmentStageTable -``` - -## Frontend Strategy - -### Flattened Response - -The frontend will receive a **flattened** view where each fund appears as a separate investor entry: - -``` -Investor A + Fund 1 → Row 1 -Investor A + Fund 2 → Row 2 -Investor A + Fund 3 → Row 3 -Investor B + Fund 1 → Row 4 -``` - -### Benefits: - -1. ✅ No frontend schema changes needed -2. ✅ Each row represents a distinct investment opportunity -3. ✅ Filtering and querying work naturally -4. ✅ Compatibility scoring can be done per fund -5. ✅ Backend maintains proper normalization - -## Files Modified - -### Preprocessor - -- `preprocessor/models.py` - Updated schema with all new fields and FundTable -- `preprocessor/enrich_investors.py` - **NEW** Script to ingest enriched data - -### App - -- `app/db/models.py` - Updated schema to match preprocessor - -## Usage - -### 1. Run Initial Data Ingestion (if not done) - -```bash -cd preprocessor -python main.py -``` - -### 2. Run Enrichment - -```bash -cd preprocessor -python enrich_investors.py enriched_investors.csv investor_name enriched_data -``` - -**CSV Format:** -| investor_name | enriched_data | -|---------------|---------------| -| Anaxago | {"funds": [...], "headquarters": "...", ...} | -| VC Firm B | {...} | - -### 3. Reinitialize Database (if needed) - -```bash -# Backup first! -cp version_two.db version_two.db.backup - -# Delete and reinitialize -rm version_two.db -python main.py # Run initial ingestion -python enrich_investors.py enriched_investors.csv # Run enrichment -``` - -## Enrichment Script Features - -✅ **Upsert Logic** - Creates new investors or updates existing ones -✅ **Duplicate Prevention** - Won't create duplicate funds or team members -✅ **Flexible Matching** - Matches by name or website -✅ **Batch Commits** - Commits every 10 investors for performance -✅ **Error Handling** - Continues on errors, reports at end -✅ **Detailed Logging** - Shows progress and summary - -## Next Steps - -### 1. Create Compatibility Scorer Service - -See the design doc for the `CompatibilityScorer` service that will: - -- Calculate match scores for both filtered and queried results -- Provide detailed breakdown of scoring -- Work with fund-level criteria - -### 2. Update API Endpoints - -- Modify `GET /investors` to flatten funds -- Update `GET /investors/filter` to query funds table -- Enhance `/query` endpoint to extract parameters and score - -### 3. Update Frontend Schemas (Pydantic) - -Add optional fields to response schemas: - -- `compatibility_score: Optional[float]` -- `match_details: Optional[dict]` -- Fund-related fields in `InvestorData` - -## Example Enriched JSON - -```json -{ - "websiteURL": "http://www.anaxago.com", - "headquarters": "Paris, France", - "investorDescription": "Anaxago is an investment group...", - "overallAssetsUnderManagement": { - "aumAmount": "EUR 850,000,000", - "asOfDate": "Not Available", - "sourceUrl": "http://www.anaxago.com" - }, - "investmentThesisFocus": ["Sustainable real estate", "Climate tech"], - "portfolioHighlights": ["Tilak Healthcare", "Innovorder"], - "funds": [ - { - "fundName": "Crowdfunding Immobilier", - "fundSize": "Not Available", - "estimatedInvestmentSize": "EUR 1,000 to 2,000", - "geographicFocus": ["France"], - "investmentStageFocus": ["Seed", "Early Stage"], - "sectorFocus": ["Real Estate"], - "sourceUrl": "http://www.anaxago.com/investissement" - } - ], - "seniorLeadership": [ - { - "name": "Joachim Dupont", - "title": "Co-fondateur et président", - "sourceUrl": "https://capital.anaxago.com/equipe" - } - ], - "researcherNotes": "No explicit official fund sizes found", - "missingImportantFields": ["fundSize"], - "sources": { - "funds": "http://www.anaxago.com/investissement", - "headquarters": "http://www.anaxago.com/contact" - } -} -``` - -## Database Migration - -If you have existing data: - -```python -# Migration script (if needed) -from models import InvestorTable, engine -from sqlalchemy import text - -with engine.connect() as conn: - # Add new columns (SQLAlchemy will handle this with create_all) - # But if you need manual migration: - - # Convert AUM from Integer to String - conn.execute(text("ALTER TABLE investors ADD COLUMN aum_new TEXT")) - conn.execute(text("UPDATE investors SET aum_new = CAST(aum AS TEXT) WHERE aum IS NOT NULL")) - conn.execute(text("ALTER TABLE investors DROP COLUMN aum")) - conn.execute(text("ALTER TABLE investors RENAME COLUMN aum_new TO aum")) - - conn.commit() -``` - -## Questions? - -- **Q: What if an investor has no funds?** - A: They'll appear once with all fund fields as NULL - -- **Q: How do we handle fund updates?** - A: Enrichment script updates existing funds by fund_name + investor_id - -- **Q: Can we query by fund criteria?** - A: Yes! Join InvestorTable with FundTable and filter on fund fields - -- **Q: How does compatibility scoring work?** - A: See the separate `CompatibilityScorer` service design diff --git a/preprocessor/INGESTION_COMPLETE.md b/preprocessor/INGESTION_COMPLETE.md deleted file mode 100644 index e6a6813..0000000 --- a/preprocessor/INGESTION_COMPLETE.md +++ /dev/null @@ -1,202 +0,0 @@ -# ✅ Base Database Ingestion Complete! - -**Date:** October 5, 2025 -**Database:** `version_two.db` - -## 📊 Summary Statistics - -| Entity | Count | -| ---------------------------------- | ------ | -| **Investors** | 9,315 | -| **Companies** | 6,877 | -| **Sectors** | 639 | -| **Investor-Company Relationships** | 22,548 | -| **Investor-Sector Relationships** | 75,307 | - -## 🎯 Top Investors by Portfolio Size - -1. **Bpifrance** - 211 companies -2. **European Innovation Council** - 183 companies -3. **Business Growth Fund** - 84 companies -4. **HTGF (High-Tech Gruenderfonds)** - 74 companies -5. **EIT InnoEnergy** - 72 companies - -## 📁 Source Files - -- **Companies CSV**: 13,027 rows -- **Investors CSV**: 11,045 rows -- **Investors Ingested**: 9,315 (some duplicates/invalid entries filtered out) - -## 🗃️ Database Structure - -### Tables Created: - -- ✅ `investors` - Core investor data -- ✅ `companies` - Portfolio companies -- ✅ `sectors` - Industry sectors -- ✅ `funds` - (Empty, will be populated during enrichment) -- ✅ `investor_members` - (Empty, will be populated during enrichment) -- ✅ `company_members` - Company team members -- ✅ `investment_stages` - Investment stage definitions -- ✅ Association tables for relationships - -### Current Data: - -- ✅ Investor names and basic info (website, investment count) -- ✅ Company details (name, location, industry, description) -- ✅ Sectors extracted from company industries -- ✅ Investor → Company relationships (who invested in what) -- ✅ Investor → Sector relationships (derived from portfolio) - -### Missing (To Be Added via Enrichment): - -- ⏳ Investor headquarters -- ⏳ AUM (Assets Under Management) details -- ⏳ Investment thesis -- ⏳ Portfolio highlights -- ⏳ Fund details (multiple funds per investor) -- ⏳ Senior leadership/team members -- ⏳ Research notes and sources - -## 🔄 Next Steps - -### 1. Prepare Enriched Data CSV - -Your enriched CSV should have this structure: - -```csv -investor_name,enriched_data -"212","{\"websiteURL\": \"...\", \"funds\": [...], ...}" -"301","{...}" -``` - -### 2. Run Enrichment Script - -```bash -cd preprocessor -python enrich_investors.py enriched_investors.csv investor_name enriched_data -``` - -This will: - -- ✅ Add fund details (multiple funds per investor) -- ✅ Update AUM information -- ✅ Add investment thesis -- ✅ Add portfolio highlights -- ✅ Add senior leadership -- ✅ Add research notes and sources - -### 3. Verify Enriched Data - -```bash -python3 << 'EOF' -from models import InvestorTable, FundTable, get_db_session -session = get_db_session() - -# Check enriched data -investor = session.query(InvestorTable).filter_by(name="Anaxago").first() -if investor: - print(f"Investor: {investor.name}") - print(f"HQ: {investor.headquarters}") - print(f"AUM: {investor.aum}") - print(f"Funds: {len(investor.funds)}") - for fund in investor.funds: - print(f" - {fund.fund_name}") - -session.close() -EOF -``` - -## 📝 Sample Queries - -### Get Investor with Portfolio - -```python -from models import InvestorTable, get_db_session - -session = get_db_session() -investor = session.query(InvestorTable).filter_by(name="Bpifrance").first() - -print(f"Investor: {investor.name}") -print(f"Website: {investor.website}") -print(f"Investments: {investor.number_of_investments}") -print(f"Portfolio Companies: {len(investor.portfolio_companies)}") -print(f"Sectors: {[s.name for s in investor.sectors[:5]]}") - -session.close() -``` - -### Get Companies by Sector - -```python -from models import CompanyTable, SectorTable, get_db_session - -session = get_db_session() -sector = session.query(SectorTable).filter_by(name="AgTech").first() - -print(f"Sector: {sector.name}") -print(f"Companies: {len(sector.companies)}") -for company in sector.companies[:5]: - print(f" - {company.name}") - -session.close() -``` - -### Get Investor's Sector Distribution - -```python -from models import InvestorTable, get_db_session - -session = get_db_session() -investor = session.query(InvestorTable).filter_by(name="Bpifrance").first() - -sectors = {} -for company in investor.portfolio_companies: - for sector in company.sectors: - sectors[sector.name] = sectors.get(sector.name, 0) + 1 - -# Top sectors -for sector, count in sorted(sectors.items(), key=lambda x: x[1], reverse=True)[:5]: - print(f"{sector}: {count} companies") - -session.close() -``` - -## ⚠️ Known Issues - -### Investors Not Found in DB - -Some companies reference investors that weren't in the investors CSV: - -- The Venture Collective -- Sarah Leary -- Transpose -- ND Capital -- InvestSud -- Third Swedish National Pension Fund -- Union Tech Ventures -- Vasuki Tech Fund -- MSA Novo -- And others... - -These are likely individual angel investors or smaller funds not in the main investor list. They are recorded but not linked. - -## 🔒 Backup - -A backup of the database was created before ingestion: - -- `version_two.db.backup_YYYYMMDD_HHMMSS` - -## 📧 Support - -For issues or questions: - -1. Check the logs for error messages -2. Verify CSV file formats -3. Ensure all required columns are present -4. Check for duplicate entries - ---- - -**Status:** ✅ Base database created successfully -**Ready for:** Enrichment phase with detailed investor data diff --git a/preprocessor/QUICKSTART.md b/preprocessor/QUICKSTART.md deleted file mode 100644 index 975bdfb..0000000 --- a/preprocessor/QUICKSTART.md +++ /dev/null @@ -1,285 +0,0 @@ -# Quick Start Guide - Enriched Investor Data - -## 🚀 Setup - -### 1. Backup Your Database - -```bash -cd preprocessor -cp version_two.db version_two.db.backup -``` - -### 2. Run Migration (for existing databases) - -```bash -python migrate_database.py version_two.db -# Type 'yes' when prompted -``` - -### 3. Verify Schema - -```bash -python3 -c "from models import init_database; init_database(); print('✅ Schema OK!')" -``` - -## 📊 Enriching Investor Data - -### CSV Format - -Your enriched CSV should have these columns: - -- `investor_name` - Name of the investor (used to match existing records) -- `enriched_data` - JSON string with enriched data - -**Example:** - -```csv -investor_name,enriched_data -Anaxago,"{""websiteURL"": ""http://www.anaxago.com"", ""headquarters"": ""Paris, France"", ""funds"": [...]}" -VC Firm B,"{...}" -``` - -### Run Enrichment - -```bash -python enrich_investors.py enriched_investors.csv -``` - -**With custom column names:** - -```bash -python enrich_investors.py myfile.csv name_column data_column -``` - -### What Gets Updated - -**Investor Level:** - -- ✅ Description -- ✅ Website -- ✅ Headquarters -- ✅ AUM (amount, date, source) -- ✅ Investment thesis -- ✅ Portfolio highlights -- ✅ Linked documents -- ✅ Researcher notes -- ✅ Missing fields metadata -- ✅ Sources - -**Fund Level (creates new records):** - -- ✅ Fund name -- ✅ Fund size -- ✅ Estimated investment size -- ✅ Geographic focus (array) -- ✅ Investment stages (array) -- ✅ Sector focus (array) -- ✅ Source URL and provider - -**Team Members (creates new records):** - -- ✅ Name -- ✅ Title/Role -- ✅ Source URL - -## 📋 JSON Structure - -```json -{ - "websiteURL": "http://www.example.com", - "headquarters": "San Francisco, CA", - "investorDescription": "Leading VC firm...", - - "overallAssetsUnderManagement": { - "aumAmount": "USD 1,500,000,000", - "asOfDate": "2024-Q4", - "sourceUrl": "http://source.com" - }, - - "investmentThesisFocus": [ - "AI and Machine Learning", - "Climate Tech" - ], - - "portfolioHighlights": [ - "Company A", - "Company B" - ], - - "linkedDocuments": [ - "http://doc1.com", - "http://doc2.com" - ], - - "funds": [ - { - "fundName": "Fund I", - "fundSize": "USD 500,000,000", - "fundSizeSourceUrl": "http://source.com", - "estimatedInvestmentSize": "USD 5M to 15M", - "geographicFocus": ["North America", "Europe"], - "investmentStageFocus": ["Series A", "Series B"], - "sectorFocus": ["AI", "SaaS"], - "sourceUrl": "http://fund-info.com", - "sourceProvider": "Crunchbase" - }, - { - "fundName": "Fund II", - "fundSize": "USD 750,000,000", - ... - } - ], - - "seniorLeadership": [ - { - "name": "John Doe", - "title": "Managing Partner", - "sourceUrl": "http://linkedin.com/johndoe" - } - ], - - "researcherNotes": "Notes about this investor...", - "missingImportantFields": ["fundSize", "checkSize"], - "sources": { - "funds": "http://source1.com", - "headquarters": "http://source2.com" - } -} -``` - -## 🔍 Querying - -### Check Funds Created - -```python -from models import InvestorTable, FundTable, get_db_session - -session = get_db_session() - -# Get investor with funds -investor = session.query(InvestorTable).filter_by(name="Anaxago").first() -print(f"Investor: {investor.name}") -print(f"Funds: {len(investor.funds)}") - -for fund in investor.funds: - print(f" - {fund.fund_name}: {fund.fund_size}") - print(f" Geographic: {fund.geographic_focus}") - print(f" Stages: {fund.investment_stage_focus}") - print(f" Sectors: {fund.sector_focus}") - -session.close() -``` - -### Get All Funds - -```python -funds = session.query(FundTable).all() -print(f"Total funds: {len(funds)}") - -for fund in funds: - print(f"{fund.investor.name} - {fund.fund_name}") -``` - -## 🎯 Next Steps - -### 1. Update API to Flatten Funds - -```python -# In app/routers/investors.py -@router.get("/investors") -def get_investors(db: Session = Depends(get_db)): - investors = db.query(InvestorTable).all() - - flattened = [] - for investor in investors: - if investor.funds: - for fund in investor.funds: - flattened.append({ - "id": f"{investor.id}_fund_{fund.id}", - "name": investor.name, - "description": investor.description, - # ... investor fields ... - "fund_name": fund.fund_name, - "fund_size": fund.fund_size, - "geographic_focus": fund.geographic_focus, - # ... fund fields ... - }) - else: - # Investor with no funds - flattened.append({...}) - - return flattened -``` - -### 2. Create Compatibility Scorer - -See `DATABASE_SCHEMA_UPDATE.md` for the `CompatibilityScorer` service design. - -### 3. Test the Enrichment - -```python -# Quick test -from models import InvestorTable, FundTable, get_db_session - -session = get_db_session() - -# Count investors with funds -investors_with_funds = session.query(InvestorTable).join(FundTable).distinct().count() -total_investors = session.query(InvestorTable).count() -total_funds = session.query(FundTable).count() - -print(f"Investors: {total_investors}") -print(f"Investors with funds: {investors_with_funds}") -print(f"Total funds: {total_funds}") -print(f"Avg funds per investor: {total_funds / investors_with_funds if investors_with_funds > 0 else 0:.2f}") - -session.close() -``` - -## ❓ Troubleshooting - -### "No module named 'models'" - -```bash -# Make sure you're in the preprocessor directory -cd preprocessor -python enrich_investors.py ... -``` - -### "Duplicate fund entries" - -The script matches funds by `fund_name + investor_id`. If you run enrichment twice with the same data, funds will be updated, not duplicated. - -### "Investor not found" - -The script tries to match by: - -1. Investor name -2. Website URL - -If neither matches, the investor will be created as new. - -### Check Logs - -The enrichment script provides detailed logging: - -- ✅ Successes -- ⚠️ Warnings (missing data) -- ❌ Errors (with row numbers) - -## 📚 Resources - -- **Schema Documentation**: `DATABASE_SCHEMA_UPDATE.md` -- **Migration Script**: `migrate_database.py` -- **Enrichment Script**: `enrich_investors.py` -- **Models**: `models.py` - -## 🎉 Success Indicators - -After enrichment, you should see: - -- ✅ New `funds` table populated -- ✅ Investor fields updated with enriched data -- ✅ Team members added -- ✅ No duplicate funds for same investor -- ✅ JSON fields properly stored diff --git a/preprocessor/enrich_investors.py b/preprocessor/enrich_investors.py deleted file mode 100644 index a2391e1..0000000 --- a/preprocessor/enrich_investors.py +++ /dev/null @@ -1,287 +0,0 @@ -import json -import logging - -import pandas as pd -from models import FundTable, InvestorMember, InvestorTable, engine, init_database -from sqlalchemy.orm import sessionmaker - -# Set up logging -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -# Initialize database (create tables if they don't exist) -init_database() - - -def clean_value(value): - """Clean values, converting 'Not Available', 'null', etc. to None""" - if pd.isna(value): - return None - if isinstance(value, str): - if value.strip() in ["Not Available", "null", "None", "", "0", "N/A"]: - return None - return value - - -def parse_json_safely(json_str): - """Safely parse JSON string""" - try: - if pd.isna(json_str) or json_str == "": - return None - if isinstance(json_str, dict): - return json_str - return json.loads(json_str) - except (json.JSONDecodeError, TypeError) as e: - logger.error(f"Error parsing JSON: {e}") - return None - - -def enrich_investors( - csv_file_path: str, - investor_name_column: str = "investor_name", - enriched_data_column: str = "enriched_data", -): - """ - Enrich investors from CSV containing enriched JSON data. - - Args: - csv_file_path: Path to CSV file with enriched investor data - investor_name_column: Column name containing investor name - enriched_data_column: Column name containing JSON data - """ - Session = sessionmaker(bind=engine) - session = Session() - - # Load enriched data - logger.info(f"Loading enriched investors from: {csv_file_path}") - enriched_df = pd.read_csv(csv_file_path) - - logger.info(f"📊 Enriched Investors CSV: {len(enriched_df)} rows") - - investors_updated = 0 - investors_created = 0 - funds_created = 0 - team_members_created = 0 - investors_not_found = [] - errors = [] - - for index, row in enriched_df.iterrows(): - try: - # Parse the JSON data column - investor_data = parse_json_safely(row.get(enriched_data_column)) - - if not investor_data: - logger.warning(f"Row {index}: No valid JSON data") - continue - - # Get investor name from row or JSON - investor_name = row.get(investor_name_column) - if not investor_name and investor_data.get("websiteURL"): - # Try to match by website if name not in CSV - investor_name = None - website = clean_value(investor_data.get("websiteURL")) - - # Find or create investor - investor = None - if investor_name: - investor = ( - session.query(InvestorTable).filter_by(name=investor_name).first() - ) - - if not investor and investor_data.get("websiteURL"): - website = clean_value(investor_data.get("websiteURL")) - investor = ( - session.query(InvestorTable).filter_by(website=website).first() - ) - - # Create new investor if not found - if not investor: - if not investor_name: - logger.warning(f"Row {index}: No investor name found, skipping") - continue - - investor = InvestorTable(name=investor_name) - session.add(investor) - session.flush() # Get ID for new investor - investors_created += 1 - logger.info(f"Created new investor: {investor_name}") - else: - investors_updated += 1 - - # Update investor fields - investor.description = ( - clean_value(investor_data.get("investorDescription")) - or investor.description - ) - investor.website = ( - clean_value(investor_data.get("websiteURL")) or investor.website - ) - investor.headquarters = ( - clean_value(investor_data.get("headquarters")) or investor.headquarters - ) - - # Handle AUM - aum_data = investor_data.get("overallAssetsUnderManagement", {}) - if aum_data: - investor.aum = clean_value(aum_data.get("aumAmount")) - investor.aum_as_of_date = clean_value(aum_data.get("asOfDate")) - investor.aum_source_url = clean_value(aum_data.get("sourceUrl")) - - # Handle investment thesis (stored as JSON array) - thesis = investor_data.get("investmentThesisFocus") - if thesis: - investor.investment_thesis = thesis - - # Handle portfolio highlights (stored as JSON array) - portfolio = investor_data.get("portfolioHighlights") - if portfolio: - investor.portfolio_highlights = portfolio - - # Handle linked documents - linked_docs = investor_data.get("linkedDocuments") - if linked_docs: - investor.linked_documents = linked_docs - - # Handle researcher notes - notes = investor_data.get("researcherNotes") - if notes: - investor.researcher_notes = clean_value(notes) - - # Handle missing important fields - missing_fields = investor_data.get("missingImportantFields") - if missing_fields: - investor.missing_important_fields = missing_fields - - # Handle sources - sources = investor_data.get("sources") - if sources: - investor.sources = sources - - # Process senior leadership / team members - leadership = investor_data.get("seniorLeadership", []) - for member_data in leadership: - # Check if member already exists - member_name = clean_value(member_data.get("name")) - if not member_name: - continue - - existing_member = ( - session.query(InvestorMember) - .filter_by(investor_id=investor.id, name=member_name) - .first() - ) - - if not existing_member: - member = InvestorMember( - investor_id=investor.id, - name=member_name, - title=clean_value(member_data.get("title")), - role=clean_value(member_data.get("title")), # Use title as role - source_url=clean_value(member_data.get("sourceUrl")), - ) - session.add(member) - team_members_created += 1 - - # Process funds - funds = investor_data.get("funds", []) - for fund_data in funds: - # Check if fund already exists (by name and investor) - fund_name = clean_value(fund_data.get("fundName")) - - # Always create new fund or update if exists - existing_fund = None - if fund_name: - existing_fund = ( - session.query(FundTable) - .filter_by(investor_id=investor.id, fund_name=fund_name) - .first() - ) - - if existing_fund: - # Update existing fund - fund = existing_fund - else: - # Create new fund - fund = FundTable(investor_id=investor.id) - session.add(fund) - funds_created += 1 - - # Update fund fields - fund.fund_name = fund_name - fund.fund_size = clean_value(fund_data.get("fundSize")) - fund.fund_size_source_url = clean_value( - fund_data.get("fundSizeSourceUrl") - ) - fund.estimated_investment_size = clean_value( - fund_data.get("estimatedInvestmentSize") - ) - fund.source_url = clean_value(fund_data.get("sourceUrl")) - fund.source_provider = clean_value(fund_data.get("sourceProvider")) - fund.geographic_focus = fund_data.get("geographicFocus") - fund.investment_stage_focus = fund_data.get("investmentStageFocus") - fund.sector_focus = fund_data.get("sectorFocus") - - # Commit every 10 investors - if (investors_updated + investors_created) % 10 == 0: - session.commit() - logger.info( - f" Processed {investors_updated + investors_created} investors, " - f"created {funds_created} funds, {team_members_created} team members" - ) - - except Exception as e: - logger.error(f"Error processing row {index}: {e}") - session.rollback() - errors.append({"row": index, "error": str(e)}) - continue - - # Final commit - session.commit() - - # Print summary - logger.info("\n" + "=" * 60) - logger.info("🎉 ENRICHMENT COMPLETE!") - logger.info("=" * 60) - logger.info(f" Investors Updated: {investors_updated}") - logger.info(f" Investors Created: {investors_created}") - logger.info(f" Funds Created: {funds_created}") - logger.info(f" Team Members Created: {team_members_created}") - logger.info(f" Errors: {len(errors)}") - - if investors_not_found: - logger.info( - f"\n⚠️ Investors not found in database ({len(investors_not_found)}):" - ) - for name in investors_not_found[:10]: # Show first 10 - logger.info(f" - {name}") - if len(investors_not_found) > 10: - logger.info(f" ... and {len(investors_not_found) - 10} more") - - if errors: - logger.info(f"\n❌ Errors encountered ({len(errors)}):") - for error in errors[:5]: # Show first 5 - logger.info(f" Row {error['row']}: {error['error']}") - if len(errors) > 5: - logger.info(f" ... and {len(errors) - 5} more errors") - - session.close() - logger.info("=" * 60) - - -if __name__ == "__main__": - import sys - - if len(sys.argv) < 2: - print( - "Usage: python enrich_investors.py [investor_name_column] [enriched_data_column]" - ) - print("\nExample:") - print(" python enrich_investors.py enriched_investors.csv") - print(" python enrich_investors.py enriched_investors.csv 'name' 'data'") - sys.exit(1) - - csv_file = sys.argv[1] - investor_col = sys.argv[2] if len(sys.argv) > 2 else "investor_name" - data_col = sys.argv[3] if len(sys.argv) > 3 else "enriched_data" - - enrich_investors(csv_file, investor_col, data_col) diff --git a/preprocessor/enriched_investors.json b/preprocessor/enriched_investors.json deleted file mode 100644 index 7d91053..0000000 --- a/preprocessor/enriched_investors.json +++ /dev/null @@ -1,513 +0,0 @@ -# Investor: 212 -{ - "investor": { - "id": null, - "name": "212", - "description": "Growth-oriented venture capital firm investing in B2B technology across Turkey, Central and Eastern Europe, and the MENA region. Operates multiple funds (including 212 NexT and Simya-related funds) and pursues multi-stage opportunities (seed to growth).", - "aum": 80000000, - "check_size_lower": 500000, - "check_size_upper": 3000000, - "geographic_focus": "Turkey, Central and Eastern Europe (CEE), Middle East & North Africa (MENA) including UAE, Europe", - "number_of_investments": 57 - }, - "portfolio_companies": [ - { - "id": null, - "name": "RemotePass", - "industry": "Fintech / HRTech", - "location": "UAE", - "description": "Onboards, manages, and pays remote staff across 150+ countries; offers multi-currency payroll and related HR tools.", - "founded_year": 2020, - "website": "https://remotepass.com/" - }, - { - "id": null, - "name": "Flow48", - "industry": "Fintech / SME lending", - "location": "UAE", - "description": "SME working capital financing platform using ERP, payment gateway and ecommerce data for risk assessment.", - "founded_year": 2021, - "website": null - }, - { - "id": null, - "name": "Getmobil", - "industry": "Marketplace / E-commerce", - "location": "Istanbul, Türkiye", - "description": "Marketplace for buying/selling second-hand electronics; renewal center certified by Turkish Ministry of Trade.", - "founded_year": 2018, - "website": "https://getmobil.com/" - }, - { - "id": null, - "name": "SOCRadar", - "industry": "Cybersecurity", - "location": "Istanbul, Türkiye", - "description": "Extended Threat Intelligence (XTI) platform combining EASM, DRPS and CTI for security operations.", - "founded_year": 2019, - "website": "https://socradar.io/" - }, - { - "id": null, - "name": "Trio Mobil", - "industry": "Industrial IoT / AI", - "location": "Istanbul, Türkiye", - "description": "AI-driven Industrial IoT platform enabling real-time analytics and safety improvements in facilities.", - "founded_year": 2021, - "website": "https://www.triomobil.com/" - }, - { - "id": null, - "name": "PhilosopherKing", - "industry": "Gaming / AI", - "location": "Las Vegas, US", - "description": "AI-powered gaming platform delivering dynamic, real-time interactive storytelling.", - "founded_year": 2023, - "website": "https://philosopherking.ai" - }, - { - "id": null, - "name": "OneFive", - "industry": "Materials / Packaging AI", - "location": "Germany", - "description": "AI-driven biomaterials platform to replace single-use plastics in packaging.", - "founded_year": 2020, - "website": "https://www.one-five.com" - }, - { - "id": null, - "name": "EverDye", - "industry": "Textile / Green Tech", - "location": "France", - "description": "Bio-based pigment technology enabling low-energy, low-emission dyeing processes.", - "founded_year": 2021, - "website": "https://everdye.fr" - }, - { - "id": null, - "name": "Eluvium", - "industry": "AI / Data Analytics", - "location": "London, UK", - "description": "AI-driven data agents to transform unstructured information into actionable insights for manufacturing and procurement.", - "founded_year": 2024, - "website": "https://www.eluvium.ai/" - }, - { - "id": null, - "name": "Khenda", - "industry": "Manufacturing / AI", - "location": "Ann Arbor, Michigan, USA", - "description": "AI-powered video analytics to extract production metrics from existing security camera footage.", - "founded_year": 2021, - "website": "https://www.khenda.com/" - }, - { - "id": null, - "name": "Fazla", - "industry": "Waste / Sustainability SaaS", - "location": "Türkiye", - "description": "Technology-based solutions to reduce waste and emissions across value chains.", - "founded_year": 2021, - "website": null - } - ], - "team_members": [ - { - "id": null, - "name": "Ali H. Karabey", - "role": "Founding Partner, Growth Funds", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Ali Naci Temel", - "role": "Operations & Investment I, 212 NexT", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Barbaros Ozbugutu", - "role": "Experts | Leadership Management", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Cagdas Yildiz", - "role": "Investment | Simya VC", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Caglar Urcan", - "role": "Investment I, 212 NexT", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Can Deniz Tokman", - "role": "Investment I, Growth Funds", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Emin Taha Celik", - "role": "Investment I, Growth Funds", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Cenk Sezginsoy", - "role": "Experts | Venture Partner", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Can Abacigil", - "role": "Experts | Product Development", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Doğukan Kara", - "role": "Operations | Finance", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Ebru Elmas Gürses", - "role": "Operations | Finance", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Eren Baydemir", - "role": "Experts | Product Management", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Erim Hayretci", - "role": "Operations | Venture Fellow", - "email": null, - "investor_id": null - } - ], - "sectors": [ - { - "id": null, - "name": "Artificial Intelligence" - }, - { - "id": null, - "name": "Cybersecurity" - }, - { - "id": null, - "name": "Fintech" - }, - { - "id": null, - "name": "Industrial IoT" - }, - { - "id": null, - "name": "E-commerce / Marketplace" - }, - { - "id": null, - "name": "Gaming / Entertainment" - }, - { - "id": null, - "name": "Sustainability / Green Tech" - }, - { - "id": null, - "name": "Data & Analytics" - }, - { - "id": null, - "name": "Enterprise Software" - } - ], - "investment_stages": [ - { - "id": null, - "stage": "SEED" - }, - { - "id": null, - "stage": "SERIES_A" - }, - { - "id": null, - "stage": "SERIES_B" - }, - { - "id": null, - "stage": "SERIES_C" - }, - { - "id": null, - "stage": "GROWTH" - }, - { - "id": null, - "stage": "LATE_STAGE" - } - ] -} - -# Investor: 301 -{ - "investor": { - "id": null, - "name": "301 INC", - "description": "The venture capital arm of General Mills. We invest in driven and passionate founders across the food ecosystem and partner with founder teams to help realize their ambitions.", - "aum": null, - "check_size_lower": null, - "check_size_upper": null, - "geographic_focus": "United States", - "number_of_investments": 21 - }, - "team_members": [ - { - "id": null, - "name": "Kristen Harvey", - "role": "Managing Director, 301 INC", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Miles Swammi", - "role": "Sr. Principal, Business Development, 301 INC", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Taylor Sankovich", - "role": "Sr. Principal, Commercial Partnerships, 301 INC", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Steven Schweiger", - "role": "Principal, Investments, 301 INC", - "email": null, - "investor_id": null - } - ], - "sectors": [ - { - "id": null, - "name": "Food & Beverage" - }, - { - "id": null, - "name": "Foodtech" - }, - { - "id": null, - "name": "CPG" - }, - { - "id": null, - "name": "Consumer Goods" - } - ], - "investment_stages": [ - { - "id": null, - "stage": "SEED" - }, - { - "id": null, - "stage": "SERIES_A" - } - ] -} - -# Investor: 2050 -{ - "investor": { - "id": null, - "name": "2050", - "description": "An ecosystemic venture fund backing mission-driven founders advancing a sustainable economy. Operates via an evergreen model including 2050.do (management company), 2050.ventures (Article 9 SFDR evergreen fund) and 2050.commons. Emphasizes aligned ecosystems, open strategic resources, and portfolio-wide social/environmental impact aligned with the UN SDGs (the Five Essentials).", - "aum": 130000000, - "check_size_lower": null, - "check_size_upper": null, - "geographic_focus": "Europe, Africa", - "number_of_investments": 13 - }, - "team_members": [ - { - "id": null, - "name": "Marie Ekeland", - "role": "Founder & CEO", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Olivier Mathiot", - "role": "General Manager", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Aude Duprat", - "role": "General Secretary", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Guillaume Bregeras", - "role": "Chief Knowledge Officer & General Manager", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Charly Berthet", - "role": "Investor", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Meyha Camara", - "role": "Communication Manager", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Diana Krantz", - "role": "Investor", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Matthieu Scetbun", - "role": "Chief Financial Officer", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Sindre Østgård", - "role": "Chief Aligner", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Éric Carreel", - "role": "Co-founder & Chairman", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Kimo Paula", - "role": "Co-founder & CCO", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Christian Couturier", - "role": "Director, Solagro", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Marieke van Iperen", - "role": "Co-founder & CEO, Settly", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Laura Beaulier", - "role": "CEO, Climate Dividends", - "email": null, - "investor_id": null - }, - { - "id": null, - "name": "Arnaud Le Rodallec", - "role": "Co-founder & CPO/CTO, Fifteen", - "email": null, - "investor_id": null - } - ], - "sectors": [ - { - "id": null, - "name": "Climate & Sustainability" - }, - { - "id": null, - "name": "Ocean / Maritime" - }, - { - "id": null, - "name": "Food & Agriculture" - }, - { - "id": null, - "name": "Education & Learning" - }, - { - "id": null, - "name": "Human & Social Impact" - }, - { - "id": null, - "name": "Climate Finance & Ecosystem Alignment" - } - ], - "investment_stages": [ - { - "id": null, - "stage": "SEED" - }, - { - "id": null, - "stage": "SERIES_A" - }, - { - "id": null, - "stage": "SERIES_B" - }, - { - "id": null, - "stage": "SERIES_C" - }, - { - "id": null, - "stage": "GROWTH" - } - ] -} - diff --git a/preprocessor/migrate_database.py b/preprocessor/migrate_database.py deleted file mode 100644 index d16d6e1..0000000 --- a/preprocessor/migrate_database.py +++ /dev/null @@ -1,131 +0,0 @@ -""" -Migration script to update existing database schema -Converts AUM from INTEGER to TEXT and adds new columns -""" - -import logging -import sqlite3 - -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - - -def migrate_database(db_path="version_two.db"): - """Migrate existing database to new schema""" - - conn = sqlite3.connect(db_path) - cursor = conn.cursor() - - logger.info("Starting database migration...") - - try: - # Check current schema - cursor.execute("PRAGMA table_info(investors);") - columns = {col[1]: col[2] for col in cursor.fetchall()} - - # 1. Convert AUM from INTEGER to TEXT - if "aum" in columns and columns["aum"] == "INTEGER": - logger.info("Converting AUM from INTEGER to TEXT...") - cursor.execute("ALTER TABLE investors RENAME COLUMN aum TO aum_old;") - cursor.execute("ALTER TABLE investors ADD COLUMN aum TEXT;") - cursor.execute( - "UPDATE investors SET aum = CAST(aum_old AS TEXT) WHERE aum_old IS NOT NULL;" - ) - cursor.execute("ALTER TABLE investors DROP COLUMN aum_old;") - logger.info("✅ AUM converted to TEXT") - - # 2. Add new columns if they don't exist - new_columns = { - "headquarters": "TEXT", - "aum_as_of_date": "TEXT", - "aum_source_url": "TEXT", - "investment_thesis": "JSON", - "portfolio_highlights": "JSON", - "linked_documents": "JSON", - "researcher_notes": "TEXT", - "missing_important_fields": "JSON", - "sources": "JSON", - } - - for col_name, col_type in new_columns.items(): - if col_name not in columns: - logger.info(f"Adding column: {col_name} ({col_type})") - cursor.execute( - f"ALTER TABLE investors ADD COLUMN {col_name} {col_type};" - ) - - # 3. Add new columns to investor_members if they don't exist - cursor.execute("PRAGMA table_info(investor_members);") - member_columns = {col[1]: col[2] for col in cursor.fetchall()} - - if "title" not in member_columns: - logger.info("Adding 'title' to investor_members") - cursor.execute("ALTER TABLE investor_members ADD COLUMN title TEXT;") - - if "source_url" not in member_columns: - logger.info("Adding 'source_url' to investor_members") - cursor.execute("ALTER TABLE investor_members ADD COLUMN source_url TEXT;") - - # 4. Check if funds table exists - cursor.execute( - "SELECT name FROM sqlite_master WHERE type='table' AND name='funds';" - ) - if not cursor.fetchone(): - logger.info("Creating funds table...") - cursor.execute(""" - CREATE TABLE funds ( - id INTEGER NOT NULL PRIMARY KEY, - investor_id INTEGER NOT NULL, - fund_name VARCHAR, - fund_size VARCHAR, - fund_size_source_url VARCHAR, - estimated_investment_size VARCHAR, - source_url VARCHAR, - source_provider VARCHAR, - geographic_focus JSON, - investment_stage_focus JSON, - sector_focus JSON, - created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - updated_at DATETIME, - FOREIGN KEY(investor_id) REFERENCES investors (id) - ); - """) - logger.info("✅ Funds table created") - - conn.commit() - logger.info("\n🎉 Migration completed successfully!") - - # Show summary - cursor.execute("PRAGMA table_info(investors);") - investor_cols = cursor.fetchall() - logger.info(f"\nInvestors table now has {len(investor_cols)} columns") - - cursor.execute("SELECT COUNT(*) FROM investors;") - investor_count = cursor.fetchone()[0] - logger.info(f"Investors in database: {investor_count}") - - cursor.execute("SELECT COUNT(*) FROM funds;") - fund_count = cursor.fetchone()[0] - logger.info(f"Funds in database: {fund_count}") - - except Exception as e: - logger.error(f"Migration failed: {e}") - conn.rollback() - raise - finally: - conn.close() - - -if __name__ == "__main__": - import sys - - db_file = sys.argv[1] if len(sys.argv) > 1 else "version_two.db" - - print(f"Migrating database: {db_file}") - print("⚠️ This will modify your database. Make sure you have a backup!") - - response = input("Continue? (yes/no): ") - if response.lower() in ["yes", "y"]: - migrate_database(db_file) - else: - print("Migration cancelled") diff --git a/preprocessor/migrate_fund_relationships.py b/preprocessor/migrate_fund_relationships.py deleted file mode 100644 index deef75c..0000000 --- a/preprocessor/migrate_fund_relationships.py +++ /dev/null @@ -1,250 +0,0 @@ -#!/usr/bin/env python3 -""" -Migration script to update fund table schema: -1. Change geographic_focus from JSON to STRING -2. Create investment_stages table and fund_investment_stages association table -3. Create fund_sectors association table for many-to-many with sectors -4. Remove investment_stage_focus and sector_focus JSON columns -""" - -import sqlite3 -from pathlib import Path - - -def migrate_fund_relationships(): - db_path = Path(__file__).parent / "version_two.db" - conn = sqlite3.connect(db_path) - cursor = conn.cursor() - - print("🔄 Starting fund relationships migration...") - - try: - # Step 1: Drop and recreate investment_stages table with correct schema - print("1️⃣ Recreating investment_stages table...") - cursor.execute("DROP TABLE IF EXISTS investment_stages") - cursor.execute(""" - CREATE TABLE investment_stages ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - name VARCHAR NOT NULL UNIQUE, - created_at DATETIME DEFAULT CURRENT_TIMESTAMP, - updated_at DATETIME - ) - """) - - # Insert standard investment stages - stages = [ - "Seed", - "Pre-Seed", - "Series A", - "Series B", - "Series C", - "Series D+", - "Growth", - "Late Stage", - "IPO", - "Venture", - "Early Stage", - ] - for stage in stages: - cursor.execute( - """ - INSERT OR IGNORE INTO investment_stages (name) VALUES (?) - """, - (stage,), - ) - - print(f" ✅ Created investment_stages table with {len(stages)} stages") - - # Step 2: Create fund_investment_stages association table - print("2️⃣ Creating fund_investment_stages association table...") - cursor.execute(""" - CREATE TABLE IF NOT EXISTS fund_investment_stages ( - fund_id INTEGER NOT NULL, - stage_id INTEGER NOT NULL, - PRIMARY KEY (fund_id, stage_id), - FOREIGN KEY (fund_id) REFERENCES funds (id) ON DELETE CASCADE, - FOREIGN KEY (stage_id) REFERENCES investment_stages (id) ON DELETE CASCADE - ) - """) - print(" ✅ Created fund_investment_stages association table") - - # Step 3: Create fund_sectors association table - print("3️⃣ Creating fund_sectors association table...") - cursor.execute(""" - CREATE TABLE IF NOT EXISTS fund_sectors ( - fund_id INTEGER NOT NULL, - sector_id INTEGER NOT NULL, - PRIMARY KEY (fund_id, sector_id), - FOREIGN KEY (fund_id) REFERENCES funds (id) ON DELETE CASCADE, - FOREIGN KEY (sector_id) REFERENCES sectors (id) ON DELETE CASCADE - ) - """) - print(" ✅ Created fund_sectors association table") - - # Step 4: Get current funds table columns - cursor.execute("PRAGMA table_info(funds)") - columns = {col[1]: col for col in cursor.fetchall()} - print(f"\n📊 Current funds table has {len(columns)} columns") - - # Step 5: Create new funds table with updated schema - print("4️⃣ Creating new funds table schema...") - cursor.execute(""" - CREATE TABLE funds_new ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - investor_id INTEGER NOT NULL, - fund_name VARCHAR, - fund_size INTEGER, - fund_size_source_url VARCHAR, - check_size_lower INTEGER, - check_size_upper INTEGER, - source_url VARCHAR, - source_provider VARCHAR, - geographic_focus VARCHAR, - created_at DATETIME DEFAULT CURRENT_TIMESTAMP, - updated_at DATETIME, - FOREIGN KEY (investor_id) REFERENCES investors (id) - ) - """) - - # Step 6: Copy data from old table to new table - print("5️⃣ Copying data from old funds table...") - cursor.execute(""" - INSERT INTO funds_new ( - id, investor_id, fund_name, fund_size, fund_size_source_url, - check_size_lower, check_size_upper, source_url, source_provider, - geographic_focus, created_at, updated_at - ) - SELECT - id, investor_id, fund_name, fund_size, fund_size_source_url, - check_size_lower, check_size_upper, source_url, source_provider, - CASE - WHEN geographic_focus IS NOT NULL AND geographic_focus != '[]' - THEN REPLACE(REPLACE(geographic_focus, '["', ''), '"]', '') - ELSE NULL - END as geographic_focus, - created_at, updated_at - FROM funds - """) - rows_copied = cursor.rowcount - print(f" ✅ Copied {rows_copied} rows") - - # Step 7: Migrate investment_stage_focus data to association table - print("6️⃣ Migrating investment stage focus data...") - cursor.execute(""" - SELECT id, investment_stage_focus FROM funds - WHERE investment_stage_focus IS NOT NULL AND investment_stage_focus != '[]' - """) - funds_with_stages = cursor.fetchall() - - stage_migrations = 0 - for fund_id, stages_json in funds_with_stages: - if stages_json: - try: - import json - - stages = json.loads(stages_json) - for stage_name in stages: - # Find matching stage - cursor.execute( - """ - SELECT id FROM investment_stages WHERE name = ? - """, - (stage_name,), - ) - result = cursor.fetchone() - if result: - stage_id = result[0] - cursor.execute( - """ - INSERT OR IGNORE INTO fund_investment_stages (fund_id, stage_id) - VALUES (?, ?) - """, - (fund_id, stage_id), - ) - stage_migrations += 1 - except: - pass - - print(f" ✅ Migrated {stage_migrations} stage relationships") - - # Step 8: Migrate sector_focus data to association table - print("7️⃣ Migrating sector focus data...") - cursor.execute(""" - SELECT id, sector_focus FROM funds - WHERE sector_focus IS NOT NULL AND sector_focus != '[]' - """) - funds_with_sectors = cursor.fetchall() - - sector_migrations = 0 - for fund_id, sectors_json in funds_with_sectors: - if sectors_json: - try: - import json - - sectors = json.loads(sectors_json) - for sector_name in sectors: - # Find or create sector - cursor.execute( - """ - SELECT id FROM sectors WHERE name = ? - """, - (sector_name,), - ) - result = cursor.fetchone() - if result: - sector_id = result[0] - else: - cursor.execute( - """ - INSERT INTO sectors (name) VALUES (?) - """, - (sector_name,), - ) - sector_id = cursor.lastrowid - - cursor.execute( - """ - INSERT OR IGNORE INTO fund_sectors (fund_id, sector_id) - VALUES (?, ?) - """, - (fund_id, sector_id), - ) - sector_migrations += 1 - except: - pass - - print(f" ✅ Migrated {sector_migrations} sector relationships") - - # Step 9: Drop old funds table - print("8️⃣ Dropping old funds table...") - cursor.execute("DROP TABLE funds") - - # Step 10: Rename new table to funds - print("9️⃣ Renaming funds_new to funds...") - cursor.execute("ALTER TABLE funds_new RENAME TO funds") - - # Commit all changes - conn.commit() - - print("\n✅ Migration completed successfully!") - print("\n📝 Summary:") - print(f" - Created investment_stages table with {len(stages)} stages") - print(" - Created fund_investment_stages association table") - print(" - Created fund_sectors association table") - print(f" - Migrated {rows_copied} fund records") - print(f" - Migrated {stage_migrations} stage relationships") - print(f" - Migrated {sector_migrations} sector relationships") - print(" - geographic_focus: JSON → STRING") - print(" - investment_stage_focus: REMOVED (now in fund_investment_stages)") - print(" - sector_focus: REMOVED (now in fund_sectors)") - - except Exception as e: - conn.rollback() - print(f"\n❌ Migration failed: {e}") - raise - finally: - conn.close() - - -if __name__ == "__main__": - migrate_fund_relationships() diff --git a/preprocessor/migrate_fund_schema.py b/preprocessor/migrate_fund_schema.py deleted file mode 100644 index dae12bf..0000000 --- a/preprocessor/migrate_fund_schema.py +++ /dev/null @@ -1,159 +0,0 @@ -""" -Migration script to update FundTable schema: -- Change fund_size from VARCHAR to INTEGER -- Remove estimated_investment_size column -- Add check_size_lower INTEGER column -- Add check_size_upper INTEGER column -""" - -import sys -from pathlib import Path - -# Add preprocessor to path -sys.path.insert(0, str(Path(__file__).parent)) - -from models import engine -from sqlalchemy import text - - -def migrate_fund_table(): - """ - Migrate the funds table to add check_size fields and update fund_size type. - - SQLite doesn't support ALTER COLUMN directly, so we need to: - 1. Create new table with correct schema - 2. Copy data from old table - 3. Drop old table - 4. Rename new table - """ - - print("🔄 Starting fund table migration...") - - with engine.connect() as conn: - # Start transaction - trans = conn.begin() - - try: - # Check if migration is needed - result = conn.execute(text("PRAGMA table_info(funds)")) - columns = {row[1]: row[2] for row in result} - - if "check_size_lower" in columns and "check_size_upper" in columns: - print("✅ Migration already applied - check_size columns exist") - return - - print("📊 Current columns:", list(columns.keys())) - - # Create new table with updated schema - print("\n1️⃣ Creating new funds table with updated schema...") - conn.execute( - text(""" - CREATE TABLE IF NOT EXISTS funds_new ( - id INTEGER PRIMARY KEY, - investor_id INTEGER NOT NULL, - fund_name VARCHAR, - fund_size INTEGER, - fund_size_source_url VARCHAR, - check_size_lower INTEGER, - check_size_upper INTEGER, - source_url VARCHAR, - source_provider VARCHAR, - geographic_focus JSON, - investment_stage_focus JSON, - sector_focus JSON, - created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, - updated_at DATETIME, - FOREIGN KEY (investor_id) REFERENCES investors(id) - ) - """) - ) - - # Copy data from old table to new table - print("2️⃣ Copying data from old table...") - - # Check if old estimated_investment_size column exists - if "estimated_investment_size" in columns: - # We have estimated_investment_size but it's a string - # We'll set check_size fields to NULL for now - they'll be repopulated when re-parsing - conn.execute( - text(""" - INSERT INTO funds_new ( - id, investor_id, fund_name, fund_size, fund_size_source_url, - check_size_lower, check_size_upper, - source_url, source_provider, - geographic_focus, investment_stage_focus, sector_focus, - created_at, updated_at - ) - SELECT - id, investor_id, fund_name, - CAST(fund_size AS INTEGER) as fund_size, - fund_size_source_url, - NULL as check_size_lower, - NULL as check_size_upper, - source_url, source_provider, - geographic_focus, investment_stage_focus, sector_focus, - created_at, updated_at - FROM funds - """) - ) - else: - # No estimated_investment_size column (fresh install or already migrated partially) - conn.execute( - text(""" - INSERT INTO funds_new ( - id, investor_id, fund_name, fund_size, fund_size_source_url, - check_size_lower, check_size_upper, - source_url, source_provider, - geographic_focus, investment_stage_focus, sector_focus, - created_at, updated_at - ) - SELECT - id, investor_id, fund_name, - CAST(fund_size AS INTEGER) as fund_size, - fund_size_source_url, - NULL as check_size_lower, - NULL as check_size_upper, - source_url, source_provider, - geographic_focus, investment_stage_focus, sector_focus, - created_at, updated_at - FROM funds - """) - ) - - rows_copied = conn.execute( - text("SELECT COUNT(*) FROM funds_new") - ).fetchone()[0] - print(f" ✅ Copied {rows_copied} rows") - - # Drop old table - print("3️⃣ Dropping old funds table...") - conn.execute(text("DROP TABLE funds")) - - # Rename new table - print("4️⃣ Renaming funds_new to funds...") - conn.execute(text("ALTER TABLE funds_new RENAME TO funds")) - - # Commit transaction - trans.commit() - - print("\n✅ Migration completed successfully!") - print("\n📝 Summary:") - print(" - fund_size: VARCHAR → INTEGER") - print(" - estimated_investment_size: REMOVED") - print(" - check_size_lower: ADDED (INTEGER)") - print(" - check_size_upper: ADDED (INTEGER)") - print(f" - {rows_copied} fund records migrated") - - print( - "\n⚠️ Note: check_size_lower and check_size_upper are NULL for existing records." - ) - print(" Run the investor CSV parser again to populate these fields.") - - except Exception as e: - trans.rollback() - print(f"\n❌ Migration failed: {e}") - raise - - -if __name__ == "__main__": - migrate_fund_table() diff --git a/preprocessor/models.py.backup b/preprocessor/models.py.backup deleted file mode 100644 index 5e73c07..0000000 --- a/preprocessor/models.py.backup +++ /dev/null @@ -1,367 +0,0 @@ -import enum -from typing import Annotated - -from fastapi import Depends -from sqlalchemy import ( - Column, - DateTime, - ForeignKey, - Integer, - String, - Tableclass InvestorMember(Base, TimestampMixin): - __tablename__ = "investor_members" - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - role = Column(String, nullable=True) - title = Column(String, nullable=True) # Alternative to role - email = Column(String, nullable=True) - source_url = Column(String, nullable=True) # URL where member info was found - - investor_id = Column(Integer, ForeignKey("investors.id")) - investor = relationship("InvestorTable", back_populates="team_members") - - -class FundTable(Base, TimestampMixin): - __tablename__ = "funds" - - id = Column(Integer, primary_key=True, index=True) - investor_id = Column(Integer, ForeignKey("investors.id"), nullable=False) - - # Fund details - fund_name = Column(String, nullable=True) - fund_size = Column(String, nullable=True) # Store as string to preserve currency - fund_size_source_url = Column(String, nullable=True) - estimated_investment_size = Column(String, nullable=True) # e.g., "EUR 1,000 to 2,000" - source_url = Column(String, nullable=True) - source_provider = Column(String, nullable=True) # e.g., "Perplexity" - - # JSON array fields - geographic_focus = Column(JSON, nullable=True) # Array of regions/countries - investment_stage_focus = Column(JSON, nullable=True) # Array of stages - sector_focus = Column(JSON, nullable=True) # Array of sectors - - # Relationships - investor = relationship("InvestorTable", back_populates="funds") - - -class InvestmentStageTable(Base, TimestampMixin): create_engine, - func, -) -from sqlalchemy.ext.declarative import declarative_base -from sqlalchemy.orm import Session, declarative_mixin, relationship, sessionmaker -from sqlalchemy.types import Enum, JSON, JSON - -Base = declarative_base() - -# Database configuration -# DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///./investors.db") - -# Create engine -engine = create_engine("sqlite:///./version_two.db", echo=False) - -# Create session factory -SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) - - -def get_db(): - db = SessionLocal() - try: - yield db - finally: - db.close() - - -db_dependency = Annotated[Session, Depends(get_db)] - - -def init_database(): - """Initialize the database by creating all tables""" - Base.metadata.create_all(bind=engine) - - -def get_session_sync() -> Session: - """Get a database session for synchronous operations""" - return SessionLocal() - - -def get_db_session(): - """Get a database session for direct use.""" - return SessionLocal() - - -@declarative_mixin -class TimestampMixin: - created_at = Column( - DateTime(timezone=True), server_default=func.now(), nullable=False - ) - updated_at = Column(DateTime(timezone=True), onupdate=func.now()) - - -class InvestmentStage(enum.Enum): - SEED = "SEED" - SERIES_A = "SERIES_A" - SERIES_B = "SERIES_B" - SERIES_C = "SERIES_C" - GROWTH = "GROWTH" - LATE_STAGE = "LATE_STAGE" - - -# Association table for many-to-many relationship between investors and companies -investor_company_association = Table( - "investor_companies", - Base.metadata, - Column("investor_id", Integer, ForeignKey("investors.id")), - Column("company_id", Integer, ForeignKey("companies.id")), -) - - -# Association table for investor-sector many-to-many -investor_sector_association = Table( - "investor_sectors", - Base.metadata, - Column("investor_id", Integer, ForeignKey("investors.id")), - Column("sector_id", Integer, ForeignKey("sectors.id")), -) - - -company_sector_association = Table( - "company_sector", - Base.metadata, - Column("company_id", Integer, ForeignKey("companies.id")), - Column("sector_id", Integer, ForeignKey("sectors.id")), -) - -project_sector_association = Table( - "project_sector", - Base.metadata, - Column("project_id", Integer, ForeignKey("projects.id")), - Column("sector_id", Integer, ForeignKey("sectors.id")), -) - -project_investor_association = Table( - "project_investors", - Base.metadata, - Column("project_id", Integer, ForeignKey("projects.id")), - Column("investor_id", Integer, ForeignKey("investors.id")), -) - -project_company_association = Table( - "project_companies", - Base.metadata, - Column("project_id", Integer, ForeignKey("projects.id")), - Column("company_id", Integer, ForeignKey("companies.id")), -) - -# Association table for investor-stage many-to-many -investor_stage_association = Table( - "investor_stages", - Base.metadata, - Column("investor_id", Integer, ForeignKey("investors.id")), - Column("stage_id", Integer, ForeignKey("investment_stages.id")), -) - - -class InvestorTable(Base, TimestampMixin): - __tablename__ = "investors" - - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - description = Column(Text, nullable=True) - - # Basic investor info - website = Column(String, nullable=True) - headquarters = Column(String, nullable=True) - - # AUM fields - aum = Column(String, nullable=True) # Store as string to preserve currency (e.g., "EUR 850,000,000") - aum_as_of_date = Column(String, nullable=True) - aum_source_url = Column(String, nullable=True) - - # Check size (deprecated in favor of fund-level data, but keeping for backward compatibility) - check_size_lower = Column(Integer, nullable=True) - check_size_upper = Column(Integer, nullable=True) - - # Geographic focus (deprecated in favor of fund-level, but keeping for backward compatibility) - geographic_focus = Column(String, nullable=True) - - # Investment thesis and portfolio - investment_thesis = Column(JSON, nullable=True) # Array of thesis statements - portfolio_highlights = Column(JSON, nullable=True) # Array of portfolio company names - linked_documents = Column(JSON, nullable=True) # Array of document URLs - - # Research metadata - researcher_notes = Column(Text, nullable=True) - missing_important_fields = Column(JSON, nullable=True) # Array of missing field names - sources = Column(JSON, nullable=True) # JSON object with source URLs - - # Portfolio info - number_of_investments = Column(Integer, nullable=True) - - # Relationships - team_members = relationship("InvestorMember", back_populates="investor") - funds = relationship("FundTable", back_populates="investor", cascade="all, delete-orphan") - - # Many-to-many relationship with investment stages - investment_stages = relationship( - "InvestmentStageTable", - secondary=investor_stage_association, - back_populates="investors", - ) - - # Relationship to portfolio companies - portfolio_companies = relationship( - "CompanyTable", - secondary=investor_company_association, - back_populates="investors", - ) - - sectors = relationship( - "SectorTable", - secondary=investor_sector_association, - back_populates="investors", - ) - - projects = relationship( - "ProjectTable", - secondary=project_investor_association, - back_populates="investors", - ) - - -class InvestorMember(Base, TimestampMixin): - __tablename__ = "investor_members" - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - role = Column(String, nullable=True) - title = Column(String, nullable=True) # Alternative to role - email = Column(String, nullable=True) - source_url = Column(String, nullable=True) # URL where member info was found - - investor_id = Column(Integer, ForeignKey("investors.id")) - investor = relationship("InvestorTable", back_populates="team_members") - - -class FundTable(Base, TimestampMixin): - __tablename__ = "funds" - - id = Column(Integer, primary_key=True, index=True) - investor_id = Column(Integer, ForeignKey("investors.id"), nullable=False) - - # Fund details - fund_name = Column(String, nullable=True) - fund_size = Column(String, nullable=True) # Store as string to preserve currency - fund_size_source_url = Column(String, nullable=True) - estimated_investment_size = Column(String, nullable=True) # e.g., "EUR 1,000 to 2,000" - source_url = Column(String, nullable=True) - source_provider = Column(String, nullable=True) # e.g., "Perplexity" - - # JSON array fields - geographic_focus = Column(JSON, nullable=True) # Array of regions/countries - investment_stage_focus = Column(JSON, nullable=True) # Array of stages - sector_focus = Column(JSON, nullable=True) # Array of sectors - - # Relationships - investor = relationship("InvestorTable", back_populates="funds") - - -class InvestmentStageTable(Base, TimestampMixin): - __tablename__ = "investment_stages" - - id = Column(Integer, primary_key=True, index=True) - stage = Column(Enum(InvestmentStage), nullable=False, unique=True) - - # Relationship back to investors - investors = relationship( - "InvestorTable", - secondary=investor_stage_association, - back_populates="investment_stages", - ) - - -class CompanyTable(Base, TimestampMixin): - __tablename__ = "companies" - - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - industry = Column(String, nullable=True) - location = Column(String, nullable=True) - description = Column(String, nullable=True) - founded_year = Column(Integer, nullable=True) - website = Column(String, nullable=True) - - members = relationship("CompanyMember", back_populates="company") - # Relationship back to investors - investors = relationship( - "InvestorTable", - secondary=investor_company_association, - back_populates="portfolio_companies", - ) - - sectors = relationship( - "SectorTable", secondary=company_sector_association, back_populates="companies" - ) - - projects = relationship( - "ProjectTable", - secondary=project_company_association, - back_populates="companies", - ) - - -class CompanyMember(Base, TimestampMixin): - __tablename__ = "company_members" - id = Column(Integer, primary_key=True) - name = Column(String) - linkedin = Column(String, nullable=True) - role = Column(String, nullable=True) - company_id = Column(Integer, ForeignKey("companies.id"), nullable=False) - - company = relationship("CompanyTable", back_populates="members") - - -class SectorTable(Base, TimestampMixin): - __tablename__ = "sectors" - - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - - # Add relationship back to investors - investors = relationship( - "InvestorTable", - secondary=investor_sector_association, - back_populates="sectors", - ) - - companies = relationship( - "CompanyTable", secondary=company_sector_association, back_populates="sectors" - ) - - projects = relationship( - "ProjectTable", secondary=project_sector_association, back_populates="sector" - ) - - -class ProjectTable(Base, TimestampMixin): - __tablename__ = "projects" - - id = Column(Integer, primary_key=True, index=True) - name = Column(String, nullable=False) - valuation = Column(Integer, nullable=True) - - stage = Column(Enum(InvestmentStage), nullable=True) - location = Column(String, nullable=True) - description = Column(Text, nullable=True) - start_date = Column(DateTime, nullable=True) - end_date = Column(DateTime, nullable=True) - - sector = relationship( - "SectorTable", secondary=project_sector_association, back_populates="projects" - ) - investors = relationship( - "InvestorTable", - secondary=project_investor_association, - back_populates="projects", - ) - companies = relationship( - "CompanyTable", secondary=project_company_association, back_populates="projects" - ) diff --git a/preprocessor/verify_database.py b/preprocessor/verify_database.py deleted file mode 100644 index 1ed2f7f..0000000 --- a/preprocessor/verify_database.py +++ /dev/null @@ -1,121 +0,0 @@ -#!/usr/bin/env python3 -""" -Quick verification script for the database -""" - -from models import CompanyTable, FundTable, InvestorTable, SectorTable, get_db_session - - -def verify_database(): - session = get_db_session() - - print("=" * 60) - print("🔍 DATABASE VERIFICATION") - print("=" * 60) - - # Count records - investor_count = session.query(InvestorTable).count() - company_count = session.query(CompanyTable).count() - sector_count = session.query(SectorTable).count() - fund_count = session.query(FundTable).count() - - print("\n📊 Record Counts:") - print(f" Investors: {investor_count:,}") - print(f" Companies: {company_count:,}") - print(f" Sectors: {sector_count:,}") - print(f" Funds: {fund_count:,}") - - # Check relationships - investors_with_companies = ( - session.query(InvestorTable) - .filter(InvestorTable.portfolio_companies.any()) - .count() - ) - - investors_with_sectors = ( - session.query(InvestorTable).filter(InvestorTable.sectors.any()).count() - ) - - print("\n🔗 Relationships:") - print(f" Investors with portfolio companies: {investors_with_companies:,}") - print(f" Investors with sectors: {investors_with_sectors:,}") - - # Sample data quality checks - investors_with_website = ( - session.query(InvestorTable).filter(InvestorTable.website.isnot(None)).count() - ) - - investors_with_investments = ( - session.query(InvestorTable) - .filter( - InvestorTable.number_of_investments.isnot(None), - InvestorTable.number_of_investments > 0, - ) - .count() - ) - - print("\n✅ Data Quality:") - print( - f" Investors with website: {investors_with_website:,} ({investors_with_website / investor_count * 100:.1f}%)" - ) - print( - f" Investors with investment count: {investors_with_investments:,} ({investors_with_investments / investor_count * 100:.1f}%)" - ) - - # Check for enrichment readiness - investors_with_aum = ( - session.query(InvestorTable).filter(InvestorTable.aum.isnot(None)).count() - ) - - investors_with_headquarters = ( - session.query(InvestorTable) - .filter(InvestorTable.headquarters.isnot(None)) - .count() - ) - - investors_with_thesis = ( - session.query(InvestorTable) - .filter(InvestorTable.investment_thesis.isnot(None)) - .count() - ) - - print("\n🎯 Enrichment Status:") - print(f" Investors with AUM: {investors_with_aum:,}") - print(f" Investors with HQ: {investors_with_headquarters:,}") - print(f" Investors with thesis: {investors_with_thesis:,}") - print(f" Investors with funds: {fund_count:,}") - - if fund_count == 0: - print("\n⚠️ No funds found - enrichment needed!") - - # Show a random sample - import random - - sample_investors = session.query(InvestorTable).limit(1000).all() - sample = random.sample(sample_investors, min(3, len(sample_investors))) - - print("\n📋 Random Sample:") - for inv in sample: - print(f"\n {inv.name}") - print(f" Website: {inv.website or 'N/A'}") - print(f" Investments: {inv.number_of_investments or 'N/A'}") - print(f" Portfolio: {len(inv.portfolio_companies)} companies") - print(f" Sectors: {len(inv.sectors)} sectors") - if inv.funds: - print(f" Funds: {len(inv.funds)}") - - session.close() - - print("\n" + "=" * 60) - - if fund_count == 0: - print("📝 Next step: Run enrichment script") - print(" python enrich_investors.py enriched_investors.csv") - else: - print("✅ Database is enriched and ready!") - - print("=" * 60) - - -if __name__ == "__main__": - verify_database() diff --git a/preprocessor/version_two.db b/preprocessor/version_two.db deleted file mode 100644 index f040109..0000000 Binary files a/preprocessor/version_two.db and /dev/null differ diff --git a/preprocessor/version_two.db.backup_20251005_191749 b/preprocessor/version_two.db.backup_20251005_191749 deleted file mode 100644 index e3d9d2b..0000000 Binary files a/preprocessor/version_two.db.backup_20251005_191749 and /dev/null differ diff --git a/preprocessor/web_crawler.py b/preprocessor/web_crawler.py deleted file mode 100644 index 63c453e..0000000 --- a/preprocessor/web_crawler.py +++ /dev/null @@ -1,349 +0,0 @@ -import asyncio -import logging -import os -from typing import Optional - -from crawl4ai import AsyncWebCrawler -from web_crawler_schemas import InvestorDataScrape -from ddgs import DDGS -from dotenv import load_dotenv -from langchain_openai import ChatOpenAI -from langgraph.prebuilt import create_react_agent -from models import ( - CompanyTable, - InvestmentStageTable, - InvestorMember, - InvestorTable, - SectorTable, - engine, -) -from sqlalchemy.orm import sessionmaker - -Session = sessionmaker(bind=engine) -session = Session() - -# ------------------------------------------------------------------ -# Logging setup -# ------------------------------------------------------------------ -logging.basicConfig( - level=logging.INFO, format="%(asctime)s [%(levelname)s] %(name)s: %(message)s" -) -logger = logging.getLogger("web_search_agent") - -# ------------------------------------------------------------------ -# Environment -# ------------------------------------------------------------------ -load_dotenv() -OPENROUTER_API_KEY = os.getenv("OPENROUTER_API_KEY") - -if not OPENROUTER_API_KEY: - logger.warning("OPENROUTER_API_KEY not set. LLM calls will fail if invoked.") - - -class QueryProcessor: - def __init__(self, sql_session: Optional[object] = None): - self.sql_session = sql_session - - self.llm = ChatOpenAI( - api_key=OPENROUTER_API_KEY, - base_url="https://openrouter.ai/api/v1", - model="openai/gpt-5-nano", - temperature=0, - ) - self.agent = create_react_agent( - model=self.llm, - tools=[self.crawl, self.web_search], - response_format=InvestorDataScrape, - ) - - self.ddg_search = DDGS() - - async def fill_investor(self, investor: InvestorTable): - inv_dict = { - col.name: getattr(investor, col.name) for col in investor.__table__.columns - } - - website = inv_dict.get("website", "No Website") - name = inv_dict.get("name", "Unknown") - description = inv_dict.get("description", "No description") - aum = inv_dict.get("aum", "Unknown") - check_size_lower = inv_dict.get("check_size_lower", "Unknown") - check_size_upper = inv_dict.get("check_size_upper", "Unknown") - geographic_focus = inv_dict.get("geographic_focus", "Unknown") - number_of_investments = inv_dict.get("number_of_investments", "Unknown") - - print(website) - - prompt = f""" - You are a crawler agent. You will be provided with information about a venture capital investor and their website. - Your task is to navigate the website to find and enrich the existing information. - If the website is not available, use the `web_search` tool to google the name of the investor company. - Use the `crawl` tool to visit web pages and extract information. - - Current investor information: - - Name: {name} - - Website: {website} - - Description: {description} - - Assets Under Management: {aum} - - Check Size Lower: {check_size_lower} - - Check Size Upper: {check_size_upper} - - Geographic Focus: {geographic_focus} - - Number of Investments: {number_of_investments} - - IMPORTANT: Investment Stages - Investors often focus on MULTIPLE stages. Look for: - - "Seed to Series A" = [SEED, SERIES_A] - - "Early stage" = [SEED, SERIES_A] - - "Growth stage" = [SERIES_B, SERIES_C, GROWTH] - - "Multi-stage" = [SEED, SERIES_A, SERIES_B, SERIES_C] - - "Late stage" = [GROWTH, LATE_STAGE] - - "Series A and B" = [SERIES_A, SERIES_B] - - IMPORTANT: Additional guidance for AUM and Check Size - - "Check size" may also be written as "ticket size", "investment size", "typical investment range", or "investment amount". - - "Assets under management (AUM)" may also be called "fund size", "capital under management", or "fund raised". - - If not on the official website, search news and databases like Crunchbase, PitchBook, Dealroom, TechCrunch, PRNewswire, or EU-Startups. - - Look for numbers with currency symbols (€,$,£) followed by "M", "B", "million", or "billion". - - Example: "fund size €200M", "typical tickets $1–5M", "raised £1 billion". - - Follow these steps: - 1. Use the `crawl` tool with the main website URL to get the initial content. - 2. Analyze the returned content. Look for links or sections related to the information you need (About, Team, Portfolio, Investments, Funds). - 3. If you find a relevant URL, call the `crawl` tool again with that new URL to get more detailed information. - 4. If AUM or check size are still missing, immediately perform 1–2 `web_search` queries such as: - - "{name} fund size site:techcrunch.com" - - "{name} ticket size site:eu-startups.com" - - "{name} raises fund site:prnewswire.com" - 5. Continue this process, exploring relevant pages, until you have gathered all the required information. - 6. Extract and update the following information: - - investor: Core investor data (name, description, aum, check_size_lower, check_size_upper, geographic_focus, number_of_investments) - - team_members: List of key members with name, role, and email/LinkedIn - - sectors: List of investment sectors they focus on - - investment_stages: List of ALL investment stages they focus on (can be multiple!) - 7. If any information is not available or cannot be improved, leave it as null or use existing data. - - Stop crawling/searching once you have found the missing information or confirmed it is not available online. - - Website: {website} - """ - - return prompt - - async def crawl(self, url: str): - """Tool to search the web using a web crawler. given the url""" - print(f"🕷️ Crawling: {url}") - try: - if url == "No Website" or not url or url.strip() == "": - return "No website provided for this investor. Please use web_search to find information." - - async with AsyncWebCrawler() as crawler: - results = await crawler.arun(url) - return results.markdown[:5000] # Limit content to avoid token limits - except Exception as e: - print(f"❌ Failed to crawl {url}: {e}") - return f"Failed to crawl website: {e}. Please try web_search instead." - - def web_search(self, query: str): - """Tool to search the web using google""" - print(f"🔍 Searching: {query}") - try: - result = self.ddg_search.text(query, max_results=10, backend="google") - # Format results for better LLM consumption - formatted_results = [] - for r in result: - formatted_results.append( - { - "title": r.get("title", ""), - "url": r.get("href", ""), - "snippet": r.get("body", ""), - } - ) - return formatted_results - except Exception as e: - print(f"❌ Search failed: {e}") - return f"Search failed: {e}" - - -def needs_enrichment(investor: InvestorTable) -> bool: - """Check if an investor needs enrichment based on missing fields""" - missing_fields = [] - - if not investor.description: - missing_fields.append("description") - if not investor.aum: - missing_fields.append("aum") - if not investor.check_size_lower or not investor.check_size_upper: - missing_fields.append("check_size") - if not investor.geographic_focus: - missing_fields.append("geographic_focus") - if not investor.investment_stages: - missing_fields.append("investment_stages") - if not investor.team_members: - missing_fields.append("team_members") - - if missing_fields: - print(f"Investor {investor.name} missing: {', '.join(missing_fields)}") - return True - return False - - -def update_investor(session, investor: InvestorTable, data: InvestorDataScrape): - """Update an InvestorTable row with extracted data, safely handling members and relationships.""" - - # --- Core investor info --- - if data.investor.description: - investor.description = data.investor.description - - if data.investor.aum: - investor.aum = data.investor.aum - - if data.investor.check_size_lower: - investor.check_size_lower = data.investor.check_size_lower - - if data.investor.check_size_upper: - investor.check_size_upper = data.investor.check_size_upper - - if data.investor.geographic_focus: - investor.geographic_focus = data.investor.geographic_focus - - if data.investor.number_of_investments: - investor.number_of_investments = data.investor.number_of_investments - - # --- Investment Stages (NEW) --- - if data.investment_stages: - # Get current stage IDs for comparison - current_stage_enums = {stage.stage for stage in investor.investment_stages} - - for stage_data in data.investment_stages: - if stage_data.stage not in current_stage_enums: - # Check if stage already exists in database - existing_stage = ( - session.query(InvestmentStageTable) - .filter_by(stage=stage_data.stage) - .first() - ) - - if not existing_stage: - # Create new stage record - existing_stage = InvestmentStageTable(stage=stage_data.stage) - session.add(existing_stage) - session.flush() # Get the ID - - # Add to investor's stages - investor.investment_stages.append(existing_stage) - - # --- Team Members --- - if data.team_members: - # Index current members by name for quick lookup - current_members = {m.name.lower(): m for m in investor.team_members if m.name} - - for m in data.team_members: - if not m.name: - continue - normalized = m.name.strip().lower() - - if normalized in current_members: - # Update existing member - member_obj = current_members[normalized] - if m.role: - member_obj.role = m.role - if m.email: - member_obj.email = m.email - else: - # Create new member - member_obj = InvestorMember( - name=m.name.strip(), - role=m.role, - email=m.email, - investor=investor, - ) - session.add(member_obj) - - # --- Sectors --- - if data.sectors: - for sector_data in data.sectors: - if not sector_data.name: - continue - - # Check if sector already exists - existing_sector = ( - session.query(SectorTable).filter_by(name=sector_data.name).first() - ) - if not existing_sector: - existing_sector = SectorTable(name=sector_data.name) - session.add(existing_sector) - session.flush() # Get the ID - - # Add relationship if not already exists - if existing_sector not in investor.sectors: - investor.sectors.append(existing_sector) - - # --- Portfolio Companies --- - # if data.portfolio_companies: - # for company_data in data.portfolio_companies: - # if not company_data.name: - # continue - - # # Check if company already exists - # existing_company = ( - # session.query(CompanyTable).filter_by(name=company_data.name).first() - # ) - # if not existing_company: - # existing_company = CompanyTable( - # name=company_data.name, - # industry=company_data.industry, - # location=company_data.location, - # description=company_data.description, - # founded_year=company_data.founded_year, - # website=company_data.website, - # ) - # session.add(existing_company) - # session.flush() # Get the ID - - # # Add relationship if not already exists - # if existing_company not in investor.portfolio_companies: - # investor.portfolio_companies.append(existing_company) - - session.add(investor) - session.commit() - return investor - - -# ------------------------------------------------------------------ -# Main -# ------------------------------------------------------------------ -async def main(): - qp = QueryProcessor(sql_session=session) - all_investors = qp.sql_session.query(InvestorTable).all() if qp.sql_session else [] - - # Filter investors that need enrichment - investors_to_enrich = [inv for inv in all_investors if needs_enrichment(inv)] - - # print( - # f"Found {len(investors_to_enrich)} investors that need enrichment out of {len(all_investors)} total" - # ) - - # Process first 10 that need enrichment - for inv in investors_to_enrich[:10]: - try: - print(f"\n🔄 Processing investor: {inv.name}") - prompt = await qp.fill_investor(inv) - ai_response = await qp.agent.ainvoke({"messages": [("user", f"{prompt}")]}) - extracted = ai_response["structured_response"] - - # Save JSON backup - with open("enriched_investors.json", "a") as f: - f.write(f"# Investor: {inv.name}\n") - f.write(extracted.model_dump_json(indent=2) + "\n\n") - - # Update database - update_investor(session, inv, extracted) - - print(f"✅ Updated investor {inv.name} (id={inv.id})") - - except Exception as e: - logger.error(f"Failed to enrich investor {getattr(inv, 'id', None)}: {e}") - continue - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/preprocessor/web_crawler_schemas.py b/preprocessor/web_crawler_schemas.py deleted file mode 100644 index df58ab4..0000000 --- a/preprocessor/web_crawler_schemas.py +++ /dev/null @@ -1,408 +0,0 @@ -from enum import Enum -from typing import List, Optional - -from pydantic import BaseModel, Field, field_validator - - -class InvestmentStage(str, Enum): - SEED = "SEED" - SERIES_A = "SERIES_A" - SERIES_B = "SERIES_B" - SERIES_C = "SERIES_C" - GROWTH = "GROWTH" - LATE_STAGE = "LATE_STAGE" - - -class SectorSchema(BaseModel): - """ - Expert parser: Only extract sector information if clearly identifiable. - Leave name empty if uncertain about the sector classification. - """ - - id: Optional[int] = Field( - default=None, - ge=0, - description="Sector ID, must be 0 or greater. Use 0 if uncertain.", - ) - name: Optional[str] = Field( - default=None, - description="Sector name. Leave empty string if not clearly identifiable from the data.", - ) - - @field_validator("name", mode="before") - @classmethod - def empty_string_to_none(cls, v): - """Convert empty strings to None""" - if v == "" or (isinstance(v, str) and v.strip() == ""): - return None - return v - - @field_validator("id", mode="before") - @classmethod - def zero_to_none(cls, v): - """Convert 0 to None for optional id field""" - if v == 0: - return None - return v - - class Config: - from_attributes = True - - -class InvestorMemberSchema(BaseModel): - """ - Expert parser: Only extract team member information if clearly identifiable. - Leave fields empty if uncertain about the member details. - """ - - id: Optional[int] = Field( - default=None, - ge=0, - description="Member ID, must be 0 or greater. Use 0 if uncertain.", - ) - name: Optional[str] = Field( - default=None, - description="Team member name. Leave empty string if not clearly identifiable.", - ) - role: Optional[str] = Field( - default=None, - description="Team member role/title. Leave empty string if not clearly identifiable.", - ) - email: Optional[str] = Field( - default=None, - description="Team member email. Leave empty string if not clearly identifiable or not provided.", - ) - investor_id: Optional[int] = Field( - default=None, - ge=0, - description="Investor ID, must be 0 or greater. Use 0 if uncertain.", - ) - - @field_validator("name", "role", "email", mode="before") - @classmethod - def empty_string_to_none(cls, v): - """Convert empty strings to None""" - if v == "" or (isinstance(v, str) and v.strip() == ""): - return None - return v - - @field_validator("id", "investor_id", mode="before") - @classmethod - def zero_to_none(cls, v): - """Convert 0 to None for optional integer fields""" - if v == 0: - return None - return v - - class Config: - from_attributes = True - - -class CompanyMemberSchema(BaseModel): - """ - Expert parser: Only extract company member information if clearly identifiable. - Leave fields empty if uncertain about the member details. - """ - - id: Optional[int] = Field( - default=None, - ge=0, - description="Member ID, must be 0 or greater. Use 0 if uncertain.", - ) - name: Optional[str] = Field( - default=None, - description="Company member name. Leave empty if not clearly identifiable.", - ) - linkedin: Optional[str] = Field( - default=None, - description="LinkedIn profile URL. Leave empty if not provided or uncertain.", - ) - role: Optional[str] = Field( - default=None, - description="Company member role/title. Leave empty if not clearly identifiable.", - ) - company_id: Optional[int] = Field( - default=None, - ge=0, - description="Company ID, must be 0 or greater. Use 0 if uncertain.", - ) - - @field_validator("name", "linkedin", "role", mode="before") - @classmethod - def empty_string_to_none(cls, v): - """Convert empty strings to None""" - if v == "" or (isinstance(v, str) and v.strip() == ""): - return None - return v - - @field_validator("id", "company_id", mode="before") - @classmethod - def zero_to_none(cls, v): - """Convert 0 to None for optional integer fields""" - if v == 0: - return None - return v - - class Config: - from_attributes = True - - -class CompanySchema(BaseModel): - """ - Expert parser: Only extract company information if clearly identifiable. - Leave optional fields empty if uncertain. Integer values must be 0 or greater. - """ - - id: Optional[int] = Field( - default=None, - ge=0, - description="Company ID, must be 0 or greater. Use 0 if uncertain.", - ) - name: Optional[str] = Field( - default=None, - description="Company name. Leave empty string if not clearly identifiable.", - ) - industry: Optional[str] = Field( - default=None, - description="Company industry/sector. Leave empty string if not clearly identifiable.", - ) - location: Optional[str] = Field( - default=None, - description="Company location/address. Leave empty string if not clearly identifiable.", - ) - description: Optional[str] = Field( - default=None, - description="Company description. Leave empty if not clearly available or uncertain.", - ) - founded_year: Optional[int] = Field( - default=None, - ge=0, - description="Year company was founded, must be 0 or greater. Leave None if not clearly identifiable or uncertain.", - ) - website: Optional[str] = Field( - default=None, - description="Company website URL. Leave empty if not provided or uncertain.", - ) - - @field_validator( - "name", "industry", "location", "description", "website", mode="before" - ) - @classmethod - def empty_string_to_none(cls, v): - """Convert empty strings to None""" - if v == "" or (isinstance(v, str) and v.strip() == ""): - return None - return v - - @field_validator("id", "founded_year", mode="before") - @classmethod - def zero_to_none(cls, v): - """Convert 0 to None for founded_year""" - if v == 0: - return None - return v - - @field_validator("founded_year", mode="before") - @classmethod - def validate_founded_year(cls, v): - """Expert parser: Only accept clearly identifiable founding years""" - if v is None or v == "Not Available" or v == "" or v == "Unknown": - return None - if isinstance(v, str): - try: - year = int(v) - return year if year >= 0 else None - except ValueError: - return None - return v if isinstance(v, int) and v >= 0 else None - - class Config: - from_attributes = True - - -class InvestmentStageSchema(BaseModel): - """ - Investment stage schema for many-to-many relationship. - """ - - id: Optional[int] = Field( - default=None, - ge=0, - description="Stage ID, must be 0 or greater. Use 0 if uncertain.", - ) - stage: InvestmentStage = Field( - description="Investment stage enum value. Must be one of: SEED, SERIES_A, SERIES_B, SERIES_C, GROWTH, LATE_STAGE" - ) - - @field_validator("id", mode="before") - @classmethod - def validate_id(cls, v): - """Convert 0 to None for optional id field""" - if v == 0: - return None - return v - - class Config: - from_attributes = True - use_enum_values = True - - -class InvestorSchema(BaseModel): - """ - Expert parser: Only extract investor information if clearly identifiable. - Leave optional fields empty if uncertain. All numeric values must be 0 or greater. - """ - - id: Optional[int] = Field( - default=None, - ge=0, - description="Investor ID, must be 0 or greater. Use 0 if uncertain.", - ) - name: Optional[str] = Field( - default=None, - description="Investor name. Do not return any special characters, Just the name as a string.", - ) - description: Optional[str] = Field( - default=None, - description="Investor description. Leave empty if not clearly available or uncertain.", - ) - aum: Optional[int] = Field( - default=None, - ge=0, - description="Assets Under Management in USD, must be 0 or greater. Use 0 if not clearly identifiable or uncertain.", - ) - check_size_lower: Optional[int] = Field( - default=None, - ge=0, - description="Lower bound of typical investment check size in USD, must be 0 or greater. Use 0 if not clearly identifiable.", - ) - check_size_upper: Optional[int] = Field( - default=None, - ge=0, - description="Upper bound of typical investment check size in USD, must be 0 or greater. Use 0 if not clearly identifiable.", - ) - geographic_focus: Optional[str] = Field( - default=None, - description="Geographic investment focus. Do not return any special characters, Just locations separated by commas. Leave empty if not clearly identifiable.", - ) - number_of_investments: Optional[int] = Field( - default=None, - ge=0, - description="Total number of investments made, must be 0 or greater. Use 0 if not clearly identifiable.", - ) - - @field_validator("name", "description", "geographic_focus", mode="before") - @classmethod - def empty_string_to_none(cls, v): - """Convert empty strings to None""" - if v == "" or (isinstance(v, str) and v.strip() == ""): - return None - return v - - @field_validator( - "id", - "aum", - "check_size_lower", - "check_size_upper", - "number_of_investments", - mode="before", - ) - @classmethod - def zero_to_none(cls, v): - """Convert 0 to None for optional integer fields""" - if v == 0: - return None - return v - - class Config: - from_attributes = True - - -class InvestorData(BaseModel): - """ - Expert parser: Comprehensive investor data schema for LLM processing. - Only populate fields with clearly identifiable information. Leave lists empty if uncertain. - """ - - investor: InvestorSchema = Field( - description="Core investor information. Only populate with clearly identifiable data." - ) - portfolio_companies: List[CompanySchema] = Field( - default=[], - description="List of portfolio companies. Leave empty if not clearly identifiable.", - ) - team_members: List[InvestorMemberSchema] = Field( - default=[], - description="List of team members. Leave empty if not clearly identifiable.", - ) - sectors: List[SectorSchema] = Field( - default=[], - description="List of investment sectors. Leave empty if not clearly identifiable.", - ) - investment_stages: List[InvestmentStageSchema] = Field( - default=[], - description="List of investment stages the investor focuses on (can be multiple). Look for terms like 'seed to series A', 'early stage', 'multi-stage', etc. Leave empty if not clearly identifiable.", - ) - - class Config: - from_attributes = True - - -class InvestorDataScrape(BaseModel): - """ - Expert parser: Comprehensive investor data schema for LLM processing. - Only populate fields with clearly identifiable information. Leave lists empty if uncertain. - """ - - investor: InvestorSchema = Field( - description="Core investor information. Only populate with clearly identifiable data." - ) - team_members: List[InvestorMemberSchema] = Field( - default=[], - description="List of team members. Leave empty if not clearly identifiable.", - ) - sectors: List[SectorSchema] = Field( - default=[], - description="List of investment sectors. Leave empty if not clearly identifiable.", - ) - investment_stages: List[InvestmentStageSchema] = Field( - default=[], - description="List of investment stages the investor focuses on (can be multiple). Look for terms like 'seed to series A', 'early stage', 'multi-stage', etc. Leave empty if not clearly identifiable.", - ) - - class Config: - from_attributes = True - -class CompanyData(BaseModel): - """ - Expert parser: Comprehensive company data schema for LLM processing. - Only populate fields with clearly identifiable information. Leave lists empty if uncertain. - """ - - company: CompanySchema = Field( - description="Core company information. Only populate with clearly identifiable data." - ) - sectors: List[SectorSchema] = Field( - default=[], - description="List of company sectors. Leave empty if not clearly identifiable.", - ) - members: List[CompanyMemberSchema] = Field( - default=[], - description="List of company members. Leave empty if not clearly identifiable.", - ) - investors: List[InvestorSchema] = Field( - default=[], - description="List of investors. Leave empty if not clearly identifiable.", - ) - - class Config: - from_attributes = True - - -class InvestorList(BaseModel): - """Expert parser: List of investors with clearly identifiable information only.""" - - investors: List[InvestorData] = Field( - default=[], - description="List of investors. Leave empty if no clearly identifiable investors.", - ) diff --git a/test_fund_schema.py b/test_fund_schema.py deleted file mode 100644 index b130fad..0000000 --- a/test_fund_schema.py +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/env python3 -""" -Quick verification script to test the new fund relationship schema -""" - -import sys - -sys.path.insert(0, "/home/oluwasanmi/Documents/Work/MKD/anton_wireframe/preprocessor") - -from models import FundTable, InvestmentStageTable, SectorTable, get_db_session - - -def test_fund_relationships(): - """Test the new fund relationship schema""" - db = get_db_session() - - print("🧪 Testing Fund Relationship Schema\n") - - # Test 1: Check investment stages - print("1️⃣ Investment Stages:") - stages = db.query(InvestmentStageTable).all() - print(f" Found {len(stages)} stages:") - for stage in stages[:5]: - print(f" - {stage.name}") - print() - - # Test 2: Check fund with relationships - print("2️⃣ Sample Fund with Relationships:") - fund = db.query(FundTable).filter(FundTable.fund_name.isnot(None)).first() - - if fund: - print(f" Fund: {fund.fund_name}") - print(f" Geographic Focus: {fund.geographic_focus}") - - print(f" Investment Stages ({len(fund.investment_stages)}):") - for stage in fund.investment_stages[:3]: - print(f" - {stage.name}") - - print(f" Sectors ({len(fund.sectors)}):") - for sector in fund.sectors[:3]: - print(f" - {sector.name}") - else: - print(" No funds found") - print() - - # Test 3: Check association tables - print("3️⃣ Association Table Stats:") - - # Count fund-stage relationships - from sqlalchemy import text - - result = db.execute(text("SELECT COUNT(*) FROM fund_investment_stages")) - stage_count = result.scalar() - print(f" Fund-Stage relationships: {stage_count}") - - # Count fund-sector relationships - result = db.execute(text("SELECT COUNT(*) FROM fund_sectors")) - sector_count = result.scalar() - print(f" Fund-Sector relationships: {sector_count}") - print() - - # Test 4: Query funds by stage - print("4️⃣ Query Test - Funds with 'Series A' stage:") - series_a_funds = ( - db.query(FundTable) - .join(FundTable.investment_stages) - .filter(InvestmentStageTable.name.ilike("%Series A%")) - .limit(3) - .all() - ) - - print(f" Found {len(series_a_funds)} funds:") - for fund in series_a_funds: - print(f" - {fund.fund_name or 'Unnamed'}") - stages = [s.name for s in fund.investment_stages] - print(f" Stages: {', '.join(stages)}") - print() - - # Test 5: Query funds by sector - print("5️⃣ Query Test - Funds investing in first sector:") - first_sector = db.query(SectorTable).first() - if first_sector: - sector_funds = ( - db.query(FundTable) - .join(FundTable.sectors) - .filter(SectorTable.id == first_sector.id) - .limit(3) - .all() - ) - - print(f" Sector: {first_sector.name}") - print(f" Found {len(sector_funds)} funds:") - for fund in sector_funds: - print(f" - {fund.fund_name or 'Unnamed'}") - print() - - # Test 6: Geographic focus string search - print("6️⃣ Query Test - Funds with Europe in geographic focus:") - europe_funds = ( - db.query(FundTable) - .filter(FundTable.geographic_focus.ilike("%Europe%")) - .limit(3) - .all() - ) - - print(f" Found {len(europe_funds)} funds:") - for fund in europe_funds: - print(f" - {fund.fund_name or 'Unnamed'}") - print(f" Geographic Focus: {fund.geographic_focus}") - print() - - print("✅ All tests completed successfully!") - db.close() - - -if __name__ == "__main__": - try: - test_fund_relationships() - except Exception as e: - print(f"❌ Error: {e}") - import traceback - - traceback.print_exc() diff --git a/version_two.db b/version_two.db deleted file mode 100644 index e69de29..0000000